]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
merge trunk
[gnu-emacs] / lisp / ChangeLog
1 2012-09-15 Glenn Morris <rgm@gnu.org>
2
3 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
4 checkouts, check the parent dirstate matches the branch.
5 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
6 empty string.
7
8 * version.el (emacs-bzr-version): Doc fix.
9 (emacs-bzr-version-dirstate): New function.
10 (emacs-bzr-get-version): For lightweight checkouts, if the parent
11 is local try and check that it matches the branch. If not, just
12 use dirstate information. (Bug#12441)
13
14 2012-09-14 Juri Linkov <juri@jurta.org>
15
16 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
17 (Bug#12399)
18
19 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
20
21 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
22
23 * emacs-lisp/edebug.el: Miscellaneous cleanup.
24 Remove obsolete byte-compiler hack that tried to silence some warnings.
25 (edebug-submit-bug-report): Remove.
26 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
27 Remove aliases, use the un-prefixed name instead.
28 (edebug-pop-to-buffer): Consider other frames.
29 (edebug-original-read):: Make it more obvious that it's always defined.
30 (edebug--make-form-data-entry, edebug--form-data-name)
31 (edebug--form-data-begin, edebug--form-data-end): Rename from the
32 single-dashed name, and implement with cl-defstruct.
33 (edebug-set-form-data-entry): Use the standard accessors.
34 (edebug-make-top-form-data-entry): Use push.
35 (edebug-no-match): Drop useless `funcall'.
36 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
37 to functions.
38 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
39 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
40 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
41 (easy-menu-define, with-custom-print): Remove redundant specs.
42 (edebug-outside-overriding-local-map)
43 (edebug-outside-overriding-terminal-local-map): Remove, unused.
44 (edebug--display): Bind unread-command-events directly to nil rather
45 than binding it to unread-command-events and later setting it to nil.
46 (edebug--display): Kill edebug-eval-buffer here...
47 (edebug--recursive-edit): ...rather than here.
48 Bind standard-output and standard-input.
49 (edebug-eval): Check cl-macroexpand-all is fboundp.
50 (edebug-temp-display-freq-count): Fix last change.
51
52 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
53 * subr.el (noreturn, 1value): Add `debug' spec.
54 * emacs-lisp/advice.el: Require cl-lib.
55 (ad-copy-tree): Remove, use copy-tree instead.
56 (ad-dolist): Remove use dolist or cl-dolist instead.
57 (ad-do-return): Remove, use cl-return instead.
58 (defadvice): Add `debug' spec.
59
60 2012-09-13 Juri Linkov <juri@jurta.org>
61
62 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
63 (Bug#12399)
64
65 2012-09-13 Glenn Morris <rgm@gnu.org>
66
67 * calc/calc.el (math-compose-expr):
68 * calc/calc-ext.el (math-compose-expr):
69 * progmodes/cc-defs.el (cl-macroexpand-all):
70 * progmodes/cc-langs.el (delete-duplicates, mapcan)
71 (cl-macroexpand-all): Update declarations.
72
73 * vc/vc.el: No need to require ediff.
74 (ediff-load-version-control): Declare.
75 (ediff-vc-internal): Fix declaration.
76 (vc-version-ediff): Require ediff.
77
78 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
79
80 Use a more backwards-compatible timer format (Bug#12430).
81 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
82 being right after USECS, as that better supports old code that
83 inadvisedly looked directly at the timer vector.
84
85 2012-09-13 Kenichi Handa <handa@gnu.org>
86
87 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
88 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
89 `coding-priority' property of these language environment.
90
91 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
92
93 Fix glitches caused by addition of psec to timers (Bug#12430).
94 * image.el (image-animate-timer):
95 * time.el (display-time-world-timer):
96 Use timer--function and timer--args rather than raw access to
97 timer vector.
98
99 2012-09-13 Glenn Morris <rgm@gnu.org>
100
101 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
102 If not compiling a file, try using load-file-name.
103
104 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
105
106 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
107 Fix last change.
108 (edebug-update-eval-list): Use `push'.
109
110 * emacs-lisp/edebug.el: Use lexical-binding.
111 Remove the "edebug-" prefix from non-dynamically-scoped variables.
112 Mark unused args with underscore.
113 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
114 (edebug-form-data): Use defvar-local.
115 (edebug-make-before-and-after-form, edebug-make-after-form):
116 Use backquote.
117 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
118 Not dynamically scoped any more.
119 (edebug--enter-trace): Add arguments `function' and `args'.
120 Rename from edebug-enter-trace.
121 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
122 (edebug--update-coverage): Add `after-index' and `value' args.
123 Rename from edebug-update-coverage.
124 (edebug-slow-after): Call it accordingly.
125 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
126 edebug-recursive-edit.
127 (edebug--display): Call it accordingly. Add args `value',
128 `offset-index', and `arg-mode'. Rename from edebug-display.
129 (edebug-debugger, edebug): Call it accordingly.
130 (edebug-eval-display-list): Use dolist.
131
132 2012-09-12 Juri Linkov <juri@jurta.org>
133
134 * info.el (Info-search): Don't check for isearch-mode and
135 isearch-regexp before let-binding search-spaces-regexp to
136 Info-search-whitespace-regexp.
137 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
138 search-whitespace-regexp if isearch-lax-whitespace or
139 isearch-regexp-lax-whitespace is non-nil.
140 (Info-mode): Don't set local variable search-whitespace-regexp.
141 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
142
143 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
146 (debugger-env-macro): Remove support for unread-command-char.
147
148 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
149 the temporary map re-appearing on emulation-mode-map-alists.
150
151 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
152 since 22.1.
153
154 * ehelp.el (with-electric-help): Accept functions in
155 electric-help-form-to-execute.
156 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
157 And replace unread-command-char -> unread-command-events.
158
159 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
160
161 Sync with Tramp 2.2.6.
162
163 * net/tramp.el (tramp-accept-process-output): Don't use
164 JUST-THIS-ONE in the XEmacs case.
165
166 * net/trampver.el: Update release number.
167
168 2012-09-12 Martin Rudalics <rudalics@gmx.at>
169
170 * emacs-lisp/debug.el (debugger-previous-window-height):
171 New variable.
172 (debug): When debugger-jumping-flag is non-nil try to restore
173 height of debugger window. (Bug#8789)
174
175 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
176
177 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
178 overriding-local-map and pre/post-command-hook here.
179 (edebug-recursive-edit): Do it here instead (bug#12345).
180 (edebug-outside-unread-command-char): Remove all uses of
181 unread-command-char.
182
183 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
184 inhibit-debugger is bound instead.
185
186 2012-09-11 Bastien Guerry <bzg@gnu.org>
187
188 * subr.el (set-temporary-overlay-map): Add a docstring.
189 (Bug#12346)
190
191 2012-09-11 Bastien Guerry <bzg@gnu.org>
192
193 * minibuffer.el (completion-table-subvert): Fix docstring.
194 (Bug#12347)
195
196 2012-09-11 Bastien Guerry <bzg@gnu.org>
197
198 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
199
200 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
201
202 * progmodes/sql.el: Version 3.1
203 (sql-db2-escape-newlines): New variable.
204 (sql-escape-newlines-filter): Use it.
205
206 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
207
208 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
209
210 2012-09-10 Dan Nicolaescu <dann@gnu.org>
211
212 * vc/diff-mode.el (diff-mode-menu):
213 Bind diff-remove-trailing-whitespace.
214
215 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
216
217 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
218 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
219 (emacs-lisp-byte-code-mode): New functions.
220 (eval-sexp-add-defvars): Don't skip defvars in column >0.
221 (eval-defun-2): Remove bogus interactive spec.
222 (lisp-indent-line): Remove redundant whole-exp code, now done in
223 indent-according-to-mode.
224 (save-match-data): Remove redundant indent data.
225
226 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
227 Use `declare'.
228
229 2012-09-09 Juri Linkov <juri@jurta.org>
230
231 * replace.el (replace-regexp-lax-whitespace): New defcustom.
232 (replace-lax-whitespace, query-replace-regexp)
233 (query-replace-regexp-eval, replace-regexp): Doc fix.
234 (perform-replace, replace-highlight): Let-bind
235 isearch-lax-whitespace to replace-lax-whitespace and
236 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
237
238 * isearch.el (isearch-query-replace): Let-bind
239 replace-lax-whitespace to isearch-lax-whitespace and
240 replace-regexp-lax-whitespace to
241 isearch-regexp-lax-whitespace. (Bug#10885)
242
243 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
244
245 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
246
247 2012-09-09 Alan Mackenzie <acm@muc.de>
248
249 * progmodes/cc-engine.el (c-state-cache-init):
250 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
251 (c-record-parse-state-state):
252 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
253
254 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
255
256 * register.el (register-separator): Rename from
257 separator-register. All uses changed. Doc fix.
258 (register): Fix version.
259
260 2012-09-09 Chong Yidong <cyd@gnu.org>
261
262 * replace.el (query-replace-map): Bind four new symbols for
263 requesting window scrolling.
264
265 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
266 query-replace-map (Bug#8948).
267
268 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
269
270 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
271 since they are now in query-replace-map.
272
273 * window.el (scroll-other-window-down): Make the arg optional.
274
275 2012-09-09 Chong Yidong <cyd@gnu.org>
276
277 * files.el (hack-local-variables-confirm): Use quit-window to kill
278 the *Local Variables* buffer.
279
280 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
281
282 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
283 not just expect to be at its beginning. Adjust callees.
284 Succeed when do-end block has no space before the pipe character.
285 (ruby-brace-to-do-end): When the original block is one-liner,
286 convert to multiline. Reindent the result.
287
288 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
289
290 * register.el (register): New group.
291 (register-separator): New user option.
292 (increment-register): Route it to `append-to-register', if
293 register contains text. Implication is that `C-x r +' can now be
294 used for appending to a text register (bug#12217).
295 (append-to-register, prepend-to-register): Add separator based on
296 `register-separator.
297
298 2012-09-08 Alan Mackenzie <acm@muc.de>
299
300 AWK Mode: make auto-newline work when there's "==" in the pattern.
301 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
302 correctly.
303 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
304 Test more rigorously for "=" token.
305
306 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
307
308 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
309 Only fail when reached LIMIT.
310
311 2012-09-08 Chong Yidong <cyd@gnu.org>
312
313 * dired.el (dired-mode-map): Don't bind M-=.
314
315 * dired-aux.el (dired-diff): Use backup file as default.
316
317 2012-09-08 Drew Adams <drew.adams@oracle.com>
318
319 * subr.el (add-to-history): Fix delete usage (Bug#12314).
320
321 2012-09-08 Chong Yidong <cyd@gnu.org>
322
323 * subr.el (syntax-after, syntax-class): Doc fix.
324
325 2012-09-08 Martin Rudalics <rudalics@gmx.at>
326
327 * window.el (display-buffer-in-previous-window): New buffer
328 display action function.
329
330 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
331 (debugger-previous-window): New variable.
332 (debug): Rewrite using display-buffer-in-previous-window,
333 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
334
335 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
336
337 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
338
339 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
340
341 * progmodes/python.el (python-shell-send-string):
342 When default-directory is remote, create temp file on remote
343 filesystem.
344 (python-shell-send-file): When file is remote, pass local view of
345 file paths to remote Python interpreter. (Bug#12340)
346
347 2012-09-07 Chong Yidong <cyd@gnu.org>
348
349 * window.el (switch-to-buffer): Doc fix (Bug#12181).
350
351 * files.el (after-find-file): Don't fail on a read-only buffer if
352 require-final-newline is `visit' or `visit-save' (Bug#11156).
353
354 * subr.el (read-char-choice): Allow quitting via ESC ESC.
355
356 * userlock.el (ask-user-about-supersession-threat):
357 Use read-char-choice (Bug#12093).
358
359 2012-09-07 Chong Yidong <cyd@gnu.org>
360
361 * subr.el (buffer-narrowed-p): New function.
362
363 * ses.el (ses-widen):
364 * simple.el (count-words--buffer-message):
365 * net/browse-url.el (browse-url-of-buffer): Use it
366
367 * simple.el (count-words-region): Don't signal an error if there
368 is a non-nil prefix arg and the mark is not set.
369
370 * help.el (describe-key-briefly): Allow the message to be seen
371 when invoked from the minibuffer (Bug#7014).
372
373 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
374
375 * progmodes/ruby-mode.el (ruby-end-of-defun)
376 (ruby-beginning-of-defun): Simplify, allow indentation before
377 block beginning and end keywords.
378 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
379 (ruby-end-of-defun): Expect that the point is at the beginning of
380 the defun.
381
382 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
385 (bug#12367).
386 (cl--make-usage-args): Strip _ from argument names.
387
388 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
389
390 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
391 obsolete alias speedbar-key-map.
392 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
393 (vhdl-index-menu-init): Don't use obsolete variable
394 font-lock-maximum-size.
395
396 2012-09-06 Chong Yidong <cyd@gnu.org>
397
398 * frame.el (window-system-version): Mark as obsolete.
399
400 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
401 of obsolete variable speedbar-key-map.
402
403 2012-09-06 Juri Linkov <juri@jurta.org>
404
405 * replace.el (replace-lax-whitespace): New defcustom.
406 (query-replace, query-replace-regexp, query-replace-regexp-eval)
407 (replace-string, replace-regexp): Mention it in docstrings.
408 (perform-replace, replace-highlight): Let-bind
409 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
410 to the values of replace-lax-whitespace and regexp-flag.
411 Don't let-bind search-whitespace-regexp. (Bug#10885)
412
413 * isearch.el (isearch-query-replace): Let-bind
414 replace-lax-whitespace instead of let-binding
415 replace-search-function and replace-re-search-function.
416 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
417 and isearch-regexp-lax-whitespace to lazy-highlight variables.
418 (isearch-toggle-symbol): Set isearch-regexp to nil
419 in isearch-word mode (like in isearch-toggle-word).
420
421 2012-09-06 Juri Linkov <juri@jurta.org>
422
423 * replace.el (replace-search-function)
424 (replace-re-search-function): Set default values to nil.
425 (perform-replace): Let-bind isearch-related variables based on
426 replace-related values, call `isearch-search-fun' and let-bind
427 the result to `search-function'. Remove code that sets
428 `search-function' and `search-string' separately for
429 `delimited-flag'.
430 (replace-highlight): Add new argument `delimited-flag' and
431 rename other arguments to the names used in `perform-replace'.
432 Let-bind `isearch-word' to the argument `delimited-flag'.
433 (Bug#10885, bug#10887)
434
435 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
436
437 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
438 ruby-beginning-of-indent, simplify, allow all keywords to have
439 indentation before them.
440 (ruby-beginning-of-indent): Adjust for above. Search until the
441 found point is not inside a string or comment.
442 (ruby-font-lock-keywords): Allow symbols to start with "@"
443 character, give them higher priority than variables.
444 (ruby-syntax-propertize-function)
445 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
446 matchers. Expression expansions are not comments when inside a
447 string, and there comment syntax status is irrelevant.
448 (ruby-match-expression-expansion): New function. Check that
449 expression expansion is inside a string, and it's not escaped.
450 (ruby-font-lock-keywords): Use it.
451
452 2012-09-05 Martin Rudalics <rudalics@gmx.at>
453
454 * help.el (temp-buffer-max-height): New default value.
455 (temp-buffer-resize-frames): New option.
456 (resize-temp-buffer-window): Optionally resize frame.
457
458 * window.el (fit-frame-to-buffer-bottom-margin): New option.
459 (fit-frame-to-buffer): New function.
460
461 2012-09-05 Glenn Morris <rgm@gnu.org>
462
463 * emulation/cua-rect.el (cua--init-rectangles):
464 * textmodes/picture.el (picture-mode-map):
465 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
466 like forward-char and backward-char. (Bug#12317)
467
468 2012-09-05 Leo Liu <sdl.web@gmail.com>
469
470 * progmodes/flymake.el (flymake-warning-re): New variable.
471 (flymake-parse-line): Use it.
472
473 2012-09-05 Glenn Morris <rgm@gnu.org>
474
475 * calendar/holidays.el (holiday-christian-holidays):
476 Rename an entry. (Bug#12289)
477
478 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
479
480 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
481 (bug#12222).
482
483 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
484
485 * loadup.el: Load macroexp. Remove hack.
486 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
487 (macroexp--expand-all): Use it to get better warnings.
488 (macroexp--backtrace, macroexp--trim-backtrace-frame)
489 (internal-macroexpand-for-load): New functions.
490 (macroexp--pending-eager-loads): New var.
491 (emacs-startup-hook): New hack to replace one in loadup.el.
492 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
493 (cl--compiler-macro-cXXr): Move to top, before they can be used.
494 (cl-psetf): Simplify.
495 (cl-defstruct): Add indent rule.
496
497 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
498
499 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
500 over `user-mail-address' for the SMTP MAIL FROM envelope.
501 (smtpmail-via-smtp): Ditto.
502
503 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
504
505 * progmodes/ruby-mode.el: Clean up keybindings.
506 (ruby-mode-map): Don't bind ruby-electric-brace,
507 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
508 backward-kill-word, reindent-then-newline-and-indent.
509 (ruby-mark-defun): Remove.
510 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
511 (ruby-mode): Set local beginning-of-defun-function and
512 end-of-defun-function values.
513
514 2012-09-03 Martin Rudalics <rudalics@gmx.at>
515
516 * window.el (temp-buffer-window-setup-hook)
517 (temp-buffer-window-show-hook): New hooks.
518 (temp-buffer-window-setup, temp-buffer-window-show)
519 (with-temp-buffer-window): New functions.
520 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
521 (special-display-popup-frame): Make sure the window used shows BUFFER.
522
523 * help.el (temp-buffer-resize-mode): Fix doc-string.
524 (resize-temp-buffer-window): New optional argument WINDOW.
525
526 * files.el (recover-file, save-buffers-kill-emacs):
527 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
528
529 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
530
531 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
532 remote definition of `default-directory', ensure we can connect.
533
534 2012-09-02 Juri Linkov <juri@jurta.org>
535
536 Toggle whitespace matching mode with M-s SPC.
537 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
538
539 * isearch.el (search-whitespace-regexp): Doc fix.
540 Remove cons cell customization.
541 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
542 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
543 New variables.
544 (isearch-forward, isearch-forward-regexp): Doc fix.
545 (isearch-toggle-lax-whitespace): New command.
546 (search-forward-lax-whitespace, search-backward-lax-whitespace)
547 (re-search-forward-lax-whitespace)
548 (re-search-backward-lax-whitespace): New functions.
549 (isearch-whitespace-regexp): Remove function.
550 (isearch-query-replace): Let-bind replace-search-function and
551 replace-re-search-function.
552 (isearch-occur): Let-bind search-spaces-regexp according to the
553 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
554 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
555 condition for C-q SPC.
556 (isearch-search-fun-default): Use new functions mentioned above.
557 (isearch-search-forward, isearch-search-backward): Remove functions.
558 (isearch-search): Don't let-bind search-spaces-regexp.
559 (isearch-lazy-highlight-space-regexp): Remove variable.
560 (isearch-lazy-highlight-lax-whitespace)
561 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
562 (isearch-lazy-highlight-new-loop): Use them.
563 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
564
565 2012-09-02 Chong Yidong <cyd@gnu.org>
566
567 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
568
569 2012-09-02 Glenn Morris <rgm@gnu.org>
570
571 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
572
573 2012-09-01 Glenn Morris <rgm@gnu.org>
574
575 * term.el: Tidy up menu definitions.
576 (term-mode-map): Use easymenu for In/Out, Complete menus.
577 (term-pager-break-map): Initialize in the defvar.
578 (term-terminal-menu, term-signals-menu): Define with easymenu.
579 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
580 (term-pager-menu): New, extracted from term-process-pager.
581 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
582 (term-update-mode-line): Propertize line/char and page items.
583 (term-process-pager): Move keymap initialization elsewhere.
584
585 2012-09-01 Martin Rudalics <rudalics@gmx.at>
586
587 * window.el (switch-to-prev-buffer): Handle additional values of
588 BURY-OR-KILL argument. Don't switch in minibuffer window.
589 (switch-to-next-buffer): Don't switch in minibuffer window.
590 (quit-restore-window): New function based on quit-window.
591 Handle additional values of former KILL argument.
592 (quit-window): Call quit-restore-window with appropriate
593 interpretation of KILL argument.
594 (display-buffer-below-selected): New buffer display action
595 function.
596
597 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
598
599 * minibuffer.el (completion-at-point-functions): Complete docstring
600 (bug#12254).
601
602 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
603
604 Better seed support for (random).
605 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
606 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
607 * play/mpuz.el, play/tetris.el, play/zone.el:
608 * calc/calc-comb.el (math-init-random-base):
609 * play/blackbox.el (bb-init-board):
610 * play/life.el (life):
611 * server.el (server-use-tcp):
612 * type-break.el (type-break):
613 Remove unnecessary call to (random t).
614 * net/sasl.el (sasl-unique-id-function):
615 Change (random t) to (random), now that the latter is more random.
616 * play/life.el (life-initialized): Remove no-longer-needed var.
617
618 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
619
620 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
621 Consider frame's buffer predicate when choosing the buffer.
622 (Bug#12081)
623
624 2012-08-30 Richard Stallman <rms@gnu.org>
625
626 * simple.el (special-mode-map): Delete binding for `z'.
627
628 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
629
630 * progmodes/compile.el (compilation-always-kill): Doc fix.
631
632 2012-08-30 Chong Yidong <cyd@gnu.org>
633
634 * window.el (display-buffer-reuse-frames): Make the obsolescence
635 message more informative.
636
637 2012-08-30 Glenn Morris <rgm@gnu.org>
638
639 * paren.el (show-paren-delay):
640 Add a :set function. Doc fix. (Bug#12297)
641
642 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
643
644 * progmodes/compile.el (compilation-always-kill): New var.
645 (compilation-start): Use it.
646
647 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
648
649 * simple.el (read-only-mode): Move from files.el for bootstrapping.
650 * files.el (read-only-mode): Move to simple.el.
651
652 * files.el (read-only-mode): New minor mode.
653 (toggle-read-only): Use it and mark obsolete.
654 (find-file--read-only):
655 * vc/vc.el (vc-next-action, vc-checkout):
656 * vc/vc-cvs.el (vc-cvs-checkout):
657 * obsolete/vc-mcvs.el (vc-mcvs-update):
658 * ffap.el (ffap--toggle-read-only): Update callers.
659
660 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
661
662 * eshell/esh-ext.el (eshell-external-command): Do not examine
663 remote shell scripts.
664 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
665
666 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
667 "/usr/local/sbin".
668
669 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
670
671 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
672
673 2012-08-28 Leo Liu <sdl.web@gmail.com>
674
675 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
676 completion-at-point. (Bug#12220)
677
678 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
679
680 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
681
682 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
683
684 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
685 be buffer-local; add delete-trailing-whitespace (bug#12259).
686
687 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
688
689 * progmodes/hideif.el (hif-compress-define-list):
690 Fix typo. (Bug#11951)
691
692 2012-08-28 Dan Nicolaescu <dann@gnu.org>
693
694 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
695 buffer local setting.
696
697 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
698 rcirc-encode-coding-system.
699
700 2012-08-28 Leo Liu <sdl.web@gmail.com>
701
702 * net/rcirc.el (rcirc-split-message): New function.
703 (rcirc-send-message): Use it. (Bug#12051)
704
705 2012-08-28 Juri Linkov <juri@jurta.org>
706
707 * info.el (Info-fontify-node): Hide empty lines at the end of
708 the node. (Bug#12272)
709
710 2012-08-27 Drew Adams <drew.adams@oracle.com>
711
712 * dired.el (dired-pop-to-buffer): Make window start at beginning
713 of buffer (Bug#12281).
714
715 2012-08-26 Chong Yidong <cyd@gnu.org>
716
717 * window.el (special-display-regexps, special-display-frame-alist)
718 (special-display-buffer-names, special-display-function)
719 (display-buffer-reuse-frames): Mark as obsolete.
720
721 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
722
723 * help.el (help-print-return-message): Don't treat
724 display-buffer-reuse-frames specially.
725
726 2012-08-26 Chong Yidong <cyd@gnu.org>
727
728 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
729 New variable, replacing gdb-frame-parameters.
730 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
731 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
732 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
733 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
734 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
735 the functions directly with gdb-display-buffer-other-frame-action.
736 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
737 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
738 (gdb-display-stack-buffer, gdb-display-locals-buffer)
739 (gdb-display-registers-buffer): Define directly.
740 (def-gdb-display-buffer): Macro deleted.
741 (gdb-display-buffer): Remove second and third args, callers don't
742 use them. Defer to the default display-buffer behavior, apart
743 from making windows dedicated.
744 (gdb-setup-windows): Don't call display-buffer unnecessarily.
745
746 * progmodes/gud.el (gud-display-line): Just use display-buffer.
747
748 * window.el (display-buffer-pop-up-frame): Handle a
749 pop-up-frame-parameters alist entry.
750 (display-buffer): Document it.
751
752 2012-08-26 Chong Yidong <cyd@gnu.org>
753
754 * isearch.el (search-whitespace-regexp): Make string and nil
755 values apply to both ordinary and regexp search. Allow a cons
756 cell value to distinguish between the two.
757 (isearch-whitespace-regexp, isearch-search-forward)
758 (isearch-search-backward): New functions.
759 (isearch-occur, isearch-search-fun-default, isearch-search)
760 (isearch-lazy-highlight-new-loop): Use them.
761 (isearch-forward, isearch-forward-regexp): Doc fix.
762
763 2012-08-26 Chong Yidong <cyd@gnu.org>
764
765 * faces.el (help-argument-name): Always inherit from italic
766 (Bug#12213).
767
768 2012-08-25 Martin Rudalics <rudalics@gmx.at>
769
770 * window.el (window--even-window-heights): Even heights when
771 WINDOW and the selected window form a vertical combination.
772 (display-buffer-use-some-window): Provide that window used gets
773 sized back by quit-window. (Bug#11880) and (Bug#12091)
774
775 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
776
777 Fix file time stamp problem with bzr and CVS (Bug#12001).
778 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
779 in the file's time stamp, since the version control system loses
780 that information.
781
782 2012-08-22 Juri Linkov <juri@jurta.org>
783
784 * info.el (Info-fontify-node): Hide the suffix of the
785 Info file name in the header line. (Bug#12187)
786
787 2012-08-22 Glenn Morris <rgm@gnu.org>
788
789 * calendar/cal-tex.el (cal-tex-weekly-common):
790 Restore leading blank page.
791
792 2012-08-22 Le Wang <l26wang@gmail.com> (tiny change)
793
794 * misc.el (forward-to-word, backward-to-word): Activate or extend
795 the region under `shift-select-mode'. (Bug#12231)
796
797 2012-08-22 Bastien Guerry <bzg@gnu.org>
798
799 * progmodes/executable.el (executable-prefix): Set to "#!" instead
800 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
801 gives details on why the space is never needed.
802
803 2012-08-22 Martin Rudalics <rudalics@gmx.at>
804
805 * window.el (walk-window-tree, window-with-parameter):
806 New optional argument MINIBUF to control whether these functions
807 should run on the minibuffer window.
808 (window-at-side-list): Don't operate on minibuffer window.
809 (window-in-direction): Simplify and rewrite doc-string.
810 (window--size-ignore): Rename to window--size-ignore-p.
811 Update callers.
812 (display-buffer-in-atom-window, window--major-non-side-window)
813 (window--major-side-window, display-buffer-in-major-side-window)
814 (delete-side-window, display-buffer-in-side-window):
815 New functions.
816 (window--side-check, window-deletable-p, delete-window)
817 (delete-other-windows, split-window): Handle side windows and
818 atomic windows appropriately.
819 (window--display-buffer): Call display-buffer-record-window also
820 when the window buffer did not change.
821
822 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
823
824 * help-fns.el (help-fns--key-bindings):
825 Abbreviate non-symbol remap targets. (Bug#12174)
826
827 2012-08-22 Martin Rudalics <rudalics@gmx.at>
828
829 * dired.el (dired-mark-remembered): Don't clobber point.
830 (Bug#11795)
831
832 2012-08-22 Glenn Morris <rgm@gnu.org>
833
834 * progmodes/bug-reference.el (bug-reference): New custom group.
835 (bug-reference-bug-regexp): Make it a defcustom.
836
837 2012-08-22 Daiki Ueno <ueno@unixuser.org>
838
839 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
840 (js-paren-indent-offset, js-square-indent-offset)
841 (js-curly-indent-offset): Add :safe (Bug#12257).
842
843 2012-08-22 Edward O'Connor <hober0@gmail.com>
844
845 * json.el (json-key-format): Add error properties.
846 (json-encode-key): New function.
847 (json-encode-hash-table, json-encode-alist, json-encode-plist):
848 Use json-encode-key.
849
850 2012-08-22 Glenn Morris <rgm@gnu.org>
851
852 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
853 (cal-tex-leftday, cal-tex-rightday): Remove functions.
854 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
855 Update for above change.
856
857 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
858
859 * cus-face.el (custom-face-attributes): Fix customize type for the
860 :underline attribute. (Bug#11805)
861
862 2012-08-21 Martin Rudalics <rudalics@gmx.at>
863
864 * window.el (window-point-1, set-window-point-1): Remove.
865 (window-in-direction, record-window-buffer)
866 (set-window-buffer-start-and-point, split-window-below)
867 (window--state-get-1, display-buffer-record-window):
868 Replace calls to window-point-1 and set-window-point-1 by calls to
869 window-point and set-window-point respectively.
870
871 2012-08-21 Glenn Morris <rgm@gnu.org>
872
873 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
874 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
875 Use it.
876
877 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
878 (cal-tex-shortday): New function.
879 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
880 (cal-tex-cursor-filofax-daily): Use the above.
881
882 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
883 New functions.
884 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
885 (cal-tex-cursor-filofax-week): Use them.
886
887 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
888 New constants.
889 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
890 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
891
892 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
893 (cal-tex-end-document): Don't rely on buffer name.
894
895 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
896 Use cal-tex-vspace.
897 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
898 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
899 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
900 Use cal-tex-arg.
901
902 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
903 (cal-tex-cursor-week, cal-tex-cursor-week2)
904 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
905 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
906 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
907 (cal-tex-insert-preamble, cal-tex-b-document)
908 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
909 Improve cal-tex-cmd usage.
910
911 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
912 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
913 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
914 (cal-tex-weekly-paper): New function.
915 (cal-tex-cursor-week, cal-tex-cursor-week2)
916 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
917 (cal-tex-cursor-day): Use it.
918
919 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
920 (cal-tex-cursor-filofax-week): Remove leading blank page.
921
922 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
923 Add autoload cookie. For now at least, don't use color, since
924 no other cal-tex function does.
925
926 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
927 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
928 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
929
930 2012-08-21 Juri Linkov <juri@jurta.org>
931
932 * info.el (Info-file-attributes): New variable.
933 (info-insert-file-contents): Add file attributes to
934 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
935 `Info-toc-nodes' when previous modtime of the Info file is less
936 than new modtime.
937 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
938 of info.el. (Bug#12230)
939
940 2012-08-20 Glenn Morris <rgm@gnu.org>
941
942 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
943 * calendar/holidays.el (calendar-holiday-list):
944 Report errors with display-warning rather than beep'n'sleep.
945
946 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
947
948 * net/tramp.el (tramp-accept-process-output): Accept only output
949 from PROC. Otherwise, process filters and sentinels might be
950 confused. (Bug#12145)
951
952 2012-08-20 Chong Yidong <cyd@gnu.org>
953
954 * descr-text.el (describe-text-properties-1): Use overlays-in to
955 report on empty overlays (Bug#3322).
956
957 2012-08-20 Glenn Morris <rgm@gnu.org>
958
959 * mail/rmailout.el (rmail-output-read-file-name):
960 Trap and report errors in rmail-output-file-alist elements.
961
962 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
963 since most non-font-lock faces are not also variables).
964
965 2012-08-20 Edward Reingold <reingold@iit.edu>
966
967 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
968 New function. (Bug12160)
969
970 2012-08-19 Glenn Morris <rgm@gnu.org>
971
972 * mail/rmailout.el (rmail-output-read-file-name):
973 Fix previous change (when the alist is nil or does not match).
974
975 2012-08-19 Chong Yidong <cyd@gnu.org>
976
977 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
978 (Bug#12228).
979
980 2012-08-18 Chong Yidong <cyd@gnu.org>
981
982 * simple.el (yank-handled-properties): New defcustom.
983 (yank-excluded-properties): Add font-lock-face and category.
984 (yank): Doc fix.
985
986 * subr.el (remove-yank-excluded-properties):
987 Obey yank-handled-properties. The special handling of font-lock-face
988 and category is now done this way, instead of being hard-coded.
989 (insert-for-yank-1): Remove font-lock-face handling.
990 (yank-handle-font-lock-face-property)
991 (yank-handle-category-property): New function.
992
993 2012-08-17 Glenn Morris <rgm@gnu.org>
994
995 * mail/rmailout.el (rmail-output-read-file-name):
996 Check rmail-output-file-alist against the full message body
997 in the correct rmail buffer. (Bug#12214)
998
999 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
1000
1001 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1002 Eliminate superfluous prompt. (Bug#12203)
1003
1004 2012-08-17 Chong Yidong <cyd@gnu.org>
1005
1006 * mouse.el (mouse-appearance-menu): If x-select-font returns a
1007 font spec, set the font directly (Bug#3228).
1008
1009 2012-08-17 Martin Rudalics <rudalics@gmx.at>
1010
1011 * window.el (delete-window): Fix last fix.
1012
1013 2012-08-16 Martin Rudalics <rudalics@gmx.at>
1014
1015 * window.el (window-valid-p): Move to window.c.
1016 (window-child, window-child-count, window-last-child)
1017 (window-normalize-window, window-combined-p)
1018 (window-combinations, window-atom-root, window-min-size)
1019 (window-sizable, window-sizable-p, window-size-fixed-p)
1020 (window-min-delta, window-max-delta, window--resizable)
1021 (window--resizable-p, window-resizable, window-total-size)
1022 (window-full-height-p, window-full-width-p, window-body-size)
1023 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
1024 (minimize-window, window-deletable-p, delete-window)
1025 (delete-other-windows, set-window-buffer-start-and-point)
1026 (next-buffer, previous-buffer, split-window, balance-windows-2)
1027 (set-window-text-height, window-buffer-height)
1028 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
1029 (truncated-partial-width-window-p): Minor code adjustments.
1030 In doc-strings state whether the argument window has to denote a
1031 live, valid or any window.
1032
1033 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
1034
1035 * progmodes/subword.el (subword-forward-function)
1036 (subword-backward-function, subword-forward-regexp)
1037 (subword-backward-regexp): New variables.
1038 (subword-forward, subword-forward-internal, subword-backward-internal):
1039 Use new variables, eg so that different "word" definitions
1040 can be easily used. (Bug#11411)
1041
1042 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1043
1044 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
1045 for composite selectors.
1046 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
1047 operation just because we can't find a previous revision.
1048
1049 2012-08-15 Chong Yidong <cyd@gnu.org>
1050
1051 * frame.el (set-frame-font): Accept font objects.
1052
1053 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1054
1055 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
1056
1057 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
1058
1059 * man.el (Man-overstrike-face, Man-underline-face)
1060 (Man-reverse-face): Remove variables.
1061 (Man-overstrike, Man-underline, Man-reverse): New faces.
1062 (Man-fontify-manpage): Use them instead of the variables.
1063 (Man-cleanup-manpage): Comment change.
1064 (Man-ansi-color-map): New variable.
1065 (Man-fontify-manpage): Use it.
1066 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
1067
1068 Implement ANSI SGR parameters 22-27 (bug#12146).
1069 * ansi-color.el (ansi-colors): Doc fix.
1070 (ansi-color-context, ansi-color-context-region): Doc fix.
1071 (ansi-color--find-face): New function.
1072 (ansi-color-apply, ansi-color-apply-on-region): Use it.
1073 Rename the local variable `face' to `codes' since it is now a list of
1074 ansi codes. Doc fix.
1075 (ansi-color-get-face): Remove.
1076 (ansi-color-parse-sequence): New function, derived from
1077 ansi-color-get-face.
1078 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
1079 codes 22-27.
1080
1081 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
1082
1083 * subr.el (read-passwd): Allow use from a minibuffer.
1084
1085 2012-08-14 Eli Zaretskii <eliz@gnu.org>
1086
1087 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
1088 inside comments and strings as identifiers.
1089
1090 * progmodes/gud.el (gud-tooltip-print-command): Quote the
1091 expression to evaluate. This allows to evaluate expressions with
1092 embedded whitespace.
1093 (gud-tooltip-tips): Add a blank before the newline in the
1094 message-box text, for the benefit of message-box emulation on
1095 MS-Windows.
1096
1097 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
1098 messages from GDB, pop them up in a tooltip to give feedback to
1099 user.
1100 (gdb-tooltip-print-1): Quote the expression to evaluate.
1101 This allows to evaluate expressions with embedded whitespace.
1102 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
1103 if the TTY name is nil or empty (which happens when communicating
1104 with the inferior via pipes, e.g. on MS-Windows).
1105 (gdb-internals): If GDB sends a "&\n" empty debugging message,
1106 don't send that to the GUD buffer.
1107
1108 2012-08-14 Glenn Morris <rgm@gnu.org>
1109
1110 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
1111 Optimize away setq-default with no args, as for setq. (Bug#12195)
1112
1113 2012-08-14 Chong Yidong <cyd@gnu.org>
1114
1115 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
1116
1117 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
1118 (Bug#12085).
1119
1120 2012-08-14 Glenn Morris <rgm@gnu.org>
1121
1122 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
1123
1124 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
1125
1126 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
1127 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1128 Use cached shell name.
1129
1130 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
1131
1132 * progmodes/python.el (python-shell-send-string):
1133 (python-shell-send-setup-code): Do not use `format' with `message'.
1134
1135 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
1136
1137 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
1138 (ruby-percent-literal-beg-re): New constant.
1139 (ruby-syntax-general-delimiters-goto-beg): Rename to
1140 `ruby-syntax-enclosing-percent-literal', improve literal type check.
1141 (ruby-syntax-propertize-general-delimiters): Rename to
1142 `ruby-syntax-propertize-percent-literal', it's a shorter and more
1143 popular term. Adjust comments everywhere.
1144 (ruby-syntax-propertize-percent-literal): Only propertize when not
1145 inside a simple string or comment. When the literal is unclosed,
1146 leave the text after it unpropertized.
1147 (ruby-syntax-methods-before-regexp): New constant.
1148 (ruby-syntax-propertize-function): Use it to recognize regexps.
1149 Don't look at the text after regexp, just use the whitelist.
1150
1151 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
1152
1153 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
1154 non-nil always load the compiled file if it exists. (Bug#12197)
1155
1156 2012-08-14 Chong Yidong <cyd@gnu.org>
1157
1158 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
1159 (hi-lock-set-pattern): When deciding whether to use font lock or
1160 overlays, look at font-lock-mode instead of font-lock-fontified
1161 (Bug#12168).
1162 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
1163 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
1164
1165 2012-08-14 Daiki Ueno <ueno@unixuser.org>
1166
1167 * subr.el (internal--after-with-selected-window): Fix typo
1168 (Bug#12193).
1169
1170 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
1171
1172 Use `completion-table-dynamic' for completion functions.
1173 * progmodes/python.el
1174 (python-shell-completion--do-completion-at-point)
1175 (python-shell-completion--get-completions):
1176 Remove functions.
1177 (python-shell-completion-complete-at-point): New function.
1178 (python-completion-complete-at-point): Use it.
1179
1180 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
1181
1182 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
1183 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
1184
1185 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
1186
1187 * subr.el (function-get): Refine `autoload' arg so it can also
1188 autoload functions for gv.el (bug#12191).
1189 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
1190 autoloads macros.
1191
1192 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
1193 Prefer pcase-let over destructuring-bind.
1194 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
1195 Also, remove whitespace as we go, rather than after accumulating the
1196 various places.
1197
1198 * subr.el (internal--before-with-selected-window)
1199 (internal--after-with-selected-window): Fix typo seleted->selected.
1200 (with-selected-window): Adjust callers.
1201 Reported by Dmitry Gutov <dgutov@yandex.ru>.
1202
1203 2012-08-13 Bastien Guerry <bzg@gnu.org>
1204
1205 * window.el (special-display-popup-frame): Minor docstring
1206 enhancement. (Bug#12172)
1207
1208 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
1209
1210 * tar-mode.el (tar-header-data-end): Only ignore size for files of
1211 type 1-6.
1212 (tar-header-block-summarize, tar-get-descriptor): Handle pax
1213 extended headers.
1214
1215 * files.el (hack-local-variables-filter): Remove useless eval.
1216
1217 2012-08-13 Martin Rudalics <rudalics@gmx.at>
1218
1219 * subr.el (with-selected-window): Fix last change.
1220
1221 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
1222
1223 * subr.el (internal--before-with-seleted-window)
1224 (internal--after-with-seleted-window): New functions.
1225 (with-selected-window): Use them, to replace dependency on
1226 tty-top-frame.
1227
1228 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
1229
1230 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
1231 binding for `newline'.
1232 (ruby-move-to-block): When moving backward, stop at block opening,
1233 not indentation.
1234 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
1235 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
1236 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
1237 `ruby-toggle-block'.
1238
1239 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
1240
1241 * ibuffer.el (ibuffer-do-toggle-read-only):
1242 * dired.el (dired-toggle-read-only):
1243 * buff-menu.el (Buffer-menu-toggle-read-only):
1244 * bindings.el (mode-line-toggle-read-only):
1245 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
1246
1247 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
1248
1249 * descr-text.el (describe-char): Put the overlays over the
1250 "displayed as" character.
1251
1252 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
1253
1254 * calc/calc-units.el (math-default-units-table): Give an
1255 initial value.
1256 (math-put-default-units): Add options to put composite units and
1257 unit systems in the default units table.
1258 (calc-convert-units): Send composite units to
1259 `math-put-default-units' when appropriate.
1260
1261 2012-08-11 Glenn Morris <rgm@gnu.org>
1262
1263 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
1264
1265 * tutorial.el (help-with-tutorial):
1266 * emacs-lisp/copyright.el (copyright-update-directory):
1267 * emacs-lisp/autoload.el (autoload-find-generated-file)
1268 (autoload-find-file): Disable local eval: (for insurance).
1269
1270 * files.el (hack-local-variables-filter): If an eval: form is not
1271 known to be safe, and enable-local-variables is :safe, then ignore
1272 the form totally, as is done for non-eval forms. (Bug#12155)
1273 This is CVE-2012-3479.
1274
1275 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1276
1277 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
1278 (rx-form): Simplify.
1279
1280 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
1281
1282 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
1283 ?, _, and : are symbol constituents, ! is not (but kinda should be).
1284 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
1285 (ruby-syntax-propertize-function): Adjust for changes in
1286 `ruby-syntax-propertize-heredoc'.
1287
1288 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
1289
1290 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
1291 binding (use `M-;' instead).
1292 (ruby-singleton-class-p): New function.
1293 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
1294
1295 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1296
1297 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
1298
1299 2012-08-10 Chong Yidong <cyd@gnu.org>
1300
1301 * progmodes/python.el (python-shell-get-process-name): Don't mess
1302 with same-window-buffer-names.
1303
1304 * eshell/eshell.el (eshell-add-to-window-buffer-names)
1305 (eshell-remove-from-window-buffer-names): Make obsolete.
1306 (eshell-buffer-name, eshell-unload-hook): Don't use them.
1307 (eshell): Just use pop-to-buffer-same-window instead.
1308
1309 2012-08-10 Chong Yidong <cyd@gnu.org>
1310
1311 * bindings.el: Bind M-= back to count-words-region.
1312
1313 * simple.el (count-words-region): Accept a prefix arg for acting
1314 on the entire buffer.
1315 (count-words--buffer-message): New helper function.
1316
1317 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
1318
1319 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
1320 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
1321 (event-start, event-end): Use posn-at-point to return a more
1322 informative posn.
1323 (posnp): New function.
1324 * mouse.el (popup-menu-normalize-position): Use it.
1325
1326 2012-08-10 Masatake YAMATO <yamato@redhat.com>
1327
1328 * mouse.el (popup-menu-normalize-position): New function.
1329 (popup-menu): Use `popup-menu-normalize-position' to normalize
1330 the form for POSITION argument.
1331
1332 * term/x-win.el (x-menu-bar-open):
1333 Use the value returend from (posn-at-point) as position
1334 passed to `popup-menu'.
1335
1336 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
1337
1338 * calc/calccomp.el (math-compose-expr): Add extra argument
1339 indicating that parentheses should be put around products in
1340 denominators. Give multiplication precedence over division during
1341 composition.
1342
1343 2012-08-09 Chong Yidong <cyd@gnu.org>
1344
1345 * man.el (Man-switches, Man-sed-command, Man-awk-command)
1346 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
1347 (Man-untabify-command, manual-program): Convert to defcustom
1348 (Bug#10429).
1349
1350 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
1351
1352 * descr-text.el (describe-char): Don't insert extra newlines
1353 (Bug#10127).
1354
1355 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
1356 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
1357
1358 * align.el (align-region): Delete temporary markers (Bug#10047).
1359 Plus some code cleanups.
1360
1361 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
1362
1363 * progmodes/python.el (python-pdbtrack-tracked-buffer)
1364 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
1365 (python-shell-internal-last-output): Use make-local-variable
1366 instead of make-variable-buffer-local.
1367
1368 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
1369
1370 * progmodes/python.el: Enhancements to forward-sexp.
1371 (python-nav-forward-sexp): Rename from
1372 python-nav-forward-sexp-function.
1373 (python-nav--forward-sexp, python-nav--backward-sexp):
1374 New functions.
1375
1376 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
1377
1378 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
1379 modes and simplification modes.
1380
1381 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
1382
1383 * delsel.el (delete-selection-pre-hook): Don't propagate the
1384 file-supersession signals (bug#12161).
1385
1386 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1387
1388 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
1389 (cl-map-extents): Add compatibility aliases (bug#12135).
1390
1391 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
1392
1393 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
1394 tests by `ignore-error'.
1395 (tramp-find-shell): Open also a new shell, when cache is already
1396 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
1397
1398 2012-08-08 Juri Linkov <juri@jurta.org>
1399
1400 * bookmark.el: Add `defaults' property to the bookmark record.
1401 (bookmark-current-buffer): Doc fix.
1402 (bookmark-make-record): Add `defaults' property with default values
1403 to the bookmark record.
1404 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
1405 with `bookmark-insert-current-bookmark'.
1406 (bookmark-set): Get `defaults' property from the bookmark record
1407 and use it in `read-from-minibuffer'.
1408 (bookmark-insert-current-bookmark): Remove function.
1409
1410 * info.el (Info-bookmark-make-record): Add `defaults' property
1411 with values of canonical Info node name, the current Info file
1412 name and the current Info node name. (Bug#12107)
1413
1414 2012-08-08 Juri Linkov <juri@jurta.org>
1415
1416 * files.el (basic-save-buffer): Use `buffer-name' as the default
1417 of `read-file-name' when buffer is not visiting a file (bug#12128).
1418
1419 2012-08-08 Juri Linkov <juri@jurta.org>
1420
1421 * info.el (Info-isearch-search): Doc fix.
1422 (Info-search): Change search-failed message from "initial node" to
1423 "end of node" (bug#12078).
1424 (Info-isearch-search): Change `isearch-string-state' to
1425 `isearch--state-string'.
1426
1427 2012-08-08 Glenn Morris <rgm@gnu.org>
1428
1429 * language/persian.el: Remove file.
1430 * language/misc-lang.el: Move unique part of persian.el here.
1431 * loadup.el: Remove language/persian.
1432
1433 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
1434
1435 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
1436
1437 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
1438
1439 * progmodes/python.el Fixed defsubst warning.
1440 (python-syntax-context) Rename from python-info-ppss-context.
1441 (python-syntax-context-type): Rename from
1442 python-info-ppss-context-type.
1443 (python-syntax-comment-or-string-p): Rename from
1444 python-info-ppss-comment-or-string-p.
1445
1446 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
1447
1448 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
1449
1450 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
1451
1452 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
1453 a defcustom that is quoted with backquote.
1454
1455 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
1456 Fix handling of interactive spec when the body uses return.
1457 (math-do-arg-check, math-define-function-body): Use backquote forms.
1458 * calc/calc-ext.el (math-defcache): Likewise.
1459 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
1460 * allout.el (allout-new-exposure): Likewise.
1461 * calc/calcalg2.el (math-tracing-integral): Likewise.
1462 * info.el (Info-last-menu-item): Likewise.
1463 * emulation/vip.el (vip-loop): Likewise.
1464 * textmodes/artist.el (artist-funcall): Likewise.
1465 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
1466 Construct menu-item directly.
1467
1468 * progmodes/autoconf.el (font-lock-syntactic-keywords):
1469 Don't declare.
1470
1471 2012-08-07 Chong Yidong <cyd@gnu.org>
1472
1473 * simple.el (deactivate-mark): Preserve text properties when
1474 saving the primary selection (Bug#8384).
1475
1476 2012-08-07 Kevin Ryde <user42@zip.com.au>
1477
1478 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
1479 (woman-parse-numeric-value): On a bad .IP line, issue a warning
1480 and continue processing (Bug#12110).
1481
1482 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
1483
1484 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
1485 syntax-propertize-function (bug#10095).
1486
1487 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
1488
1489 * help-fns.el (help-fns--key-bindings, help-fns--signature)
1490 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
1491 describe-function-1.
1492 (describe-function-1): Use them. Move compiler macro after sig.
1493 (help-fns--compiler-macro): Use function-get. Assume we're already in
1494 standard-output. Adjust layout to new call order.
1495
1496 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
1497 re-binding a symbol that has a symbol-macro (bug#12119).
1498
1499 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
1500
1501 * language/persian.el: New file. (Bug#11812)
1502 * loadup.el: Add language/persian.el.
1503
1504 2012-08-06 Chong Yidong <cyd@gnu.org>
1505
1506 * window.el (window--maybe-raise-frame): New function.
1507 (window--display-buffer): Split off from here.
1508 (display-buffer-reuse-window, display-buffer-pop-up-frame)
1509 (display-buffer-pop-up-window, display-buffer-use-some-window):
1510 Obey an inhibit-switch-frame action alist entry.
1511 (display-buffer): Update doc.
1512
1513 * replace.el (occur-after-change-function): Avoid losing focus by
1514 using the inhibit-switch-frame display parameter (Bug#12139).
1515
1516 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
1517
1518 Make internal shell process buffer names start with space.
1519 * progmodes/python.el (python-shell-make-comint): Add optional
1520 argument INTERNAL.
1521 (run-python-internal): Use it.
1522 (python-shell-internal-get-or-create-process): Check for new
1523 internal buffer names.
1524
1525 2012-08-06 Glenn Morris <rgm@gnu.org>
1526
1527 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
1528 Do less getting and setting of environment variables.
1529
1530 2012-08-05 Chong Yidong <cyd@gnu.org>
1531
1532 * proced.el (proced): Add substitution string to docstring to
1533 trigger autoloading of the proced library on C-h f (Bug#1768).
1534
1535 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1536 Don't show defvars which have no second argument (Bug#8638).
1537
1538 * imenu.el (imenu-generic-expression): Move documentation here
1539 from imenu--generic-function.
1540 (imenu--generic-function): Refer to imenu-generic-expression.
1541
1542 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
1543
1544 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
1545 indentation declaration.
1546 (viper-loop): Add indentation declaration (Bug#7025).
1547
1548 2012-08-05 Chong Yidong <cyd@gnu.org>
1549
1550 * help-fns.el (describe-variable): Add hyperlink for
1551 directory-local variables files. Improve buffer-local and
1552 permanent-local reporting; suggested by MON KEY (Bug#6644).
1553
1554 * help-mode.el (help-dir-local-var-def): New button type.
1555
1556 * files.el (kill-buffer-hook): Provide a defvar.
1557
1558 2012-08-05 Glenn Morris <rgm@gnu.org>
1559
1560 * eshell/esh-ext.el (eshell/addpath):
1561 Also update eshell-path-env. (Bug#12013)
1562
1563 2012-08-05 Chong Yidong <cyd@gnu.org>
1564
1565 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
1566
1567 * fringe.el (fringe-styles): Add docstring.
1568 (fringe--check-mode): New function.
1569 (set-fringe-mode, set-fringe-style): Use it.
1570 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
1571
1572 * files.el (set-auto-mode): Fix invalid setq call.
1573
1574 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1575
1576 * isearch.el: Misc simplification; use defstruct.
1577 (isearch-mode-map): Dense maps now work like sparse ones.
1578 (isearch--state): New defstruct.
1579 (isearch-string-state, isearch-message-state, isearch-point-state)
1580 (isearch-success-state, isearch-forward-state)
1581 (isearch-other-end-state, isearch-word-state, isearch-error-state)
1582 (isearch-wrapped-state, isearch-barrier-state)
1583 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
1584 replaced by defstruct's accessors.
1585 (isearch--set-state): Rename from isearch-top-state and change
1586 calling convention.
1587 (isearch-push-state): Use new isearch--get-state.
1588 (isearch-toggle-word): Disable regexp when enabling word.
1589 (isearch-message-prefix): Remove unused arg _c-q-hack.
1590 (isearch-message-suffix): Remove unused arg _ellipsis.
1591
1592 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
1593
1594 * simple.el (list-processes--refresh): For a server use :host or
1595 :local as the address.
1596 (list-processes): Doc fix.
1597
1598 2012-08-04 Michal Nazarewicz <mina86@mina86.com> (tiny change)
1599
1600 * lisp/mpc.el: Support password in host argument.
1601 (mpc--proc-connect): Parse and use new password element.
1602 Set mpc-proc variable instead of returning process.
1603 (mpc-proc): Adjust accordingly.
1604
1605 2012-08-03 Eli Zaretskii <eliz@gnu.org>
1606
1607 * whitespace.el (whitespace-display-mappings): Use Unicode
1608 codepoints, instead of emacs-mule codepoints. See
1609 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
1610 for the details.
1611
1612 * files.el (file-truename): Don't skip symlink-chasing part on
1613 windows-nt. Incorporate the resolution of 8+3 short aliases on
1614 Windows into the loop that recursively chases symlinks.
1615 Compare directory and its parent case-insensitively on MS-Windows and
1616 MS-DOS.
1617
1618 2012-08-03 Chong Yidong <cyd@gnu.org>
1619
1620 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
1621
1622 * sort.el (sort-regexp-fields): Doc fix.
1623
1624 2012-08-03 Tassilo Horn <tsdh@gnu.org>
1625
1626 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
1627 labels regex position point at the expected place.
1628
1629 2012-08-03 MON KEY <monkey@sandpframing.com>
1630
1631 * net/imap.el (imap-interactive-login, imap-authenticate)
1632 (imap-mailbox-lsub, imap-mailbox-list)
1633 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
1634 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
1635 (imap-parse-response): Doc fix.
1636
1637 2012-08-03 João Távora <joaotavora@gmail.com>
1638
1639 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
1640 if sexp scanning does not move point (Bug#5734).
1641
1642 2012-08-02 Tassilo Horn <tsdh@gnu.org>
1643
1644 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
1645 Add listings, minted, and ctable packages.
1646 (reftex-label-alist-builtin): Move listings, minted, and ctable
1647 entries before LaTeX.
1648 (reftex-label-alist): Docfix.
1649
1650 2012-08-02 Bastien Guerry <bzg@gnu.org>
1651
1652 * replace.el (occur): Fix docstring (bug#12122).
1653
1654 2012-08-02 Glenn Morris <rgm@gnu.org>
1655
1656 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
1657
1658 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1659
1660 Obsolete alias inactivate-current-input-method-function (Bug#10150).
1661 * international/mule-cmds.el: Create
1662 inactivate-current-input-method-function as an obsolete alias for
1663 deactivate-current-input-method-function. See Katsumi Yamaoka in
1664 <http://bugs.gnu.org/10150#46>.
1665
1666 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
1667
1668 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
1669 of nested `if's.
1670
1671 2012-08-01 Glenn Morris <rgm@gnu.org>
1672
1673 * progmodes/autoconf.el (autoconf-definition-regexp):
1674 Add AH_TEMPLATE, adjust submatch numbering.
1675 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
1676 (autoconf-current-defun-function): Update for above change.
1677 (autoconf-current-defun-function): First skip to end of current word.
1678
1679 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
1680
1681 * calendar/cal-html.el (cal-html-insert-agenda-days):
1682 Fix typo. (Bug#12018)
1683
1684 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1685
1686 Shell processes: enhancements to startup and CEDET compatibility.
1687 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
1688 (python-shell-make-comint): accept-process-output at startup.
1689 (run-python-internal): Set inferior-python-mode-hook to nil.
1690 (python-shell-internal-get-or-create-process): call sit-for.
1691 (python-preoutput-result): Add obsolete alias.
1692 (python-shell-internal-send-string): Use it.
1693 (python-shell-send-setup-code): Remove call to
1694 accept-process-output.
1695
1696 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1697
1698 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
1699 (Bug#12108)
1700
1701 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
1702
1703 * calc-mode.el (calc-basic-simplification-mode): Rename from
1704 `calc-limited-simplification-mode'.
1705 (calc-alg-simplification-mode): New function.
1706 (calc-set-simplify-mode): Adjust message.
1707
1708 * calc.el (calc-set-mode-line): Adjust mode line display for
1709 basic simplification mode.
1710
1711 * calc-help.el (calc-m-prefix-help): Update help message.
1712
1713 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
1714 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
1715
1716 2012-07-31 Bastien Guerry <bzg@gnu.org>
1717
1718 * man.el (man): Fix comment. (bug#12101)
1719
1720 2012-07-31 Martin Rudalics <rudalics@gmx.at>
1721
1722 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
1723 Don't return a non-nil value when no suitable buffer was found.
1724
1725 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
1726
1727 * progmodes/python.el (run-python-internal): Disable font lock for
1728 internal shells.
1729
1730 2012-07-30 Stefan Merten <smerten@oekonux.de>
1731
1732 * rst.el: Silence `checkdoc-ispell'.
1733 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1734 (rst-official-version, rst-official-cvs-rev)
1735 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
1736 (rst-mode-map): New key binding.
1737
1738 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
1739
1740 Update .PHONY listings in makefiles.
1741 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
1742 autoloads, update-subdirs, updates, bzr-update, update-authors,
1743 compile-onefile, compile-calc, backup-compiled-files,
1744 compile-after-backup, compile-one-process, mh-autoloads,
1745 bootstrap-clean, distclean, maintainer-clean.
1746
1747 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
1748
1749 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
1750 (calc-set-mode-line): Don't display "AlgSimp ".
1751
1752 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
1753 (calc-lim-simplify-mode): New function.
1754 (calc-set-simplify-mode): Default to 'alg.
1755 (calc-default-simplify-mode): Make algebraic simplifications
1756 the default.
1757
1758 * calc/calc-ext.el (calc-init-extensions): Remove binding for
1759 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
1760
1761 * calc/calc-help.el (calc-m-prefix-help): Change messages to
1762 indicate new simplification modes.
1763
1764 * calc/README: Mention new default simplification mode.
1765
1766 * calc/calc.el (math-normalize-error): New variable.
1767 (math-normalize): Set `math-normalize-error' to t
1768 when there's an error.
1769
1770 * calc/calc-alg.el (math-simplify): Don't simplify when
1771 `math-normalize' returns an error.
1772
1773 2012-07-29 Eli Zaretskii <eliz@gnu.org>
1774
1775 * international/mule-cmds.el (set-locale-environment): Revert last
1776 change, since display-graphic-p returns nil when this function is
1777 called during startup. Instead...
1778
1779 * term/w32console.el (terminal-init-w32console): ...setup the
1780 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
1781
1782 2012-07-29 Juri Linkov <juri@jurta.org>
1783
1784 * simple.el (goto-line): Don't display default line number in the
1785 prompt because it should be displayed by `read-number' (bug#9952).
1786 Add the current line number to the defaults of `goto-line' to
1787 allow its easier modification by users with `M-n' (bug#9201).
1788
1789 * subr.el (read-number): Support multiple default values like in
1790 other minibuffer reading functions. Replace `read' with
1791 `string-to-number' for consistency with `number-to-string'.
1792
1793 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
1794
1795 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
1796 * emulation/viper-init.el (viper-deactivate-input-method-action):
1797 Rename from viper-inactivate-input-method-action.
1798 (viper-deactivate-input-method):
1799 Rename from viper-inactivate-input-method.
1800 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
1801 * international/mule-cmds.el (deactivate-input-method):
1802 Rename from inactivate-input-method.
1803 Also run input-method-deactivate-hook.
1804 (deactivate-current-input-method-function):
1805 Rename from inactivate-current-input-method-function.
1806 (input-method-deactivate-hook): New hook.
1807 (input-method-inactivate-hook): Mark obsolete.
1808 (inactivate-input-method): Mark obsolete.
1809
1810 * international/quail.el (quail-activate):
1811 Also run quail-deactivate-hook.
1812 (quail-deactivate): Rename from quail-inactivate.
1813 * international/robin.el (robin-activate):
1814 Also run robin-deactivate-hook.
1815 (robin-deactivate): Rename from robin-inactivate.
1816
1817 2012-07-29 Chong Yidong <cyd@gnu.org>
1818
1819 * simple.el (indicate-copied-region): New function.
1820 (kill-ring-save): Split off from here.
1821
1822 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
1823 (kill-rectangle): Set deactivate-mark to t on read-only error.
1824
1825 * register.el (copy-to-register, copy-rectangle-to-register):
1826 Deactivate the mark, and use indicate-copied-region (Bug#10056).
1827 (append-to-register, prepend-to-register):
1828 Call 2012-07-29 Juri Linkov <juri@jurta.org>
1829
1830 * simple.el (async-shell-command-buffer): New defcustom.
1831 (shell-command): Use it. (Bug#4719)
1832
1833 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1834
1835 * international/mule-cmds.el (set-locale-environment): In a
1836 console session on MS-Windows, set up keyboard and terminal
1837 encoding from the OEM codepage, not the ANSI codepage.
1838 (Bug#12055)
1839
1840 2012-07-28 Chong Yidong <cyd@gnu.org>
1841
1842 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
1843 gdb-get-location.
1844
1845 2012-07-28 Leo Liu <sdl.web@gmail.com>
1846
1847 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
1848 the alist (bug#12029).
1849
1850 2012-07-28 Eli Zaretskii <eliz@gnu.org>
1851
1852 * makefile.w32-in (custom-deps, finder-data, updates, compile)
1853 (compile-always, compile-first)
1854 ($(lisp)/calendar/cal-loaddefs.el)
1855 ($(lisp)/calendar/diary-loaddefs.el)
1856 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1857 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
1858 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
1859 instead of on update-subdirs.
1860 (bootstrap-clean): Delete $(lisp)/subdirs.el.
1861
1862 2012-07-28 Chong Yidong <cyd@gnu.org>
1863
1864 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
1865 directory if vc-deduce-backend returns nil (Bug#7350).
1866
1867 * simple.el (delete-trailing-lines): New option.
1868 (delete-trailing-whitespace): Obey it (Bug#11879).
1869
1870 2012-07-28 David Engster <deng@randomsample.de>
1871
1872 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
1873 Explanation of new 'symbol-qnames feature in doc-strings.
1874 (xml-maybe-do-ns): Return expanded names as plain symbols if
1875 'symbol-qnames was provided in XML-NS argument (Bug#11916).
1876 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
1877
1878 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1879
1880 Consistent completion in inferior python with emacs -nw.
1881 * progmodes/python.el (inferior-python-mode): replace "<tab>"
1882 binding in inferior-python-mode-map with "\t".
1883 (python-shell-completion-complete-at-point)
1884 (python-completion-complete-at-point): Remove interactive spec.
1885
1886 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1887
1888 * calc/calccomp.el (math-compose-expr): Undo previous change.
1889
1890 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
1891
1892 * progmodes/python.el (python-mode-map): Add keybinding for
1893 run-python.
1894 (python-shell-make-comint): Fix pop-to-buffer call.
1895 (run-python): Autoload. New arg SHOW.
1896 (python-shell-get-or-create-process): Do not pop python process
1897 buffer.
1898
1899 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
1900
1901 * notifications.el (notifications-on-action-signal)
1902 (notifications-on-closed-signal): Use also the bus address for the map.
1903 (notifications-notify, notifications-close-notification)
1904 (notifications-get-capabilities): Add optional argument BUS.
1905
1906 2012-07-27 Tassilo Horn <tsdh@gnu.org>
1907
1908 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
1909 Add support for the lstlisting and minted environments, and for the
1910 ctable macro.
1911 * textmodes/reftex.el (reftex-compile-variables): Also recognize
1912 labels written in keyvals syntax.
1913
1914 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
1915
1916 * calc/calccomp.el (math-compose-expr): Use parentheses when
1917 there is a product in the denominator of a fraction.
1918
1919 2012-07-26 Eli Zaretskii <eliz@gnu.org>
1920
1921 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
1922 ($(lisp)/calendar/diary-loaddefs.el)
1923 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
1924 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
1925 Fixes failures in parallel bootstrap because subdirs.el is being
1926 rewritten while the autoload files are built at the same time,
1927 which needs to load subdirs.el.
1928
1929 2012-07-26 Martin Rudalics <rudalics@gmx.at>
1930
1931 * mouse.el (popup-menu): Fix doc-string and re-indent code.
1932 (mouse-drag-line): Don't exit tracking when a switch-frame or
1933 switch-window event occurs (Bug#12006).
1934
1935 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1936
1937 * mouse.el (popup-menu): Fix last change.
1938
1939 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1940
1941 Autoload from Lisp with more care. Follow aliases when looking for
1942 function properties.
1943 * subr.el (autoloadp): New function.
1944 (symbol-file): Use it.
1945 (function-get): New function.
1946 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
1947 autoload-do-load.
1948 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
1949 (lisp-indent-function):
1950 * emacs-lisp/gv.el (gv-get):
1951 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
1952 * emacs-lisp/byte-opt.el (byte-optimize-form):
1953 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
1954 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
1955 Use function-get.
1956 * emacs-lisp/cl.el: Don't propagate function properties any more.
1957
1958 * speedbar.el (speedbar-add-localized-speedbar-support):
1959 * emacs-lisp/disass.el (disassemble-internal):
1960 * desktop.el (desktop-load-file):
1961 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
1962 (describe-function-1):
1963 * emacs-lisp/find-func.el (find-function-noselect):
1964 * emacs-lisp/elp.el (elp-instrument-function):
1965 * emacs-lisp/advice.el (ad-has-proper-definition):
1966 * apropos.el (apropos-safe-documentation, apropos-macrop):
1967 * emacs-lisp/debug.el (debug-on-entry):
1968 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
1969 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
1970 * calc/calc.el (name): Use autoloadp & autoload-do-load.
1971
1972 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
1973
1974 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
1975 function, not an obsolete variable (Bug#12046).
1976
1977 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
1978
1979 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
1980
1981 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
1982
1983 * emacs-lisp/pp.el (pp-display-expression): Select old selected
1984 window only if it is still live (Bug#12034).
1985
1986 2012-07-25 Martin Rudalics <rudalics@gmx.at>
1987
1988 * subr.el (redirect-frame-focus): Add advertised calling
1989 convention (Bug#12030).
1990
1991 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
1992
1993 Prefer typical American spelling for "acknowledgment".
1994 * vc/add-log.el (change-log-acknowledgment): Rename from
1995 change-log-acknowledgement, with an alias for the old name.
1996
1997 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
1998
1999 * calc-alg.el (math-simplify-divide): Don't cross multiply
2000 in an equation when the lhs is a variable.
2001
2002 2012-07-24 Julien Danjou <julien@danjou.info>
2003
2004 * net/netrc.el (netrc-find-service-number, netrc-store-data):
2005 Remove, unused.
2006
2007 2012-07-23 Eli Zaretskii <eliz@gnu.org>
2008
2009 * startup.el (command-line): Don't display an empty user name in
2010 the error message about non-existent home directory, when
2011 init-file-user was set to an empty string. See
2012 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
2013 for the details and context.
2014
2015 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
2016
2017 * ses.el (ses-cell-formula-aset): New macro.
2018 (ses-cell-references-aset): New macro.
2019 (ses-cell-p): New function.
2020 (ses-rename-cell): Do no longer rely on complex operations like
2021 ses-cell-set-formula or ses-set-cell to change the cell and handle
2022 the undo at the same time, but rather use lower level new macros
2023 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
2024 the undo directly. Refresh the mode line.
2025
2026 2012-07-21 Leo Liu <sdl.web@gmail.com>
2027
2028 * progmodes/cc-cmds.el (c-defun-name):
2029 Use match-string-no-properties instead for consistency.
2030
2031 2012-07-20 Leo Liu <sdl.web@gmail.com>
2032
2033 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
2034 (Bug#7879)
2035
2036 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
2037
2038 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
2039
2040 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
2041 * progmodes/bug-reference.el, misearch.el: Provide themselves
2042 (bug#11915).
2043
2044 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
2045 of narrowed buffer (bug#11966).
2046
2047 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
2048
2049 * ses.el (ses-rename-cell): Set new name also in reference list of
2050 cells of which the renamed cell depends.
2051
2052 2012-07-20 Masatake YAMATO <yamato@redhat.com>
2053
2054 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
2055 to check whether menu-bar is shown or not. If not shown,
2056 show the menu-bar as a popup menu instead of using tmm.
2057 * mouse.el (popup-menu): Accept `point' as `position' argument.
2058
2059 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
2060
2061 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
2062 up inside string symbol literal (bug#11923).
2063
2064 2012-07-20 Eli Zaretskii <eliz@gnu.org>
2065
2066 * startup.el (fancy-startup-text): Read the whole tutorial, not
2067 just its first 256 bytes. Prevents gibberish in display of the
2068 tutorial title.
2069
2070 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2071
2072 Drop idle buffer compaction due to an absence of the
2073 proved efficiency.
2074 * compact.el: Remove.
2075
2076 2012-07-19 Sam Steingold <sds@gnu.org>
2077
2078 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
2079 vc-bzr-pull & vc-bzr-merge-branch.
2080 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
2081 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
2082 for consistency with compilation-error-regexp-alist.
2083 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
2084 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
2085 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
2086 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
2087
2088 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2089
2090 * emacs-lisp/chart.el: Use lexical-binding.
2091 (chart-emacs-storage): Don't hardcode the list of entries.
2092
2093 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2094
2095 Next round of tweaks caused by Fgarbage_collect changes.
2096 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
2097
2098 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2099
2100 Compact buffers when idle.
2101 * compact.el: New file.
2102
2103 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2104
2105 * subr.el (eventp): Presume that if it looks vaguely like an event,
2106 it's an event (bug#10190).
2107
2108 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
2109
2110 Enhancements to ppss related code (thanks Stefan).
2111 * progmodes/python.el (python-indent-context)
2112 (python-indent-calculate-indentation, python-indent-dedent-line)
2113 (python-indent-electric-colon, python-nav-forward-block)
2114 (python-mode-abbrev-table)
2115 (python-info-assignment-continuation-line-p): Simplify checks
2116 for ppss context.
2117 (python-info-continuation-line-p): Cleanup.
2118 (python-info-ppss-context): Do not catch 'quote.
2119 (python-info-ppss-context-type)
2120 (python-info-ppss-comment-or-string-p): Simplify.
2121
2122 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
2123
2124 * progmodes/python.el: Enhancements to eldoc support.
2125 (python-info-current-symbol): New function.
2126 (python-eldoc-at-point): Use python-info-current-symbol.
2127 (python-info-current-defun): Fix cornercase on first defun scan.
2128 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
2129 and signal error when no inferior python process is available.
2130
2131 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
2132
2133 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
2134 assume it's always t.
2135 (vc-git-registered): Remove caching, the function is only called
2136 once.
2137 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
2138
2139 2012-07-18 Chong Yidong <cyd@gnu.org>
2140
2141 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
2142
2143 * simple.el (count-words): Report on narrowing (Bug#9959).
2144
2145 * bindings.el: Bind M-= to count-words.
2146
2147 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
2148
2149 2012-07-18 Masatake YAMATO <yamato@redhat.com>
2150
2151 * progmodes/sh-script.el (sh-imenu-generic-expression):
2152 Capture a function with `function' keyword and without parentheses
2153 like "function FOO" (bug#11856).
2154
2155 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
2156
2157 * window.el (split-window-sensibly): Make WINDOW argument
2158 optional.
2159
2160 2012-07-18 Chong Yidong <cyd@gnu.org>
2161
2162 * subr.el (keyboard-translate): Doc fix (Bug#7261).
2163
2164 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
2165 and make C-x 8 RET exit isearch (Bug#11439).
2166
2167 * international/iso-transl.el: Move isearch-mode-map key
2168 definitions to isearch.el.
2169
2170 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2171
2172 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
2173 (eieio-defclass): Use gv-define-setter when possible.
2174
2175 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
2176
2177 Reflect recent changes in Fgarbage_collect.
2178 * emacs-lisp/chart.el (chart-emacs-storage): Change to
2179 reflect new format of data returned by Fgarbage_collect.
2180
2181 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
2182
2183 New utility functions + python-info-ppss-context fix (Bug#11910).
2184 * progmodes/python.el (python-info-beginning-of-block-statement-p)
2185 (python-info-ppss-comment-or-string-p): New functions.
2186 (python-info-ppss-context): Small fix for string check.
2187
2188 2012-07-17 Juri Linkov <juri@jurta.org>
2189
2190 * dired-aux.el (dired-do-async-shell-command): Doc fix.
2191 (dired-do-async-shell-command): Don't add `*' at the end of the
2192 command (Bug#11815).
2193 (dired-do-shell-command): Doc fix.
2194 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
2195 Join the individual commands using either "&" or ";" as the
2196 separator depending on the values of these trailing characters.
2197 At the end re-add the trailing "&". (Bug#10598)
2198
2199 * simple.el (async-shell-command): Sync the interactive spec with
2200 `shell-command'. Doc fix.
2201 (shell-command): Doc fix.
2202
2203 2012-07-17 Juri Linkov <juri@jurta.org>
2204
2205 * descr-text.el (describe-char): Fix format args. (Bug#10129)
2206
2207 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
2208
2209 Final renames and doc fixes for movement commands (bug#11899).
2210 * progmodes/python.el (python-nav-beginning-of-statement):
2211 Rename from python-nav-statement-start.
2212 (python-nav-end-of-statement): Rename from
2213 python-nav-statement-end.
2214 (python-nav-beginning-of-block): Rename from
2215 python-nav-block-start.
2216 (python-nav-end-of-block): Rename from python-nav-block-end.
2217
2218 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
2219
2220 * progmodes/python.el (python-shell-send-string-no-output):
2221 Allow accept-process-output to quit, keeping shell process ready for
2222 future interactions (Bug#11868).
2223
2224 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2225
2226 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
2227
2228 * emacs-lisp/elint.el (elint-find-args-in-code):
2229 Use help-function-arglist, so as to handle lexical byte-code.
2230
2231 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
2232 change (bug#11826).
2233
2234 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
2237 Avoid spuriously marking the buffer as modified because of c-is-sws.
2238
2239 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
2240 as not-a-comment (bug#11946).
2241
2242 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
2243 for uninterned vars.
2244
2245 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
2246 Use read-event since we don't really want to read chars but bytes.
2247
2248 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
2249 $$..$$ but also $..$ using regexps (bug#11953).
2250 Use tex-verbatim for \url and \path.
2251 (tex-font-lock-keywords): Define as defconst like the others.
2252 (tex-common-initialization): Don't use font-lock-syntax-table any more.
2253
2254 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
2255
2256 * international/mule-cmds.el (ucs-insert): Make it an obsolete
2257 alias for insert-char.
2258
2259 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
2260
2261 * progmodes/python.el: Simplified imenu implementation.
2262 (python-nav-jump-to-defun): Remove command.
2263 (python-mode-map): Use `imenu' instead.
2264 (python-nav-list-defun-positions-cache)
2265 (python-imenu-include-defun-type, python-imenu-make-tree)
2266 (python-imenu-subtree-root-label, python-imenu-index-alist):
2267 Remove vars.
2268 (python-nav-list-defun-positions, python-nav-read-defun)
2269 (python-imenu-tree-assoc, python-imenu-make-element-tree)
2270 (python-imenu-make-tree, python-imenu-create-index):
2271 Remove functions.
2272 (python-mode): Update to interact with imenu by setting
2273 `imenu-extract-index-name-function' only.
2274
2275 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
2276
2277 * progmodes/python.el: Enhancements to navigation commands.
2278 (python-nav-backward-sentence)
2279 (python-nav-forward-sentence): Remove.
2280 (python-nav-backward-statement, python-nav-forward-statement)
2281 (python-nav-statement-start, python-nav-statement-end)
2282 (python-nav-backward-block, python-nav-forward-block)
2283 (python-nav-block-start, python-nav-block-end)
2284 (python-nav-forward-sexp-function)
2285 (python-info-current-line-comment-p)
2286 (python-info-current-line-empty-p): New functions.
2287 (python-indent-context): Use `python-nav-statement-start'.
2288
2289 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
2290
2291 * eshell/em-ls.el (eshell/ls): Use `apply'.
2292
2293 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
2294 multi-hops, instead of Tramp internals.
2295
2296 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
2297
2298 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
2299 when F1 and F2 are located on different hosts.
2300
2301 2012-07-14 Chong Yidong <cyd@gnu.org>
2302
2303 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
2304 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
2305 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
2306 (xterm-mouse--read-event-sequence-1000)
2307 (xterm-mouse--read-event-sequence-1006): New functions. For old
2308 mouse protocol, handle M-mouse-X events correctly.
2309 (xterm-mouse-event): New arg specifying mouse protocol.
2310 (turn-on-xterm-mouse-tracking-on-terminal)
2311 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
2312 sequence to toggle extended coordinates on newer XTerms.
2313 This appears to be harmless on terminals which do not support this.
2314
2315 2012-07-14 Leo Liu <sdl.web@gmail.com>
2316
2317 Add fringe bitmap indicators for flymake. (Bug#11253)
2318 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
2319 (flymake-make-overlay): New arg BITMAP.
2320 (flymake-error-bitmap, flymake-warning-bitmap)
2321 (flymake-fringe-indicator-position): New user variables.
2322
2323 * fringe.el: New bitmap exclamation-mark.
2324
2325 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
2326
2327 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
2328 also (Bug#7879).
2329
2330 2012-07-14 Chong Yidong <cyd@gnu.org>
2331
2332 * electric.el (electric-pair-post-self-insert-function): Fix pair
2333 insertion in empty-region case (Bug#11520).
2334
2335 2012-07-14 Chong Yidong <cyd@gnu.org>
2336
2337 * bindings.el: Consolidate ctl-x-r-map bindings.
2338 Bind copy-rectangle-as-kill to C-x r w.
2339
2340 * rect.el, register.el: Move bindings to bindings.el.
2341
2342 2012-07-14 Reuben Thomas <rrt@sc3d.org>
2343
2344 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
2345
2346 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
2347
2348 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
2349
2350 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
2351
2352 * bindings.el (top): Use `mapc' instead of `mapcar'.
2353
2354 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
2355
2356 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
2357
2358 * progmodes/sql.el (sql-comint): Suppress the check for program on
2359 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
2360 (Bug#11908)
2361
2362 2012-07-13 Chong Yidong <cyd@gnu.org>
2363
2364 * bindings.el: Assign a non-nil permanent-local property to
2365 per-buffer variables which lack a default value (Bug#11930).
2366
2367 * help-fns.el (describe-variable): In the "automatically becomes
2368 local" notice, take note of permanent-local variables.
2369
2370 2012-07-13 Chong Yidong <cyd@gnu.org>
2371
2372 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
2373 to allow printing the message when called from Lisp.
2374
2375 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
2376 Remove toggle-read-only.
2377
2378 * bs.el (bs-toggle-readonly):
2379 * buff-menu.el (Buffer-menu-toggle-read-only):
2380 Remove with-no-warnings around toggle-read-only.
2381
2382 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
2383 Remove with-no-warnings around toggle-read-only.
2384 (ffap-read-only, ffap-read-only-other-window)
2385 (ffap-read-only-other-frame): Callers changed.
2386
2387 * help-mode.el: Don't require view package.
2388 (help-mode-finish): Set buffer-read-only instead of calling
2389 toggle-read-only.
2390
2391 * bindings.el (mode-line-toggle-read-only):
2392 * dired.el (dired-toggle-read-only):
2393 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
2394 with non-nil second arg.
2395
2396 * emacs-lisp/eieio-custom.el (eieio-customize-object):
2397 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
2398 directly.
2399
2400 2012-07-12 Eli Zaretskii <eliz@gnu.org>
2401
2402 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
2403 not incf.
2404
2405 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 More CL cleanups and reduction of use of cl.el.
2408 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
2409 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
2410 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
2411 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
2412 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
2413 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
2414 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
2415 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
2416 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
2417 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
2418 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
2419 * eshell/em-cmpl.el, eshell/em-banner.el:
2420 * calendar/parse-time.el: Use cl-lib.
2421 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
2422 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
2423 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
2424 * term/ns-win.el, term.el, shell.el, ps-samp.el:
2425 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
2426 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
2427 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
2428 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
2429 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
2430 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
2431 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
2432 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
2433 `lambda' rather than with `quote'.
2434 (eshell-do-opt): Adjust accordingly.
2435 (eshell-process-option): Simplify.
2436 * eshell/esh-var.el:
2437 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
2438 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
2439 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
2440 to `pcase--dontcare'.
2441 * emacs-lisp/cl.el (labels): Mark obsolete.
2442 (cl--letf, letf): Move to cl-lib.
2443 (cl--letf*, letf*): Remove.
2444 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
2445 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
2446 (cl-progv): Rewrite.
2447 (cl--letf, cl-letf): Move from cl.el.
2448 (cl-letf*): New macro.
2449 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2450
2451 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
2452
2453 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
2454
2455 2012-07-11 Chong Yidong <cyd@gnu.org>
2456
2457 * vc/log-edit.el (log-edit-vc-backend): New variable.
2458 (log-edit): Doc fix.
2459
2460 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
2461 argument of log-edit to set up all local variables.
2462 (vc-start-logentry): New optional arg specifying VC backend.
2463
2464 * vc/vc.el (vc-checkin): Use it.
2465 (vc-deduce-fileset): Handle Log Edit buffers.
2466 (vc-diff): Make first argument optional too.
2467
2468 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
2469
2470 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
2471
2472 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
2473 command, just in case. The function is not needed anymore.
2474 (eshell-external-command): Do not call `eshell-remote-command'.
2475
2476 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
2477
2478 Reduce use of (require 'cl).
2479 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
2480 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
2481 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
2482 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
2483 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
2484 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
2485 * battery.el, avoid.el, abbrev.el: Use cl-lib.
2486 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
2487 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
2488 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
2489 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
2490 * calculator.el, autorevert.el, apropos.el: Don't require CL.
2491 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
2492 (byte-compile-unfold-bcf, byte-compile-check-variable):
2493 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
2494 (byte-compile-nilconstp):
2495 * emacs-lisp/autoload.el (make-autoload): Use pcase.
2496 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
2497
2498 * emacs-lisp/gv.el (cond): Make it a valid place.
2499 (if): Simplify slightly.
2500
2501 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
2502 (pcase--self-quoting-p): New function.
2503 (pcase--u1): Use it.
2504
2505 2012-07-10 Glenn Morris <rgm@gnu.org>
2506
2507 * emacs-lisp/authors.el (authors-fixed-entries):
2508 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
2509
2510 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2511
2512 Rename configure.in to configure.ac (Bug#11603).
2513 * emacs-lisp/authors.el (authors-canonical-file-name):
2514 * progmodes/autoconf.el (autoconf-mode):
2515 Prefer configure.ac to configure.in.
2516
2517 2012-07-08 Chong Yidong <cyd@gnu.org>
2518
2519 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
2520 Implement the mouse-1-click-follows-link handling properly.
2521
2522 * info.el (Info-link-keymap): Use follow-link mechanism for
2523 header-line links (Bug#374).
2524
2525 * simple.el (deactivate-mark): Do not set the primary selection
2526 if another program has acquired it (Bug#11772).
2527
2528 2012-07-07 Kevin Ryde <user42@zip.com.au>
2529
2530 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
2531 (woman-decode-region): Replace escaped-escapes without destroying
2532 bold or underline (Bug#11552).
2533 (woman2-process-escapes): Handle nofill regions (Bug#11591).
2534
2535 2012-07-07 Chong Yidong <cyd@gnu.org>
2536
2537 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
2538 (interprogram-cut-function, interprogram-paste-function):
2539 Mention that we typically mean the clipboard.
2540
2541 2012-07-06 Glenn Morris <rgm@gnu.org>
2542
2543 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
2544
2545 * files.el (toggle-read-only): Restrict message to interactive use.
2546
2547 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
2548
2549 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
2550
2551 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
2552
2553 2012-07-06 Glenn Morris <rgm@gnu.org>
2554
2555 * Makefile.in (compile-one-process): Rename from "recompile".
2556
2557 * Makefile.in (bzr-update): "compile" is the same as "recompile
2558 autoloads", but parallelizable, so use that instead.
2559
2560 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
2561
2562 * window.el (quit-window): Always restore window height when
2563 it's saved in quit-restore parameter (Bug#11810).
2564
2565 2012-07-06 Glenn Morris <rgm@gnu.org>
2566
2567 * simple.el (kill-whole-line): Doc tweak.
2568
2569 2012-07-06 Eli Zaretskii <eliz@gnu.org>
2570
2571 * files.el (file-relative-name): Compare file names
2572 case-insensitively if on MS-Windows or MS-DOS, or if
2573 read-file-name-completion-ignore-case is non-nil. Don't use
2574 case-fold-search for this purpose. (Bug#11827)
2575
2576 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
2577
2578 * calendar/cal-dst.el (calendar-current-time-zone):
2579 Return calendar-current-time-zone-cache if non-nil.
2580
2581 2012-07-17 Masatake YAMATO <yamato@redhat.com>
2582 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
2583
2584 * calendar/cal-dst.el (calendar-current-time-zone):
2585 Return calendar-current-time-zone-cache if non-nil.
2586
2587 2012-07-06 Glenn Morris <rgm@gnu.org>
2588
2589 * Makefile.in (cvs-update): Remove old alias.
2590
2591 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
2592
2593 Sync with Tramp 2.2.6-pre.
2594
2595 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
2596 compatible declaration.
2597
2598 * net/tramp-cmds.el (tramp-append-tramp-buffers):
2599 Protect `list-load-path-shadows' call.
2600
2601 * net/tramp-compat.el (top): Require packages, which aren't
2602 autoloaded anymore for XEmacs. Protect call of
2603 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
2604 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
2605 it hurts at least for SXEmacs.
2606 (tramp-compat-temporary-file-directory): In XEmacs, there is no
2607 standard-value for `temporary-file-directory'.
2608
2609 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
2610 Redirect stderr to /dev/null.
2611 (tramp-sh-handle-write-region): uid and gid can be floats.
2612 Reported by Russell Sim <russell.sim@gmail.com>.
2613 (tramp-sh-handle-vc-registered): Hide errors.
2614 (tramp-vc-file-name-handler): Use dummy results for `process-file'
2615 and `start-file-process'.
2616 (tramp-maybe-open-connection): Check also whether `non-essential'
2617 is bound.
2618
2619 2012-07-04 Chong Yidong <cyd@gnu.org>
2620
2621 * xml.el (xml--parse-buffer): Use xml-syntax-table.
2622 (xml-parse-tag): Likewise, and avoid changing entity tables.
2623 (xml-syntax-table): Define from scratch, making sure not to give
2624 x2000 and other Unicode spaces whitespace syntax, since those are
2625 not spaces in XML.
2626 (xml-parse-fragment): Delete unused function.
2627 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
2628 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
2629 (xml-entity-ref, xml-pe-reference-re)
2630 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
2631 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
2632 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
2633 (xml-entity-value-re): Use syntax references in regexps where
2634 possible; no need to define inside a let-binding.
2635 (xml-parse-dtd): Use xml-pe-reference-re.
2636 (xml-entity-or-char-ref-re): New defconst.
2637 (xml-parse-string, xml-substitute-special): Use it.
2638
2639 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2640
2641 * files.el (locate-dominating-file): Allow `name' to be a predicate.
2642 (find-file--read-only): New function.
2643 (find-file-read-only, find-file-read-only-other-window)
2644 (find-file-read-only-other-frame): Use it.
2645 (insert-file-contents-literally): Don't `fset'.
2646 (get-free-disk-space): Use locate-dominating-file.
2647
2648 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
2649 function is already compiled.
2650
2651 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
2652
2653 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
2654
2655 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
2656 files on the same host.
2657
2658 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
2659
2660 * help-fns.el (describe-function-1): Only call
2661 help-fns--autoloaded-p when we have a file name. (Bug#11848)
2662
2663 2012-07-03 Chong Yidong <cyd@gnu.org>
2664
2665 * xml.el: Protect parser against XML bombs.
2666 (xml-entity-expansion-limit): New variable.
2667 (xml-parse-string, xml-substitute-special): Use it.
2668 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
2669
2670 2012-07-03 Glenn Morris <rgm@gnu.org>
2671
2672 * progmodes/bug-reference.el (bug-reference-bug-regexp):
2673 Allow linking to specific messages in debbugs reports (eg 123#5).
2674
2675 2012-07-02 Chong Yidong <cyd@gnu.org>
2676
2677 * xml.el: Fix entity and character reference expansion, allowing
2678 them to expand into markup as per XML spec.
2679 (xml-default-ns): New variable.
2680 (xml-entity-alist): Use XML spec definitions for lt and amp.
2681 (xml-parse-region): Make first two arguments optional.
2682 Discard text properties.
2683 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
2684 All callers changed.
2685 (xml-parse-tag): Call xml-parse-tag-1. For backward
2686 compatibility, this function should not modify buffer contents.
2687 (xml-parse-tag-1): Fix opening-tag regexp.
2688 (xml-parse-string): Rewrite, handling entity and character
2689 references properly.
2690 (xml--entity-replacement-text): Signal an error if a parameter
2691 entity is undefined.
2692
2693 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2694
2695 * comint.el (comint-output-filter): Filter out repeated prompts.
2696
2697 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
2698 and file-name-absolute-p.
2699 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
2700 internal calls.
2701
2702 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
2703
2704 Spelling fixes.
2705 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
2706 Rename from byte-compile--refiy-function. All uses changed.
2707
2708 2012-07-01 Chong Yidong <cyd@gnu.org>
2709
2710 * xml.el (xml--parse-buffer): New function. Move most of
2711 xml-parse-region here.
2712 (xml-parse-region): Copy region into a temporary buffer, since
2713 parameter entity substitution requires changing buffer contents.
2714 Use xml--parse-buffer.
2715 (xml-parse-file): Use xml--parse-buffer.
2716 (xml-parse-dtd): Make parameter entity substitution work right.
2717 Use proper regexps for ELEMENT declarations (Bug#7172).
2718
2719 2012-06-30 Glenn Morris <rgm@gnu.org>
2720
2721 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
2722
2723 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
2724 Remove outdated and unnecessary dbus declarations.
2725
2726 2012-06-30 Eli Zaretskii <eliz@gnu.org>
2727
2728 * emacs-lisp/timer.el (timer-until): Subtract results of
2729 float-time, instead of taking float-time of the result of
2730 time-subtract, since float-time signals an error for negative time
2731 arguments.
2732
2733 2012-06-30 Chong Yidong <cyd@gnu.org>
2734
2735 * xml.el (xml-*-re): Convert defvars into defconsts, and
2736 eval-and-compile them so eval-and-compile works on derivatives.
2737 (xml--entity-replacement-text): Use eval-and-comple.
2738
2739 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
2740
2741 * vc/vc-git.el (vc-git-registered): Use cache property
2742 `git-registered'.
2743 (vc-git-mode-line-string): Call `vc-working-revision' instead of
2744 `vc-git-working-revision' in order to benefit from the cache.
2745 (vc-git-root): Use cache property `git-root'. (Bug#11757)
2746
2747 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
2748
2749 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2750 removed (likely outside Emacs). (Bug#11757)
2751
2752 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2753
2754 * emacs-lisp/cl-lib.el: Require macroexp.
2755
2756 2012-06-30 Chong Yidong <cyd@gnu.org>
2757
2758 * xml.el: Implement XML parameter entities.
2759 (xml-parameter-entity-alist): New variable.
2760 (xml-parse-region, xml-parse-fragment): Preserve previous values
2761 of xml-entity-alist and xml-parameter-entity-alist, so that
2762 repeated calls on different documents do not change them.
2763 (xml-parse-tag): Fix doctype regexp.
2764 (xml--entity-replacement-text): New function.
2765 (xml-parse-dtd): Use it. Don't handle system entities; doing that
2766 properly requires url retrieval which is unimplemented.
2767 (xml-escape-string): Doc fix.
2768
2769 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2770
2771 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
2772
2773 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
2774
2775 * fringe.el (fringe-mode): Doc fix.
2776
2777 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
2778
2779 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
2780 is non-nil.
2781 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
2782 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
2783
2784 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
2785
2786 * calendar/cal-dst.el (calendar-current-time-zone):
2787 Return calendar-current-time-zone-cache if non-nil.
2788
2789 2012-06-29 Masatake YAMATO <yamato@redhat.com>
2790
2791 * progmodes/which-func.el (which-func-format):
2792 Add mouse-face. (Bug#11698)
2793
2794 2012-06-29 Leo Liu <sdl.web@gmail.com>
2795
2796 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
2797
2798 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2799
2800 * minibuffer.el (minibuffer-confirm-exit-commands):
2801 Add completion-at-point (bug#11725).
2802
2803 2012-06-29 Glenn Morris <rgm@gnu.org>
2804
2805 * progmodes/f90.el (f90-font-lock-keywords-2):
2806 Add some preprocessor elements. (Bug#10499)
2807
2808 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2809
2810 * progmodes/cperl-mode.el (cperl-update-syntaxification):
2811 Use syntax-propertize (bug#11739).
2812
2813 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
2814
2815 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
2816
2817 2012-06-28 Julien Danjou <julien@danjou.info>
2818
2819 * term.el (term-handle-colors-array): Use a set of new faces to
2820 color the terminal. Also uses :inverse-video property.
2821 (term-default-fg-color): Set to nil by default, deprecate in favor
2822 of `term-face'.
2823 (term-default-bg-color): Set to nil by default, deprecate in favor
2824 of `term-face'.
2825 (term-current-face): Use `term-face' by default.
2826 (term-bold-attribute): Variable deleted.
2827
2828 2012-06-28 Glenn Morris <rgm@gnu.org>
2829
2830 * simple.el (completion-list-mode-finish):
2831 Don't use toggle-read-only. (Since completion-list-mode has
2832 a special mode-class, it wasn't doing anything extra anyway.)
2833
2834 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
2835
2836 Make inlining of other-mode interpreted functions work (bug#11799).
2837 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
2838 (byte-compile): Use it to fix compilation of lexical-binding closures.
2839 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
2840 function, if needed.
2841
2842 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
2843
2844 * help-mode.el (help-make-xrefs): Don't just withstand
2845 cyclic-variable-indirection but any error in documentation-property.
2846
2847 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
2848 memory use.
2849 * bindings.el (bindings--define-key): New function.
2850 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
2851 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
2852 * bindings.el: Use it to purecopy define-key bindings.
2853
2854 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
2855
2856 * emacs-lisp/cl.el (flet): Mark obsolete.
2857 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
2858 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
2859 * progmodes/js.el (js-c-fill-paragraph):
2860 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
2861 (ebrowse-switch-member-buffer-to-derived-class):
2862 * play/5x5.el (5x5-solver): Use cl-flet.
2863
2864 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
2865 (cl--symbol-function): New macro.
2866 (cl--letf, cl--letf*): Use it.
2867
2868 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
2869 Strip "toggle-" if any.
2870
2871 2012-06-27 Glenn Morris <rgm@gnu.org>
2872
2873 * info.el (Info-default-directory-list): Move here from paths.el.
2874 * paths.el: Remove file, which is now empty.
2875 * loadup.el: No longer load "paths".
2876
2877 * custom.el (custom-initialize-delay): Doc fix.
2878
2879 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
2880 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
2881 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
2882 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
2883 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
2884 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
2885 * eshell/eshell.el (eshell-defgroup): Remove alias.
2886
2887 2012-06-27 Chong Yidong <cyd@gnu.org>
2888
2889 * help.el (help-enable-auto-load): New variable.
2890
2891 * help-fns.el (help-fns--autoloaded-p): New function.
2892 (describe-function-1): Refer to a function as "autoloaded" if it
2893 was autoloaded at any time in the past. Perform autoloading if
2894 help-enable-auto-load is non-nil.
2895
2896 2012-06-26 Eli Zaretskii <eliz@gnu.org>
2897
2898 * makefile.w32-in (compile, compile-always): Depend on
2899 update-subdirs, not on subdirs.el. Otherwise, several different
2900 sub-targets of 'bootstrap' running in parallel could
2901 simultaneously write to subdirs.el, producing a garbled file.
2902
2903 2012-06-26 Sam Steingold <sds@gnu.org>
2904
2905 * files.el (file-name-base): New convenience function.
2906 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
2907 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
2908 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
2909 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
2910 * textmodes/ispell.el, textmodes/reftex-ref.el:
2911 * textmodes/tex-mode.el: Use it.
2912 Did not touch cedet and org because they are maintained elsewhere.
2913
2914 2012-06-26 Martin Rudalics <rudalics@gmx.at>
2915
2916 * calendar/calendar.el (calendar-exit): Don't try to delete or
2917 iconify last frame. See:
2918 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
2919
2920 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
2921
2922 * server.el (server-process-filter): Remember dir in the
2923 process's `server-client-directory' properties.
2924
2925 2012-06-24 Chong Yidong <cyd@gnu.org>
2926
2927 * xml.el (xml-parse-tag): Correctly handle comment embedded in
2928 non-tag text.
2929
2930 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
2931
2932 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
2933
2934 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2935
2936 * help-fns.el (describe-variable): Don't croak when doc is not found.
2937 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
2938 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
2939 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
2940 * emacs-lisp/smie.el (smie-next-sexp): CSE.
2941 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
2942 ((lambda ..) ..).
2943 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
2944
2945 2012-06-23 Chong Yidong <cyd@gnu.org>
2946
2947 * info.el (Info-mouse-follow-link): Accept symbol values of
2948 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
2949 (Info-fontify-node): Use Info-link-keymap for all navigation
2950 buttons, with link-args property to perform the desired action.
2951 (Info-link-keymap): Doc fix.
2952 (Info-next-link-keymap, Info-prev-link-keymap)
2953 (Info-up-link-keymap): Delete now-unused keymaps.
2954
2955 2012-06-23 Chong Yidong <cyd@gnu.org>
2956
2957 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
2958
2959 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
2960 system abbrevs.
2961
2962 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
2963
2964 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
2965
2966 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
2967 (bug#11719).
2968
2969 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
2970 the requote function doesn't work properly (bug#11714).
2971
2972 2012-06-23 Glenn Morris <rgm@gnu.org>
2973
2974 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
2975
2976 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
2977
2978 Further GV/CL cleanups.
2979 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
2980 gv-expander.
2981 (gv--defun-declaration): New function.
2982 (defun-declarations-alist): Use it.
2983 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
2984 (gv-place): Autoload.
2985 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
2986 original definition of dotimes and dolist.
2987 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
2988 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
2989 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
2990 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2991 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
2992 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
2993 to the function's definition.
2994 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
2995 * window.el:
2996 * files.el:
2997 * faces.el:
2998 * env.el: Don't use CL.
2999
3000 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
3001
3002 Support higher-resolution time stamps (Bug#9000).
3003
3004 * calendar/time-date.el (with-decoded-time-value): New arg
3005 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
3006 (encode-time-value): New optional arg PICO. New type 3.
3007 (time-to-seconds) [!float-time]: Support the new picoseconds
3008 component if it's used.
3009 (seconds-to-time, time-subtract, time-add):
3010 Support ps-resolution time stamps as well.
3011
3012 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
3013 (timerp): Timer vectors now have length 9, not 8.
3014 (timer--time): Support new-style (4-part) time stamps.
3015 (timer-next-integral-multiple-of-time): Time stamps now have
3016 picosecond resolution, so take a bit more care about rounding.
3017 (timer-relative-time, timer-inc-time): New optional arg psecs.
3018 (timer-set-time-with-usecs): Set psecs to 0.
3019 (timer--activate): Check psecs component, too.
3020
3021 * proced.el (proced-time-lessp): Support ps-resolution stamps.
3022
3023 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
3024
3025 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
3026 Move the non-essential binding to the post/pre-command-hook where it is
3027 more obviously correct.
3028
3029 * subr.el (read-passwd): Don't use a history at all.
3030 * savehist.el (savehist-save): Remove password saved accidentally
3031 because of the above bug.
3032
3033 2012-06-22 Bastien Guerry <bzg@gnu.org>
3034
3035 * files.el (toggle-read-only): Display a message telling whether
3036 the buffer is read-only or not (bug#11726).
3037
3038 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
3039
3040 * emacs-lisp/gv.el: New file.
3041 * subr.el (push, pop): Extend to generalized variables.
3042 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
3043 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
3044 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
3045 gv-define-simple-setter, and gv-define-expander.
3046 Remove setf-methods defined in gv. Rename cl-setf -> setf.
3047 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
3048 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
3049 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
3050 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
3051 gv-letplace.
3052 (cl-defstruct): Don't define setf-method any more.
3053 * emacs-lisp/cl.el (flet): Don't autoload.
3054 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
3055 (define-setf-expander, defsetf, define-modify-macro)
3056 (cl-struct-setf-expander): Move from cl-lib.el.
3057 * emacs-lisp/syntax.el:
3058 * emacs-lisp/ewoc.el:
3059 * emacs-lisp/smie.el:
3060 * emacs-lisp/cconv.el:
3061 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
3062 (timer--time): Use gv-define-simple-setter.
3063 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
3064 to avoid coding-system problems in subr.el. Adjust all users.
3065 (macroexp--maxsize, macroexp-small-p): New functions.
3066 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
3067 * scroll-bar.el (scroll-bar-mode):
3068 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
3069 (normal-erase-is-backspace-mode): Don't use the `eq' place.
3070 * winner.el (winner-configuration, winner-make-point-alist)
3071 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
3072 * files.el (locate-file-completion-table): Avoid list*.
3073
3074 2012-06-22 Chong Yidong <cyd@gnu.org>
3075
3076 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
3077 (dired-create-files): Doc fix (Bug#11329).
3078 (dired-do-copy): Doc fix (Bug#11334).
3079 (dired-mark-read-string): Doc fix (Bug#11553).
3080
3081 * dired.el (dired-recursive-copies, dired-recursive-deletes):
3082 Doc fix (Bug#11326).
3083 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
3084 (dired-dwim-target): Doc fix.
3085
3086 * wdired.el (wdired-mode): Doc fix.
3087
3088 2012-06-22 Glenn Morris <rgm@gnu.org>
3089
3090 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
3091 (pcmpl-rpm-cache-stamp-file): New constant.
3092 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
3093 (pcmpl-rpm-packages): Optionally cache list of packages.
3094
3095 * pcmpl-rpm.el (pcmpl-rpm): New group.
3096 (pcmpl-rpm-query-options): New option.
3097 (pcmpl-rpm-packages): No need to inline it.
3098 Use pcmpl-rpm-query-options.
3099
3100 * calendar/calendar.el (calendar-in-read-only-buffer):
3101 Avoid some needless mode changes.
3102
3103 2012-06-21 Chong Yidong <cyd@gnu.org>
3104
3105 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
3106 (desktop-path): Remove . from the default value (Bug#10977).
3107 (desktop-read): Use user-emacs-directory if desktop-path is nil.
3108
3109 2012-06-20 Chong Yidong <cyd@gnu.org>
3110
3111 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
3112
3113 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
3114
3115 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
3116 (bug#11201).
3117
3118 2012-06-20 Chong Yidong <cyd@gnu.org>
3119
3120 * term.el (term-window-width): Handle the case of a missing right
3121 fringe (Bug#8837).
3122 (term-check-size): Use window-text-height (Bug#5445).
3123 (term-mode): Use define-derived-mode. Minor cleanups.
3124 Set font-lock-defaults (Bug#7692).
3125 (term-move-columns, term-insert-char, term-emulate-terminal)
3126 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
3127
3128 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
3129
3130 * net/ange-ftp.el (ange-ftp-get-passwd):
3131 Bind `enable-recursive-minibuffers'.
3132 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
3133
3134 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
3135
3136 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
3137
3138 2012-06-19 Glenn Morris <rgm@gnu.org>
3139
3140 * progmodes/python.el (python-mode): Derive from prog-mode.
3141
3142 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
3143
3144 * emulation/edt.el (edt-default-menu-bar-update-buffers)
3145 (edt-user-menu-bar-update-buffers): New functions.
3146 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
3147
3148 2012-06-19 Chong Yidong <cyd@gnu.org>
3149
3150 * subr.el (with-selected-window): Preserve the selected window's
3151 terminal's top-frame (Bug#4702).
3152
3153 * window.el (save-selected-window): Likewise.
3154
3155 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3156
3157 * progmodes/python.el (python-rx-constituents): Move backquote.
3158 (python-skeleton-define, python-define-auxiliary-skeleton):
3159 Use `declare'.
3160
3161 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
3162
3163 * minibuffer.el (read-file-name-default): Revert the patch from
3164 2012-06-17.
3165
3166 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3167
3168 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
3169 (pcase--u1, pcase--q1): Don't use apply-partially.
3170
3171 2012-06-18 Glenn Morris <rgm@gnu.org>
3172
3173 * progmodes/python.el (python-proc, python-buffer)
3174 (python-send-receive, python-send-string): Fix obsolete versions.
3175
3176 2012-06-18 Martin Rudalics <rudalics@gmx.at>
3177
3178 * window.el (special-display-p): Completely remove stringp
3179 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
3180
3181 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
3182
3183 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
3184
3185 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
3186
3187 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
3188 * net/tramp-sh.el (tramp-maybe-open-connection):
3189 Throw if `non-essential' is non-nil.
3190
3191 2012-06-17 Martin Rudalics <rudalics@gmx.at>
3192
3193 * window.el (special-display-p): Signal an error if BUFFER-NAME
3194 is not a string (Bug#11713).
3195
3196 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
3197
3198 * progmodes/python.el (python-info-beginning-of-backslash):
3199 Rename from python-info-beginning-of-backlash, as a spelling fix.
3200
3201 2012-06-17 Chong Yidong <cyd@gnu.org>
3202
3203 * term.el (term-emulate-terminal): If term-check-size is called,
3204 move point to the process mark without resetting point (Bug#4635).
3205
3206 2012-06-17 Glenn Morris <rgm@gnu.org>
3207
3208 * international/mule-cmds.el (mule-menu-keymap)
3209 (set-language-environment, set-locale-environment): Doc tweaks.
3210
3211 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
3212
3213 * cus-face.el (custom-face-attributes): Add wave-style underline
3214 attribute.
3215 * faces.el (set-face-attribute): Update docstring to describe
3216 wave-style underline attribute.
3217
3218 2012-06-16 Chong Yidong <cyd@gnu.org>
3219
3220 * term/xterm.el (terminal-init-xterm): Discard input before
3221 querying background mode (Bug#10959).
3222
3223 2012-06-16 Stefan Merten <smerten@oekonux.de>
3224
3225 * textmodes/rst.el: Added and corrected some comments.
3226 (rst-re-alist-def): Improve symbol syntax.
3227 (rst-mode-syntax-table): Correct syntax entries.
3228 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
3229 (rst-official-version, rst-official-cvs-rev): Update version
3230 information.
3231
3232 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
3233
3234 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
3235 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
3236
3237 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
3238
3239 * progmodes/python.el: New python.el merge.
3240 (python-guess-indent): Obsolete var.
3241 (python-indent-guess-indent-offset): New defcustom.
3242 (python-indent): Obsolete var.
3243 (python-indent-offset): New defcustom.
3244 (python-python-command, python-jython-command): Delete var.
3245 (python-shell-interpreter): New defcustom.
3246 (python-pdbtrack-do-tracking-p): Delete var.
3247 (python-pdbtrack-activate): New defcustom.
3248 (python-use-skeletons): Obsolete var.
3249 (python-skeleton-autoinsert): New defcustom.
3250 (inferior-python-filter-regexp, python-continuation-offset)
3251 (python-honour-comment-indentation, python-indent-string-contents)
3252 (python-jython-packages, python-mode-hook)
3253 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
3254 (python-shell-prompt-alist)
3255 (python-source-modes): Delete defcustoms.
3256 (python-check-buffer-name, python-eldoc-setup-code)
3257 (python-eldoc-string-code, python-ffap-setup-code)
3258 (python-ffap-string-code, python-fill-comment-function)
3259 (python-fill-decorator-function, python-fill-paren-function)
3260 (python-fill-string-function, python-imenu-include-defun-type)
3261 (python-imenu-make-tree, python-imenu-subtree-root-label)
3262 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
3263 (python-shell-compilation-regexp-alist)
3264 (python-shell-completion-module-string-code)
3265 (python-shell-completion-pdb-string-code)
3266 (python-shell-completion-setup-code)
3267 (python-shell-completion-string-code)
3268 (python-shell-enable-font-lock, python-shell-exec-path)
3269 (python-shell-extra-pythonpaths)
3270 (python-shell-internal-buffer-name, python-shell-interpreter-args)
3271 (python-shell-process-environment)
3272 (python-shell-prompt-block-regexp)
3273 (python-shell-prompt-output-regexp)
3274 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
3275 (python-shell-send-setup-max-wait, python-shell-setup-codes)
3276 (python-shell-virtualenv-path): New defcustoms.
3277 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
3278 (inferior-python-mode-syntax-table, python--prompt-regexp)
3279 (python-buffer, python-command python-python-command)
3280 (python-default-template, python-imports, python-indent-index)
3281 (python-indent-list, python-indent-list-length)
3282 (python-mode-running, python-pdbtrack-is-tracking-p)
3283 (python-preoutput-continuation, python-preoutput-leftover)
3284 (python-preoutput-result, python-preoutput-skip-next-prompt)
3285 (python-prev-dir/file, python-recursing)
3286 (python-saved-check-command, python-version-checked)
3287 (python-which-func-length-limit)
3288 (view-return-to-alist): Delete vars.
3289 (python-check-custom-command, python-dotty-syntax-table)
3290 (python-imenu-index-alist, python-indent-current-level)
3291 (python-indent-dedenters, python-indent-levels)
3292 (python-nav-beginning-of-defun-regexp)
3293 (python-nav-list-defun-positions-cache)
3294 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
3295 (python-shell-internal-buffer)
3296 (python-skeleton-available): New vars.
3297 (def-python-skeleton): Delete macro.
3298 (python-skeleton-define): New macro.
3299 (python-define-auxiliary-skeleton, python-rx): New macros.
3300 (python-insert-class): Delete command.
3301 (python-skeleton-class): New command.
3302 (python-insert-def): Delete command.
3303 (python-skeleton-def): New command.
3304 (python-insert-for): Delete command.
3305 (python-skeleton-for): New command.
3306 (python-insert-if): Delete command.
3307 (python-skeleton-if): New command.
3308 (python-insert-try/except, python-insert-try/finally): Delete commands.
3309 (python-skeleton-try): New command.
3310 (python-insert-while): Delete command.
3311 (python-skeleton-while): New command.
3312 (python-backspace): Delete command.
3313 (python-indent-dedent-line-backspace): New command.
3314 (python-electric-colon): Delete command.
3315 (python-indent-electric-colon): New command.
3316 (python-guess-indent): Delete command.
3317 (python-indent-guess-indent-offset): New command.
3318 (python-shift-left): Delete command.
3319 (python-indent-shift-left): New command.
3320 (python-shift-right): Delete command.
3321 (python-indent-shift-right): New command.
3322 (python-find-function): Delete command.
3323 (python-nav-jump-to-defun): New command.
3324 (python-next-statement): Delete command.
3325 (python-nav-forward-sentence): New command.
3326 (python-previous-statement): Delete command.
3327 (python-nav-backward-sentence): New command.
3328 (python-fill-paragraph): Delete command.
3329 (python-fill-paragraph-function): New command.
3330 (python-send-buffer): Delete command.
3331 (python-shell-send-buffer): New command.
3332 (python-send-defun): Delete command.
3333 (python-shell-send-defun): New command.
3334 (python-send-region, python-send-region-and-go): Delete commands.
3335 (python-shell-send-region)
3336 (python-shell-switch-to-shell): New commands.
3337 (python-send-string): Delete command.
3338 (python-shell-send-string): New command.
3339 (python-switch-to-python): Delete command.
3340 (python-shell-switch-to-shell): New command.
3341 (python-describe-symbol): Delete command.
3342 (python-eldoc-at-point): New command.
3343 (python--set-prompt-regexp, python-args-to-list)
3344 (python-after-info-look, python-check-version)
3345 (python-check-comint-prompt, python-find-imports)
3346 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
3347 (python-unload-function, python-expand-template)
3348 (python-maybe-jython, python-preoutput-filter)
3349 (python-pdbtrack-get-source-buffer)
3350 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
3351 (python-pdbtrack-toggle-stack-tracking)
3352 (python-pdbtrack-track-stack-file, python-initial-text)
3353 (python-first-word, python-comment-line-p, python-send-command)
3354 (python-setup-brm, python-sentinel, python-set-proc)
3355 (python-skip-out, python-input-filter, python-outdent-p)
3356 (python-outline-level, python-backslash-continuation-line-p)
3357 (python-end-of-block, python-end-of-statement, python-mark-block)
3358 (python-beginning-of-block, python-beginning-of-statement)
3359 (python-blank-line-p, python-beginning-of-string)
3360 (python-open-block-statement-p): Delete functions.
3361 (python-indent-line, python-indent-line-1): Delete functions.
3362 (python-indent-line): New function.
3363 (python-indentation-levels): Delete function.
3364 (python-indent-calculate-levels): New function.
3365 (python-proc): Delete function.
3366 (python-shell-get-process): New function.
3367 (python-send-receive): Delete function.
3368 (python-shell-send-string-no-output): New function.
3369 (python-module-path): Delete function.
3370 (python-ffap-module-path): New function.
3371 (python-completion-at-point)
3372 (python-symbol-completions): Delete functions.
3373 (python-completion-complete-at-point): New function.
3374 (python-load-file): Delete function.
3375 (python-shell-send-file): New function.
3376 (python-calculate-indentation): Delete function.
3377 (python-indent-calculate-indentation): New function.
3378 (python-skip-comments/blanks): Delete function.
3379 (python-util-forward-comment): New function.
3380 (python-continuation-line-p): Delete function.
3381 (python-info-continuation-line-p): New function.
3382 (python-which-func, python-current-defun): Delete function.
3383 (python-info-current-defun): New function.
3384 (python-beginning-of-defun): Delete function.
3385 (python-nav-beginning-of-defun): New function.
3386 (python-close-block-statement-p)
3387 (python-block-end-p): Delete function.
3388 (python-info-closing-block): New function.
3389 (python-comint-output-filter-function)
3390 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
3391 (python-fill-comment, python-fill-decorator, python-fill-paren)
3392 (python-fill-string, python-imenu-make-element-tree)
3393 (python-imenu-make-tree, python-imenu-tree-assoc)
3394 (python-indent-context, python-indent-dedent-line)
3395 (python-indent-line-function)
3396 (python-indent-post-self-insert-function)
3397 (python-indent-toggle-levels)
3398 (python-info-assignment-continuation-line-p)
3399 (python-info-beginning-of-backlash)
3400 (python-info-block-continuation-line-p)
3401 (python-info-closing-block-message)
3402 (python-info-line-ends-backslash-p)
3403 (python-info-looking-at-beginning-of-defun)
3404 (python-info-ppss-context, python-info-ppss-context-type)
3405 (python-nav-list-defun-positions, python-nav-read-defun)
3406 (python-nav-sentence-end, python-nav-sentence-start)
3407 (python-pdbtrack-comint-output-filter-function)
3408 (python-pdbtrack-set-tracked-buffer)
3409 (python-shell-calculate-exec-path)
3410 (python-shell-calculate-process-environment)
3411 (python-shell-completion--do-completion-at-point)
3412 (python-shell-completion--get-completions)
3413 (python-shell-completion-complete-at-point)
3414 (python-shell-completion-complete-or-indent)
3415 (python-shell-get-or-create-process)
3416 (python-shell-get-process-name)
3417 (python-shell-internal-get-or-create-process)
3418 (python-shell-internal-get-process-name)
3419 (python-shell-internal-send-string, python-shell-make-comint)
3420 (python-shell-parse-command, python-shell-send-setup-code)
3421 (python-skeleton-add-menu-items)
3422 (python-util-clone-local-variables, python-util-position)
3423 (run-python-internal, python-indentation-levels)
3424 (python-nav-beginning-of-defun)
3425 (python-completion-complete-at-point): New functions.
3426 (run-python): Change arguments. New API requirements.
3427
3428 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
3429
3430 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
3431 (bug#11649).
3432
3433 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
3434 (macroexp--expand-all): Use it.
3435
3436 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
3437 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
3438 Use `cl-function' instead.
3439
3440 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
3441
3442 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
3443 Suggested by Stefan Monnier while discussing bug#11657.
3444
3445 2012-06-14 Sam Steingold <sds@gnu.org>
3446
3447 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
3448
3449 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
3450
3451 * play/doctor.el (doctor-doc): Remove parameter and use
3452 doctor-sent instead of sent.
3453 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
3454
3455 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
3456
3457 * files.el: Require cl-lib.
3458 (file-name-non-special): Replace case -> cl-case.
3459
3460 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
3461
3462 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
3463 mapping from #' to function*.
3464
3465 2012-06-13 Chong Yidong <cyd@gnu.org>
3466
3467 * mouse.el (mouse-drag-track): Do not set the mark if the user
3468 releases the mouse without selecting anything (Bug#11588).
3469
3470 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
3471
3472 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
3473 as well (bug#11646).
3474
3475 * loadup.el: Count byte-code functions as well.
3476
3477 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
3478 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
3479
3480 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
3481 (bug#11649). Add cl-defun and cl-defmacro.
3482
3483 2012-06-13 Drew Adams <drew.adams@oracle.com>
3484
3485 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
3486 Fix last change.
3487
3488 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
3489
3490 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
3491 Otherwise, it blocks in batch mode.
3492
3493 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
3494
3495 * help-mode.el (bookmark-make-record-default): Declare.
3496
3497 2012-06-13 Chong Yidong <cyd@gnu.org>
3498
3499 * emacs-lisp/package.el (list-packages): Compute a list of
3500 packages that are newly-available since the last list-packages
3501 invocation.
3502 (package-menu--new-package-list): New var.
3503 (package-menu--generate, package-menu--print-info)
3504 (package-menu--status-predicate, package-menu-mark-install):
3505 Handle new status label "new".
3506
3507 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
3508
3509 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
3510 conversion to backquotes.
3511
3512 2012-06-12 Chong Yidong <cyd@gnu.org>
3513
3514 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
3515 Rename from gud-inhibit-global-bindings.
3516
3517 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
3518
3519 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
3520 hook from nxml-glyph-set-hook.
3521
3522 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
3523 declaration.
3524
3525 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
3526
3527 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
3528 Convert to defcustom.
3529
3530 2012-06-12 Drew Adams <drew.adams@oracle.com>
3531
3532 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
3533 New functions.
3534 (help-mode): Use them.
3535
3536 2012-06-11 Glenn Morris <rgm@gnu.org>
3537
3538 * progmodes/fortran.el (fortran-font-lock-keywords-3):
3539 Use preprocessor face for directives.
3540 (fortran-directive-re): Doc fix.
3541
3542 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3543
3544 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
3545 conversion to backquotes (bug#11652).
3546
3547 Fix compiler-expansion of CL's cXXr functions (bug#11673).
3548 * emacs-lisp/cl-lib.el (cl--defalias): New function.
3549 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
3550 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
3551 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
3552 (cl-ninth, cl-tenth): Mark them as inlinable.
3553 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
3554 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
3555 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
3556 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
3557 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
3558 (cl-list*, cl-adjoin): Don't put an autoload manually.
3559 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
3560 (cl--compiler-macro-list*): Add autoload cookie.
3561 (cl--compiler-macro-cXXr): New function.
3562
3563 * help-fns.el (help-fns--compiler-macro): New function extracted from
3564 describe-function-1; follow aliases and use `compiler-macro' property.
3565 (describe-function-1): Use it.
3566
3567 2012-06-11 Chong Yidong <cyd@gnu.org>
3568
3569 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
3570 is uninstalled, if imagemagick is installed.
3571
3572 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3573
3574 * emacs-lisp/cl-lib.el: Use lexical-binding.
3575 (cl-map-extents, cl-maclisp-member): Remove.
3576 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
3577 (cl--set-substring, cl--block-wrapper, cl--block-throw)
3578 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
3579 * emacs-lisp/cl-extra.el: Use lexical-binding.
3580 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
3581 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
3582 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
3583 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
3584 * emacs-lisp/cl-seq.el: Use lexical-binding.
3585 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
3586 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
3587 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
3588 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
3589 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
3590 CL's internals.
3591
3592 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
3593
3594 Sync with Tramp 2.2.6-pre.
3595
3596 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
3597 `print-length' and `print-level' to nil, in order to avoid
3598 truncation. Reported by Christopher Schmidt
3599 <christopher@ristopher.com>.
3600
3601 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
3602
3603 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
3604 New defmacro.
3605 (tramp-compat-copy-directory): Add optional argument
3606 COPY-CONTENTS. It is not handled yet.
3607
3608 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
3609 (tramp-ftp-file-name-p): Simplify.
3610
3611 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
3612 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
3613 connection vector.
3614
3615 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
3616 (tramp-methods): Do not use `tramp-password-end-of-line'.
3617 (tramp-completion-function-alist-putty): Handle UNIX case.
3618 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
3619 (tramp-do-file-attributes-with-stat)
3620 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
3621 gid as real numbers. They could run out of integer range on cygwin.
3622 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
3623 (tramp-sh-handle-expand-file-name): Handle hops.
3624 (tramp-open-connection-setup-interactive-shell):
3625 Use `tramp-cleanup'. Move check for busyboxes ...
3626 (tramp-find-shell): ... here. Simplify implementation.
3627 Set "remote-shell" property also for alternative shells.
3628 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
3629 If failing, a regular file would be written otherwise.
3630 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
3631 (tramp-find-inline-encoding): Cache the coding commands in the
3632 process cache. Apply test command on the remote side, if defined.
3633 (tramp-find-inline-compress): Cache the compress commands in the
3634 process cache.
3635 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
3636 when requested. Handle hops.
3637 (tramp-current-connection): New defvar.
3638 (tramp-maybe-open-connection): Use `tramp-cleanup'.
3639 Throw `suppress', if there was a failed connection shortly before.
3640 Handle user interrupt. (Bug#10187)
3641 (tramp-get-inline-compress, tramp-get-inline-coding):
3642 Read connection properties from the process cache.
3643
3644 * net/tramp-smb.el (tramp-smb-server-version)
3645 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
3646 New defconsts.
3647 (tramp-smb-prompt): Extend for powershell prompt.
3648 (tramp-smb-file-name-handler-alist): Add handlers for
3649 `process-file', `shell-command' and `start-file-process'.
3650 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
3651 (tramp-smb-winexe-shell-command-switch): New defcustoms.
3652 (tramp-smb-file-name-p): Simplify.
3653 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
3654 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
3655 (tramp-smb-shell-quote-argument): New defuns.
3656 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
3657 Implement using "tar". By this, time-stamps are preserved.
3658 (tramp-smb-handle-copy-file): Handle also the case of directories.
3659 (tramp-smb-do-file-attributes-with-stat)
3660 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
3661 Use `tramp-get-connection-buffer').
3662 (tramp-smb-handle-rename-file): Use "rename", when source and
3663 target are on the same share.
3664 (tramp-smb-maybe-open-connection): Handle wrong passwords.
3665 Use `tramp-smb-server-version'.
3666 (tramp-smb-wait-for-output): Remove prompt.
3667
3668 * net/tramp.el (top): Require 'cl.
3669 (tramp-methods, tramp-rsh-end-of-line):
3670 Remove `tramp-password-end-of-line' from docstring.
3671 (tramp-save-ad-hoc-proxies): New defcustom.
3672 (tramp-completion-function-alist): Adapt docstring.
3673 (tramp-default-password-end-of-line): Remove defcustom.
3674 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
3675 (tramp-user-regexp, tramp-file-name-regexp-unified)
3676 (tramp-file-name-regexp-url): Extend regexp by hop separator.
3677 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
3678 (tramp-remote-file-name-spec-regexp): New defconst.
3679 (tramp-file-name-structure): Extend structure for hops.
3680 (tramp-get-method-parameter): Move up.
3681 (tramp-file-name-p, tramp-dissect-file-name)
3682 (with-parsed-tramp-file-name): Handle hops.
3683 (tramp-file-name-hop): New defun.
3684 (tramp-make-tramp-file-name): New optional arg HOP.
3685 (tramp-message-show-progress-reporter-message): New defvar.
3686 (tramp-with-progress-reporter): Use it. We cannot use
3687 `tramp-message-show-message' here, because this suppresses also
3688 error buffers.
3689 (tramp-error-with-buffer): Suppress buffer view, if
3690 `tramp-message-show-message' is nil.
3691 Use `tramp-get-connection-buffer'.
3692 (tramp-cleanup): New defun.
3693 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
3694 (tramp-file-name-handler): If `debug-on-error' is set, propagate
3695 an error unchanged.
3696 (tramp-completion-handle-file-name-all-completions): Handle hops.
3697 Fix an error when called from ido.
3698 (tramp-completion-dissect-file-name): Use better local variable
3699 name. Add hop to the vector.
3700 (tramp-handle-insert-file-contents): Use progress-reporter for the
3701 whole scenario.
3702 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
3703 to `t'.
3704 (tramp-check-for-regexp): Simplify search.
3705 (tramp-enter-password): Remove it. Move implementation ...
3706 (tramp-action-password): ... here.
3707 (tramp-mode-string-to-int, tramp-local-host-p)
3708 (tramp-make-tramp-temp-file, tramp-read-passwd)
3709 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
3710 Set tramp-autoload cookie.
3711
3712 * net/trampver.el: Update release number.
3713
3714 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3715 Michael Albinus <michael.albinus@gmx.de>
3716
3717 * net/tramp.el (tramp-set-completion-function): Fix docstring.
3718 (tramp-parse-group, tramp-parse-file)
3719 (tramp-parse-shostkeys-sknownhosts): New defuns.
3720 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
3721 (tramp-parse-shosts-group, tramp-parse-sconfig)
3722 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
3723 (tramp-parse-sknownhosts, tramp-parse-hosts)
3724 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
3725 Use them.
3726 (tramp-parse-passwd-group, tramp-parse-netrc-group)
3727 (tramp-parse-putty-group): Don't narrow.
3728 (tramp-parse-putty): Make a loop.
3729 (tramp-file-name-handler): Catch the `suppress' signal.
3730
3731 2012-06-11 Chong Yidong <cyd@gnu.org>
3732
3733 * image.el (imagemagick-register-types): Put the ImageMagick entry
3734 at the end of image-type-file-name-regexps.
3735
3736 2012-06-11 Johan Bockgård <bojohan@gnu.org>
3737
3738 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
3739 (pcase, pcase-let*, pcase-dolist): Use them.
3740
3741 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
3742
3743 * emacs-lisp/pcase.el (pcase--let*): New function.
3744 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
3745 (pcase--expand): Use macroexp-let².
3746
3747 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
3748
3749 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
3750 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
3751 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
3752 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
3753 * emacs-lisp/derived.el: Use pcase instead of `cl'.
3754 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
3755
3756 2012-06-10 Glenn Morris <rgm@gnu.org>
3757
3758 * mail/rmail.el (rmail-yank-current-message): Leave point at
3759 correct position. (Bug#11660)
3760
3761 2012-06-10 Chong Yidong <cyd@gnu.org>
3762
3763 * allout-widgets.el: Fix code header.
3764
3765 2012-06-10 Chong Yidong <cyd@gnu.org>
3766
3767 * cus-edit.el (customize-changed-options-previous-release):
3768 Bump to 24.1.
3769
3770 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
3771
3772 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
3773
3774 2012-06-09 Chong Yidong <cyd@gnu.org>
3775
3776 * ebuff-menu.el (electric-buffer-list): Preserve header line.
3777
3778 2012-06-09 Martin Rudalics <rudalics@gmx.at>
3779
3780 * window.el (special-display-popup-frame): Don't use
3781 window--display-buffer (Bug#11651).
3782
3783 2012-06-09 Eli Zaretskii <eliz@gnu.org>
3784
3785 Fix parallel builds: make sure loaddefs.el is not being written
3786 while Lisp files are compiled.
3787 (compile): Don't depend on 'mh-autoloads'.
3788 (compile-CMD, compile-SH): Depend on 'autoloads'.
3789 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
3790
3791 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
3792
3793 2012-06-09 Chong Yidong <cyd@gnu.org>
3794
3795 * face-remap.el (face-remap-add-relative, face-remap-set-base)
3796 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
3797 Doc fixes (Bug#11225).
3798
3799 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
3800
3801 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
3802 a function if there's a clear indication that it has a compiler-macro.
3803 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
3804 (macro-declarations-alist): Add arglist to declaration functions.
3805 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
3806 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
3807 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
3808 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
3809 Also add autoload to find the compiler macro.
3810 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
3811 (cl--compiler-macro-member, cl--compiler-macro-assoc)
3812 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
3813 (cl--compiler-macro-get): New functions, replacing calls to
3814 cl-define-compiler-macro.
3815 (cl-typep) [compiler-macro]: Use macroexp-let².
3816
3817 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
3818
3819 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
3820 string properly, fixes Bug#11473.
3821
3822 2012-06-08 Chong Yidong <cyd@gnu.org>
3823
3824 * faces.el (set-face-attribute): Doc fix.
3825 (modify-face): Don't use :bold and :italic.
3826 (error, warning, success): Tweak definitions.
3827
3828 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
3829 (custom-modified, custom-set, custom-changed, custom-themed)
3830 (custom-saved, custom-button, custom-button-mouse)
3831 (custom-button-pressed, custom-state, custom-comment-tag)
3832 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
3833 (custom-group-subtitle): Use new-style face specs.
3834 (custom-invalid-face, custom-rogue-face, custom-modified-face)
3835 (custom-set-face, custom-changed-face, custom-saved-face)
3836 (custom-button-face, custom-button-pressed-face)
3837 (custom-documentation-face, custom-state-face)
3838 (custom-comment-face, custom-comment-tag-face)
3839 (custom-variable-tag-face, custom-variable-button-face)
3840 (custom-face-tag-face, custom-group-tag-face-1)
3841 (custom-group-tag-face): Remove obsolete face alias.
3842
3843 * epa.el (epa-validity-high, epa-validity-medium)
3844 (epa-validity-low, epa-mark, epa-field-name, epa-string)
3845 (epa-field-name, epa-field-body):
3846 * font-lock.el (font-lock-comment-face, font-lock-string-face)
3847 (font-lock-keyword-face, font-lock-builtin-face)
3848 (font-lock-function-name-face, font-lock-variable-name-face)
3849 (font-lock-type-face, font-lock-constant-face):
3850 * ido.el (ido-first-match, ido-only-match, ido-subdir)
3851 (ido-virtual, ido-indicator, ido-incomplete-regexp):
3852 * speedbar.el (speedbar-button-face, speedbar-file-face)
3853 (speedbar-directory-face, speedbar-tag-face)
3854 (speedbar-selected-face, speedbar-highlight-face)
3855 (speedbar-separator-face):
3856 * whitespace.el (whitespace-newline, whitespace-space)
3857 (whitespace-hspace, whitespace-tab, whitespace-trailing)
3858 (whitespace-line, whitespace-space-before-tab)
3859 (whitespace-space-after-tab, whitespace-indentation)
3860 (whitespace-empty):
3861 * emulation/cua-base.el (cua-global-mark):
3862 * eshell/em-prompt.el (eshell-prompt):
3863 * net/newst-plainview.el (newsticker-new-item-face)
3864 (newsticker-old-item-face, newsticker-immortal-item-face)
3865 (newsticker-obsolete-item-face, newsticker-date-face)
3866 (newsticker-statistics-face, newsticker-default-face):
3867 * net/newst-reader.el (newsticker-feed-face)
3868 (newsticker-extra-face, newsticker-enclosure-face):
3869 * net/newst-treeview.el (newsticker-treeview-face)
3870 (newsticker-treeview-new-face, newsticker-treeview-old-face)
3871 (newsticker-treeview-immortal-face)
3872 (newsticker-treeview-obsolete-face)
3873 (newsticker-treeview-selection-face):
3874 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
3875 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
3876 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
3877 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
3878 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
3879 (nxml-outline-active-indicator, nxml-outline-ellipsis):
3880 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
3881 (mpuz-text):
3882 * progmodes/vera-mode.el (vera-font-lock-number)
3883 (vera-font-lock-function, vera-font-lock-interface):
3884 * textmodes/table.el (table-cell): Use new-style face specs, and
3885 don't use the old :bold and :italic attributes.
3886
3887 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
3888 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
3889 (ebrowse-member-class, ebrowse-progress): Likewise.
3890 (ebrowse-tree-mark-face, ebrowse-root-class-face)
3891 (ebrowse-file-name-face, ebrowse-default-face)
3892 (ebrowse-member-attribute-face, ebrowse-member-class-face)
3893 (ebrowse-progress-face): Remove obsolete faces.
3894
3895 * progmodes/flymake.el (flymake-errline, flymake-warnline):
3896 Inherit from error and warning faces respectively.
3897
3898 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
3899 Likewise.
3900 (flyspell-incorrect-face, flyspell-duplicate-face):
3901 Remove obsolete aliases.
3902
3903 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
3904
3905 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
3906 Avoid infloop.
3907
3908 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3909
3910 * startup.el (argv, argi): Make lexically scoped.
3911 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
3912 * emacs-lisp/cl-macs.el: Use lexical-binding.
3913 Rename cl-bind-* to cl--bind-*.
3914 * files.el: Don't require `cl' since it doesn't use it.
3915 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
3916
3917 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
3918
3919 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
3920 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
3921 instead of calling external sort utility.
3922 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
3923
3924 2012-06-08 Eli Zaretskii <eliz@gnu.org>
3925
3926 * descr-text.el (describe-char): Mention how to insert the
3927 character, if the current input method doesn't support it.
3928 See the discussion in this thread for the details:
3929 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
3930
3931 2012-06-08 Sam Steingold <sds@gnu.org>
3932
3933 * bindings.el (global-map): Bind XF86Forward to next-buffer and
3934 XF86Back to previous-buffer.
3935 (minibuffer-local-map): Bind them to next-history-element and
3936 previous-history-element respectively.
3937 * help-mode.el (help-mode-map): Bind them to help-go-forward and
3938 help-go-back respectively.
3939 * info.el (Info-mode-map): Bind them to Info-history-forward and
3940 Info-history-back respectively.
3941 These are the keys next to Up on the ThinkPad keyboard.
3942
3943 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
3944
3945 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
3946 * emacs-lisp/cl-macs.el: Provide itself.
3947 (cl--labels-convert-cache): New var.
3948 (cl--labels-convert): New function.
3949 (cl-flet, cl-labels): New implementation with new semantics, relying on
3950 lexical-binding.
3951 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
3952 (cl-closure-vars, cl--function-convert-cache)
3953 (cl--function-convert): Move from cl-macs.el.
3954 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
3955 rename by removing the "cl-" prefix.
3956 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
3957
3958 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3959
3960 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
3961 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
3962 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
3963 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
3964 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
3965 (cl-hash-table-count): Add old compatibility aliases.
3966
3967 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
3968 Use macroexpand-all-environment instead.
3969 (cl--old-macroexpand): New var.
3970 (cl--sm-macroexpand): New function.
3971 (cl-symbol-macrolet): Use it during macro expansion.
3972 (cl--function-convert-cache): New var.
3973 (cl--function-convert): New function, extracted from
3974 cl-macroexpand-all.
3975 (cl-lexical-let): Use it.
3976
3977 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
3978 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
3979 (cl-member): Remove old alias.
3980
3981 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
3982 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
3983 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
3984 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
3985 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
3986 (cl-macroexpand-cmacs): Remove var.
3987 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
3988 Use macroexpand-all instead.
3989
3990 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
3991
3992 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
3993 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
3994 (macroexp-copyable-p): New functions and macros.
3995 * emacs-lisp/edebug.el (edebug-unwrap):
3996 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
3997 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
3998 (pcase--let*): Remove.
3999 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
4000 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
4001 macroexp-const-p instead.
4002 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
4003
4004 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
4005 instead of "cl-" for internal definitions. Use macroexp-const-p.
4006 (cl-old-bc-file-form): Remove var.
4007 (cl-const-exprs-p): Remove fun.
4008 (cl-labels, cl-macrolet): Use backquote.
4009 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
4010 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
4011 (cl-define-setf-expander): Rename from cl-define-setf-method.
4012 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
4013
4014 * international/mule-cmds.el: Don't require CL.
4015 (view-hello-file): Don't use `letf'.
4016
4017 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
4018
4019 * tmm.el (tmm-prompt): Use string-prefix-p.
4020 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
4021 (tmm-add-prompt): Use minibuffer-completion-help.
4022 (tmm-delete-map): Remove.
4023
4024 * subr.el (kbd): Make it its own function.
4025
4026 2012-06-07 Stefan Merten <smerten@oekonux.de>
4027
4028 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
4029 Silence compiler warnings. Fix versions.
4030 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
4031 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
4032 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
4033 (rst-package-emacs-version-alist): Correct Emacs version to
4034 represent major merge with upstream.
4035 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
4036
4037 2012-06-06 Glenn Morris <rgm@gnu.org>
4038
4039 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
4040 Only print environment variables if set.
4041
4042 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
4043
4044 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
4045 (macroexp--cons): Rename from maybe-cons.
4046 (macroexp--accumulate): Rename from macroexp-accumulate.
4047 (macroexp--all-forms): Rename from macroexpand-all-forms.
4048 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
4049 (macroexp--expand-all): Rename from macroexpand-all-1.
4050
4051 2012-06-06 Sam Steingold <sds@gnu.org>
4052
4053 * calendar/calendar.el (calendar-in-read-only-buffer):
4054 Call `special-mode' to enable the standard read-only keybindings.
4055
4056 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
4057
4058 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
4059 with "loading" messages (bug#11635).
4060
4061 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
4062
4063 * files.el (enable-remote-dir-locals): New option.
4064 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
4065
4066 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
4067 Ensure, that the temp directory is local.
4068
4069 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
4070 `temporary-file-directory'.
4071
4072 * progmodes/python.el (python-send-region): Ensure, that the
4073 temporary file is created also in the remote case.
4074
4075 2012-06-06 Glenn Morris <rgm@gnu.org>
4076
4077 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
4078 (vc-rcs-update-changelog): Use it.
4079
4080 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
4081
4082 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
4083 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
4084 (vc-sccs-diff): Replace use of the external vcdiff script.
4085
4086 2012-06-05 Glenn Morris <rgm@gnu.org>
4087
4088 * ledit.el: Move to obsolete/.
4089
4090 2012-06-05 Sam Steingold <sds@gnu.org>
4091
4092 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
4093 patch (Bug#11140).
4094
4095 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4096
4097 * emacs-lisp/cust-print.el: Move to obsolete.
4098
4099 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
4100 compiler-macro expansion.
4101
4102 Add native compiler-macro support.
4103 * emacs-lisp/macroexp.el (macroexpand-all-1):
4104 Support compiler-macros directly. Properly follow aliases and apply
4105 the compiler macros more thoroughly.
4106 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
4107 macroexpand now properly follows aliases.
4108 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
4109 (cl-compiler-macroexpand): Use new prop.
4110 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
4111
4112 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
4113
4114 2012-06-05 Martin Rudalics <rudalics@gmx.at>
4115
4116 * window.el (get-lru-window, get-mru-window, get-largest-window):
4117 New argument NOT-SELECTED to avoid picking the selected window.
4118 (window--display-buffer-1, window--display-buffer-2): Replace by
4119 new function window--display-buffer
4120 (display-buffer-same-window, display-buffer-reuse-window)
4121 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4122 Use window--display-buffer.
4123 (display-buffer-use-some-window): Remove temporary dedication
4124 hack by calling get-lru-window and get-largest-window with
4125 NOT-SELECTED argument non-nil. Call window--display-buffer.
4126
4127 2012-06-05 Glenn Morris <rgm@gnu.org>
4128
4129 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
4130 Replace external vcdiff script.
4131
4132 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
4133
4134 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
4135
4136 2012-06-04 Chong Yidong <cyd@gnu.org>
4137
4138 * image.el (imagemagick-types-inhibit): Revert last change.
4139 Add INFO and M.
4140 (imagemagick-enabled-types): Remove CIN and EPS*.
4141
4142 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
4143
4144 * emacs-lisp/cl-lib.el: Rename from cl.el.
4145 * emacs-lisp/cl.el: New compatibility file.
4146 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
4147 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
4148 to obey the "cl-" prefix.
4149 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
4150
4151 2012-06-03 Glenn Morris <rgm@gnu.org>
4152
4153 * emacs-lisp/authors.el (authors-aliases): Addition.
4154
4155 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
4156 Fix :version.
4157
4158 2012-06-03 Stefan Merten <smerten@oekonux.de>
4159
4160 * textmodes/rst.el: Add comments.
4161 (rst-transition, rst-adornment): New faces.
4162 (rst-adornment-faces-alist): Make default safe to reevaluate.
4163 Fixes
4164 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
4165 Improve customization tags.
4166 (rst-define-level-faces): Clarify meaning.
4167
4168 2012-06-03 Chong Yidong <cyd@gnu.org>
4169
4170 * progmodes/compile.el (compilation-mode-line-fail)
4171 (compilation-mode-line-run, compilation-mode-line-exit):
4172 New faces.
4173 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
4174
4175 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
4176
4177 * progmodes/which-func.el (which-func-update-ediff-windows):
4178 New function. Use it in ediff-select-hook (Bug#11478).
4179
4180 2012-06-03 Chong Yidong <cyd@gnu.org>
4181
4182 * bindings.el: Remove explicit help text from format-mode-line.
4183 It is now supplied by mode-line-default-help-echo.
4184 (mode-line-front-space, mode-line-end-spaces)
4185 (mode-line-misc-info): New variables.
4186 (mode-line-modes, mode-line-position): Move the default value to
4187 the variable definition.
4188 (mode-line-default-help-echo): New defcustom.
4189 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
4190 (mode-line-modified-help-echo): New functions.
4191 (mode-line-mule-info, mode-line-modified): Use them.
4192 (mode-line-eol-desc, propertized-buffer-identification):
4193 Consistency fixes for help text.
4194 (mode-line-coding-system-map): Allow using mouse-3 to invoke
4195 set-buffer-file-coding-system (Bug#289).
4196 (mode-line-mule-info-help-echo): Update help text.
4197
4198 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
4199
4200 * simple.el (execute-extended-command): Set real-this-command
4201 (bug#11506).
4202
4203 2012-06-02 Chong Yidong <cyd@gnu.org>
4204
4205 Remove incorrect uses of "modeline" in comments, docstrings, and
4206 function/variable names (Bug#10329).
4207
4208 * cus-edit.el (mode-line):
4209 * dframe.el (dframe-mouse-hscroll):
4210 * emacs-lisp/re-builder.el:
4211 * emacs-lisp/easy-mmode.el (define-minor-mode):
4212 * frame.el (set-frame-name):
4213 * help.el (lookup-minor-mode-from-indicator):
4214 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
4215 * progmodes/cc-cmds.el (c-toggle-auto-newline)
4216 (c-toggle-hungry-state):
4217 * progmodes/antlr-mode.el (antlr-language-alist):
4218 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
4219 * progmodes/vhdl-mode.el (vhdl-mode):
4220 * progmodes/which-func.el (which-func, which-func-cleanup-function):
4221 * term/ns-win.el (ns-face-at-pos):
4222 * term/sup-mouse.el (sup-mouse-report):
4223 * textmodes/flyspell.el (flyspell-mode-line-string):
4224 * textmodes/ispell.el (ispell-highlight-face):
4225 * textmodes/reftex-global.el:
4226 * vc/vc-arch.el (vc-arch-mode-line-string):
4227 * vc/vc-cvs.el (vc-cvs-mode-line-string):
4228 * vc/vc-git.el (vc-git-mode-line-string):
4229 * vc/vc-hooks.el (vc-display-status)
4230 (vc-default-mode-line-string):
4231 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
4232
4233 * ansi-color.el (ansi-color-faces-vector): Change default faces.
4234
4235 * dired.el (dired-sort-set-mode-line): Rename from
4236 dired-sort-set-modeline. All callers changed.
4237
4238 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
4239 eshell-status-in-modeline.
4240
4241 * foldout.el (foldout-mode-line-string): Rename from
4242 foldout-modeline-string. All callers changed.
4243 (foldout-update-mode-line): Rename from foldout-update-modeline.
4244
4245 * subr.el (redraw-modeline): Make into obsolete alias.
4246
4247 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
4248 timeclock-modeline-display. Make old name an alias.
4249 (timeclock-update-mode-line): Likewise. All callers changed.
4250 (timeclock-mode-line-display): No need to check before using
4251 add-hook.
4252 (timeclock-relative, timeclock-day-over-hook)
4253 (timeclock-use-elapsed, timeclock-mode-string)
4254 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
4255
4256 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
4257 crisp-mode-modeline-string.
4258
4259 * play/solitaire.el (solitaire-build-mode-line): Rename from
4260 solitaire-build-modeline. All callers changed.
4261
4262 * play/zone.el (zone-hiding-mode-line): Rename from
4263 zone-hiding-modeline. All callers changed.
4264 (zone): Remove unusued `modeline-hidden-level' property.
4265
4266 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
4267 xscheme-modeline-initialize. All callers changed.
4268
4269 * strokes.el (strokes-lighter): Rename from
4270 strokes-modeline-string.
4271
4272 * textmodes/sgml-mode.el (html-face-tag-alist)
4273 (html-tag-face-alist): Use mode-line face instead of obsolete
4274 alias modeline.
4275
4276 2012-06-02 Stefan Merten <smerten@oekonux.de>
4277
4278 * textmodes/rst.el: Always require `cl'.
4279 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
4280
4281 2012-06-02 Chong Yidong <cyd@gnu.org>
4282
4283 * image.el (imagemagick-enabled-types): Rename from
4284 imagemagick-types-enable. Add many more types.
4285 (imagemagick-types-inhibit): Change default to nil.
4286 (imagemagick-filter-types): Caller changed.
4287
4288 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
4289
4290 * emacs-lisp/cl-macs.el: Use backquotes.
4291 (cl-transform-function-property): Use eval-and-compile rather than
4292 abusing `require'.
4293 (defstruct): Use declare-function instead of with-no-warnings.
4294
4295 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
4296 (byte-compile-output-docform): Re-add the print-circle bindings.
4297 (byte-compile-fix-header): Use #$ just because it's shorter.
4298 (byte-compile-output-file-form): Remove defun/defmacro.
4299
4300 2012-06-01 Martin Rudalics <rudalics@gmx.at>
4301
4302 * simple.el (choose-completion): Remove now obsolete binding for
4303 owindow.
4304
4305 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
4306
4307 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
4308 in order to avoid "Stack overflow in regexp matcher".
4309
4310 2012-05-31 Glenn Morris <rgm@gnu.org>
4311
4312 * image.el: For clarity, call imagemagick-register-types at
4313 top-level, rather than relying on a custom :initialize.
4314 (imagemagick-types-enable): New option. (Bug#11557)
4315 (imagemagick-filter-types): New function. (Bug#7406)
4316 (imagemagick-register-types): Use imagemagick-filter-types.
4317 If disabling support, remove elements altogether rather
4318 than using an impossible regexp.
4319 (imagemagick-types-inhibit): Give it the default init function.
4320
4321 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
4324 Handle arbitrary file name lengths (Bug#11585).
4325
4326 2012-05-31 Martin Rudalics <rudalics@gmx.at>
4327
4328 * desktop.el (desktop-read): Clear previous and next buffers for
4329 all windows and bury *Messages* buffer (bug#11556).
4330
4331 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
4332
4333 Add `declare' for `defun'. Align `defmacro's with it.
4334 * emacs-lisp/easy-mmode.el (define-minor-mode)
4335 (define-globalized-minor-mode): Don't autoload the var definitions.
4336 * emacs-lisp/byte-run.el: Use lexical-binding.
4337 (defun-declarations-alist, macro-declarations-alist): New vars.
4338 (defmacro, defun): Use them.
4339 (make-obsolete, define-obsolete-function-alias)
4340 (make-obsolete-variable, define-obsolete-variable-alias):
4341 Use `declare'.
4342 (macro-declaration-function): Mark obsolete.
4343 * emacs-lisp/autoload.el: Use lexical-binding.
4344 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
4345
4346 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4347
4348 * textmodes/ispell.el (ispell-with-no-warnings):
4349 Define as a macro.
4350 (ispell-kill-ispell, ispell-change-dictionary):
4351 Use `called-interactively-p' for Emacs instead of obsolete
4352 `interactive-p'.
4353
4354 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4355
4356 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
4357 (macro-declaration-function): Move var from C code.
4358 (macro-declaration-function): Define function with defalias.
4359 * emacs-lisp/macroexp.el (macroexpand-all-1):
4360 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
4361 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
4362 defun/defmacro any more.
4363 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
4364 Provide fallback for unknown arglist.
4365 (byte-compile-arglist-warn): Change calling convention.
4366 (byte-compile-output-file-form): Move print-vars binding.
4367 (byte-compile-output-docform): Simplify accordingly.
4368 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
4369 (byte-compile-defmacro-declaration): Remove.
4370 (byte-compile-file-form-defmumble): Generalize to defalias.
4371 (byte-compile-output-as-comment): Return byte-positions.
4372 Simplify callers accordingly.
4373 (byte-compile-lambda): Use `assert'.
4374 (byte-compile-defun, byte-compile-defmacro): Remove.
4375 (byte-compile-file-form-defalias):
4376 Use byte-compile-file-form-defmumble.
4377 (byte-compile-defalias-warn): Remove.
4378
4379 2012-05-29 Stefan Merten <smerten@oekonux.de>
4380
4381 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
4382 possible. Fix authors. Improve comments. Improve loading of `cl'.
4383
4384 (rst-mode-abbrev-table): Merge definition.
4385 (rst-mode): Make sure `font-lock-defaults' is buffer local.
4386 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
4387
4388 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
4389
4390 * calendar/icalendar.el
4391 (icalendar-export-region): Export UID properly.
4392
4393 2012-05-29 Leo Liu <sdl.web@gmail.com>
4394 * calendar/icalendar.el (icalendar-import-format):
4395 Add `icalendar-import-format-uid' (Bug#11525).
4396 (icalendar-import-format-uid): New.
4397 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
4398 Export UID.
4399
4400 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
4401
4402 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
4403 different alternative patterns.
4404 (pcase-codegen): Be more careful to preserve identity.
4405 (pcase--u1): Don't forget to mark vars as used.
4406
4407 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
4408 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
4409 (byte-compile-from-buffer): ...rather than here.
4410
4411 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
4412 functions from byte-compile-function-environment.
4413
4414 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
4415
4416 * window.el (window-deletable-p): Avoid deleting the root window
4417 of a frame with an active minibuffer.
4418
4419 2012-05-29 Martin Rudalics <rudalics@gmx.at>
4420
4421 * simple.el (choose-completion): Use quit-window (Bug#11567).
4422
4423 2012-05-29 Chong Yidong <cyd@gnu.org>
4424
4425 * whitespace.el (whitespace-cleanup): Fix usage of
4426 whitespace-empty-at-bob-regexp (Bug#11492).
4427
4428 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4429
4430 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
4431 revert (Bug#11488).
4432
4433 2012-05-29 Juri Linkov <juri@jurta.org>
4434
4435 * isearch.el (isearch-mode-map): Bind `M-s _' to
4436 `isearch-toggle-symbol'. Bind `M-s c' to
4437 `isearch-toggle-case-fold'.
4438 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
4439 (isearch-forward): Add `M-s _' to the docstring.
4440 (isearch-forward-symbol, isearch-toggle-case-fold)
4441 (isearch-symbol-regexp): New functions. (Bug#11381)
4442
4443 2012-05-29 Juri Linkov <juri@jurta.org>
4444
4445 * isearch.el (isearch-word): Add docstring. (Bug#11381)
4446 (isearch-occur, isearch-search-and-update): If `isearch-word' is
4447 a function, call it to get the regexp.
4448 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
4449 property `isearch-message-prefix' instead of the string "word ".
4450 (isearch-search-fun-default): For the case of `isearch-word',
4451 return a lambda that calls re-search-forward/re-search-backward
4452 with a regexp returned by `word-search-regexp' or by the function
4453 in `isearch-word'.
4454
4455 2012-05-29 Juri Linkov <juri@jurta.org>
4456
4457 * isearch.el (isearch-search-fun-default): New function.
4458 (isearch-search-fun): Move default part to the new function
4459 `isearch-search-fun-default'.
4460 (isearch-search-fun-function): Set the default value to
4461 `isearch-search-fun-default'. (Bug#11381)
4462
4463 * comint.el (comint-history-isearch-end):
4464 Use `isearch-search-fun-default'.
4465 (comint-history-isearch-search): Use `isearch-search-fun-default'
4466 and remove spacial case for `isearch-word'.
4467 (comint-history-isearch-wrap): Remove spacial case for
4468 `isearch-word'.
4469
4470 * hexl.el (hexl-isearch-search-function):
4471 Use `isearch-search-fun-default'.
4472
4473 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
4474 Use `word-search-regexp' for `isearch-word'.
4475
4476 * misearch.el (multi-isearch-search-fun):
4477 Use `isearch-search-fun-default'.
4478
4479 * simple.el (minibuffer-history-isearch-search):
4480 Use `isearch-search-fun-default' and remove spacial case for
4481 `isearch-word'.
4482 (minibuffer-history-isearch-wrap): Remove spacial case for
4483 `isearch-word'.
4484
4485 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
4486 Remove spacial case for `isearch-word'.
4487 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
4488
4489 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4490
4491 Decrease XEmacs incompatibilities.
4492 * textmodes/flyspell.el (flyspell-check-pre-word-p):
4493 Use `string-match'.
4494 (flyspell-delete-region-overlays): Use alternative definition for
4495 XEmacs.
4496 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
4497 (flyspell-word): Use `process-kill-without-query' if XEmacs.
4498 (flyspell-mode-on): Use `interactive-p' if XEmacs.
4499 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
4500 `define-obsolete-face-alias' under XEmacs, but old method.
4501
4502 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
4503 `with-no-warnings' definition or Emacs alias.
4504 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
4505 (ispell-word): Do not use `region-p' if XEmacs.
4506
4507 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4508
4509 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
4510 Check for `ispell-dictionary-base-alist' instead of full
4511 `ispell-dictionary-alist'.
4512 (ispell-init-process): Show spellchecker when starting new Ispell
4513 process.
4514
4515 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4516
4517 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
4518 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
4519
4520 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
4521
4522 * version.el (motif-version-string, gtk-version-string)
4523 (ns-version-string): Declare.
4524
4525 2012-05-27 Juri Linkov <juri@jurta.org>
4526
4527 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
4528 after the `eval-defun-1' specialcaseing
4529 like in `edebug-eval-defun' (bug#10181).
4530
4531 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
4532 like in `eval-defun-1'.
4533
4534 2012-05-27 Eli Zaretskii <eliz@gnu.org>
4535
4536 * mail/sendmail.el (mail-yank-region):
4537 Recognize rmail-yank-current-message in addition to insert-buffer.
4538 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
4539 a *mail* buffer created through rmail-start-mail with sendmail as
4540 mail-user-agent.
4541
4542 2012-05-27 Chong Yidong <cyd@gnu.org>
4543
4544 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
4545 Default to 256 (Bug#11267).
4546
4547 * help.el (describe-mode): Doc fix.
4548
4549 2012-05-26 Glenn Morris <rgm@gnu.org>
4550
4551 * w32-fns.el (w32-init-info): Remove.
4552 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
4553
4554 * info.el (info-initialize): For self-contained NS builds, put the
4555 included info/ directory at the front. (Bug#2791)
4556
4557 * paths.el (Info-default-directory-list): Make it a defcustom,
4558 mainly so that we can use custom-initialize-delay.
4559
4560 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
4561
4562 * subr.el (buffer-has-markers-at): Mark obsolete.
4563
4564 * subr.el (lambda): Use declare.
4565
4566 * emacs-lisp/lisp-mode.el (lambda):
4567 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
4568
4569 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
4570
4571 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
4572
4573 2012-05-26 Glenn Morris <rgm@gnu.org>
4574
4575 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
4576
4577 2012-05-25 Glenn Morris <rgm@gnu.org>
4578
4579 * paths.el: Remove no-byte-compile.
4580 * loadup.el: No need to load paths.el uncompiled.
4581
4582 * image.el (imagemagick-types-inhibit): Doc fix.
4583
4584 * version.el: Remove no-byte-compile and associated formatting.
4585 * loadup.el: No need to load version.el uncompiled. AFAICS, this
4586 is ancient code from when there was an "inc-vers.el".
4587
4588 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
4589
4590 * progmodes/gdb-mi.el: Minor style changes.
4591 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
4592 Turn into minor modes.
4593 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
4594 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
4595 (gdb-shell): Remove unneeded let-binding.
4596 (gdb-get-many-fields): Eliminate O(n²) behavior.
4597
4598 2012-05-25 Eli Zaretskii <eliz@gnu.org>
4599
4600 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
4601 platforms that don't link in fontset.c.
4602
4603 2012-05-25 Juri Linkov <juri@jurta.org>
4604
4605 Use the same diff color scheme as in modern VCSes (bug#10181).
4606
4607 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
4608 to avoid confusion with `diff-added' that now uses green colors.
4609 (diff-removed): Use shades of red.
4610 (diff-added): Use shades of green.
4611 (diff-changed): Leave just the yellow color.
4612 (diff-use-changed-face): New variable.
4613 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
4614 how to highlight context diff changes.
4615 (diff-refine-change): Use shades of yellow.
4616 (diff-refine-removed): New face that uses shades of red.
4617 (diff-refine-added): New face that uses shades of green.
4618 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
4619 `diff-refine-removed' in the call to `smerge-refine-subst'
4620 depending on the value of `diff-use-changed-face'.
4621
4622 * vc/smerge-mode.el (smerge-mine): Use shades of red.
4623 (smerge-other): Use shades of green.
4624 (smerge-base): Use shades of yellow.
4625 (smerge-refined-change): Empty face.
4626 (smerge-refined-removed): New face that uses shades of red.
4627 (smerge-refined-added): New face that uses shades of green.
4628 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
4629 args `props-r' and `props-a', and use them. Doc fix.
4630 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
4631 on its value use different faces `smerge-refined-change',
4632 `smerge-refined-removed', `smerge-refined-added' in the call to
4633 `smerge-refine-subst'.
4634
4635 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
4636 Add face condition `min-colors 88' with shades of red.
4637 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
4638 `min-colors 88' with shades of green.
4639 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
4640 `min-colors 88' with shades of yellow.
4641
4642 2012-05-24 Glenn Morris <rgm@gnu.org>
4643
4644 * paths.el (prune-directory-list, remote-shell-program): Move to...
4645 * files.el (prune-directory-list, remote-shell-program): ...here.
4646 For the latter, delay initialization, prefer ssh, just search PATH.
4647
4648 * paths.el (term-file-prefix): Move to faces.el (the only user).
4649 * faces.el (term-file-prefix): Move here, make it a defcustom.
4650
4651 * paths.el (news-directory, news-path, news-inews-program):
4652 Move to gnus/nnspool.el.
4653
4654 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
4655
4656 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
4657 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
4658 Make the latter a defcustom, with a delayed initialization.
4659
4660 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
4661 These were deleted from Gnus itself late 2010.
4662
4663 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
4664
4665 * progmodes/which-func.el (which-func-ff-hook):
4666 Check against user-error, not error.
4667
4668 * emacs-lisp/edebug.el (top): Do not load or set up loading of
4669 cl-specs.el, which no longer exists.
4670
4671 2012-05-22 Glenn Morris <rgm@gnu.org>
4672
4673 * info.el (info-emacs-bug): New command.
4674 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
4675 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
4676
4677 2012-05-21 Glenn Morris <rgm@gnu.org>
4678
4679 * makefile.w32-in (update-subdirs-SH):
4680 * Makefile.in (update-subdirs): Update for moved update-subdirs.
4681
4682 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
4683
4684 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
4685
4686 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4687 Simplify Maven regexp, and make sure the file can't start with a space
4688 (bug#11517).
4689
4690 2012-05-21 Glenn Morris <rgm@gnu.org>
4691
4692 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4693 Scrap superfluous subshells.
4694
4695 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4696
4697 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
4698 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
4699
4700 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
4701
4702 * calc/calc.el (calc-ensure-consistent-units): New variable.
4703
4704 * calc/calc-units.el (math-consistent-units-p)
4705 (math-check-unit-consistency): New functions.
4706 (calc-quick-units, calc-convert-units):
4707 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
4708 is non-nil.
4709 (calc-extract-units): Fix typo.
4710
4711 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4712
4713 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
4714
4715 * textmodes/flyspell.el: Commenting style, plus code simplifications.
4716 (flyspell-default-deplacement-commands): Don't spell check after
4717 repeated window/frame switches (e.g. triggered by mouse-movement).
4718 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
4719 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
4720 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
4721 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
4722 Remove unused vars.
4723 (flyspell-get-casechars, flyspell-get-not-casechars):
4724 Simplify; Don't bother removing a ] just to add it back.
4725 * textmodes/ispell.el (ispell-program-name): Use executable-find.
4726
4727 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4728
4729 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
4730 New functions.
4731 (math-function-table): Add support for more C functions.
4732
4733 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4734
4735 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4736 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4737 Protect delay handling for otherchars against empty otherchars.
4738
4739 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4740
4741 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
4742 their respective macro declarations.
4743 * skeleton.el (define-skeleton):
4744 * progmodes/compile.el (define-compilation-mode):
4745 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
4746 (define-ibuffer-filter):
4747 * emacs-lisp/generic.el (define-generic-mode):
4748 * emacs-lisp/easy-mmode.el (define-minor-mode)
4749 (define-globalized-minor-mode):
4750 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
4751 * emacs-lisp/byte-run.el (defsubst):
4752 * custom.el (deftheme): Add doc-string metadata.
4753
4754 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4755
4756 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
4757
4758 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4759
4760 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
4761
4762 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
4763 * emacs-lisp/cl-macs.el: Idem.
4764 * emacs-lisp/cl-specs.el: Remove.
4765
4766 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4767
4768 Minor renaming of internal CL functions and variables.
4769 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
4770 (cl--position): Rename from cl-position.
4771 (cl--delete-duplicates): Rename from cl-delete-duplicates.
4772 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
4773 (cl--random-state): Rename from *random-state*.
4774
4775 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4776
4777 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
4778 parens around the arg list (bug#11499).
4779
4780 2012-05-17 Juri Linkov <juri@jurta.org>
4781
4782 * isearch.el (word-search-regexp, word-search-backward)
4783 (word-search-forward, word-search-backward-lax)
4784 (word-search-forward-lax): Move functions from search.c
4785 (bug#10145, bug#11381).
4786
4787 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4788
4789 * textmodes/flyspell.el (flyspell-check-pre-word-p)
4790 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
4791 Delay for otherchars as for normal word components.
4792
4793 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4794
4795 * minibuffer.el (completion--sifn-requote): Fix last change.
4796 (minibuffer-local-must-match-filename-map):
4797 Move define-obsolete-variable-alias before its var.
4798
4799 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
4800
4801 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
4802
4803 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
4804 behavior.
4805 (completion--string-equal-p): New function.
4806 (completion--twq-all): Use it to get better assertion failure data.
4807
4808 Only handle ".." and '..' quoting in shell-mode (bug#11466).
4809 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
4810 (shell--requote-argument): New functions.
4811 (shell-completion-vars): Use them.
4812 (shell--parse-pcomplete-arguments): Rename from
4813 shell-parse-pcomplete-arguments.
4814 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
4815 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
4816 Obey comint-file-name-quote-list.
4817
4818 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
4819 (smie-indent-keyword): Use it.
4820
4821 2012-05-14 Stefan Merten <smerten@oekonux.de>
4822
4823 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
4824
4825 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4826
4827 * net/rlogin.el (rlogin-mode-map): Fix last change.
4828
4829 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
4830
4831 * mail/smtpmail.el (smtpmail-send-command): Send the command and
4832 the following \r\n using a single `process-send-string', since the
4833 Lotus SMTP server refuses to accept any commands if they are sent
4834 with two `process-send-string's (Bug#11444).
4835
4836 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4837
4838 * shell.el (shell-parse-pcomplete-arguments):
4839 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
4840
4841 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4842
4843 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
4844 (image-transform-scale, image-transform-right-angle-fudge): New vars.
4845 (image-transform-width, image-transform-fit-width): New functions.
4846 (image-transform-properties): Use them.
4847 (image-transform-check-size): New function.
4848 (image-toggle-display-image): Use it (for testing).
4849 (image-transform-set-rotation): Reduce angle mod 360.
4850 Delete obsolete comment.
4851
4852 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
4853
4854 * image-mode.el: Fix scaling (bug#11399).
4855 (image-transform-resize): Doc fix.
4856 (image-transform-properties): Default scale is 1 and height should
4857 be an integer.
4858
4859 2012-05-13 Johan Bockgård <bojohan@gnu.org>
4860
4861 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
4862 than hard-coding `car', to fix misbehavior when moving forward.
4863
4864 2012-05-13 Chong Yidong <cyd@gnu.org>
4865
4866 * emacs-lisp/tabulated-list.el (tabulated-list-format)
4867 (tabulated-list-entries, tabulated-list-padding)
4868 (tabulated-list-sort-key): Make permanent-local.
4869
4870 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
4871 (electric-buffer-list): Put electric buffer menu
4872 command descriptions in this docstring, instead of the docstring
4873 of electric-buffer-menu-mode. Code cleanups.
4874 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
4875 Electric-buffer-menu-mode.
4876 (electric-buffer-update-highlight): Minor code cleanup.
4877
4878 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
4879
4880 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
4881 (Bug#11447)
4882
4883 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4884
4885 Move define-obsolete-variable-alias before the var's definition.
4886 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
4887 * tooltip.el (tooltip-hook):
4888 * textmodes/reftex-toc.el (reftex-toc-map):
4889 * textmodes/reftex-sel.el (reftex-select-label-map)
4890 (reftex-select-bib-map):
4891 * textmodes/reftex-index.el (reftex-index-map)
4892 (reftex-index-phrases-map):
4893 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
4894 * progmodes/meta-mode.el (meta-mode-map):
4895 * novice.el (disabled-command-hook):
4896 * loadhist.el (unload-hook-features-list):
4897 * frame.el (blink-cursor):
4898 * files.el (find-file-not-found-hooks, write-file-hooks)
4899 (write-contents-hooks):
4900 * emulation/tpu-edt.el (GOLD-map):
4901 * emacs-lock.el (emacs-lock-from-exiting):
4902 * emacs-lisp/generic.el (generic-font-lock-defaults):
4903 * emacs-lisp/chart.el (chart-map):
4904 * dos-fns.el (register-name-alist):
4905 * dired-x.el (dired-omit-files-p):
4906 * desktop.el (desktop-enable):
4907 * cus-edit.el (custom-mode-hook):
4908 * buff-menu.el (buffer-menu-mode-hook):
4909 * bookmark.el (bookmark-read-annotation-text-func)
4910 (bookmark-exit-hooks):
4911 * allout.el (allout-mode-deactivate-hook)
4912 (allout-exposure-change-hook, allout-structure-added-hook)
4913 (allout-structure-deleted-hook, allout-structure-shifted-hook):
4914 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
4915 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
4916 comes before the corresponding variable's definition.
4917
4918 2012-05-12 Chong Yidong <cyd@gnu.org>
4919
4920 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
4921 (Buffer-menu-mouse-select): Restore function (Bug#11459).
4922 (Buffer-menu-mode-map): Bind it.
4923 (Buffer-menu--pretty-name): Add a mouse-face property.
4924
4925 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
4926
4927 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
4928 (prolog-upper-case-string, prolog-lower-case-string)
4929 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
4930 (prolog-use-smie, prolog-smie-grammar): New vars.
4931 (prolog-smie-forward-token, prolog-smie-backward-token)
4932 (prolog-smie-rules): New funs.
4933 (prolog-comment-indent): Remove.
4934 (prolog-mode-variables): Use default comment indentation instead.
4935 Setup SMIE.
4936 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
4937 (prolog-mode): Don't call them any more.
4938 (prolog-electric-colon, prolog-electric-dash)
4939 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
4940
4941 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
4942
4943 * minibuffer.el (completion--twq-all): Again, allow case differences.
4944
4945 * term.el: Move keymap initialization code to be more idiomatic.
4946 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
4947 (term-terminal-menu): Move initialization into declaration.
4948 (term-escape-char): Let the user set it in her .emacs.
4949
4950 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
4951 Provide SMIE-based indentation (not enabled by default yet).
4952 (sh-mode-map): Don't bind electric keys.
4953 Use electric-pair-mode instead of skeleton-pair.
4954 (sh-assignment-regexp): Fit within 80 columns.
4955 (sh-indent-supported): Specify actual shell name instead of boolean.
4956 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
4957 (sh-maybe-here-document): Use it. Make obsolete.
4958 (sh-electric-here-document-mode) New minor mode.
4959 (sh-mode): Use it. Don't set sh-indent-supported-here here.
4960 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
4961 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
4962 (sh-smie-rc-grammar, sh-use-smie): New vars.
4963 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
4964 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
4965 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
4966 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
4967 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
4968 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
4969 (sh-set-shell): Use smie-setup if requested.
4970
4971 * term.el (term-set-escape-char): Properly set term-escape-char.
4972 See http://stackoverflow.com/questions/10524656.
4973
4974 2012-05-10 Chong Yidong <cyd@gnu.org>
4975
4976 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
4977 Use url-generic-parse-url, and handle host names and Windows
4978 filenames properly.
4979 (ffap-url-unwrap-remote): Use url-generic-parse-url.
4980 (ffap-url-unwrap-remote): Accept list values, specifying a list of
4981 URL schemes to work on.
4982 (ffap--toggle-read-only): New function.
4983 (ffap-read-only, ffap-read-only-other-window)
4984 (ffap-read-only-other-frame): Use it.
4985 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
4986 necessary for ffap-url-unwrap-remote.
4987
4988 2012-05-10 Dave Abrahams <dave@boostpro.com>
4989
4990 * cus-start.el (create-lockfiles): Add it.
4991
4992 2012-05-09 Chong Yidong <cyd@gnu.org>
4993
4994 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
4995 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
4996
4997 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
4998
4999 * shell.el (shell-completion-vars): Fix last change (bug#11348).
5000
5001 2012-05-09 Chong Yidong <cyd@gnu.org>
5002
5003 * ansi-color.el (ansi-color-process-output): Check for validity of
5004 comint-last-output-start before using it. This avoids a bad
5005 interaction with gdb-mi's input/output buffer.
5006
5007 2012-05-09 Glenn Morris <rgm@gnu.org>
5008
5009 * files.el (dir-locals-read-from-file):
5010 Mention dir-locals in any error message.
5011
5012 2012-05-09 Chong Yidong <cyd@gnu.org>
5013
5014 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
5015 package (Bug#11410).
5016
5017 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
5018 variables into description.
5019
5020 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
5021
5022 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
5023 shell-delimiter-argument-list (bug#11348).
5024 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
5025
5026 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
5027
5028 * textmodes/rst.el: Silence byte-compiler warnings.
5029 (rst-re-alist, rst-reset-section-caches): Move around.
5030 (rst-re): Use `characterp', not `char-valid-p'.
5031 (font-lock-beg, font-lock-end): Declare.
5032
5033 * progmodes/idlw-shell.el (specs): Remove reference to deleted
5034 variable `idlwave-shell-activate-alt-keybindings' and simplify.
5035
5036 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
5037
5038 2012-05-08 Glenn Morris <rgm@gnu.org>
5039
5040 * files.el (auto-mode-alist): Treat ".make" like ".mk".
5041
5042 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
5043
5044 * vc/log-edit.el: Add GNU coding standards highlighting.
5045 (log-edit-font-lock-gnu-style)
5046 (log-edit-font-lock-gnu-keywords): New vars.
5047 (log-edit-font-lock-keywords): New fun.
5048 (log-edit-mode): Don't fold case in font-lock.
5049 (log-edit-font-lock-keywords): Do not assume case-folding.
5050
5051 * imenu.el: Misc cleanup. Make docstrings out of comments.
5052 Use lexical-binding.
5053 (imenu--index-alist, imenu--last-menubar-index-alist)
5054 (imenu-menubar-modified-tick): Use defvar-local.
5055 (imenu--split-menu): Remove unused var.
5056 (imenu--cleanup-seen): Declare as global.
5057 (imenu--cleanup): Use dolist.
5058
5059 * subr.el (defvar-local): Add debug spec and doc-string position.
5060
5061 2012-05-08 Glenn Morris <rgm@gnu.org>
5062
5063 * language/burmese.el, language/cham.el, language/czech.el:
5064 * language/english.el, language/georgian.el, language/greek.el:
5065 * language/japanese.el, language/khmer.el, language/korean.el:
5066 * language/lao.el, language/misc-lang.el, language/romanian.el:
5067 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
5068 * language/thai.el, language/utf-8-lang.el:
5069 Remove no-byte-compile setting.
5070
5071 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
5072
5073 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5074
5075 * progmodes/make-mode.el (makefile-browse):
5076 Remove unnecessary interactive. (Bug#11324)
5077
5078 2012-05-07 Glenn Morris <rgm@gnu.org>
5079
5080 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
5081
5082 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
5083
5084 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
5085
5086 * loadup.el: Preload newcomment.el.
5087 * newcomment.el: Move autoload-only code to toplevel.
5088
5089 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
5090 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5091 Handle new :right-align column property.
5092 (tabulated-list-print-col): Idem, plus use `display' text-property to
5093 try and preserve alignment for variable pitch fonts.
5094
5095 2012-05-07 Chong Yidong <cyd@gnu.org>
5096
5097 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
5098 (tabulated-list-use-header-line): New var.
5099 (tabulated-list-init-header): Use it.
5100 (tabulated-list-print-fake-header): New function.
5101 (tabulated-list-print): Use it.
5102 (tabulated-list-sort-button-map): Add non-header-line commands.
5103 (tabulated-list-init-header): Add column name property to basic
5104 labels as well.
5105 (tabulated-list-col-sort): Handle non-header-line button case.
5106 (tabulated-list--sort-by-column-name): Fix a corner case.
5107
5108 * buff-menu.el (list-buffers--refresh):
5109 Handle Buffer-menu-use-header-line.
5110
5111 2012-05-06 Chong Yidong <cyd@gnu.org>
5112
5113 * buff-menu.el: Convert to Tabulated List mode.
5114 (Buffer-menu-buffer+size-width): Make obsolete.
5115 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
5116 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
5117 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
5118 documentation into docstring of buffer-menu.
5119 (Buffer-menu-toggle-files-only): Add an informative message.
5120 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
5121 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
5122 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
5123 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
5124 (Buffer-menu-execute, Buffer-menu-select)
5125 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
5126 (Buffer-menu-bury): Use Tabulated List machinery.
5127 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
5128 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
5129 Delete.
5130 (list-buffers--refresh): New function.
5131 (list-buffers-noselect): Use it.
5132 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
5133 (Buffer-menu--pretty-file-name): New helper functions.
5134
5135 * loadup.el: Preload tabulated-list.
5136
5137 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
5138 tabulated-list-sort-column.
5139 (tabulated-list-init-header): Add the initial aligning space even
5140 if tabulated-list-padding is zero.
5141
5142 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
5143
5144 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
5145 whose cdr is not a cons cell correctly (bug#11038).
5146
5147 2012-05-06 Chong Yidong <cyd@gnu.org>
5148
5149 * emacs-lisp/tabulated-list.el (tabulated-list-format):
5150 Accept additional plist in column descriptors.
5151 (tabulated-list-init-header): Obey it.
5152 (tabulated-list-get-entry): New function.
5153 (tabulated-list-put-tag): Use it. Use string-width instead of
5154 length.
5155 (tabulated-list--column-number): New function.
5156 (tabulated-list-print): Use it.
5157 (tabulated-list-print-col): New function.
5158 Set `tabulated-list-column-name' property on each column's text.
5159 (tabulated-list-print-entry): Use it.
5160 (tabulated-list-delete-entry, tabulated-list-set-col):
5161 New functions.
5162 (tabulated-list-sort-column): New command (Bug#11337).
5163
5164 * buff-menu.el (list-buffers): Move C-x C-b binding from
5165 buff-menu.el to bindings.el.
5166
5167 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
5168 :advertised-binding feature.
5169
5170 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
5171
5172 * progmodes/compile.el (compilation-internal-error-properties):
5173 Calculate start position correctly when end-col is set but
5174 end-line is not (Bug#11382).
5175
5176 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
5177
5178 * man.el (Man-unindent): Use text-property-default-nonsticky to
5179 prevent untabify from inheriting face properties (Bug#11408).
5180
5181 2012-05-05 Stefan Merten <smerten@oekonux.de>
5182
5183 * textmodes/rst.el: Major merge with upstream development up to
5184 Docutils SVN r7399 / rst.el V1.2.1.
5185
5186 Clarify maintainership and authors.
5187
5188 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
5189 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
5190 (rst-official-version, rst-official-cvs-rev, rst-version)
5191 (rst-package-emacs-version-alist): New functions and variables
5192 for version information.
5193
5194 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
5195 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
5196 (rst-mode-syntax-table, rst-mode): New and corrected functions
5197 and variables representing reStructuredText features.
5198
5199 (rst-re): New function for reStructuredText regexes. Use in
5200 many places.
5201
5202 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
5203 (rst-mode-map): Rebind keys.
5204
5205 (rst-mode-lazy, rst-font-lock-keywords)
5206 (rst-font-lock-extend-region)
5207 (rst-font-lock-extend-region-internal)
5208 (rst-font-lock-extend-region-extend)
5209 (rst-font-lock-find-unindented-line-limit)
5210 (rst-font-lock-find-unindented-line-match)
5211 (rst-adornment-level, rst-font-lock-adornment-level)
5212 (rst-font-lock-adornment-match)
5213 (rst-font-lock-handle-adornment-pre-match-form)
5214 (rst-font-lock-handle-adornment-matcher): Major revision of
5215 font-locking. Integrate with other code. Use `jit-lock-mode'.
5216
5217 (rst-preferred-adornments, rst-adjust-hook)
5218 (rst-new-adornment-down, rst-preferred-bullets)
5219 (rst-preferred-bullets, rst-indent, rst-indent-width)
5220 (rst-indent-field, rst-indent-literal-normal)
5221 (rst-indent-literal-minimized, rst-indent-comment): Change,
5222 extend and improve customization.
5223
5224 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
5225 (rst-normalize-cursor-position, rst-get-decoration)
5226 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
5227 (rst-rstrip, rst-toc-insert-find-delete-contents)
5228 (rst-shift-fill-region, rst-compute-bullet-tabs)
5229 (rst-debug-print-tabs, rst-debug-mark-found)
5230 (rst-shift-region-guts, rst-shift-region-right)
5231 (rst-shift-region-left, rst-use-char-classes)
5232 (rst-font-lock-keywords-function)
5233 (rst-font-lock-indentation-point)
5234 (rst-font-lock-find-unindented-line-begin)
5235 (rst-font-lock-find-unindented-line-end)
5236 (rst-font-lock-find-unindented-line)
5237 (rst-font-lock-adornment-point, rst-font-lock-level)
5238 (rst-adornment-level-alist): Remove functions and variables.
5239
5240 (rst-compare-adornments, rst-get-adornment-match)
5241 (rst-suggest-new-adornment, rst-get-adornments-around)
5242 (rst-adornment-complete-p, rst-get-next-adornment)
5243 (rst-adjust-adornment, rst-display-adornments-hierarchy)
5244 (rst-straighten-adornments): Standardize function names to
5245 use "adornment" instead of "decoration". Correct callers.
5246 Similar standardizing in many places.
5247
5248 (rst-update-section, rst-adjust, rst-promote-region)
5249 (rst-enumerate-region, rst-bullet-list-region)
5250 (rst-repeat-last-character): Correct use of `interactive'.
5251
5252 (rst-classify-adornment, rst-find-all-adornments)
5253 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
5254 (rst-find-leftmost-column, rst-repeat-last-character):
5255 Refactor functions.
5256
5257 (rst-find-title-line, rst-reset-section-caches)
5258 (rst-get-adornments-around, rst-adjust-adornment-work)
5259 (rst-arabic-to-roman, rst-roman-to-arabic)
5260 (rst-insert-list-pos, rst-insert-list-new-item)
5261 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
5262 New functions.
5263
5264 (rst-all-sections, rst-section-hierarchy)
5265 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
5266 New variables.
5267
5268 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
5269 configuration instead of only buffer. Change where necessary.
5270
5271 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
5272 (rst-shift-region, rst-adaptive-fill): New functions for
5273 indentation and filling.
5274
5275 (rst-comment-line-break, rst-comment-indent)
5276 (rst-comment-insert-comment, rst-comment-region)
5277 (rst-uncomment-region): New functions for handling comments.
5278
5279 (rst-compile): Quote shell arguments.
5280
5281 (rst-compile-pdf-preview, rst-compile-slides-preview):
5282 Delete temporary files after use.
5283
5284 2012-05-05 Glenn Morris <rgm@gnu.org>
5285
5286 * calendar/cal-html.el: Optionally include holidays in the output.
5287 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
5288 (cal-html-holidays): New option.
5289 (cal-html-css-default): Add holiday entry.
5290 (holiday-in-range): Autoload it.
5291 (cal-html-htmlify-entry): Add optional class argument.
5292 (cal-html-htmlify-list): Add optional holidays argument.
5293 (cal-html-insert-agenda-days): Include holidays in the output.
5294 (cal-html-one-month): Maybe include holidays.
5295
5296 * calendar/holidays.el (holiday-in-range):
5297 Move here from cal-tex-list-holidays.
5298 * calendar/cal-tex.el (cal-tex-list-holidays):
5299 Make it an obsolete alias for holiday-in-range. Update all callers.
5300
5301 2012-05-05 Chong Yidong <cyd@gnu.org>
5302
5303 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
5304 Nextstep.
5305
5306 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
5307
5308 * files.el (file-auto-mode-skip): New var.
5309 (set-auto-mode-1): Use it.
5310
5311 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
5312
5313 * repeat.el: Use lexical-binding.
5314 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
5315 (repeat-undo-count): Remove.
5316 (repeat):
5317 * progmodes/octave-mod.el (octave-abbrev-start):
5318 * progmodes/f90.el (f90-abbrev-start):
5319 * face-remap.el (text-scale-adjust):
5320 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
5321
5322 * emacs-lisp/pcase.el (pcase--let*): New function.
5323 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
5324 a bit more.
5325 (pcase--split-pred): Be more clever about ruling out overlap between
5326 a predicate and some constant pattern.
5327 (pcase--q1): Use `null' instead of (eq foo nil).
5328
5329 * subr.el (setq-local, defvar-local): New macros.
5330 (kbd): Redefine as an alias.
5331 (with-selected-window): Leave unrelated frames alone.
5332 (set-temporary-overlay-map): New function.
5333
5334 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5335
5336 * subr.el (user-error): New function.
5337 * window.el (switch-to-buffer):
5338 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
5339 (smerge-match-conflict):
5340 * simple.el (previous-matching-history-element)
5341 (next-matching-history-element, goto-history-element, undo-more)
5342 (undo-start):
5343 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
5344 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
5345 (next-file, tags-loop-scan, list-tags, complete-tag):
5346 * progmodes/compile.el (compilation-loop):
5347 * mouse.el (mouse-minibuffer-check):
5348 * man.el (Man-bgproc-sentinel, Man-goto-page):
5349 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
5350 (Info-history-forward, Info-follow-reference, Info-menu)
5351 (Info-extract-menu-item, Info-extract-menu-counting)
5352 (Info-forward-node, Info-backward-node, Info-next-menu-item)
5353 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
5354 (Info-next-reference, Info-prev-reference, Info-index)
5355 (Info-index-next, Info-follow-nearest-node)
5356 (Info-copy-current-node-name):
5357 * imenu.el (imenu--make-index-alist)
5358 (imenu-default-create-index-function, imenu-add-to-menubar):
5359 * files.el (basic-save-buffer, recover-file):
5360 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5361 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
5362 (checkdoc-message-text, checkdoc-defun):
5363 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
5364 * cus-edit.el (customize-changed-options, customize-rogue)
5365 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
5366 (custom-variable-mark-to-reset-standard)
5367 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
5368 (custom-file):
5369 * completion.el (check-completion-length):
5370 * comint.el (comint-search-arg)
5371 (comint-previous-matching-input-string-position)
5372 (comint-previous-matching-input)
5373 (comint-replace-by-expanded-history-before-point, comint-send-input)
5374 (comint-copy-old-input, comint-backward-matching-input)
5375 (comint-goto-process-mark, comint-set-process-mark):
5376 * calendar/calendar.el (calendar-cursor-to-date): Use it.
5377 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
5378
5379 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
5380
5381 * dabbrev.el (dabbrev--ignore-case-p): New function.
5382 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
5383 Use it.
5384
5385 * files.el (automount-dir-prefix): Mark as obsolete.
5386
5387 2012-05-04 Glenn Morris <rgm@gnu.org>
5388
5389 * patcomp.el, play/bruce.el: Move to obsolete/.
5390
5391 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
5392
5393 Fix minor Y10k bugs.
5394 * arc-mode.el (archive-unixdate):
5395 * autoinsert.el (auto-insert-alist):
5396 * calc/calc-forms.el (math-this-year):
5397 * emacs-lisp/copyright.el (copyright-current-year)
5398 (copyright-update-year, copyright):
5399 * tar-mode.el (tar-clip-time-string):
5400 * time.el (display-time-update):
5401 Don't assume years have 4 digits.
5402
5403 2012-05-04 Chong Yidong <cyd@gnu.org>
5404
5405 * dos-w32.el (file-name-buffer-file-type-alist)
5406 (direct-print-region-use-command-dot-com):
5407 * ffap.el (ffap-menu-regexp):
5408 * find-file.el (ff-special-constructs):
5409 * follow.el (follow-debug):
5410 * forms.el (forms--debug):
5411 * iswitchb.el (iswitchb-all-frames):
5412 * ido.el (ido-all-frames):
5413 * emacs-lisp/timer.el (timer-max-repeats):
5414 * mail/feedmail.el (feedmail-mail-send-hook)
5415 (feedmail-mail-send-hook-queued):
5416 * mail/footnote.el (footnote-signature-separator):
5417 * mail/mailabbrev.el (mail-alias-separator-string)
5418 (mail-abbrev-mode-regexp):
5419 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
5420 * progmodes/idlwave.el (idlwave-libinfo-file)
5421 (idlwave-default-completion-case-is-down)
5422 (idlwave-library-routines): Convert defvars to defcustoms.
5423
5424 * mail/rmail.el (rmail-decode-mime-charset):
5425 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
5426 (idlwave-shell-fix-inserted-breaks)
5427 (idlwave-shell-activate-alt-keybindings)
5428 (idlwave-shell-use-breakpoint-glyph):
5429 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
5430
5431 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
5432
5433 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
5434
5435 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
5436
5437 * progmodes/verilog-mode.el (font-lock-keywords):
5438 Fix mis-highligting auto. Reported by Craig Barner.
5439 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
5440 defines from global name space. Reported by Dan Dever.
5441 (verilog-auto-reset, verilog-auto-reset-widths)
5442 (verilog-auto-tieoff): Support using unbased numbers for
5443 AUTORESET and AUTOTIEOFF.
5444 (verilog-submit-bug-report): Update variable list.
5445 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
5446 parenthesis from not matching. Reported by Michael Rytting.
5447 (verilog-auto-template-lint): Fix hash error when linting modules
5448 with no used templates.
5449 (verilog-warn, verilog-warn-error)
5450 (verilog-warn-fatal): When non-interactive report multiple
5451 warnings before exiting. Suggested by Brad Dobbie.
5452 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
5453 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
5454 to report unused template errors. Reported by Brad Dobbie.
5455 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
5456 nets, bug438. Reported by Vns Blore.
5457 (verilog-auto-inout-module, verilog-auto-reg)
5458 (verilog-read-decls, verilog-read-sub-decls-sig)
5459 (verilog-signals-edit-wire-reg, verilog-signals-with):
5460 Fix passing of Verilog data types in ANSI input/output ports
5461 such as "output logic" into the AUTOs. Special case "wire" and
5462 "reg" for backwards compatibility presuming Verilog 2001.
5463 (verilog-auto-ascii-enum): Add "auto enum" as alias.
5464 (verilog-preprocess): Fix replication of preprocess output.
5465 Reported by Brad Dobbie.
5466 (verilog-auto-inst-interfaced-ports):
5467 Create verilog-auto-inst-interfaced-ports, bug429.
5468 Reported by Julian Gorfajn.
5469 (verilog-after-save-font-hook)
5470 (verilog-before-save-font-hook): New variable.
5471 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
5472 (verilog-save-font-mods): Wrap disabling fontification, reported
5473 by David Rogoff.
5474 (verilog-do-indent, verilog-pretty-declarations-auto)
5475 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
5476 Reported by Pierre-David Pfister.
5477 (verilog-set-auto-endcomments): Fix endtask auto comments outside
5478 of class declarations, bug292. Reported by Kevin Heilman.
5479 (verilog-read-decls): Fix 'parameter type' not appearing in
5480 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
5481 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
5482 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
5483 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
5484 Reported by David Kravitz.
5485
5486 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
5487
5488 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
5489 assignment with tests in ifs and for loops.
5490 (verilog-extended-complete-re, verilog-complete-reg): Change so
5491 that DPI inport functions don't look like fuction declarations.
5492 (verilog-pretty-expr): Don't line up assignment
5493 operations to the test and increment in if and for loops
5494 (verilog-extended-complete-re, verilog-complete-reg): Change so
5495 that DPI inport functions don't look like fuction declarations.
5496
5497 2012-05-03 Kenichi Handa <handa@m17n.org>
5498
5499 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
5500 decoding, and show a warning message without signaling an error
5501 (Bug#11282).
5502
5503 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
5504
5505 * emacs-lisp/bytecomp.el
5506 (byte-compile-file-form-custom-declare-variable): Compile all elements,
5507 since cconv.el might have introduced :fun-body, internal-make-closure,
5508 and friends for bytecomp to handle (bug#11391).
5509 * custom.el (defcustom): Avoid ((λ ..) ..).
5510
5511 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
5512
5513 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
5514
5515 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
5516
5517 * notifications.el (dbus-debug):
5518 * term/linux.el (gpm-mouse-enable):
5519 * term/screen.el (xterm-register-default-colors): Declare.
5520
5521 2012-05-02 Chong Yidong <cyd@gnu.org>
5522
5523 * cus-start.el (gc-cons-percentage, exec-suffixes)
5524 (dos-display-scancodes, dos-hyper-key, dos-super-key)
5525 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
5526 (make-cursor-line-fully-visible, void-text-area-pointer)
5527 (font-list-limit): Add customization data.
5528
5529 * allout.el (allout-exposure-change-functions)
5530 (allout-structure-added-functions)
5531 (allout-structure-deleted-functions)
5532 (allout-structure-shifted-functions): Rename abnormal hooks from
5533 *-hook, and convert to defcustoms.
5534 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
5535 Convert to defcustoms.
5536 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
5537
5538 * allout-widgets.el: Hook callers changed.
5539
5540 2012-05-02 Eli Zaretskii <eliz@gnu.org>
5541
5542 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
5543 the yanked message in preference to the default value of
5544 buffer-file-coding-system.
5545
5546 2012-05-02 Martin Rudalics <rudalics@gmx.at>
5547
5548 * window.el (display-buffer--action-function-custom-type):
5549 Fix entry.
5550
5551 2012-05-02 Alan Mackenzie <acm@muc.de>
5552
5553 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
5554
5555 2012-05-01 Glenn Morris <rgm@gnu.org>
5556
5557 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
5558
5559 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
5560
5561 * cus-edit.el (custom-variable-documentation): Simplify with format.
5562
5563 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5564 Stefan Monnier <monnier@iro.umontreal.ca>
5565
5566 * simple.el (suggest-key-bindings, execute-extended-command):
5567 Move from keyboard.c.
5568
5569 2012-05-01 Chong Yidong <cyd@gnu.org>
5570
5571 * follow.el: Eliminate advice.
5572 (set-process-filter, process-filter, sit-for): Advice deleted.
5573 (follow-mode-off-hook): Obsolete hook removed.
5574 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
5575 Vars deleted.
5576 (follow-auto): Use a :set function.
5577 (follow-mode): Rewritten. Don't advise process filters.
5578 (follow-switch-to-current-buffer-all, follow-scroll-up)
5579 (follow-scroll-down): Assume follow-mode is bound.
5580 (follow-comint-scroll-to-bottom)
5581 (follow-align-compilation-windows): New functions.
5582 (follow--window-sorter): New function.
5583 (follow-all-followers): Use it to explicitly sort windows by their
5584 positions; don't make assumptions about next-window order.
5585 (follow-windows-start-end, follow-delete-other-windows-and-split)
5586 (follow-calc-win-start): Doc fix.
5587 (follow-windows-aligned-p, follow-select-if-visible): Don't call
5588 vertical-motion unnecessarily.
5589 (follow-adjust-window): New function.
5590 (follow-post-command-hook): Use it.
5591 (follow-call-set-process-filter, follow-call-process-filter)
5592 (follow-intercept-process-output, follow-tidy-process-filter-alist)
5593 (follow-stop-intercept-process-output, follow-generic-filter):
5594 Functions deleted.
5595 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
5596 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
5597 New functions, replacing advice on scroll-bar-* commands.
5598 (follow-mwheel-scroll): New function (Bug#4112).
5599
5600 * comint.el (comint-adjust-point): New function.
5601 (comint-postoutput-scroll-to-bottom): Use it.
5602 Call follow-comint-scroll-to-bottom for Follow mode buffers.
5603
5604 2012-05-01 Glenn Morris <rgm@gnu.org>
5605
5606 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
5607 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
5608 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
5609 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
5610 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
5611 Remove no-byte-compile setting.
5612
5613 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
5614
5615 * minibuffer.el (completion-table-with-quoting): Fix compatibility
5616 all-completions code to not return a number in the last cdr.
5617
5618 2012-04-30 Leo Liu <sdl.web@gmail.com>
5619
5620 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
5621 read-only error.
5622
5623 2012-04-29 Chong Yidong <cyd@gnu.org>
5624
5625 * follow.el (follow-calc-win-end): Rewrite to handle partial
5626 screen lines correctly (Bug#8390).
5627 (follow-avoid-tail-recenter): Minor cleanup.
5628
5629 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
5630
5631 Avoid the obsolete `assoc' package.
5632 * speedbar.el (speedbar-refresh): Avoid adelete.
5633 (speedbar-file-lists): Simplify and avoid aput.
5634 * man.el (Man--sections, Man--refpages): New vars, replacing
5635 Man-sections-alist and Man-refpages-alist.
5636 (Man-build-section-alist, Man-build-references-alist):
5637 Use them; avoid aput.
5638 (Man--last-section, Man--last-refpage): New vars.
5639 (Man-follow-manual-reference): Use them.
5640 Use the `default' arg of completing-read.
5641 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
5642
5643 2012-04-27 Chong Yidong <cyd@gnu.org>
5644
5645 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
5646
5647 * startup.el (x-apply-session-resources): New function.
5648
5649 * term/ns-win.el (ns-initialize-window-system):
5650 * term/w32-win.el (w32-initialize-window-system):
5651 * term/x-win.el (x-initialize-window-system): Use it to properly
5652 set menu-bar-mode and other vars from X resources, even if the
5653 initial frame is not a window-system frame (Bug#2299).
5654
5655 * subr.el (read-key): Avoid running filter function when setting
5656 up temporary tool bar entries (Bug#9922).
5657
5658 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5659
5660 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
5661 (Bug#11344)
5662
5663 2012-04-27 Chong Yidong <cyd@gnu.org>
5664
5665 * select.el (xselect--encode-string): New function, split from
5666 xselect-convert-to-string.
5667 (xselect-convert-to-string): Use it.
5668 (xselect-convert-to-filename, xselect-convert-to-os)
5669 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
5670 returned strings are properly encoded (Bug#11315).
5671
5672 2012-04-27 Chong Yidong <cyd@gnu.org>
5673
5674 * simple.el (delete-active-region): Move to killing custom group.
5675
5676 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
5677
5678 * progmodes/which-func.el (which-func-current): Quote %
5679 characters for mode-line processing.
5680
5681 2012-04-27 Chong Yidong <cyd@gnu.org>
5682
5683 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
5684 reaching eob (Bug#11286).
5685
5686 2012-04-27 Eli Zaretskii <eliz@gnu.org>
5687
5688 * progmodes/gdb-mi.el (gdb-control-level): New variable.
5689 (gdb): Make it buffer-local and init to zero.
5690 (gdb-control-commands-regexp): New variable.
5691 (gdb-send): Don't wrap in "-interpreter-exec console" if
5692 gdb-control-level is positive. Increment gdb-control-level
5693 whenever the command matches gdb-control-commands-regexp, and
5694 decrement it each time the command is "end". (Bug#11279)
5695
5696 2012-04-27 Martin Rudalics <rudalics@gmx.at>
5697
5698 * window.el (adjust-window-trailing-edge, enlarge-window)
5699 (shrink-window, window-resize):
5700 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
5701 windows (Bug#11276).
5702
5703 2012-04-27 Chong Yidong <cyd@gnu.org>
5704
5705 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
5706 fix "missing prefix" warning. All callers changed.
5707
5708 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
5709
5710 * emacs-lisp/assoc.el: Move to obsolete/.
5711
5712 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5713
5714 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
5715
5716 * term/ns-win.el (ns-define-service):
5717 * progmodes/pascal.el (pascal-goto-defun):
5718 * progmodes/js.el (js--read-tab):
5719 * progmodes/etags.el (tags-lazy-completion-table):
5720 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
5721 * emacs-lisp/ewoc.el (ewoc--wrap):
5722 * emacs-lisp/assoc.el (aput, adelete, amake):
5723 * doc-view.el (doc-view-convert-current-doc):
5724 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
5725
5726 2012-04-26 Chong Yidong <cyd@gnu.org>
5727
5728 * image.el (image-type-from-buffer): Only return supported image
5729 type (Bug#9045).
5730
5731 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
5732 value, for symmetry with diff-end-of-hunk.
5733 (diff-split-hunk, diff-find-source-location)
5734 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
5735 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
5736 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
5737 compute the relevant hunk or file properly (Bug#6005).
5738 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
5739
5740 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
5741
5742 * vc/vc-mtn.el:
5743 * vc/vc-hg.el:
5744 * vc/vc-git.el:
5745 * vc/vc-dir.el:
5746 * vc/vc-cvs.el:
5747 * vc/vc-bzr.el:
5748 * vc/vc-arch.el:
5749 * vc/vc.el: Replace lexical-let by lexical-binding.
5750 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
5751 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
5752 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
5753
5754 2012-04-26 Chong Yidong <cyd@gnu.org>
5755
5756 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
5757 (diff-mode-shared-map): Bind it to / and [remap undo].
5758
5759 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
5760 (ediff-window-setup-function): Use it as the default, to set up
5761 windows based on whether the current frame is graphical (Bug#2138).
5762 (ediff-choose-window-setup-function-automatically): Make obsolete.
5763
5764 * vc/ediff-init.el: Always define ediff-pixel-width/height.
5765
5766 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
5767
5768 * ffap.el: Remove old code for obsolete package.
5769 (ffap-complete-as-file-p): Remove.
5770
5771 Use completion-table-with-quoting for comint and pcomplete.
5772 * comint.el (comint--unquote&requote-argument)
5773 (comint--unquote-argument, comint--requote-argument): New functions.
5774 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
5775 (comint-quote-filename): Use regexp-opt-charset.
5776 (comint--common-suffix, comint--common-quoted-suffix)
5777 (comint--table-subvert): Remove.
5778 (comint-unquote-function, comint-requote-function): New vars.
5779 (comint--complete-file-name-data): Use them with
5780 completion-table-with-quoting.
5781 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
5782 * pcomplete.el (pcomplete-arg-quote-list)
5783 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
5784 (pcomplete-unquote-argument-function): Default to non-nil.
5785 (pcomplete-unquote-argument): Simplify.
5786 (pcomplete--common-quoted-suffix): Remove.
5787 (pcomplete-requote-argument-function): New var.
5788 (pcomplete--common-suffix): New function.
5789 (pcomplete-completions-at-point): Use completion-table-with-quoting
5790 and completion-table-subvert.
5791
5792 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
5793 (minibuffer--double-dollars): Preserve properties.
5794 (completion--sifn-requote): New function.
5795 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
5796
5797 * minibuffer.el: Add support for completion of quoted/escaped data.
5798 (completion-table-with-quoting, completion-table-subvert): New funs.
5799 (completion--twq-try, completion--twq-all): New functions.
5800 (completion--nth-completion): New function.
5801 (completion-try-completion, completion-all-completions): Use it.
5802
5803 2012-04-25 Leo Liu <sdl.web@gmail.com>
5804
5805 * progmodes/python.el (python-pdbtrack-get-source-buffer):
5806 Use compilation-message if available to find real filename.
5807
5808 2012-04-25 Chong Yidong <cyd@gnu.org>
5809
5810 * vc/diff-mode.el (diff-setup-whitespace): New function.
5811 (diff-mode): Use it.
5812
5813 * vc/diff.el (diff-sentinel):
5814 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
5815 Whitespace mode variables based on diff style (Bug#8612).
5816
5817 2012-04-25 Leo Liu <sdl.web@gmail.com>
5818
5819 * progmodes/python.el (python-send-region): Add suffix .py to the
5820 temp file.
5821
5822 * files.el (auto-mode-alist): Use javascript-mode instead.
5823
5824 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
5825
5826 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
5827
5828 * net/soap-client.el (soap-resolve-references-for-sequence-type)
5829 (soap-resolve-references-for-array-type): Hack to prevent self
5830 references, see Bug#9.
5831 (soap-parse-envelope): Report the contents of the 'detail' node
5832 when receiving a fault reply.
5833 (soap-parse-envelope): Report the contents of the entire 'detail' node.
5834
5835 * net/soap-inspect.el (soap-sample-value-for-simple-type)
5836 (soap-inspect-simple-type): New function.
5837
5838 * net/soap-client.el (soap-simple-type): New struct.
5839 (soap-default-xsd-types, soap-default-soapenc-types)
5840 (soap-decode-basic-type, soap-encode-basic-type):
5841 support unsignedInt and double basic types.
5842 (soap-resolve-references-for-simple-type)
5843 (soap-parse-simple-type, soap-encode-simple-type): New function.
5844 (soap-parse-schema): Parse xsd:simpleType declarations.
5845
5846 * net/soap-client.el (soap-default-xsd-types)
5847 (soap-default-soapenc-types): Add integer, byte and anyURI types.
5848 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
5849 the local name of "soapenc:Array".
5850 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
5851 decoding integer, byte and anyURI xsd types.
5852
5853 2012-04-25 Chong Yidong <cyd@gnu.org>
5854
5855 * cus-edit.el (custom-buffer-create-internal): Update header text.
5856
5857 2012-04-25 Eli Zaretskii <eliz@gnu.org>
5858
5859 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
5860 settings on 'system-type', not on 'window-system'. On MS-Windows,
5861 set interactive-mode on in GDB.
5862
5863 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5864
5865 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
5866 (ruby-syntax-propertize-regexp): Remove.
5867 (ruby-syntax-propertize-function): Split regexp into chunks.
5868 Match following code directly.
5869
5870 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
5871
5872 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
5873 (ruby-syntax-propertize-regexp): New function.
5874 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
5875 by a special keyword.
5876
5877 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
5878 (ruby-syntax-general-delimiters-goto-beg)
5879 (ruby-syntax-propertize-general-delimiters): New functions.
5880 (ruby-syntax-propertize-function): Use them to handle GDL.
5881 (ruby-font-lock-keywords): Move old handling of GDL...
5882 (ruby-font-lock-syntactic-keywords): .. to here.
5883 (ruby-calculate-indent): Adjust indentation for GDL.
5884
5885 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
5886
5887 * notifications.el (top): Remove unneeded declarations.
5888 (notifications-specification-version): Change to "1.2".
5889 (notifications-interface, notifications-notify-method)
5890 (notifications-close-notification-method): Fix docstring.
5891 (notifications-get-capabilities-method): New defconst.
5892 (notifications-notify): Add :action-items, :resident and
5893 :transient hints. Change "image_data" to "image-data" and
5894 "image_path" to "image-path".
5895 (notifications-get-capabilities): New defun.
5896
5897 2012-04-24 Leo Liu <sdl.web@gmail.com>
5898
5899 * progmodes/python.el: Move hideshow setup to the end.
5900
5901 2012-04-24 Martin Rudalics <rudalics@gmx.at>
5902
5903 * window.el (handle-select-window): Clear echo area since this is
5904 no more done by read_char (Bug#11304).
5905
5906 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
5907
5908 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
5909 and `/ M' to filter-derived-mode.
5910 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
5911 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
5912 (ibuffer-mark-by-mode): Use default rather than initial-input.
5913 (ibuffer-filter-by-derived-mode): Autoload and require-match.
5914
5915 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
5916
5917 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
5918 (ibuffer-filter-by-derived-mode): New filter.
5919 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
5920
5921 2012-04-23 Andreas Politz <politza@fh-trier.de>
5922
5923 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
5924
5925 2012-04-23 Chong Yidong <cyd@gnu.org>
5926
5927 * cus-edit.el (customize-apropos, customize-apropos-options):
5928 Disable matching of non-option variables (Bug#11176).
5929 (customize-option, customize-option-other-window)
5930 (customize-changed-options): Doc fix.
5931 (customize-apropos-options, customize-apropos-faces)
5932 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
5933
5934 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
5935 Fix word list splitting (Bug#11132).
5936 (apropos-symbol, apropos-keybinding, apropos-label)
5937 (apropos-property, apropos-function-button)
5938 (apropos-variable-button, apropos-misc-button): New faces.
5939 (apropos-symbol-face, apropos-keybinding-face)
5940 (apropos-label-face, apropos-property-face, apropos-match-face):
5941 Variables removed (Bug#8396).
5942 (apropos-library-button, apropos-format-plist, apropos-print)
5943 (apropos-print-doc, apropos-describe-plist): Callers changed.
5944
5945 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
5946
5947 * net/xesam.el (xesam-mode-map): Use let-bound map in
5948 initialization. (Bug#11292)
5949
5950 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5951
5952 Preserve ispell session localwords when switching back to
5953 original buffer.
5954
5955 * textmodes/ispell.el (ispell-buffer-session-localwords):
5956 New buffer-local variable to hold buffer session localwords.
5957 (ispell-kill-ispell): Add option 'clear to delete session
5958 localwords.
5959 (ispell-command-loop, ispell-change-dictionary)
5960 (ispell-buffer-local-words): Preserve session localwords when
5961 needed.
5962
5963 * textmodes/flyspell.el (flyspell-process-localwords)
5964 (flyspell-do-correct): Preserve session localwords when needed.
5965
5966 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5967
5968 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
5969 using obsolete `translation-table-for-input'.
5970 (ispell-word, ispell-process-line, ispell-complete-word):
5971 Use plain `insert' instead of removed `ispell-insert-word'.
5972
5973 2012-04-22 Chong Yidong <cyd@gnu.org>
5974
5975 * cus-edit.el (custom-variable-menu)
5976 (custom-variable-reset-saved, custom-face-menu)
5977 (custom-face-reset-saved): If there is no saved value, make the
5978 "reset-saved" operation bring back the default (Bug#9509).
5979 (custom-face-state): Properly detect themed faces.
5980
5981 * faces.el (face-spec-set): Stop supporting deprecated form of
5982 third arg.
5983
5984 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
5985
5986 Move functions from C to Lisp. Make non-blocking method calls
5987 the default. Implement further D-Bus standard interfaces.
5988
5989 * net/dbus.el (dbus-message-internal): Declare function.
5990 Remove unneeded function declarations.
5991 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
5992 (dbus-message-type-method-return, dbus-message-type-error)
5993 (dbus-message-type-signal): Declare variables. Remove local
5994 definitions.
5995 (dbus-interface-dbus, dbus-interface-peer)
5996 (dbus-interface-introspectable, dbus-interface-properties)
5997 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
5998 Adapt docstring.
5999 (dbus-interface-objectmanager): New defconst.
6000 (dbus-call-method, dbus-call-method-asynchronously)
6001 (dbus-send-signal, dbus-method-return-internal)
6002 (dbus-method-error-internal, dbus-register-service)
6003 (dbus-register-signal, dbus-register-method): New defuns, moved
6004 from dbusbind.c
6005 (dbus-call-method-handler, dbus-setenv)
6006 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
6007 New defuns.
6008 (dbus-call-method-non-blocking): Make it an obsolete function.
6009 (dbus-unregister-object, dbus-unregister-service)
6010 (dbus-handle-event, dbus-register-property)
6011 (dbus-property-handler): Obey the new structure of
6012 `bus-registered-objects'.
6013 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
6014 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
6015 Use `dbus-call-method'.
6016
6017 2012-04-22 Chong Yidong <cyd@gnu.org>
6018
6019 * cus-edit.el (custom-commands, custom-reset-menu)
6020 (Custom-reset-standard): Tweak labels.
6021 (custom-reset-button-menu): Change default to t.
6022 (custom-buffer-create-internal): For the custom-reset-button-menu
6023 case, put the revert button first.
6024 (custom-group-subtitle): New face.
6025 (custom-group-value-create): Align docstring to a specific column.
6026
6027 * wid-edit.el (widget-documentation-link-add): Don't handle
6028 indentation in this function.
6029 (widget-documentation-string-indent-to): New function.
6030 (widget-documentation-string-value-create): Use it.
6031
6032 * autorevert.el (auto-revert):
6033 * epg-config.el (epg):
6034 * ibuffer.el (ibuffer):
6035 * mpc.el (mpc):
6036 * ses.el (ses):
6037 * eshell/eshell.el (eshell):
6038 * net/ange-ftp.el (ange-ftp):
6039 * progmodes/ebnf2ps.el (postscript):
6040 * progmodes/flymake.el (flymake):
6041 * progmodes/prolog.el (prolog):
6042 * progmodes/verilog-mode.el (verilog-mode):
6043 * progmodes/which-func.el (which-func):
6044 * term/xterm.el (xterm):
6045 * textmodes/picture.el (picture):
6046 * textmodes/tildify.el (tildify):
6047 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
6048 customization buffers.
6049
6050 2012-04-22 Alan Mackenzie <acm@muc.de>
6051
6052 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
6053 Adding a ) can hide the resulting (..) from searches. Fix it.
6054 Bound the backward search to the position of the existing (.
6055
6056 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
6057
6058 * progmodes/verilog-mode.el (verilog-mode): Check whether
6059 which-func-modes is t before adding verilog-mode.
6060 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
6061
6062 2012-04-21 Leo Liu <sdl.web@gmail.com>
6063
6064 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
6065
6066 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
6067
6068 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
6069 filling of the last column of a table (Bug#5635).
6070 (woman-find-next-control-line): New arg, specifying an additional
6071 regexp component for the control line.
6072 (woman2-roff-buffer): Use it.
6073 (woman-break-table): New function.
6074 (woman2-TS): Use it.
6075
6076 2012-04-21 Chong Yidong <cyd@gnu.org>
6077
6078 * woman.el (woman-set-buffer-display-table, woman-decode-region)
6079 (woman-horizontal-escapes, woman-negative-vertical-space)
6080 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
6081 (WoMan-warn-ignored): Use ?\s instead of ?\ .
6082
6083 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6084
6085 * minibuffer.el (completion-file-name-table): Complete user names.
6086
6087 2012-04-20 Leo Liu <sdl.web@gmail.com>
6088
6089 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
6090 and pcase-let*.
6091
6092 2012-04-20 Chong Yidong <cyd@gnu.org>
6093
6094 * server.el (server-execute): Respect initial-buffer-choice if it
6095 is a string and there are no files to open (Bug#2825).
6096 (server-create-window-system-frame, server-create-tty-frame):
6097 Don't switch buffers here.
6098 (server-process-filter): Only try to open a window system frame if
6099 compiled with graphical support (Bug#8314).
6100
6101 2012-04-20 Dan Nicolaescu <dann@gnu.org>
6102
6103 * battery.el (battery-echo-area-format): Display remaining time
6104 for sysfs backend too (Bug#11269).
6105 (battery-linux-sysfs): Fix conditional for the charge.
6106
6107 2012-04-20 Chong Yidong <cyd@gnu.org>
6108
6109 * progmodes/gdb-mi.el (gdb): Revert previous change.
6110 (gdb-inferior-io--init-proc): New function.
6111 (gdb-init-1): Use it.
6112 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
6113 responsible for allocating a new pty and hooking it to gdb when
6114 the old pty gets an EIO due to process exit.
6115 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
6116 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
6117 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
6118
6119 2012-04-20 Eli Zaretskii <eliz@gnu.org>
6120
6121 * window.el (window-min-size, window-sizable, window-min-delta)
6122 (window-max-delta, window--resizable, window-resizable)
6123 (window-total-size, window-full-height-p, window-full-width-p)
6124 (window-in-direction, window--resize-mini-window, window-resize)
6125 (window--resize-child-windows-normal)
6126 (window--resize-child-windows, window--resize-siblings)
6127 (window--resize-this-window, adjust-window-trailing-edge)
6128 (enlarge-window, shrink-window): Doc fixes.
6129
6130 2012-04-20 Chong Yidong <cyd@gnu.org>
6131
6132 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
6133 New function to call delete-process on the gdb-inferior buffer's pty.
6134 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
6135 pty process (Bug#11273).
6136 (gdb-update): New arg to suppress talking to the gdb process.
6137 (gdb-done-or-error): Use it.
6138 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
6139 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
6140 sentinel not being called.
6141
6142 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
6143
6144 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
6145
6146 2012-04-20 Glenn Morris <rgm@gnu.org>
6147
6148 * net/network-stream.el (open-network-stream): Doc fix.
6149
6150 2012-04-20 Chong Yidong <cyd@gnu.org>
6151
6152 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
6153
6154 2012-04-20 Alan Mackenzie <acm@muc.de>
6155
6156 Ensure searching for keywords is case sensitive.
6157
6158 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
6159 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
6160 (c-defun-name, c-mark-function, c-cpp-define-name)
6161 (c-comment-indent, c-scan-conditionals, c-indent-defun)
6162 (c-context-line-break): Bind case-fold-search to nil.
6163
6164 * progmodes/cc-mode.el (c-font-lock-fontify-region):
6165 Bind case-fold-search to nil.
6166
6167 2012-04-20 Chong Yidong <cyd@gnu.org>
6168
6169 * mail/sendmail.el (mail-bury): Call return action with the right
6170 Rmail buffer (Bug#11242).
6171
6172 * server.el (server-process-filter): Handle corner case where both
6173 tty and nowait options are present (Bug#11102).
6174
6175 2012-04-20 Eli Zaretskii <eliz@gnu.org>
6176
6177 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6178 (top level): Put into the executable the ident-style '$Id:' tag on
6179 windows-nt as well.
6180
6181 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6182
6183 * electric.el (electric-indent-post-self-insert-function): Check that
6184 electric-indent-mode is enabled in current buffer.
6185
6186 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
6187
6188 * imenu.el (imenu-progress-message): Restore; it is "used" in
6189 erc/erc-imenu.el and net/snmp-mode.el.
6190
6191 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
6192
6193 * avoid.el (mouse-avoidance-mode): Mark unused arg.
6194 (mouse-avoidance-nudge-mouse): Remove unused binding.
6195
6196 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
6197
6198 * descr-text.el (describe-char):
6199 * progmodes/python.el (python-describe-symbol):
6200 Don't call `toggle-read-only', set `buffer-read-only'.
6201
6202 * imenu.el (imenu-default-goto-function): Mark unused args.
6203 (imenu-progress-message): Remove obsolete macro; all callers changed.
6204
6205 * subr.el (keymap-canonicalize): Remove unused binding.
6206 (read-passwd): Mark unused arg.
6207
6208 * tutorial.el (tutorial--display-changes): Remove unused binding.
6209 (tutorial--save-tutorial-to): Remove unused variable.
6210
6211 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
6212 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
6213 (package-generate-autoloads, package-menu--generate)
6214 (package-menu--find-upgrades): Remove unused bindings.
6215
6216 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
6217 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
6218 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
6219 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
6220 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
6221 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
6222 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
6223 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
6224 (cua-delete-char-rectangle): Mark unused args.
6225 (cua-align-rectangle): Remove unused binding.
6226
6227 * mail/rmail.el (compilation--message->loc)
6228 (epa--find-coding-system-for-mime-charset): Declare.
6229
6230 * net/dbus.el (dbus-register-service): Declare.
6231 (dbus-name-owner-changed-handler): Remove unused binding.
6232
6233 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
6234 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
6235 (nxml-scan-backward-within): Mark unused arg.
6236 (nxml-dynamic-markup-word): Remove unused binding.
6237
6238 * mouse.el (mouse-menu-major-mode-map):
6239 * emacs-lisp/authors.el (authors-scan-change-log)
6240 (authors-add-to-author-list):
6241 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
6242 * emacs-lisp/smie.el (smie-auto-fill):
6243 * mail/sendmail.el (mail-bury):
6244 * mail/unrmail.el (unrmail):
6245 * net/tls.el (open-tls-stream):
6246 * textmodes/picture.el (picture-mouse-set-point):
6247 Remove unused bindings.
6248
6249 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
6250
6251 * net/tramp.el (tramp-action-password): Let-bind
6252 `enable-recursive-minibuffers' to t.
6253
6254 2012-04-18 Sam Steingold <sds@gnu.org>
6255
6256 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
6257 instead of 'string to accommodate values like [f11].
6258 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
6259 * progmodes/gdb-mi.el: Likewise.
6260
6261 2012-04-18 Leo Liu <sdl.web@gmail.com>
6262
6263 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
6264 current buffer.
6265 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
6266 LOCAL is nil.
6267
6268 2012-04-18 Chong Yidong <cyd@gnu.org>
6269
6270 * simple.el (line-move): Use forward-line if in batch mode
6271 (Bug#11053).
6272
6273 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
6274
6275 * files.el (after-find-file): Do not try to add a final newline if
6276 the buffer is read-only (Bug#11156).
6277
6278 2012-04-17 Richard Stallman <rms@gnu.org>
6279
6280 * mail/rmail.el (rmail-start-mail):
6281 Pass (rmail-mail-return...) for the return-action.
6282 Pass (rmail-yank-current-message...) for the yank-action.
6283 (rmail-yank-current-message): New function.
6284 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
6285 (rmail-reply): Likewise.
6286 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
6287
6288 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
6289 buffer, not the last. Reject temp buffers. Use the rmail-mode
6290 buffer, not newbuf.
6291
6292 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
6293
6294 * server.el (server-ensure-safe-dir): Simplify.
6295
6296 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
6297
6298 * emacs-lisp/smie.el: Provide smarter auto-filling.
6299 (smie-auto-fill): New function.
6300 (smie-setup): Use it.
6301
6302 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
6303
6304 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
6305
6306 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
6307 (comment-indent): Use it.
6308
6309 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
6310
6311 * ses.el: The overall change is to add cell renaming, that is
6312 setting fancy names for cell symbols other than name matching
6313 "\\`[A-Z]+[0-9]+\\'" regexp .
6314 (ses-localvars): Add ses--renamed-cell-symb-list.
6315 (ses-create-cell-variable): New defun.
6316 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
6317 (ses-relocate-formula): Relocate formulas only for cells the
6318 symbols of which are not renamed, i.e. symbols whose names do not
6319 match regexp "\\`[A-Z]+[0-9]+\\'".
6320 (ses-relocate-all): Relocate values only for cells the symbols of
6321 which are not renamed.
6322 (ses-load): Create cells variables as the (ses-cell ...) are read,
6323 in order to check row col consistency with cell symbol name only
6324 for cells that are not renamed.
6325 (ses-replace-name-in-formula): New defun.
6326 (ses-rename-cell): New defun.
6327
6328 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
6329
6330 * progmodes/perl-mode.el (perl-indent-parens-as-block):
6331 New option (bug#11118).
6332 (perl-calculate-indent): Respect it.
6333
6334 2012-04-17 Glenn Morris <rgm@gnu.org>
6335
6336 * dired-aux.el (dired-mark-read-string): Doc fix.
6337
6338 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
6339
6340 * dired-aux.el (dired-mark-read-string): Offer optional completion.
6341 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
6342
6343 2012-04-17 Glenn Morris <rgm@gnu.org>
6344
6345 * mouse.el (mouse-drag-track):
6346 * speedbar.el (speedbar-frame-mode):
6347 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
6348
6349 2012-04-16 Leo Liu <sdl.web@gmail.com>
6350
6351 * progmodes/python.el: Trivial cleanup.
6352
6353 2012-04-16 Glenn Morris <rgm@gnu.org>
6354
6355 * vc/vc.el (vc-string-prefix-p):
6356 * vc/pcvs-util.el (cvs-string-prefix-p):
6357 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
6358 * mpc.el (mpc-string-prefix-p):
6359 Make all of these into obsolete aliases for string-prefix-p.
6360 Update callers.
6361 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
6362
6363 * textmodes/two-column.el: Move custom options to the start.
6364 (frame-width): Remove compat definition.
6365 (2C-associate-buffer, 2C-dissociate):
6366 Use with-current-buffer rather than save-excursion.
6367 (2C-dissociate): Force a mode-line update.
6368 (2C-autoscroll): Use ignore-errors.
6369
6370 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
6371 Autoload trivia.
6372
6373 * emacs-lisp/cl-extra.el (*random-state*):
6374 Remove unnecessary declaration.
6375
6376 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
6377
6378 * play/cookie1.el (cookie-snarf):
6379 Give an explicit error if input file cannot be read.
6380
6381 * play/yow.el (yow-file): Use expand-file-name rather than concat.
6382
6383 * progmodes/perl-mode.el (c-macro-expand):
6384 Remove unnecessary autoload (it is in loaddefs.el).
6385
6386 * textmodes/picture.el (picture-desired-column)
6387 (picture-update-desired-column): Convert comments to doc-strings.
6388 (picture-substitute): Remove function.
6389 (picture-mode-map): Initialize in the defvar.
6390
6391 * woman.el: Remove eval-after-load for tar-mode.
6392 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
6393 (woman-tar-extract-file): Autoload it.
6394
6395 * frame.el (automatic-hscrolling): Make this alias obsolete.
6396
6397 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6398
6399 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
6400 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
6401 (ispell-dictionary-base-alist): Revert to original XEmacs
6402 friendly version for default. [:alpha:] will be added in
6403 `ispell-set-spellchecker-params' if needed.
6404
6405 2012-04-16 Chong Yidong <cyd@gnu.org>
6406
6407 * image.el (imagemagick--file-regexp): New variable.
6408 (imagemagick-register-types): Use it.
6409 (imagemagick-types-inhibit): Add :set function. Allow new value
6410 of t to inhibit all types.
6411
6412 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
6413 so we can preload it.
6414
6415 * loadup.el (fboundp): Preload regexp-opt, needed by
6416 imagemagick-register-types.
6417
6418 2012-04-15 Chong Yidong <cyd@gnu.org>
6419
6420 * frame.el (scrolling): Remove nearly unused customization group.
6421
6422 * scroll-all.el (scroll-all-mode): Move to windows group.
6423
6424 2012-04-15 Chong Yidong <cyd@gnu.org>
6425
6426 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
6427
6428 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 Avoid the use of ((lambda ...) ...) in lexical-binding code.
6431 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
6432
6433 2012-04-15 Glenn Morris <rgm@gnu.org>
6434
6435 * simple.el (process-file-side-effects): Doc fix.
6436
6437 2012-04-15 Glenn Morris <rgm@gnu.org>
6438
6439 * international/mule-cmds.el (set-language-environment): Doc fix.
6440
6441 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
6442
6443 * server.el (server-auth-key, server-generate-key): Doc fixes.
6444 (server-get-auth-key): Doc fix. Use `string-match-p'.
6445 (server-start): Reflow docstring.
6446
6447 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
6448
6449 * server.el (server-generate-key): `called-interactively-p'
6450 requires a parameter.
6451
6452 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
6453
6454 * server.el (server-auth-key): New variable.
6455 (server-generate-key, server-get-auth-key): New function.
6456 (server-start): Use the new variable and functions to allow
6457 setting a permanent server key (bug#9423).
6458
6459 2012-04-14 Leo Liu <sdl.web@gmail.com>
6460
6461 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
6462
6463 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
6464
6465 Spelling fixes.
6466 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
6467 Emacs uses American spelling.
6468
6469 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
6470
6471 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
6472 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
6473 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
6474 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
6475
6476 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6477
6478 * progmodes/which-func.el (which-func-modes): Change default.
6479
6480 2012-04-14 Kim F. Storm <storm@cua.dk>
6481
6482 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
6483 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
6484
6485 2012-04-14 Chong Yidong <cyd@gnu.org>
6486
6487 * custom.el (custom-theme-set-variables): Doc fix.
6488
6489 2012-04-14 Glenn Morris <rgm@gnu.org>
6490
6491 * international/mule.el (set-auto-coding-for-load): Doc fix.
6492
6493 2012-04-14 Alan Mackenzie <acm@muc.de>
6494
6495 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
6496 imenu work again for Objective C Mode. Correct the *-index values,
6497 these having been disturbed by a previous change in 2011-08.
6498
6499 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
6500 Correct two search limits.
6501
6502 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6503
6504 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
6505
6506 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
6507
6508 * international/characters.el: Fix sorting.
6509
6510 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6511
6512 * international/characters.el: Add more missing Latin case pairs.
6513
6514 2012-04-14 Glenn Morris <rgm@gnu.org>
6515
6516 * files.el (dir-locals-set-class-variables): Doc fix.
6517
6518 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6519
6520 * international/characters.el: Add set-case-syntax-pair call for
6521 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
6522 counterpart. (Bug#11209)
6523
6524 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
6525
6526 2012-04-14 Glenn Morris <rgm@gnu.org>
6527
6528 * calendar/holidays.el (calendar-check-holidays): Doc fix.
6529
6530 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6531
6532 * textmodes/ispell.el (ispell-dictionary-base-alist):
6533 Add data for Hebrew.
6534
6535 2012-04-14 Chong Yidong <cyd@gnu.org>
6536
6537 * net/rcirc.el (rcirc-cmd-quit):
6538 Revert 2012-03-18 change (Bug#11192).
6539
6540 2012-04-14 Glenn Morris <rgm@gnu.org>
6541
6542 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
6543
6544 2012-04-14 Eli Zaretskii <eliz@gnu.org>
6545
6546 * minibuffer.el (completion-in-region-mode-map):
6547 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
6548
6549 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
6550
6551 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
6552
6553 2012-04-13 Masatake YAMATO <yamato@redhat.com>
6554
6555 * minibuffer.el (minibuffer-local-filename-syntax): New variable
6556 to allow `C-M-f' and `C-M-b' to move to the nearest path
6557 separator (bug#9511).
6558
6559 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
6560
6561 * avoid.el: Require cl when compiling. And also move the
6562 `provide' to the end.
6563
6564 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6565
6566 * avoid.el (mouse-avoidance-banish-position): New variable.
6567 (mouse-avoidance-banish-destination): Use it (bug#10165).
6568
6569 2012-04-13 Leo Liu <sdl.web@gmail.com>
6570
6571 * progmodes/which-func.el (which-func-modes): Add objc-mode.
6572
6573 2012-04-13 Ken Brown <kbrown@cornell.edu>
6574
6575 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
6576 this is no longer needed now that cygstart understands file:// URLs.
6577 (browse-url-filename-alist): For the same reason, don't modify
6578 file:// URLs on Cygwin.
6579
6580 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
6581
6582 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
6583 the region on shift if the binding is already shifted (bug#11221).
6584
6585 2012-04-12 Glenn Morris <rgm@gnu.org>
6586
6587 * mail/mailpost.el: Move to obsolete/.
6588
6589 2012-04-12 Drew Adams <drew.adams@oracle.com>
6590
6591 * imenu.el (imenu--generic-function): Ignore invisible definitions
6592 (bug#10123).
6593
6594 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
6595
6596 * hexl.el (hexl-bits): New variable.
6597 (hexl-options): Mention the variable in the doc string.
6598 (hexl-rulerise, hexl-line-displen): New functions.
6599 (hexl-mode): Mention the new variable.
6600 (hexl-mode, hexl-current-address, hexl-current-address):
6601 Use the displen.
6602 (hexl-ascii-start-column): New function.
6603 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
6604 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
6605
6606 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6607
6608 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
6609 '("-i" ENCODING), in 2 separate command-line arguments, to specify
6610 the encoding, as expected by hunspell.
6611
6612 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6613
6614 * battery.el (battery--linux-sysfs-regexp): New const.
6615 (battery-status-function): Use it. Remove yeeloong special case.
6616 (battery-yeeloong-sysfs): Remove.
6617 (battery-echo-area-format): Remove yeeloong special case.
6618
6619 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6620
6621 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
6622 Reported by Noah Friedman.
6623
6624 * subr.el (read-passwd): Use read-string.
6625
6626 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6627
6628 * vcursor.el (vcursor-move): Increase the priority of the overlay
6629 (bug#9663).
6630
6631 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
6632
6633 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
6634 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
6635
6636 2012-04-11 William Stevenson <yhvh2000@gmail.com>
6637
6638 * textmodes/artist.el (artist-mode): Convert artist-mode to use
6639 define-minor-mode (bug#10760).
6640
6641 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
6642
6643 * progmodes/grep.el (rgrep): Tweak the find command line so
6644 that directories matching `grep-find-ignored-files' won't be
6645 pruned (bug#10351).
6646
6647 2012-04-11 Chong Yidong <cyd@gnu.org>
6648
6649 * startup.el (command-line): Remove support for long-obsolete
6650 variable font-lock-face-attributes.
6651
6652 2012-04-11 Glenn Morris <rgm@gnu.org>
6653
6654 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
6655
6656 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6657
6658 * window.el (window--state-get-1): Obey window-point-insertion-type.
6659
6660 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
6661
6662 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
6663 to previous function when point is on the first character of a
6664 function. Take care of that in `narrow-to-defun' (bug#6157).
6665
6666 2012-04-11 Glenn Morris <rgm@gnu.org>
6667
6668 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
6669 not just file-errors.
6670
6671 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
6672 (vc-bzr-sha1): Use internal sha1.
6673
6674 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6675
6676 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
6677
6678 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
6679
6680 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
6681 that start in the middle of the line (bug#10496).
6682
6683 2012-04-10 Dan Nicolaescu <dann@gnu.org>
6684
6685 * battery.el (battery-linux-proc-acpi): Only one battery is
6686 discharged at a time, but that seems to confuse battery.el when
6687 computing `rate-type' for the battery not being discharged
6688 (bug#10332).
6689
6690 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6691
6692 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
6693
6694 * international/quail.el: Use dolist and simplify.
6695 (quail-define-package, quail-update-keyboard-layout)
6696 (quail-define-rules): Use dolist.
6697 (quail-insert-kbd-layout, quail-get-translation): CSE.
6698
6699 * tmm.el: Use dolist, remove left over hook.
6700 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
6701 Use dolist.
6702 (calendar-load-hook): Don't mess with it.
6703
6704 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
6705 Use derived-mode-p. Run the diff asynchronously.
6706
6707 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6708
6709 * obsolete/mouse-sel.el: Add an Obsolete-since header.
6710
6711 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
6712
6713 * misc.el: Display absolute path of loaded DLLs (bug#10424).
6714 (list-dynamic-libraries--loaded): New function.
6715 (list-dynamic-libraries--refresh): Use it.
6716
6717 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
6718
6719 * progmodes/python.el (python-fill-paragraph):
6720 Make python-fill-region in a multiline string work when font-lock is
6721 disabled (bug#7018).
6722
6723 2012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
6724
6725 * language/european.el (cp775): Add oem/legacy (en)coding on
6726 DOS/MS Windows for the Baltic languages. There are still plenty
6727 of texts written in this encoding/codepage (bug#6519).
6728
6729 2012-04-10 Glenn Morris <rgm@gnu.org>
6730
6731 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
6732 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
6733
6734 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
6735
6736 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6737 next-line "n" and previous-line "p" in order to make recentf more
6738 consistent with ibuffer, dired or org-mode (bug#9387).
6739
6740 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6741
6742 * image.el (put-image): Return the overlay created instead of the
6743 optional input string (bug#7834). Note that this may break code
6744 that is (for some reason or other) depending on `put-image'
6745 returning the string.
6746
6747 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
6748
6749 * simple.el (zap-to-char): Allow zapping using input methods
6750 (bug#1580).
6751
6752 * textmodes/fill.el (fill-region): Leave point and mark where they
6753 were before filling (bug#5399).
6754
6755 2012-04-09 Glenn Morris <rgm@gnu.org>
6756
6757 * version.el (emacs-bzr-get-version):
6758 Handle lightweight checkouts of local branches.
6759
6760 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
6761
6762 * international/characters.el: Recover lost case pairs. (Bug#11209)
6763
6764 2012-04-09 Chong Yidong <cyd@gnu.org>
6765
6766 * custom.el (custom-variable-p): Return nil for non-symbol
6767 arguments instead of signaling an error.
6768 (user-variable-p): Obsolete alias for custom-variable-p.
6769
6770 * apropos.el (apropos-variable):
6771 * files-x.el (read-file-local-variable):
6772 * simple.el (set-variable):
6773 * woman.el (woman-mini-help):
6774 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
6775
6776 2012-04-09 Glenn Morris <rgm@gnu.org>
6777
6778 * startup.el (normal-top-level): Don't look for leim-list.el
6779 in places where it will not be found. (Bug#910)
6780
6781 * international/mule-cmds.el (set-default-coding-systems):
6782 * files.el (normal-mode):
6783 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
6784 This function was removed with ucs-tables.el in 2008.
6785
6786 2012-04-08 Eli Zaretskii <eliz@gnu.org>
6787
6788 * textmodes/ispell.el (ispell-check-version): For hunspell, set
6789 ispell-encoding8-command to "-i", without a trailing space.
6790 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
6791 separate command-line arguments, to specify the encoding, since
6792 that's how hunspell expects it.
6793
6794 2012-04-08 Glenn Morris <rgm@gnu.org>
6795
6796 * loadup.el: Load bindings before cus-start.
6797 This reduces somewhat the number of "rogue" settings in emacs -Q.
6798
6799 2012-04-07 Glenn Morris <rgm@gnu.org>
6800
6801 * version.el (emacs-bzr-get-version): New function.
6802 (emacs-bzr-version): New variable.
6803 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
6804 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
6805
6806 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6807
6808 * international/uni-bidi.el, international/uni-category.el:
6809 * international/uni-combining.el, international/uni-decimal.el:
6810 * international/uni-decomposition.el, international/uni-digit.el:
6811 * international/uni-lowercase.el, international/uni-mirrored.el:
6812 * international/uni-name.el, international/uni-numeric.el:
6813 * international/uni-titlecase.el, international/uni-uppercase.el:
6814 Update for Unicode 6.1.
6815
6816 2012-04-07 Eli Zaretskii <eliz@gnu.org>
6817
6818 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
6819
6820 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
6821
6822 * window.el (shrink-window): Mention the `window-min-height'
6823 variable in the doc string.
6824
6825 2012-04-05 Bastien Guerry <bzg@altern.org>
6826
6827 * color.el (color-lighten-name): Fix typo.
6828
6829 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6830
6831 * server.el (server--on-display-p): New function.
6832 (server--on-display-p): Use it.
6833
6834 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
6835
6836 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
6837 (bug#11145).
6838
6839 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6840
6841 * comint.el (comint--common-quoted-suffix): Check string boundary
6842 before comparing (bug#11158).
6843 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
6844
6845 2012-04-04 Chong Yidong <cyd@gnu.org>
6846
6847 * minibuffer.el (completion-extra-properties): Doc fix.
6848
6849 * subr.el (delayed-warnings-hook): Doc fix.
6850
6851 2012-04-04 Daiki Ueno <ueno@unixuser.org>
6852
6853 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
6854 selection (Bug#11159).
6855 (epa-insert-keys): Inform that the default public key will be
6856 exported if no key is selected.
6857
6858 2012-04-04 Richard Stallman <rms@gnu.org>
6859
6860 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
6861
6862 2012-04-03 Chong Yidong <cyd@gnu.org>
6863
6864 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
6865 mail-insert-file, not its obsolete alias mail-attach-file.
6866
6867 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
6868
6869 * notifications.el (notifications-notify): Fix docstring.
6870
6871 2012-04-02 Glenn Morris <rgm@gnu.org>
6872
6873 * emacs-lisp/authors.el (authors-aliases): Another addition.
6874
6875 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
6876
6877 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
6878 `tramp-compat-call-process' instead of `tramp-local-call-process'.
6879 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
6880
6881 2012-04-01 Chong Yidong <cyd@gnu.org>
6882
6883 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
6884 Handle root directory properly.
6885 (copy-directory): Caller changed.
6886
6887 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6888 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
6889
6890 2012-03-31 Glenn Morris <rgm@gnu.org>
6891
6892 * term/xterm.el (xterm-extra-capabilities): Doc fix.
6893
6894 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
6895
6896 * calendar/calendar.el (calendar-window-list)
6897 (calendar-hide-window): Restore. (Bug#11140)
6898 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
6899
6900 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
6901
6902 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6903
6904 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
6905 Check if file is a symlink (Bug#10489).
6906
6907 * files.el (copy-directory): Likewise.
6908
6909 2012-03-30 Chong Yidong <cyd@gnu.org>
6910
6911 * image.el (imagemagick-types-inhibit)
6912 (imagemagick-register-types): Doc fix.
6913
6914 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6915
6916 * textmodes/ispell.el (ispell-get-extended-character-mode):
6917 Disable extended-char-mode for hunspell. hunspell does not support it
6918 and treats ~word as ordinary words in pipe mode.
6919
6920 2012-03-30 Glenn Morris <rgm@gnu.org>
6921
6922 * tutorial.el (help-with-tutorial): Ensure local variables don't
6923 happen to make the buffer read-only. (Bug#11127)
6924
6925 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
6926
6927 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
6928 (perl-calculate-indent): Return `noindent' in strings.
6929
6930 2012-03-28 Sam Steingold <sds@gnu.org>
6931
6932 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
6933 instead of the broken adhockery which does not prevent calendar
6934 buffers from being displayed at random after exit.
6935 (calendar-window-list, calendar-hide-window): Remove the broken
6936 adhockery.
6937
6938 2012-03-28 Glenn Morris <rgm@gnu.org>
6939
6940 * replace.el (query-replace-map): Doc fix.
6941
6942 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
6943
6944 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
6945 contents. (Bug#11109)
6946
6947 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6948
6949 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
6950 (bug#11077).
6951 (avl-tree--check, avl-tree--check-node): New funs.
6952
6953 2012-03-27 Martin Rudalics <rudalics@gmx.at>
6954
6955 * window.el (switch-to-visible-buffer): New option.
6956 (switch-to-prev-buffer, switch-to-next-buffer):
6957 Observe switch-to-visible-buffer. Make sure that checking for a window
6958 showing a buffer already is done on the same frame.
6959
6960 2012-03-27 Glenn Morris <rgm@gnu.org>
6961
6962 * startup.el (mail-host-address): Doc fix.
6963
6964 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6965
6966 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
6967 than 197 variables.
6968
6969 2012-03-26 Ami Fischman <ami@fischman.org>
6970
6971 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
6972
6973 2012-03-26 Glenn Morris <rgm@gnu.org>
6974
6975 * files.el (save-buffers-kill-emacs): Doc fix.
6976
6977 * startup.el (normal-top-level, command-line, command-line-1):
6978 Give them doc strings.
6979
6980 2012-03-25 Eli Zaretskii <eliz@gnu.org>
6981
6982 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
6983 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
6984
6985 2012-03-25 Chong Yidong <cyd@gnu.org>
6986
6987 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
6988 theme if it was previously enabled before (Bug#11031).
6989
6990 * cus-theme.el (custom-theme-write-faces): Retrieve current face
6991 spec with custom-face-get-current-spec if its :shown-value is not
6992 determined yet (Bug#9337).
6993 (customize-create-theme, custom-theme-revert): Doc fixes.
6994
6995 * button.el (button-at): Minor addition to docstring.
6996
6997 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
6998
6999 * vc/vc.el (vc-merge): Fix a prompt.
7000
7001 2012-03-24 Chong Yidong <cyd@gnu.org>
7002
7003 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
7004 point (Bug#9623).
7005
7006 * button.el (button-at): Minor addition to docstring.
7007
7008 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
7009
7010 * newcomment.el (comment-choose-indent): No space after BOL.
7011
7012 2012-03-22 Sam Steingold <sds@gnu.org>
7013
7014 * window.el (switch-to-prev-buffer): Revert last patch because the
7015 bug turned out to be an advertised feature (Elisp manual 28.14).
7016
7017 2012-03-22 Glenn Morris <rgm@gnu.org>
7018
7019 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
7020 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
7021
7022 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
7023
7024 * net/network-stream.el (network-stream-open-starttls): Make error
7025 message under Windows be less misleading.
7026
7027 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
7028
7029 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
7030 understands (bug#9942).
7031
7032 2012-03-22 Chong Yidong <cyd@gnu.org>
7033
7034 * simple.el (end-of-visible-line): Handle return value of
7035 next-single-property-change properly (Bug#9371).
7036
7037 2012-03-22 Kenichi Handa <handa@m17n.org>
7038
7039 * international/quail.el (quail-insert-kbd-layout): Fix previous
7040 change. To avoid unwanted bidi reordering, use
7041 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
7042
7043 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
7044
7045 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
7046 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
7047 (ruby-beginning-of-indent): Be more careful with the difference
7048 between word-boundary and symbol boundary.
7049 (ruby-mode-syntax-table): Make : a symbol constituent.
7050
7051 2012-03-21 Andreas Politz <politza@fh-trier.de>
7052
7053 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
7054
7055 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
7056
7057 * progmodes/etags.el (tags-completion-at-point-function):
7058 Improve last fix.
7059
7060 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
7061
7062 2012-03-21 Sam Steingold <sds@gnu.org>
7063
7064 * progmodes/etags.el (tags-completion-at-point-function):
7065 Avoid the error when point is inside the pattern.
7066
7067 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
7068
7069 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
7070 line (Bug#10855).
7071
7072 2012-03-21 Drew Adams <drew.adams@oracle.com>
7073
7074 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
7075
7076 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
7077
7078 * ido.el (ido-set-current-directory, ido-read-internal)
7079 (ido-choose-completion-string, ido-completion-help): Handle nil
7080 value of ido-completion-buffer (Bug#11008).
7081
7082 2012-03-21 Sam Steingold <sds@gnu.org>
7083
7084 * window.el (switch-to-prev-buffer): Do not switch to a visible
7085 window previous buffer, just like with the frame previous buffers.
7086
7087 2012-03-21 Chong Yidong <cyd@gnu.org>
7088
7089 * faces.el (make-face, make-empty-face, copy-face):
7090 * face-remap.el (face-remap-add-relative, face-remap-set-base):
7091 Doc fixes.
7092
7093 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
7094
7095 * wid-edit.el (widget-complete-field): Remove (bug#11051).
7096 (widget-complete): Remove broken use of it.
7097
7098 2012-03-20 Chong Yidong <cyd@gnu.org>
7099
7100 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
7101 Use string-width and truncate-string-width to handle arbitrary
7102 characters.
7103
7104 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
7105
7106 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
7107 to draw rectangles, not squares. (Regression introduced by revno
7108 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
7109
7110 2012-03-18 Chong Yidong <cyd@gnu.org>
7111
7112 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
7113 it is not yet defined (for temacs).
7114
7115 2012-03-18 Leo Liu <sdl.web@gmail.com>
7116
7117 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
7118
7119 2012-03-17 Eli Zaretskii <eliz@gnu.org>
7120
7121 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
7122 (ispell-choices-win-default-height, ispell-silently-savep)
7123 (ispell-dictionary-alist, ispell-encoding8-command)
7124 (ispell-check-version, ispell-aspell-find-dictionary)
7125 (ispell-valid-dictionary-list, ispell-words-keyword)
7126 (ispell-get-word, ispell-internal-change-dictionary)
7127 (ispell-region, ispell-skip-region-list)
7128 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
7129 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
7130 (ispell-message-text-end, ispell-message)
7131 (ispell-buffer-local-parsing): Doc fix.
7132
7133 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
7134
7135 * htmlfontify.el: Add support for code block fontification for ODT
7136 export (Bug #9914).
7137 (hfy-optimisations): Define new option
7138 `body-text-only'
7139 (hfy-fontify-buffer): Honor above setting.
7140 (hfy-begin-span, hfy-end-span): New routines factored out form
7141 `hfy-fontify-buffer'.
7142 (hfy-begin-span-handler, hfy-end-span-handler): New variables
7143 that permit insertion of custom tags.
7144 (hfy-fontify-buffer): Use above handlers.
7145 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
7146 (hfy-face-to-css): Re-defined to be a variable.
7147 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
7148 over multiple runs. This is made possible by having the caller let
7149 bind a special variable `hfy-user-sheet-assoc'.
7150 (htmlfontify-string): New defun.
7151 (hfy-compile-face-map): Make sure that the last char in the
7152 buffer is correctly fontified.
7153 (hfy-face-resolve-face): Whitespace only change.
7154
7155 2012-03-17 Eli Zaretskii <eliz@gnu.org>
7156
7157 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
7158 message more clear.
7159
7160 2012-03-16 Leo Liu <sdl.web@gmail.com>
7161
7162 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
7163
7164 2012-03-16 Alan Mackenzie <acm@muc.de>
7165
7166 Further optimise the handling of large macros.
7167
7168 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
7169 limit to a call of `c-literal-limits'.
7170 (c-determine-+ve-limit): New function.
7171 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
7172 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
7173 In CASE 5B, restrict a search limit to 500.
7174 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
7175
7176 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
7177 Restrict macro bounds to +-500 from after-change's BEG END.
7178
7179 2012-03-16 Leo Liu <sdl.web@gmail.com>
7180
7181 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
7182
7183 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
7184
7185 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
7186 `special-mode' setting of `buffer-read-only'. (Bug#11010)
7187
7188 2012-03-16 Glenn Morris <rgm@gnu.org>
7189
7190 * view.el (view-buffer, view-buffer-other-window)
7191 (view-buffer-other-frame): Doc fixes re special mode-class.
7192
7193 * subr.el (eval-after-load): If named feature is provided not from
7194 a file, run after-load forms. (Bug#10946)
7195
7196 * calendar/calendar.el (calendar-insert-at-column):
7197 Handle non-unit-width characters a bit better. (Bug#10978)
7198
7199 2012-03-15 Chong Yidong <cyd@gnu.org>
7200
7201 * emacs-lisp/ring.el (ring-extend): New function.
7202 (ring-insert+extend): Extend the ring correctly (Bug#11019).
7203
7204 * comint.el (comint-read-input-ring)
7205 (comint-add-to-input-history): Grow comint-input-ring lazily.
7206
7207 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
7208
7209 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
7210 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
7211
7212 * imenu.el: Fix multiple inheritance breakage (bug#9199).
7213 (imenu-add-to-menubar): Don't add a redundant index.
7214 (imenu-update-menubar): Handle a dynamically composed keymap.
7215
7216 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
7217
7218 * mail/sendmail.el (mail-encode-header):
7219 Bind rfc2047-encode-encoded-words to nil.
7220
7221 2012-03-13 Glenn Morris <rgm@gnu.org>
7222
7223 * calendar/calendar.el (calendar-string-spread):
7224 Handle non-unit-width characters a bit better. (Bug#10978)
7225
7226 2012-03-13 Leo Liu <sdl.web@gmail.com>
7227
7228 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
7229 directory and file as argument (Bug#10822).
7230
7231 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
7232
7233 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
7234 For dynamically generated code, follow $PC.
7235 (gdb-disassembly-handler-custom): Handle no function name case.
7236
7237 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
7238
7239 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
7240 * emulation/ws-mode.el (ws-query-replace):
7241 * sort.el (sort-regexp-fields):
7242 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
7243
7244 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7245
7246 * dabbrev.el: Fix cycle completion order (bug#10963).
7247 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
7248 (dabbrev-completion): Don't use an obarray; provide
7249 a cycle-sort-function.
7250
7251 2012-03-12 Leo Liu <sdl.web@gmail.com>
7252
7253 * simple.el (kill-new): Use equal-including-properties for comparison.
7254 (kill-do-not-save-duplicates): Doc fix.
7255
7256 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7257
7258 * dabbrev.el: Fix cycle completion (bug#10963).
7259 Use lexical binding and wrap to 80 columns.
7260 (dabbrev-completion): Delay computing the list of completions.
7261
7262 2012-03-12 Kenichi Handa <handa@m17n.org>
7263
7264 * international/quail.el (quail-insert-kbd-layout): Surround each
7265 row by LRO and PDF instead of inserting many LRMs. Pad the left
7266 and right of each non-spacing marks. Insert invisible space
7267 between lower and upper characters to prevent composition.
7268
7269 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7270
7271 * minibuffer.el (minibuffer-complete): Don't get confused when the
7272 function is run twice via different commands (bug#10958).
7273 (complete-with-action): Fix docstring.
7274
7275 2012-03-12 Chong Yidong <cyd@gnu.org>
7276
7277 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
7278 (nxml-completion-at-point-function): New function.
7279 (nxml-mode): Use it.
7280 (nxml-bind-meta-tab-to-complete-flag): Default to t.
7281
7282 * emacs-lisp/package.el (package-unpack, package-unpack-single):
7283 Load generated autoloads file before byte compiling (Bug#10970).
7284 (package--make-autoloads-and-compile): New helper fun.
7285
7286 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
7287
7288 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
7289
7290 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
7291
7292 * autorevert.el (auto-revert-handler): Ensure, that
7293 file-readable-p is applied only for local files or in
7294 auto-revert-tail-mode.
7295
7296 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
7297
7298 * server.el (server-eval-at): Handle non-tcp connections.
7299 Decode result string.
7300
7301 * server.el (server-msg-size): New constant.
7302 (server-reply-print): New function.
7303 (server-eval-and-print): Use it.
7304 (server-eval-at): Use server-quote-arg and server-unquote-arg.
7305 Handle -print-nonl.
7306
7307 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
7308
7309 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
7310 (Bug#10987).
7311
7312 2012-03-11 Chong Yidong <cyd@gnu.org>
7313
7314 * simple.el (goto-line): Doc fix (Bug#9938).
7315
7316 * subr.el (save-window-excursion): Doc fix (Bug#9979).
7317
7318 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
7319 when finished (Bug#10963).
7320
7321 2012-03-11 Martin Rudalics <rudalics@gmx.at>
7322
7323 * window.el (split-window-below): Fix bug in case where
7324 split-window-keep-point is nil (Bug#10971).
7325
7326 2012-03-11 Juri Linkov <juri@jurta.org>
7327
7328 * replace.el (replace-highlight): Set isearch-word to nil
7329 unconditionally. (Bug#10887)
7330
7331 2012-03-10 Eli Zaretskii <eliz@gnu.org>
7332
7333 * net/mairix.el (mairix-replace-invalid-chars): Rename from
7334 mairix-replace-illegal-chars; all callers changed. Don't remove
7335 ^, ~, and = characters: they are meaningful in mairix search specs.
7336 (mairix-widget-create-query): Add usage information about mairix
7337 search forms: negating words, searching for substrings, etc.
7338
7339 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
7340
7341 * international/fontset.el (font-encoding-alist): Add an entry for
7342 ksx1001 (Bug#5667).
7343
7344 2012-03-10 Richard Stallman <rms@gnu.org>
7345
7346 * mail/sendmail.el (mail-encode-header):
7347 Set rfc2047-encode-encoded-words.
7348
7349 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
7350
7351 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
7352 view buffer means not swapped.
7353 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
7354 (rmail-write-region-annotate): Error if real text has disappeared.
7355
7356 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
7357
7358 2012-03-10 Chong Yidong <cyd@gnu.org>
7359
7360 * emulation/cua-rect.el (cua--init-rectangles):
7361 * emulation/cua-base.el (cua--init-keymaps):
7362 Add delete-forward-char to remappings (Bug#9666).
7363
7364 2012-03-10 Martin Rudalics <rudalics@gmx.at>
7365
7366 * speedbar.el (speedbar-unhighlight-one-tag-line):
7367 Avoid unhighlighting due to frame switching (Bug#10275).
7368
7369 2012-03-10 Chong Yidong <cyd@gnu.org>
7370
7371 * minibuffer.el (completion-in-region, completion-help-at-point):
7372 Give the completion field overlay a high priority (Bug#6830).
7373
7374 * dired.el (dired-goto-file): Recognize absolute file name
7375 listings (Bug#7126).
7376 (dired-goto-file-1): New helper function.
7377 (dired-toggle-read-only): Inhibit warnings.
7378
7379 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
7380
7381 * net/dbus.el (dbus-property-handler): Return empty array if
7382 there are no properties.
7383
7384 2012-03-09 Leo Liu <sdl.web@gmail.com>
7385
7386 * savehist.el (savehist-printable): Stricter check for string
7387 value (Bug#10937).
7388
7389 2012-03-09 Eli Zaretskii <eliz@gnu.org>
7390
7391 * mail/smtpmail.el (smtpmail-send-it):
7392 Bind coding-system-for-write to *-unix, so that FCC files are kept in
7393 valid mbox format.
7394
7395 2012-03-09 Glenn Morris <rgm@gnu.org>
7396
7397 * files.el (dir-locals-find-file):
7398 Don't check result is regular, readable.
7399 (dir-locals-read-from-file): Demote errors.
7400
7401 2012-03-08 Eli Zaretskii <eliz@gnu.org>
7402
7403 * international/quail.el (quail-insert-kbd-layout):
7404 Insert invisible LRM characters before each character in a keyboard
7405 layout cell, to prevent their reordering by bidi display engine.
7406 For details, see the discussion in
7407 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
7408
7409 2012-03-08 Alan Mackenzie <acm@muc.de>
7410
7411 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
7412 the starting position; make it extend the marked region when
7413 invoked repeatedly - all under appropriate circumstances.
7414 Fixes bugs #5525, #10906.
7415
7416 2012-03-08 Glenn Morris <rgm@gnu.org>
7417
7418 * files.el (locate-dominating-file, dir-locals-find-file):
7419 Undo 2012-03-06 change.
7420
7421 2012-03-07 Eli Zaretskii <eliz@gnu.org>
7422
7423 * international/quail.el (quail-help):
7424 Force bidi-paragraph-direction be left-to-right. See discussion in
7425 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
7426 for the reason.
7427
7428 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
7429
7430 Avoid superfluous registering of signals. (Bug#10807)
7431
7432 * notifications.el (notifications-on-action-object)
7433 (notifications-on-close-object): New defvars.
7434 (notifications-on-action-signal, notifications-on-closed-signal):
7435 Unregister the signal if not needed any longer.
7436 (notifications-notify): Register `notifications-action-signal' or
7437 `notifications-closed-signal', if :on-action or :on-close has been
7438 passed as argument.
7439
7440 2012-03-07 Chong Yidong <cyd@gnu.org>
7441
7442 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
7443 non-X platforms.
7444
7445 2012-03-06 Glenn Morris <rgm@gnu.org>
7446
7447 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
7448 (x-disown-selection-internal, x-get-selection-internal):
7449 Doc fix (add arglist signatures). (Bug#10783)
7450
7451 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
7452
7453 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
7454 Handle breakpoints with no "type".
7455
7456 2012-03-06 Glenn Morris <rgm@gnu.org>
7457
7458 * files.el (locate-dominating-file): Add optional predicate argument.
7459 (dir-locals-find-file): Make use of above change.
7460
7461 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
7462
7463 * info.el (Info-insert-dir): Also try "dir.gz".
7464
7465 2012-03-06 Glenn Morris <rgm@gnu.org>
7466
7467 * files.el (dir-locals-find-file):
7468 Ignore non-readable or non-regular files. (Bug#10928)
7469
7470 * files.el (locate-dominating-file): Doc fix.
7471
7472 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
7473
7474 * calendar/calendar.el (calendar-set-mode-line):
7475 `getenv' returns a string. (Bug#10951)
7476
7477 2012-03-05 Leo Liu <sdl.web@gmail.com>
7478
7479 * simple.el (backward-delete-char-untabify): Constrain point to
7480 field (Bug#10939).
7481
7482 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
7483
7484 2012-03-05 Chong Yidong <cyd@gnu.org>
7485
7486 * simple.el (count-words): If called from Lisp, return the word
7487 count, for symmetry with `count-lines'. Arglist changed.
7488 (count-words--message): Args changed. Consolidate counting code
7489 from count-words and count-words-region.
7490 (count-words-region): Caller changed.
7491 (count-lines-region): Make it an obsolete alias.
7492
7493 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
7494
7495 * saveplace.el (save-place-to-alist)
7496 (save-place-ignore-files-regexp): Allow value nil to disable this
7497 feature.
7498
7499 2012-03-04 Chong Yidong <cyd@gnu.org>
7500
7501 * faces.el (face-spec-reset-face): For the default face, reset the
7502 attributes to default values (Bug#10748).
7503
7504 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
7505
7506 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
7507 previous patch: Check `message-send-mail-function', and not the
7508 default function (bug#10897).
7509
7510 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
7511
7512 * notifications.el (notifications-on-action-signal)
7513 (notifications-on-closed-signal): Check for unique service name of
7514 incoming event. Fix error in removing entry.
7515 (top): Register for signals with wildcard service name.
7516 (notifications-notify): Use daemon unique service name for map entries.
7517
7518 2012-03-04 Chong Yidong <cyd@gnu.org>
7519
7520 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
7521
7522 2012-03-04 Glenn Morris <rgm@gnu.org>
7523
7524 * abbrev.el (copy-abbrev-table, abbrev-table-p)
7525 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
7526 (expand-abbrev, define-abbrev-table): Doc fixes.
7527
7528 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7529
7530 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
7531 `message-default-send-mail-function' and not `send-mail-function'
7532 when doing the prompting for `sendmail-query-once' before sending
7533 in Message buffers (bug#10897).
7534
7535 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
7536 This is inconsistent with all the other stream functions, which leave
7537 the setting up to the higher levels (if so wanted) (bug#10931).
7538
7539 2012-03-02 Alan Mackenzie <acm@muc.de>
7540
7541 Depessimize the handling of very large macros.
7542
7543 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
7544 (c-macro-cache-syntactic): New variables to implement a one
7545 element macro cache.
7546 (c-invalidate-macro-cache): New function.
7547 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
7548 Adapt to use the new cache.
7549 (c-state-safe-place): Use better the cache of safe positions.
7550 (c-state-semi-nonlit-pos-cache)
7551 (c-state-semi-nonlit-pos-cache-limit):
7552 New variables for...
7553 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
7554 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
7555 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
7556 Use c-state-semi-safe-place.
7557
7558 * progmodes/cc-langs.el (c-get-state-before-change-functions):
7559 Add c-invalidate-macro-cache to the C, C++, Obj entries.
7560
7561 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
7562
7563 * jka-compr.el (jka-compr-call-process):
7564 Apply `file-accessible-directory-p' only when the default directory is
7565 not remote.
7566
7567 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
7568
7569 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
7570 access of FILE2, if FILE1 does not exist.
7571
7572 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
7573 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
7574
7575 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
7576 Add "PAGER=" to `process-environment'.
7577
7578 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
7579
7580 * progmodes/sql.el: Bug fix
7581 (sql-get-login-ext): Save login values in globals.
7582 (sql-get-login): Use new version of `sql-get-login-ext'.
7583 (sql-interactive-mode): Set global `sql-connection' to nil.
7584 (sql-connect): Set global values for connection.
7585 (sql-product-interactive): Save global values as buffer local.
7586
7587 2012-02-29 Leo Liu <sdl.web@gmail.com>
7588
7589 * abbrev.el (define-abbrevs): Reset sys to nil.
7590
7591 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7592
7593 * files.el (file-equal-p): Rename from `files-equal-p'.
7594 Return nil when one or both files don't exist.
7595 (file-subdir-of-p): Now only top directory must exists,
7596 return nil if it doesn't.
7597 (copy-directory): No need to test with `file-subdir-of-p' after
7598 creating dir.
7599 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
7600 to `file-equal-p'.
7601
7602 2012-02-28 Glenn Morris <rgm@gnu.org>
7603
7604 * shell.el (shell-mode):
7605 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
7606 * play/landmark.el (landmark-font-lock-face-O):
7607 * play/handwrite.el (handwrite):
7608 * play/gomoku.el (gomoku-O):
7609 * net/browse-url.el (browse-url-browser-display):
7610 * international/mule.el (define-charset):
7611 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
7612 * filesets.el (filesets-find-file-delay):
7613 * eshell/em-xtra.el (eshell-xtra):
7614 * eshell/em-unix.el (eshell-grep):
7615 * emulation/viper.el (viper-mode):
7616 * emacs-lisp/regexp-opt.el (regexp-opt-group):
7617 * emacs-lisp/easymenu.el (easy-menu-define):
7618 * calendar/timeclock.el (timeclock-use-display-time):
7619 * bs.el (bs-mode):
7620 * bookmark.el (bookmark-save-flag):
7621 Doc fix (standardize possessive apostrophe usage).
7622
7623 2012-02-27 Chong Yidong <cyd@gnu.org>
7624
7625 * emulation/viper-cmd.el (viper-intercept-ESC-key):
7626 Fix key-binding lookup for ESC key (Bug#9146).
7627
7628 * font-lock.el (font-lock-specified-p): Rename from
7629 font-lock-spec-present. Callers changed.
7630
7631 2012-02-27 Daniel Hackney <dan@haxney.org>
7632
7633 * emacs-lisp/package.el (package-compute-transaction):
7634 Handle holding a package version to t in package-load-list.
7635
7636 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
7637
7638 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
7639 (tramp-get-inode, tramp-get-device): Use cached values.
7640
7641 2012-02-26 Alan Mackenzie <acm@muc.de>
7642
7643 Check there is a font-lock specification before doing initial
7644 fontification.
7645
7646 * font-core.el (font-lock-mode): Move the conditional from
7647 :after-hook to font-lock-initial-fontify.
7648 (font-lock-default-function): Move the check for a specification
7649 to font-lock-spec-present.
7650
7651 * font-lock.el (font-lock-initial-fontify): Call ...
7652 (font-lock-spec-present): New function.
7653
7654 2012-02-26 Jim Blandy <jimb@red-bean.com>
7655
7656 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
7657 (gdb-send): Apply it to the operand of the '-interpreter-exec
7658 console' command, so that we can pass arguments with (say) quotes
7659 in them. Store exact string sent in gdb-debug-log (Bug#10765).
7660
7661 2012-02-26 Chong Yidong <cyd@gnu.org>
7662
7663 * help-fns.el (describe-function-1): Clarify description of
7664 remapping (Bug#10844).
7665
7666 * files.el (files-equal-p): Doc fix.
7667 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
7668 and quit the loop once a mismatch is found.
7669
7670 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
7671
7672 * bs.el (bs--show-with-configuration): Don't throw an error
7673 if the window cannot be split; otherwise, subsequent calls to
7674 bs-show fail, restoring a stale window config. (Bug#10882)
7675
7676 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
7677
7678 * term/ns-win.el (global-map): Bind ns-drag-file to
7679 ns-find-file (Bug#5855, Bug#10050).
7680
7681 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
7682
7683 * calendar/parse-time.el (parse-time-string): Allow extractor to
7684 return nil.
7685
7686 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
7687
7688 * net/tramp.el (tramp-file-name-for-operation):
7689 Add `files-equal-p' and `file-subdir-of-p'.
7690
7691 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7692 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7693 Add COPY-CONTENTS argument.
7694
7695 2012-02-25 Chong Yidong <cyd@gnu.org>
7696
7697 Add custom groups for VC backends, for consistency with vc-bzr.
7698
7699 * vc/vc-arch.el (vc-arch):
7700 * vc/vc-cvs.el (vc-cvs):
7701 * vc/vc-git.el (vc-git):
7702 * vc/vc-hg.el (vc-hg):
7703 * vc/vc-mtn.el (vc-mtn):
7704 * vc/vc-rcs.el (vc-rcs):
7705 * vc/vc-sccs.el (vc-sccs):
7706 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
7707 All relevant defcustoms reassigned.
7708
7709 2012-02-25 Chong Yidong <cyd@gnu.org>
7710
7711 * newcomment.el (comment-styles): Add autoload (Bug#10868).
7712
7713 * term/x-win.el (x-initialize-window-system): Reduce default for
7714 x-selection-timeout to 5 seconds (Bug#8869).
7715
7716 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7717
7718 * files.el (files-equal-p, file-subdir-of-p): New functions.
7719 (copy-directory): Error when trying to copy a directory on itself.
7720 Add missing copy-contents arg to tramp handler.
7721 * dired-aux.el (dired-copy-file-recursive): Same.
7722 (dired-create-files): Modify destination when source is equal to
7723 dest when copying files.
7724 Return also when dest is a subdir of source. (Bug#10489)
7725
7726 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
7727
7728 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
7729 (Bug#10874)
7730
7731 2012-02-23 Alan Mackenzie <acm@muc.de>
7732
7733 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
7734 parameter "after-hook:" to allow the expansion to run code after
7735 the execution of the mode hooks.
7736
7737 * font-lock.el (font-lock-initial-fontify): New function extracted
7738 from font-lock-mode-internal.
7739
7740 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
7741 :after-hook.
7742
7743 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7744
7745 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
7746 (completion--cache-all-sorted-completions): New function.
7747 (completion-all-sorted-completions): Use it.
7748 (completion--do-completion, minibuffer-force-complete):
7749 Use it to re-instate the flush hook.
7750
7751 * icomplete.el (icomplete-completions): Replace last fix with a better
7752 one (bug#10850).
7753
7754 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
7755
7756 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
7757 when it might call us back infinitely (bug#10797).
7758
7759 2012-02-23 Glenn Morris <rgm@gnu.org>
7760
7761 * minibuffer.el (completion-category-overrides): Doc fix.
7762
7763 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
7764
7765 * minibuffer.el (completion-table-with-context): Fix inf-loop.
7766 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
7767
7768 2012-02-23 Glenn Morris <rgm@gnu.org>
7769
7770 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
7771 (authors-obsolete-files-regexps, authors-ignored-files)
7772 (authors-ambiguous-files, authors-renamed-files-alist):
7773 Add more entries.
7774
7775 2012-02-23 Juri Linkov <juri@jurta.org>
7776
7777 * isearch.el (isearch-occur): Sync interactive spec with occur's
7778 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
7779
7780 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
7781
7782 2012-02-22 Juri Linkov <juri@jurta.org>
7783
7784 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
7785 (ucs-insert): Doc fix. Check for hex digits in the string.
7786 Don't display `nil' in the error message. (Bug#10857)
7787
7788 2012-02-22 Alan Mackenzie <acm@muc.de>
7789
7790 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
7791
7792 2012-02-22 Glenn Morris <rgm@gnu.org>
7793
7794 * ffap.el (ffap-c-path):
7795 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
7796
7797 2012-02-22 Chong Yidong <cyd@gnu.org>
7798
7799 * custom.el (load-theme): Doc fix.
7800
7801 2012-02-22 Glenn Morris <rgm@gnu.org>
7802
7803 * dired-x.el (dired-guess-shell-alist-default):
7804 Remove escape sequences from nroff output. (Bug#172)
7805
7806 2012-02-21 Glenn Morris <rgm@gnu.org>
7807
7808 * vc/emerge.el (emerge-defvar-local):
7809 Set `permanent-local' property rather than unused `preserved'.
7810
7811 * textmodes/picture.el (picture-delete-char): New alias.
7812 (picture-mode-map): Use it. (Bug#10860)
7813 (picture-mode): Doc fix.
7814
7815 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
7816
7817 * newcomment.el (uncomment-region-default): Remove unused binding.
7818
7819 2012-02-21 Glenn Morris <rgm@gnu.org>
7820
7821 * textmodes/picture.el (picture-motion, picture-motion-reverse)
7822 (picture-self-insert, picture-tab-chars): Doc fix.
7823 (picture-mode-map): Fix C-a, C-e.
7824
7825 2012-02-20 Glenn Morris <rgm@gnu.org>
7826
7827 * emacs-lisp/authors.el (authors-aliases): Add another entry.
7828
7829 2012-02-20 Leo Liu <sdl.web@gmail.com>
7830
7831 * icomplete.el (icomplete-completions): Check FROM arg before
7832 passing to substring (Bug#10850).
7833
7834 2012-02-19 Chong Yidong <cyd@gnu.org>
7835
7836 * comint.el: Require ansi-color.
7837 (comint-output-filter-functions): Add ansi-color-process-output.
7838
7839 * ansi-color.el: Don't set comint-output-filter-functions; it is
7840 now in the initial value defined in comint.el.
7841 (ansi-color-apply-face-function): New variable.
7842 (ansi-color-apply-on-region): Use it.
7843 (ansi-color-apply-overlay-face): New function.
7844
7845 * shell.el (shell): No need to require ansi-color.
7846 (shell-mode): Use ansi-color-apply-face-function to highlight
7847 color escapes using font-lock-face property (Bug#10835).
7848
7849 2012-02-19 Chong Yidong <cyd@gnu.org>
7850
7851 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
7852 mode-line formats (Bug#10839).
7853
7854 2012-02-18 Glenn Morris <rgm@gnu.org>
7855
7856 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
7857
7858 * mail/undigest.el (unforward-rmail-message): Doc fix.
7859
7860 * saveplace.el (save-place-ignore-files-regexp): Add :version.
7861
7862 2012-02-18 Eli Zaretskii <eliz@gnu.org>
7863
7864 * international/characters.el (script-list): Sync with the latest
7865 Unicode Character Database.
7866
7867 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
7868
7869 * international/titdic-cnv.el: Remove duplicate coding tag.
7870 * language/cham.el: Likewise.
7871 * language/tai-viet.el: Likewise.
7872
7873 2012-02-18 Glenn Morris <rgm@gnu.org>
7874
7875 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
7876 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
7877 (calendar-bahai-all-holidays-flag, calendar-other-dates):
7878 * calendar/diary-lib.el (diary-abbreviated-year-flag):
7879 * calendar/holidays.el (holiday-bahai-holidays)
7880 (calendar-holidays, list-holidays):
7881 Use utf-8 Bahá'í in doc-strings, menus, etc.
7882
7883 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
7884
7885 * saveplace.el (save-place-ignore-files-regexp): New variable
7886 allowing for excluding files from saving their location of point.
7887 The default value matches the temporary commit message editing
7888 files from Git, SVN, Bazaar, and Mercurial.
7889 (save-place-to-alist): Use it.
7890
7891 2012-02-17 Lawrence Mitchell <wence@gmx.li>
7892 Stefan Monnier <monnier@iro.umontreal.ca>
7893
7894 * newcomment.el (uncomment-region-default): Don't leave extra space
7895 when an arg is provided (bug#8150).
7896
7897 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
7898
7899 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
7900
7901 2012-02-17 Glenn Morris <rgm@gnu.org>
7902
7903 * net/socks.el: Require network-stream. (Bug#10599)
7904
7905 2012-02-17 Kenichi Handa <handa@m17n.org>
7906
7907 * international/charprop.el:
7908 * international/uni-name.el:
7909 * international/uni-old-name.el:
7910 * international/uni-comment.el: Regenerate.
7911
7912 2012-02-16 Glenn Morris <rgm@gnu.org>
7913
7914 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
7915 Interactively in calendar buffer, give an error if not on a date.
7916
7917 2012-02-15 Glenn Morris <rgm@gnu.org>
7918
7919 * shell.el (shell-delimiter-argument-list):
7920 Revert 2011-02-17 change. (Bug#8027)
7921
7922 2012-02-15 Chong Yidong <cyd@gnu.org>
7923
7924 * minibuffer.el (completion-at-point-functions): Doc fix.
7925
7926 * custom.el (defcustom): Doc fix; note use of defvar.
7927
7928 2012-02-15 Glenn Morris <rgm@gnu.org>
7929
7930 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
7931 Doc fixes.
7932
7933 2012-02-14 Glenn Morris <rgm@gnu.org>
7934
7935 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
7936
7937 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
7938
7939 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
7940 way the ports list is computed.
7941 (smtpmail-query-smtp-server): Prompt the user for a port number if
7942 we can't connect to any of the standard ports (bug#10810).
7943
7944 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
7945
7946 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
7947
7948 2012-02-13 Glenn Morris <rgm@gnu.org>
7949
7950 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
7951
7952 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
7953
7954 * net/gnutls.el (gnutls-trustfiles): New variable.
7955 (gnutls-negotiate): Use it.
7956
7957 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
7958
7959 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
7960 does its stuff if Gnus is running.
7961
7962 2012-02-13 Alan Mackenzie <acm@muc.de>
7963
7964 Fix a loop in c-set-fl-decl-start.
7965
7966 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
7967 c-backward-syntactic-ws actually moves backwards.
7968
7969 2012-02-13 Leo Liu <sdl.web@gmail.com>
7970
7971 * net/rcirc.el (rcirc-markup-attributes): Move point to the
7972 beginning so that all \C-o chars are removed.
7973
7974 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
7975
7976 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
7977
7978 2012-02-12 Alan Mackenzie <acm@muc.de>
7979
7980 Fix infinite loop with long macros.
7981 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
7982
7983 2012-02-12 Chong Yidong <cyd@gnu.org>
7984
7985 * window.el (display-buffer): Doc fix (Bug#10785).
7986
7987 2012-02-12 Glenn Morris <rgm@gnu.org>
7988
7989 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
7990 (x-disown-selection-internal, x-get-selection-internal):
7991 Sync docs with the xselect.c versions.
7992
7993 * allout-widgets.el: Add missing license notice.
7994
7995 2012-02-11 Glenn Morris <rgm@gnu.org>
7996
7997 * select.el (x-get-selection-internal, x-own-selection-internal)
7998 (x-disown-selection-internal):
7999 * x-dnd.el (x-get-selection-internal): Update declarations.
8000
8001 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
8002
8003 * window.el (window-sides-slots):
8004 * tool-bar.el (tool-bar-position):
8005 * term/xterm.el (xterm-extra-capabilities):
8006 * ses.el (ses-self-reference-early-detection):
8007 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
8008 (verilog-auto-wire-type)
8009 (verilog-auto-delete-trailing-whitespace)
8010 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
8011 (verilog-auto-tieoff-declaration):
8012 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
8013 (sql-oracle-statement-starters, sql-oracle-scan-on):
8014 * progmodes/prolog.el (prolog-align-comments-flag)
8015 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
8016 (prolog-left-indent-regexp, prolog-paren-indent-p)
8017 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
8018 (prolog-types, prolog-mode-specificators)
8019 (prolog-determinism-specificators, prolog-directives)
8020 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
8021 (prolog-electric-dot-flag)
8022 (prolog-electric-dot-full-predicate-template)
8023 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
8024 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
8025 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
8026 (prolog-program-switches, prolog-prompt-regexp)
8027 (prolog-debug-on-string, prolog-debug-off-string)
8028 (prolog-trace-on-string, prolog-trace-off-string)
8029 (prolog-zip-on-string, prolog-zip-off-string)
8030 (prolog-use-standard-consult-compile-method-flag)
8031 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
8032 (prolog-imenu-max-lines, prolog-info-predicate-index)
8033 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
8034 (prolog-char-quote-workaround):
8035 * progmodes/cc-vars.el (c-defun-tactic):
8036 * net/tramp.el (tramp-encoding-command-interactive)
8037 (tramp-local-end-of-line):
8038 * net/soap-client.el (soap-client):
8039 * net/netrc.el (netrc-file):
8040 * net/gnutls.el (gnutls):
8041 * minibuffer.el (completion-category-overrides)
8042 (completion-cycle-threshold)
8043 (completion-pcm-complete-word-inserts-delimiters):
8044 * man.el (Man-name-local-regexp):
8045 * mail/feedmail.el (feedmail-display-full-frame):
8046 * international/characters.el (glyphless-char-display-control):
8047 * eshell/em-ls.el (eshell-ls-date-format):
8048 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
8049 (lisp-lambda-list-keyword-parameter-indentation)
8050 (lisp-lambda-list-keyword-parameter-alignment):
8051 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
8052 * dired-x.el (dired-omit-verbose):
8053 * cus-theme.el (custom-theme-allow-multiple-selections):
8054 * calc/calc.el (calc-highlight-selections-with-faces)
8055 (calc-lu-field-reference, calc-lu-power-reference)
8056 (calc-note-threshold):
8057 * battery.el (battery-mode-line-limit):
8058 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
8059 (archive-7z-update):
8060 * allout.el (allout-prefixed-keybindings)
8061 (allout-unprefixed-keybindings)
8062 (allout-inhibit-auto-fill-on-headline)
8063 (allout-flattened-numbering-abbreviation):
8064 * allout-widgets.el (allout-widgets-auto-activation)
8065 (allout-widgets-icons-dark-subdir)
8066 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
8067 (allout-widgets-theme-dark-background)
8068 (allout-widgets-theme-light-background)
8069 (allout-widgets-item-image-properties-emacs)
8070 (allout-widgets-item-image-properties-xemacs)
8071 (allout-widgets-run-unit-tests-on-load)
8072 (allout-widgets-time-decoration-activity)
8073 (allout-widgets-hook-error-post-time)
8074 (allout-widgets-track-decoration):
8075 Add missing :version tags to new defcustoms and defgroups.
8076
8077 * progmodes/sql.el (sql-ansi-statement-starters)
8078 (sql-oracle-statement-starters): Add custom type.
8079
8080 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
8081 (prolog-system-version): Give it a type.
8082
8083 2012-02-11 Eli Zaretskii <eliz@gnu.org>
8084
8085 * term/pc-win.el (x-select-text, x-selection-owner-p)
8086 (x-own-selection-internal, x-disown-selection-internal)
8087 (x-get-selection-internal): Sync doc strings and argument lists
8088 with xselect.c, common-win.el and x-win.el. (Bug#10783)
8089
8090 2012-02-11 Leo Liu <sdl.web@gmail.com>
8091
8092 * progmodes/python.el (python-end-of-statement): Fix infinite
8093 loop. (Bug#10788)
8094
8095 2012-02-10 Glenn Morris <rgm@gnu.org>
8096
8097 * international/mule-cmds.el (unify-8859-on-encoding-mode)
8098 (unify-8859-on-decoding-mode): Properly mark as obsolete.
8099
8100 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
8101
8102 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
8103 about SMTP before checking the From header.
8104
8105 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
8106 into own function for reuse by emacsbug.el.
8107
8108 2012-02-10 Leo Liu <sdl.web@gmail.com>
8109
8110 * subr.el (condition-case-unless-debug): Rename from
8111 condition-case-no-debug. All callers changed.
8112 (with-demoted-errors): Fix caller.
8113
8114 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
8115 * nxml/rng-valid.el (rng-do-some-validation):
8116 * emacs-lisp/package.el (package-refresh-contents)
8117 (package-menu-execute):
8118 * desktop.el (desktop-create-buffer):
8119 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
8120
8121 2012-02-10 Glenn Morris <rgm@gnu.org>
8122
8123 * textmodes/bibtex.el:
8124 Add missing :version tags for new/changed defcustoms.
8125
8126 * files.el (remote-file-name-inhibit-cache): Doc fixes.
8127
8128 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
8129
8130 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
8131 (smtpmail-via-smtp): Use it, or fall back on the From address.
8132 (smtpmail-send-it): Ditto.
8133
8134 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
8135
8136 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
8137 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
8138 (byte-compile-tmp-var): New const.
8139 (byte-compile-defvar): Use it to minimize .elc size.
8140 Just use `defvar' rather than simulate it (bug#10761).
8141
8142 2012-02-09 Glenn Morris <rgm@gnu.org>
8143
8144 * files.el (rename-uniquely): Doc fix. (Bug#3806)
8145
8146 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
8147 Add :version tags.
8148
8149 * progmodes/compile.el (compilation-error-screen-columns)
8150 (compilation-first-column, compilation-filter-start): Doc fixes.
8151
8152 * vc/log-view.el (log-view-toggle-entry-display):
8153 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
8154
8155 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
8156 (report-emacs-bug-can-use-xdg-email):
8157 (report-emacs-bug-insert-to-mailer): Doc fixes.
8158 (report-emacs-bug): Message fix.
8159
8160 * net/browse-url.el (browse-url-can-use-xdg-open)
8161 (browse-url-xdg-open): Doc fixes.
8162
8163 * electric.el (electric-indent-mode, electric-pair-mode)
8164 (electric-layout-rules, electric-layout-mode): Doc fixes.
8165 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
8166
8167 2012-02-08 Martin Rudalics <rudalics@gmx.at>
8168
8169 * server.el (server-unselect-display): Don't inadvertently kill
8170 the current buffer. (Bug#10729)
8171
8172 2012-02-08 Glenn Morris <rgm@gnu.org>
8173
8174 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
8175 (sql-list-table): Doc fixes.
8176
8177 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
8178 Comment out (does nothing).
8179
8180 * completion.el (dynamic-completion-mode):
8181 * dirtrack.el (dirtrack-debug-mode):
8182 * electric.el (electric-layout-mode):
8183 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
8184 * face-remap.el (text-scale-mode, buffer-face-mode):
8185 * iimage.el (iimage-mode):
8186 * image-mode.el (image-transform-mode):
8187 * minibuffer.el (completion-in-region-mode):
8188 * scroll-lock.el (scroll-lock-mode):
8189 * simple.el (next-error-follow-minor-mode):
8190 * tar-mode.el (tar-subfile-mode):
8191 * tooltip.el (tooltip-mode):
8192 * vcursor.el (vcursor-use-vcursor-map):
8193 * wid-browse.el (widget-minor-mode):
8194 * emulation/tpu-edt.el (tpu-edt-mode):
8195 * emulation/tpu-extras.el (tpu-cursor-free-mode):
8196 * international/iso-ascii.el (iso-ascii-mode):
8197 * language/thai-util.el (thai-word-mode):
8198 * mail/supercite.el (sc-minor-mode):
8199 * net/goto-addr.el (goto-address-mode):
8200 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
8201 * progmodes/cwarn.el (cwarn-mode):
8202 * progmodes/flymake.el (flymake-mode):
8203 * progmodes/glasses.el (glasses-mode):
8204 * progmodes/hideshow.el (hs-minor-mode):
8205 * progmodes/pascal.el (pascal-outline-mode):
8206 * textmodes/enriched.el (enriched-mode):
8207 * vc/smerge-mode.el (smerge-mode):
8208 Doc fixes (minor mode argument).
8209
8210 2012-02-07 Eli Zaretskii <eliz@gnu.org>
8211
8212 * ls-lisp.el (ls-lisp-sanitize): New function.
8213 (ls-lisp-insert-directory): Use it to fix or remove any elements
8214 in file-alist with missing attributes. (Bug#4673)
8215
8216 2012-02-07 Alan Mackenzie <acm@muc.de>
8217
8218 Fix spurious recognition of c-in-knr-argdecl.
8219
8220 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
8221 putative K&R region.
8222
8223 2012-02-07 Alan Mackenzie <acm@muc.de>
8224
8225 * progmodes/cc-engine.el (c-forward-objc-directive):
8226 Prevent looping in "#pragma mark @implementation".
8227
8228 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
8229
8230 * notifications.el (notifications-on-closed-signal): Make `reason'
8231 optional. (Bug#10744)
8232
8233 2012-02-07 Glenn Morris <rgm@gnu.org>
8234
8235 * emacs-lisp/easy-mmode.el (define-minor-mode):
8236 Doc fixes for the macro and the mode it defines.
8237
8238 * image.el (imagemagick-types-inhibit): Doc fix.
8239
8240 * cus-start.el (imagemagick-render-type): Add it.
8241
8242 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
8243
8244 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
8245 Set the default at load time, too, so that `font-lock-fontify-buffer'
8246 can be called without setting up the entire mode first. This fixes
8247 a bug in `mm-inline-text' with C MIME parts.
8248
8249 2012-02-06 Chong Yidong <cyd@gnu.org>
8250
8251 * simple.el (list-processes--refresh): Delete exited processes
8252 (Bug#8094).
8253
8254 * comint.el (comint-next-prompt): next-single-char-property-change
8255 and prev-single-char-property-change never return nil (Bug#8657).
8256
8257 * custom.el (defcustom): Doc fix (Bug#9711).
8258
8259 2012-02-05 Chong Yidong <cyd@gnu.org>
8260
8261 * cus-edit.el (custom-variable-reset-backup): Quote the value
8262 before storing it in the customized-value property (Bug#6712).
8263 (custom-display): Add a customization type tag.
8264 (custom-buffer-create-internal): Improve tooltip message.
8265
8266 * wid-edit.el (widget-field-value-get): New optional arg to
8267 suppress trailing whitespace truncation.
8268 (character): Use it (Bug#2689).
8269
8270 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
8271
8272 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
8273 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
8274
8275 2012-02-05 Chong Yidong <cyd@gnu.org>
8276
8277 * cus-edit.el (custom-variable-value-create): For mismatched
8278 types, show the current value (Bug#7600).
8279
8280 * custom.el (defcustom): Doc fix.
8281
8282 2012-02-05 Glenn Morris <rgm@gnu.org>
8283
8284 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
8285
8286 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
8287
8288 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
8289 (pp-buffer): Use `ignore-errors', `looking-at-p'.
8290 (pp-last-sexp): Use `looking-at-p'.
8291
8292 2012-02-04 Glenn Morris <rgm@gnu.org>
8293
8294 * files.el (revert-buffer):
8295 Doc fix (mention revert-buffer-in-progress-p).
8296
8297 * emacs-lisp/ert-x.el (ert-simulate-command):
8298 Check deferred-action-list (which is obsolete) is bound.
8299
8300 * subr.el (with-wrapper-hook): Doc fixes.
8301
8302 * simple.el (filter-buffer-substring-functions)
8303 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
8304
8305 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
8306
8307 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
8308 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
8309
8310 2012-02-04 Leo Liu <sdl.web@gmail.com>
8311
8312 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
8313
8314 2012-02-04 Glenn Morris <rgm@gnu.org>
8315
8316 * image.el (image-extension-data): Add obsolete alias.
8317
8318 * isearch.el (isearch-update): Doc fix.
8319
8320 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
8321
8322 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
8323
8324 2012-02-03 Glenn Morris <rgm@gnu.org>
8325
8326 * image.el (image-animated-p): Doc fix. Use image-animated-types.
8327 (image-animate-timeout): Doc fix.
8328
8329 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
8330
8331 2012-02-02 Glenn Morris <rgm@gnu.org>
8332
8333 * server.el (server-auth-dir): Doc fix.
8334 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
8335
8336 * subr.el (run-mode-hooks): Doc fix.
8337
8338 2012-02-02 Juri Linkov <juri@jurta.org>
8339
8340 * image-mode.el (image-toggle-display-image): Remove tautological
8341 `major-mode' from the `derived-mode-p' test.
8342
8343 2012-02-02 Kenichi Handa <handa@m17n.org>
8344
8345 * composite.el (compose-region): Cancel previous change.
8346
8347 2012-02-02 Kenichi Handa <handa@m17n.org>
8348
8349 * composite.el (compose-region, compose-string): Signal error for
8350 a null string component (Bug#6988).
8351
8352 2012-02-01 Chong Yidong <cyd@gnu.org>
8353
8354 * view.el (view-buffer-other-window, view-buffer-other-frame):
8355 Handle special modes like view-buffer (Bug#10650).
8356 (view-buffer): Simplify.
8357
8358 * frame.el (set-frame-font): Tweak meaning of third argument.
8359
8360 * dynamic-setting.el (font-setting-change-default-font):
8361 Use set-frame-font (Bug#9982).
8362
8363 2012-02-01 Glenn Morris <rgm@gnu.org>
8364
8365 * progmodes/compile.el (compilation-internal-error-properties):
8366 Respect compilation-first-column in the "*compilation*" buffer.
8367
8368 * emacs-lisp/easy-mmode.el (define-minor-mode):
8369 Relax :variable's test for a named function.
8370
8371 2012-01-31 Alan Mackenzie <acm@muc.de>
8372
8373 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
8374 off by one error.
8375
8376 2012-01-31 Chong Yidong <cyd@gnu.org>
8377
8378 * frame.el (set-frame-font): New arg ALL-FRAMES.
8379
8380 * menu-bar.el (menu-set-font): Use set-frame-font.
8381
8382 * faces.el (face-spec-reset-face): Don't apply unspecified
8383 attribute values to the default face.
8384
8385 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
8386
8387 * progmodes/cwarn.el (cwarn): Remove dead link.
8388 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
8389 Remove * from defcustom docstrings.
8390 (turn-on-cwarn-mode): Make obsolete.
8391 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
8392 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
8393
8394 2012-01-31 Glenn Morris <rgm@gnu.org>
8395
8396 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
8397 Fix :variable handling of mode a symbol not equal to modefun.
8398 Allow named functions to be used as the cdr of :variable.
8399
8400 2012-01-30 Glenn Morris <rgm@gnu.org>
8401
8402 * emacs-lisp/authors.el (authors-fixed-entries):
8403 Remove reference to deleted file rnewspost.el.
8404
8405 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
8406
8407 * window.el (window-with-parameter): Remove unused variable `windows'.
8408 (window--side-check): Remove unused variable `code'.
8409 (window--resize-siblings): Remove unused variable `first'.
8410 (adjust-window-trailing-edge): Remove unused variable `failed'.
8411 (window-deletable-p, window--delete): Remove unused variable `buffer'.
8412 Use `let', not `let*'.
8413 (balance-windows-2): Remove unused variable `found'.
8414 (window--state-put-2): Remove unused variable `splits'.
8415 (window-state-put): Remove unused variable `selected'.
8416 (same-window-p): Use `string-match-p'.
8417 (display-buffer-assq-regexp): Remove unused variable `value'.
8418 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8419 Mark argument ALIST as ignored.
8420 (pop-to-buffer): Remove unused variable `old-window'.
8421
8422 2012-01-29 Eli Zaretskii <eliz@gnu.org>
8423
8424 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
8425 and .lzma compressed files.
8426
8427 2012-01-29 Chong Yidong <cyd@gnu.org>
8428
8429 * frame.el (window-system-default-frame-alist): Doc fix.
8430
8431 * dynamic-setting.el (font-setting-change-default-font): Don't
8432 change the default face if SET-FONT argument is non-nil (Bug#9982).
8433
8434 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
8435
8436 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
8437
8438 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
8439
8440 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
8441 breakpoints in files outside current directory (Bug#6098).
8442
8443 2012-01-29 Chong Yidong <cyd@gnu.org>
8444
8445 * progmodes/python.el: Require ansi-color at top-level.
8446
8447 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
8448 Define and use in Emacs Lisp mode (Bug#9360).
8449 (lisp-mode-abbrev-table): Add doc.
8450 (lisp-mode-variables): Don't set local-abbrev-table.
8451 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
8452
8453 2012-01-28 Roland Winkler <winkler@gnu.org>
8454
8455 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
8456
8457 2012-01-28 Roland Winkler <winkler@gnu.org>
8458
8459 * textmodes/bibtex.el (bibtex-entry-alist): New function.
8460 (bibtex-set-dialect): Use it. Either set global values of
8461 dialect-dependent variables or bind these variables buffer-locally
8462 (Bug#10254).
8463 (bibtex-mode): Call bibtex-set-dialect via
8464 hack-local-variables-hook.
8465 (bibtex-dialect): Update docstring.
8466 Add safe-local-variable predicate.
8467 (bibtex-entry-alist, bibtex-field-alist): Initialize via
8468 bibtex-set-dialect.
8469 (bibtex-mode-map): Define menu for each dialect.
8470 (bibtex-entry): Fix docstring.
8471
8472 2012-01-28 Chong Yidong <cyd@gnu.org>
8473
8474 * eshell/esh-arg.el (eshell-quote-argument): New function.
8475
8476 * eshell/esh-ext.el (eshell-invoke-batch-file):
8477 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
8478 first arg to eshell-parse-command (Bug#10523).
8479
8480 2012-01-28 Drew Adams <drew.adams@oracle.com>
8481
8482 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
8483 `default-directory' is non-nil.
8484
8485 2012-01-28 Eli Zaretskii <eliz@gnu.org>
8486
8487 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
8488 line that displays system-configuration-options. (Bug#9924)
8489
8490 2012-01-28 Drew Adams <drew.adams@oracle.com>
8491
8492 * descr-text.el (describe-char): Show information about POS, in
8493 addition to information about the character at POS. Improve and
8494 update the doc string. Change "code point" to "code point in
8495 charset", to avoid confusion with the character's Unicode code
8496 point shown above that. (Bug#10129)
8497
8498 2012-01-28 Eli Zaretskii <eliz@gnu.org>
8499
8500 * descr-text.el (describe-char): Show the raw character, not only
8501 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
8502 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
8503 for the reasons.
8504
8505 2012-01-28 Phil Hagelberg <phil@hagelb.org>
8506
8507 * emacs-lisp/package.el (package-install):
8508 Run package-refresh-contents if there is no archive yet (Bug#9798).
8509
8510 2012-01-28 Chong Yidong <cyd@gnu.org>
8511
8512 * emacs-lisp/package.el (package-maybe-load-descriptor):
8513 New function, split from package-maybe-load-descriptor.
8514 (package-maybe-load-descriptor): Use it.
8515 (package-download-transaction): Fully load required packages
8516 inside the loop, so that `require' calls work (Bug#10593).
8517 (package-install): No need to call package-initialize now.
8518
8519 2012-01-28 Chong Yidong <cyd@gnu.org>
8520
8521 * simple.el (deactivate-mark): Doc fix (Bug#8614).
8522
8523 * tooltip.el (tooltip-mode): Doc fix.
8524 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
8525
8526 * frame.el (set-cursor-color): Doc fix (Bug#352).
8527
8528 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
8529 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
8530
8531 * cus-edit.el (custom-buffer-create-internal): Fix search button
8532 action (Bug#10542).
8533 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
8534
8535 2012-01-27 Eduard Wiebe <usenet@pusto.de>
8536
8537 * dired.el (dired-mark-files-regexp):
8538 Include any subdirectory components. (Bug#10445)
8539
8540 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
8541
8542 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
8543 Handle [host]:port syntax. (Bug#10533)
8544
8545 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
8546
8547 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
8548
8549 2012-01-26 Glenn Morris <rgm@gnu.org>
8550
8551 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
8552 * term.el (term-raw-escape-map): Use Control-X-prefix.
8553 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
8554
8555 2012-01-25 Martin Rudalics <rudalics@gmx.at>
8556
8557 * window.el (window-state-get, window--state-get-1): Don't deal
8558 with fixed-sizeness of windows. Simplify code.
8559
8560 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
8561
8562 * window.el (window--state-get-1, window--state-put-2):
8563 Don't save and restore the mark.
8564
8565 2012-01-25 Chong Yidong <cyd@gnu.org>
8566
8567 * custom.el (custom-variable-p): Doc fix.
8568
8569 2012-01-25 Glenn Morris <rgm@gnu.org>
8570
8571 * dired.el (dired-goto-file): Handle some of the more common
8572 characters that `ls -b' escapes. (Bug#10596)
8573
8574 * progmodes/compile.el (compilation-next-error-function):
8575 Respect compilation-first-column in the "*compilation*" buffer.
8576 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
8577
8578 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
8579
8580 2012-01-24 Glenn Morris <rgm@gnu.org>
8581
8582 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
8583
8584 2012-01-24 Julien Danjou <julien@danjou.info>
8585
8586 * color.el (color-rgb-to-hsl): Fix value computing.
8587 (color-hue-to-rgb): New function.
8588 (color-hsl-to-rgb): New function.
8589 (color-clamp, color-saturate-hsl, color-saturate-name)
8590 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
8591 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
8592
8593 2012-01-24 Glenn Morris <rgm@gnu.org>
8594
8595 * vc/vc-rcs.el (vc-rcs-create-tag):
8596 * vc/vc-sccs.el (vc-sccs-create-tag):
8597 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
8598
8599 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
8600
8601 * eshell/esh-util.el (eshell-read-hosts-file):
8602 Skip comment lines. (Bug#10549)
8603
8604 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
8605
8606 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
8607
8608 * subr.el (display-delayed-warnings): Doc fix.
8609 (collapse-delayed-warnings): New function to collapse identical
8610 adjacent warnings.
8611 (delayed-warnings-hook): Add it.
8612
8613 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
8614
8615 * net/tramp.el (tramp-action-login): Set connection property "login-as".
8616
8617 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
8618 (tramp-default-user-alist): Don't add "pscp".
8619 (tramp-do-copy-or-rename-file-out-of-band): Use connection
8620 property "login-as", if set. (Bug#10530)
8621
8622 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
8623
8624 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
8625 "plink1" and "psftp". (Bug#10530)
8626
8627 2012-01-21 Kenichi Handa <handa@m17n.org>
8628
8629 * international/mule-cmds.el (prefer-coding-system): Show a
8630 warning message if the default value of file-name-coding-system
8631 was not changed.
8632
8633 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
8634
8635 * windmove.el (windmove-reference-loc):
8636 Fix windmove-reference-loc miscalculation.
8637
8638 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
8639
8640 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
8641 default unit.
8642
8643 2012-01-21 Glenn Morris <rgm@gnu.org>
8644
8645 * international/mule.el (auto-coding-alist): Add .tbz.
8646
8647 * files.el (local-enable-local-variables): Doc fix.
8648 (inhibit-local-variables-regexps): Rename from
8649 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
8650 Doc fix. Add some extensions from auto-coding-alist.
8651 (inhibit-local-variables-suffixes):
8652 Rename from inhibit-first-line-modes-suffixes. Doc fix.
8653 (inhibit-local-variables-p):
8654 New function, extracted from set-auto-mode-1.
8655 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
8656 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
8657 (hack-local-variables): Doc fix. Make the mode-only case
8658 respect enable-local-variables and friends.
8659 Respect inhibit-local-variables-regexps for file-locals, but
8660 not for directory-locals.
8661 (set-visited-file-name):
8662 Take account of inhibit-local-variables-regexps.
8663 Whether it applies may change as the file name is changed.
8664 * jka-cmpr-hook.el (jka-compr-install):
8665 * jka-compr.el (jka-compr-uninstall):
8666 Update for inhibit-first-line-modes-suffixes name change.
8667
8668 2012-01-20 Martin Rudalics <rudalics@gmx.at>
8669
8670 * help-macro.el (make-help-screen): Temporarily restore original
8671 binding for minor-mode-map-alist (Bug#10454).
8672
8673 2012-01-19 Julien Danjou <julien@danjou.info>
8674
8675 * color.el (color-name-to-rgb): Use the white color to find the max
8676 color component value and return correctly computed values.
8677 (color-name-to-rgb): Add missing float conversion for max value.
8678
8679 2012-01-19 Martin Rudalics <rudalics@gmx.at>
8680
8681 * window.el (window--state-get-1, window-state-get): Do not use
8682 special state value for window-persistent-parameters.
8683 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
8684 (window--state-put-2): Reset all window parameters to nil before
8685 assigning values of persistent parameters.
8686
8687 2012-01-18 Alan Mackenzie <acm@muc.de>
8688
8689 Eliminate sluggishness and hangs in fontification of "semicolon
8690 deserts".
8691
8692 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
8693 Change value 10000 -> 3000.
8694 (c-state-safe-place): Reformulate so it doesn't stack up an
8695 infinite number of wrong entries in c-state-nonlit-pos-cache.
8696 (c-determine-limit-get-base, c-determine-limit): New functions to
8697 determine backward search limits disregarding literals.
8698 (c-find-decl-spots): Amend commenting.
8699 (c-cheap-inside-bracelist-p): New function which detects "={".
8700
8701 * progmodes/cc-fonts.el
8702 (c-make-font-lock-BO-decl-search-function): Give a limit to a
8703 backward search.
8704 (c-font-lock-declarations): Fix an occurrence of point being
8705 undefined. Check additionally for point being in a bracelist or
8706 near a macro invocation without a semicolon so as to avoid a
8707 fruitless time consuming search for a declarator. Give a more
8708 precise search limit for declarators using the new
8709 c-determine-limit.
8710
8711 2012-01-18 Glenn Morris <rgm@gnu.org>
8712
8713 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
8714 (set-auto-mode): Doc fixes.
8715
8716 2012-01-17 Glenn Morris <rgm@gnu.org>
8717
8718 * isearch.el (search-nonincremental-instead): Fix doc typo.
8719
8720 * dired.el (dired-insert-directory): Handle newlines in directory name.
8721 (dired-build-subdir-alist): Unescape newlines in directory name.
8722
8723 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
8724
8725 * net/tramp.el (tramp-local-end-of-line): New defcustom.
8726 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
8727 (tramp-action-terminal): Use it. (Bug#10530)
8728
8729 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
8730
8731 * minibuffer.el (completion--replace): Strip properties (bug#10062).
8732
8733 2012-01-16 Martin Rudalics <rudalics@gmx.at>
8734
8735 * window.el (window-state-ignored-parameters): Remove variable.
8736 (window--state-get-1): Rename argument MARKERS to IGNORE.
8737 Handle persistent window parameters. Make copy of clone-of
8738 parameter only if requested. (Bug#10348)
8739 (window--state-put-2): Install a window parameter only if it has
8740 a non-nil value or an existing parameter shall be overwritten.
8741
8742 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
8743
8744 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
8745
8746 2012-01-14 Eli Zaretskii <eliz@gnu.org>
8747
8748 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
8749 don't pass the (nil) value of `upnode' to string-match.
8750
8751 2012-01-14 Chong Yidong <cyd@gnu.org>
8752
8753 * startup.el (command-line): Fix X resource class for cursorColor.
8754 Fix values recognized by the cursorBlink resource.
8755
8756 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
8757
8758 * epg.el (epg--make-temp-file): Avoid permission race condition
8759 when running on old Emacs versions (bug#10403).
8760
8761 2012-01-14 Glenn Morris <rgm@gnu.org>
8762
8763 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
8764
8765 2012-01-13 Alan Mackenzie <acm@muc.de>
8766
8767 Fix filling for when filladapt mode is enabled.
8768
8769 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
8770 c-mask-paragraph, pass in `fill-paragraph' rather than
8771 `fill-region-as-paragraph'. (This is a reversion of a previous
8772 change.)
8773 * progmodes/cc-mode.el (c-basic-common-init):
8774 Make fill-paragraph-handle-comment buffer local and set it to nil.
8775
8776 2012-01-13 Glenn Morris <rgm@gnu.org>
8777
8778 * dired.el (dired-switches-escape-p): New function.
8779 (dired-insert-directory): Use dired-switches-escape-p.
8780 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
8781
8782 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
8783
8784 2012-01-12 Glenn Morris <rgm@gnu.org>
8785
8786 * mail/sendmail.el (mail-mode): Update paragraph-separate for
8787 changes in adaptive-fill-regexp. (Bug#10276)
8788
8789 2012-01-11 Alan Mackenzie <acm@muc.de>
8790
8791 Fix Emacs bug #10463 - put `widen's around the critical spots.
8792
8793 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
8794 widen around each invocation of c-state-pp-to-literal. Remove an
8795 unused let variable.
8796
8797 2012-01-11 Glenn Morris <rgm@gnu.org>
8798
8799 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
8800 Doc fix.
8801
8802 2012-01-10 Chong Yidong <cyd@gnu.org>
8803
8804 * net/network-stream.el (network-stream-open-starttls):
8805 Avoid emitting a confusing error message when the server gives a bad
8806 response to the capability command.
8807
8808 2012-01-10 Glenn Morris <rgm@gnu.org>
8809
8810 * mail/unrmail.el (unrmail): Tweak previous change.
8811
8812 2012-01-09 Chong Yidong <cyd@gnu.org>
8813
8814 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
8815
8816 2012-01-08 Alan Mackenzie <acm@muc.de>
8817
8818 Optimise font locking in long enum definitions.
8819
8820 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
8821 arm to a cond form to handle enums.
8822 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
8823 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
8824
8825 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
8826
8827 * files.el (move-file-to-trash): Preserve default file modes on error.
8828 (Bug#10401)
8829
8830 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
8831
8832 * faces.el (set-face-attribute): Clarify the meaning of the nil
8833 frame (bug#10294).
8834
8835 * subr.el (with-selected-frame): Mention that the selected frame
8836 is restored (bug#9980).
8837
8838 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
8839 (bug#9759).
8840
8841 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
8842 (password-read): Don't autoload unused function.
8843
8844 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
8845
8846 * progmodes/which-func.el (which-func-mode): Turn into a
8847 non-interactive function and mark as obsolete (bug#10428).
8848
8849 2012-01-06 Chong Yidong <cyd@gnu.org>
8850
8851 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
8852 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
8853 functions, along with 1 and -1.
8854
8855 2012-01-06 Eli Zaretskii <eliz@gnu.org>
8856
8857 * time.el (display-time-load-average)
8858 (display-time-default-load-average): Doc fixes. See the thread
8859 starting at
8860 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
8861 for the details.
8862
8863 2012-01-06 Glenn Morris <rgm@gnu.org>
8864
8865 * mail/unrmail.el (unrmail): Give an explicit error if the input file
8866 has no messages. (Bug#10377)
8867
8868 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
8869 than Info-edit. (Bug#10385)
8870
8871 * time.el (display-time-load-average, display-time-next-load-average):
8872 Doc fixes.
8873
8874 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
8875 local setting of buffer-read-only to the input buffer. (Bug#10419)
8876
8877 * calendar/calendar.el (calendar-mode):
8878 Locally set scroll-margin to 0. (Bug#10379)
8879
8880 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
8881
8882 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
8883
8884 2012-01-05 Glenn Morris <rgm@gnu.org>
8885
8886 * eshell/em-unix.el (diff-no-select): Autoload it.
8887 (eshell/diff): Use diff-no-select. (Bug#10420)
8888
8889 2012-01-05 Chong Yidong <cyd@gnu.org>
8890
8891 * shell.el (shell-dynamic-complete-functions): Revert last change.
8892 (shell-command-completion-function): New function.
8893 (shell-completion-vars): Use it to implement
8894 shell-completion-execonly (Bug#10417).
8895
8896 * custom.el (enable-theme): Don't set custom-safe-themes.
8897
8898 * cus-theme.el (custom-theme-merge-theme):
8899 Ignore custom-enabled-themes and custom-safe-themes.
8900
8901 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
8902
8903 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
8904 first prompt in `sql-interacive-mode'.
8905 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
8906 keywords.
8907 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
8908 (sql-product-interactive): Bug fix: Set `sql-buffer' in
8909 context of original buffer. Invoke `sql-login-hook'.
8910
8911 2012-01-04 Eli Zaretskii <eliz@gnu.org>
8912
8913 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
8914 letters in cite-prefix.
8915
8916 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8917
8918 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
8919
8920 2012-01-03 Chong Yidong <cyd@gnu.org>
8921
8922 * shell.el (shell-dynamic-complete-functions):
8923 Put pcomplete-completions-at-point, so as to try
8924 comint-filename-completion first (Bug#10417).
8925
8926 2012-01-02 Richard Stallman <rms@gnu.org>
8927
8928 * battery.el (battery-status-function):
8929 Detect when to use battery-yeeloong-sysfs.
8930 (battery-echo-area-format): Add string for Yeeloong.
8931 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
8932 (battery-yeeloong-sysfs): New function.
8933
8934 2012-01-02 Chong Yidong <cyd@gnu.org>
8935
8936 * dirtrack.el (dirtrack-list): Eliminate unused third element.
8937 (dirtrack): Merge code for handling relative filenames in prompt
8938 from shell-dir-cookie-watcher.
8939 (dirtrack-debug-message): New arg to avoid excess format calls.
8940
8941 * shell.el (shell-dir-cookie-re): Variable deleted.
8942 (shell-dir-cookie-watcher): Function deleted.
8943 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
8944 with dirtrack-mode.
8945
8946 2012-01-01 Eli Zaretskii <eliz@gnu.org>
8947
8948 * term/w32-win.el (dynamic-library-alist) <gnutls>:
8949 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
8950 libgnutls-26.dll.
8951
8952 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
8953
8954 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
8955
8956 2011-12-31 Eli Zaretskii <eliz@gnu.org>
8957
8958 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
8959 headers of non-MIME messages, when rmail-enable-mime is non-nil.
8960
8961 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
8962
8963 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
8964 also for alternative shells.
8965 (tramp-open-connection-setup-interactive-shell): Check, whether
8966 the shell is a busybox.
8967 (tramp-send-command): Don't suppress multiple prompts for
8968 busyboxes, it hurts.
8969
8970 2011-12-28 Chong Yidong <cyd@gnu.org>
8971
8972 * progmodes/gdb-mi.el (gdb-get-source-file-list)
8973 (gdb-get-source-file): Move mode line update to
8974 gdb-get-source-file (Bug#10087).
8975
8976 2011-12-25 Chong Yidong <cyd@gnu.org>
8977
8978 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
8979 gud-gdb-marker-filter without taking it as an argument.
8980 (gud-gdb-run-command-fetch-lines): Caller changed.
8981 (gud-gdb-completion-function): New variable.
8982 (gud-gdb-completion-at-point): Use it.
8983 (gud-gdb-completions-1): Split from gud-gdb-completions.
8984
8985 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
8986 function as separate arguments.
8987 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
8988 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
8989 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
8990 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
8991 (gdb-stopped, def-gdb-auto-update-trigger)
8992 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
8993 (gdb-get-changed-registers, gdb-get-main-selected-frame):
8994 Callers changed.
8995 (gud-gdbmi-completions): New function.
8996 (gdb): Use it for generating the completion table.
8997
8998 2011-12-24 Alan Mackenzie <acm@muc.de>
8999
9000 Introduce a mechanism to widen the region used in context font
9001 locking. Use this to protect declarations from losing their contexts.
9002
9003 * progmodes/cc-langs.el (c-before-font-lock-functions):
9004 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
9005 (c-before-context-fontification-functions): New defvar, a list of
9006 functions to be run just before context (etc.) font locking.
9007
9008 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
9009 New, functionality extracted from
9010 c-neutralize-syntax-in-and-mark-CPP.
9011 (c-in-after-change-fontification): New variable.
9012 (c-after-change): Set c-in-after-change-fontification.
9013 (c-set-fl-decl-start): Rejig its interface, so it can be called
9014 from both after-change and context fontifying.
9015 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
9016 New functions.
9017 (c-standard-font-lock-fontify-region-function): New variable.
9018 (c-font-lock-fontify-region): New function.
9019
9020 2011-12-24 Juri Linkov <juri@jurta.org>
9021
9022 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
9023 (Bug#10348)
9024
9025 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
9026
9027 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
9028 existence of source file. (Bug#10325)
9029
9030 2011-12-23 Alan Mackenzie <acm@muc.de>
9031
9032 Fix unstable fontification inside templates.
9033
9034 * progmodes/cc-langs.el (c-before-font-lock-functions):
9035 Newly created from the singular version. The (c c++ objc) entry now
9036 additionally has c-set-fl-decl-start. The other languages (apart
9037 from AWK) have that as a single entry.
9038
9039 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9040 The functionality for "local" declarations has been extracted to
9041 c-set-fl-decl-start.
9042
9043 * progmodes/cc-mode.el (c-common-init, c-after-change):
9044 Changes due to pluralisation of c-before-font-lock-functions.
9045 (c-set-fl-decl-start): New function, extracted from
9046 c-font-lock-enclosing-decls and enhanced.
9047
9048 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
9049
9050 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
9051
9052 2011-12-22 Juri Linkov <juri@jurta.org>
9053
9054 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
9055
9056 2011-12-22 Chong Yidong <cyd@gnu.org>
9057
9058 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
9059
9060 2011-12-21 Drew Adams <drew.adams@oracle.com>
9061
9062 * files.el (file-remote-p): Fix docstring. (Bug#10319)
9063
9064 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
9065
9066 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
9067
9068 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
9069
9070 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
9071 highlighting and support. Fix up comments for capitalization.
9072 (cfengine-mode-debug): New var.
9073 (cfengine3-mode): Change the modeline indicator to "CFE3".
9074 (cfengine3-font-lock-keywords): Improve defun highlighting.
9075 (cfengine2-actions): Rename from `cfengine-actions'.
9076 (cfengine2-font-lock-keywords): Rename from
9077 `cfengine-font-lock-keywords'.
9078 (cfengine2-imenu-expression): Rename from
9079 `cfengine-imenu-expression'.
9080 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
9081 (cfengine2-beginning-of-defun): Rename from
9082 `cfengine-beginning-of-defun'.
9083 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
9084 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
9085 (cfengine2-mode): Rename from `cfengine-mode'. Change the
9086 modeline indicator to "CFE2".
9087 (cfengine-mode): Defalias to `cfengine-auto-mode'.
9088 (cfengine-mode-abbrevs): Mark obsolete.
9089
9090 2011-12-21 Chong Yidong <cyd@gnu.org>
9091
9092 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
9093 filename argument.
9094
9095 2011-12-20 Martin Rudalics <rudalics@gmx.at>
9096
9097 * window.el (window-normalize-buffer-to-display): Remove.
9098 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
9099
9100 2011-12-19 Chong Yidong <cyd@gnu.org>
9101
9102 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
9103 Don't signal an error in a predicate function; return non-nil.
9104 (vc-dir-mark-file): Move the error here.
9105 (vc-dir-mark-unmark): If acting on the region, keep going if one
9106 of the entries cannot be marked/unmarked.
9107 (vc-dir-mark-all-files): If current entry is a directory, mark
9108 only child files, as documented.
9109
9110 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
9111
9112 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
9113 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
9114 addition.
9115
9116 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
9117
9118 * term/ns-win.el (ns-get-selection-internal)
9119 (ns-store-selection-internal): Declare.
9120 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
9121 Declare as obsolete.
9122 (ns-get-pasteboard, ns-paste-secondary):
9123 Use ns-get-selection-internal.
9124 (ns-set-pasteboard, ns-copy-including-secondary):
9125 Use ns-store-selection-internal.
9126
9127 2011-12-17 Chong Yidong <cyd@gnu.org>
9128
9129 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9130 (vc-deduce-fileset): Doc fix.
9131
9132 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
9133
9134 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
9135
9136 2011-12-13 Sam Steingold <sds@gnu.org>
9137
9138 * man.el (Man-getpage-in-background): When running under a
9139 window-system, ignore $MANWIDTH and $COLUMNS.
9140
9141 2011-12-15 Kenichi Handa <handa@m17n.org>
9142
9143 * language/ethio-util.el: Change coding tag to utf-8-emacs.
9144 (setup-ethiopic-environment-internal): Comment out key-binding for
9145 ethio-toggle-punctuation.
9146
9147 2011-12-13 Alan Mackenzie <acm@muc.de>
9148
9149 Add the switch statement to AWK Mode.
9150
9151 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
9152 "default" to the keywords regexp.
9153
9154 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
9155 expression as the rest.
9156 (c-nonlabel-token-key): Allow string literals for AWK.
9157 Refactor for the other modes.
9158
9159 Large brace-block initialisation makes CC Mode slow: Fix.
9160 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
9161 routines. Limit backward searching in c-font-lock-enclosing.decl.
9162
9163 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
9164 pp-state and literal type in addition to the limits.
9165 (c-state-safe-place): New defun, extracted from c-state-literal-at.
9166 (c-state-literal-at): Use the above new defun.
9167 (c-slow-in-literal, c-fast-in-literal): Remove.
9168 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
9169
9170 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
9171 being in a literal. Add a limit for backward searching.
9172
9173 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
9174 c-slow-in-literal.
9175
9176 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
9177
9178 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
9179
9180 2011-12-13 Martin Rudalics <rudalics@gmx.at>
9181
9182 * window.el (delete-other-windows): Use correct frame in call to
9183 window-with-parameter.
9184
9185 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
9186
9187 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
9188 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
9189 (makefile-gmake-statements, makefile-makepp-statements):
9190 Use it and add new makepp keywords.
9191 (makefile-makepp-font-lock-keywords): Add new patterns.
9192 (makefile-match-function-end): Match new [...] and [[...]].
9193
9194 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
9195
9196 * ses.el (ses-call-printer-return, ses-cell-property-get)
9197 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
9198 (ses-create-cell-variable, ses-reset-header-string)
9199 (ses-cell-set-formula, ses-repair-cell-reference-all)
9200 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
9201 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
9202 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
9203 (ses-aset-with-undo, ses-load, ses-truncate-cell)
9204 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
9205 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
9206 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
9207 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
9208 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
9209 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
9210 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
9211 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
9212
9213 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
9214
9215 * ses.el: The overall change is to add cell renaming, that is
9216 setting fancy names for cell symbols other than name matching
9217 "\\`[A-Z]+[0-9]+\\'" regexp .
9218 (ses-create-cell-variable): New defun.
9219 (ses-relocate-formula): Relocate formulas only for cells the
9220 symbols of which are not renamed, i.e. symbols whose names do not
9221 match regexp "\\`[A-Z]+[0-9]+\\'".
9222 (ses-relocate-all): Relocate values only for cells the symbols of
9223 which are not renamed.
9224 (ses-load): Create cells variables as the (ses-cell ...) are read,
9225 in order to check row col consistency with cell symbol name only
9226 for cells that are not renamed.
9227 (ses-replace-name-in-formula): New defun.
9228 (ses-rename-cell): New defun.
9229
9230 2011-12-11 Chong Yidong <cyd@gnu.org>
9231
9232 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
9233 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
9234
9235 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
9236
9237 * window.el (other-window): Fix docstring.
9238
9239 2011-12-10 Eli Zaretskii <eliz@gnu.org>
9240
9241 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
9242 `from' or `to' address before taking its substring.
9243 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
9244 encoded name is chopped in the middle of the encoded string, and
9245 thus displayed encoded.
9246
9247 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
9248
9249 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
9250
9251 2011-12-10 Eli Zaretskii <eliz@gnu.org>
9252
9253 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
9254 to use texinfo-update-node and commands that call it if the
9255 Texinfo file uses @node lines without next/prev/up pointers.
9256 Correct outdated description about texinfo-master-menu.
9257 (texinfo-all-menus-update, texinfo-master-menu)
9258 (texinfo-update-node, texinfo-every-node-update)
9259 (texinfo-multiple-files-update): Doc fix. Warn against updating
9260 all the @node lines.
9261 (texinfo-master-menu): Only call texinfo-update-node if the prefix
9262 argument is numeric. Explain better in the doc string what the
9263 function really does.
9264 (texinfo-insert-master-menu-list): Improve the error message
9265 displayed if there's no menu in the Top node.
9266 (Bug#2975) See also this thread:
9267 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
9268
9269 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
9270
9271 * speedbar.el (speedbar-supported-extension-expressions):
9272 Add .adb and .ads, commonly used for Ada source code (bug#10256).
9273
9274 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
9275
9276 * printing.el (pr-mode-alist):
9277 * simple.el (filter-buffer-substring-functions)
9278 (completion-list-insert-choice-function):
9279 * window.el (window-with-parameter, window-atom-root)
9280 (window-sides-slots, window-size-fixed, window-min-delta)
9281 (window-max-delta, window--resize-mini-window)
9282 (window--resize-child-windows-normal, window-tree)
9283 (delete-other-windows, quit-window, split-window)
9284 (display-buffer-record-window, special-display-buffer-names)
9285 (special-display-regexps, special-display-popup-frame)
9286 (same-window-p, split-window-sensibly)
9287 (display-buffer-overriding-action, display-buffer-alist)
9288 (display-buffer-base-action, display-buffer, switch-to-buffer)
9289 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
9290 (fit-window-to-buffer, recenter-positions)
9291 (mouse-autoselect-window-state, mouse-autoselect-window-select):
9292 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
9293 and remove unneeded backslashes in docstrings.
9294
9295 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
9296
9297 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
9298
9299 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
9300 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
9301 end in ".mk".
9302 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
9303 when reading the makefile (bug#10116).
9304
9305 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9306
9307 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
9308 (bug#10116).
9309
9310 2011-12-06 Glenn Morris <rgm@gnu.org>
9311
9312 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
9313
9314 2011-12-06 Chong Yidong <cyd@gnu.org>
9315
9316 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
9317
9318 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
9319
9320 * textmodes/table.el (table-shorten-cell): Fix typo.
9321
9322 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
9323
9324 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
9325
9326 2011-12-05 Eli Zaretskii <eliz@gnu.org>
9327
9328 * descr-text.el (describe-char): Fix display of strong
9329 right-to-left characters and directional embeddings and overrides.
9330
9331 * simple.el (what-cursor-position): Fix display of codepoints of
9332 strong right-to-left characters.
9333
9334 2011-12-05 Chong Yidong <cyd@gnu.org>
9335
9336 * faces.el (read-color): Doc fix.
9337
9338 2011-12-05 Glenn Morris <rgm@gnu.org>
9339
9340 * align.el (align--set-marker): Add doc-string.
9341 Don't try to move something that is not a marker. (Bug#10216)
9342
9343 2011-12-04 Glenn Morris <rgm@gnu.org>
9344
9345 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
9346 overly zealous deletion of trailing whitespace.
9347
9348 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
9349
9350 * server.el (server-delete-client): On Windows, do not try to delete
9351 the only terminal.
9352 (server-process-filter): On Windows, treat requests for a tty frame as
9353 if they were for a GUI frame if the running server is in GUI mode.
9354
9355 2011-12-03 Glenn Morris <rgm@gnu.org>
9356
9357 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
9358
9359 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
9360
9361 * electric.el: Streamline electric-indent's hook.
9362 (electric-indent-chars): Revert to simple list.
9363 (electric-indent-functions): New var.
9364 (electric-indent-post-self-insert-function): Use it.
9365
9366 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
9367 there's no inferior buffer (bug#10196).
9368 (prolog-consult-compile): Don't use toggle-read-only.
9369
9370 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
9371
9372 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
9373 interrupt. (Bug#10187)
9374
9375 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
9376
9377 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
9378 (bug#9160).
9379
9380 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
9381 (bug#10191).
9382
9383 2011-12-02 Juri Linkov <juri@jurta.org>
9384
9385 * info.el (Info-search): Display "end of manual" when Isearch
9386 reaches the end of single-file Info manual. (Bug#9918)
9387
9388 2011-12-02 Eli Zaretskii <eliz@gnu.org>
9389
9390 * isearch.el (isearch-message-prefix): Run the input method part
9391 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
9392
9393 2011-12-02 Juri Linkov <juri@jurta.org>
9394
9395 * isearch.el (isearch-occur): Use `word-search-regexp' for
9396 `isearch-word'.
9397 (isearch-search-and-update): Add condition for `isearch-word' and
9398 call `word-search-regexp'. (Bug#10145)
9399
9400 2011-12-01 Glenn Morris <rgm@gnu.org>
9401
9402 * eshell/em-hist.el (eshell-hist-initialize):
9403 Handle eshell-history-size nil and HISTSIZE set or unset.
9404 (eshell-history-file-name, eshell-history-size): Fix custom type.
9405
9406 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
9407
9408 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
9409
9410 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
9411
9412 * progmodes/verilog-mode.el (verilog-pretty-expr):
9413 Rework verilog-pretty-expr to handle new assignment operators in system
9414 verilog, such as += *= and the like.
9415 (verilog-assignment-operator-re): Regular expression to find the
9416 assigment operator in a verilog assignment.
9417 (verilog-assignment-operation-re): Regular expression to find an
9418 assignment statement for pretty-expr.
9419 (verilog-in-attribute-p): Query returns true if point is in an
9420 attribute context; used to skip these for expression line up from
9421 pretty-expr.
9422 (verilog-in-parameter-p): Query returns true if point is in an
9423 parameter definition context; used to skip these for expression
9424 line up from pretty-expr.
9425 (verilog-in-parenthesis-p): Query returns true if point is in a
9426 parenthetical expression, specifically ( ) but not [ ] or { };
9427 used by pretty-expr.
9428 (verilog-just-one-space): If there is no space, don't add one.
9429 (verilog-get-lineup-indent-2): Specifically skip just attribute
9430 contexts for expression lineup, rather than skipping all
9431 parenthetical expressions.
9432 (verilog-calculate-indent): Fix comment, and fix indent.
9433 (verilog-do-indent): Indent declarations in lists (suggested by
9434 Joachim Lechner).
9435 (verilog-mode-abbrev-table): Populate abbrev mode with the various
9436 skeleton items.
9437 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
9438 by Alain Mellan).
9439
9440 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
9441
9442 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
9443 parameters with embedded comments. Reported by Ray Stevens.
9444 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
9445 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
9446 Reported by Tim Holt.
9447 (verilog-auto): Fix AUTOing a upper module then AUTOing module
9448 instantiated by upper module causing wrong expansion until AUTOed a
9449 second time. Reported by K C Buckenmaier.
9450 (verilog-diff-auto): Fix showing .* as a difference when
9451 `verilog-auto-star-save' off. Reported by Dan Dever.
9452 (verilog-auto-reset, verilog-read-always-signals)
9453 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
9454 temporary signals in reset list if
9455 verilog-auto-reset-blocking-in-non is nil, and match assignment
9456 style to each signal's assignment type, bug381.
9457 Reported by Thomas Esposito.
9458 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
9459 (verilog-uvm-statement-re): Support UVM indentation and
9460 highlighting, with old OVM keywords only.
9461 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
9462 Support AUTOTIEOFF creating non-wire data types.
9463 Suggested by Jonathan Greenlaw.
9464 (verilog-auto-insert-lisp, verilog-delete-to-paren)
9465 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
9466 (verilog-inject-sense, verilog-read-inst-pins)
9467 (verilog-read-sub-decls, verilog-read-sub-decls-line):
9468 Fix mismatching parenthesis inside commented out code when deleting
9469 AUTOINST, bug383. Reported by Jonathan Greenlaw.
9470 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
9471 non-numeric vector width. Reported by Alex Reed.
9472 (verilog-auto-ascii-enum): Add "onehot" option to work around not
9473 detecting signals with parameter widths. Reported by Alex Reed.
9474 (verilog-auto-delete-trailing-whitespace):
9475 With `verilog-auto-delete-trailing-whitespace' remove trailing
9476 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
9477 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
9478 Fix verilog-scan-cache corruption when running user AUTO expansion
9479 hooks that call indentation routines.
9480 (verilog-simplify-range-expression): Fix typo ignoring lower case
9481 identifiers.
9482 (verilog-delete-auto): Fix delete-autos to also remove user created
9483 automatics, as long as they start with AUTO.
9484 (verilog-batch-diff-auto, verilog-diff-auto)
9485 (verilog-diff-function): Add `verilog-diff-auto' and bind to
9486 "C-c?" to report differences in AUTO expansion, ignoring spaces.
9487 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
9488 (verilog-in-paren-quick, verilog-re-search-backward-quick)
9489 (verilog-re-search-forward-quick, verilog-syntax-ppss):
9490 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
9491 is disabled and its cache will get corrupt, causing AUTOS not to
9492 expand. Instead use only -quick functions.
9493 (verilog-scan-region): Fix scanning over escaped quotes.
9494 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
9495 (verilog-re-search-backward-quick)
9496 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
9497 related functions now ignore strings, to fix misparsing of strings
9498 with magic comments embedded in them.
9499 (verilog-read-auto-template):
9500 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
9501 Reported by Brad Dobbie.
9502 (verilog-read-auto-template):
9503 Fix 'verilog-auto-inst-template-numbers' with comments.
9504 Reported by Brad Dobbie.
9505 (verilog-auto-inst, verilog-auto-inst-param)
9506 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
9507 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
9508 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
9509 debugging templates without merge conflicts, bug357.
9510 Reported by Brad Dobbie.
9511 (verilog-read-auto-template):
9512 Fix verilog-auto-inst-template-numbers with multiple templates.
9513 Reported by Brad Dobbie.
9514 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
9515 abbrevs so user won't be asked to save.
9516 (verilog-read-auto-lisp-present): Fix to start at beginning of
9517 buffer in case called outside of verilog-auto.
9518 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
9519 to "X-2". Reported by Matthew Myers.
9520 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
9521 all inputs from module templates. Reported by Leith Johnson.
9522 (verilog-module-inside-filename-p): Fix locating programs as with
9523 modules.
9524 (verilog-auto-inst-port): Fix vl-width expressions when using
9525 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
9526 (verilog-decls-get-regs, verilog-decls-get-signals,
9527 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
9528 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
9529 verilog-read-decls): Combine reg and wire structures into one var
9530 structure to represent SystemVerilog concepts.
9531 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
9532 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
9533 (verilog-auto-wire-type, verilog-insert-definition):
9534 Add verilog-auto-wire-type and AUTOLOGIC to support using
9535 SystemVerilog "logic" keyword instead of "wire"/"reg".
9536 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
9537 to declares outputs that also have assignments (presumably in an
9538 ifdef or generate if so there's not a driver conflict).
9539 Reported by Matthew Myers.
9540 (verilog-auto-declare-nettype, verilog-insert-definition):
9541 Add verilog-auto-declare-nettype to fix declarations using
9542 `default_nettype none. Reported by Julian Gorfajn.
9543 (verilog-read-always-signals-recurse, verilog-read-decls)
9544 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
9545 malformed end statement, bug325. Reported by Joshua Wise and
9546 Andrew Drake.
9547 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
9548 (verilog-inst-comment-re): Fix not deleting Interfaced comment
9549 when expanding .* in interfaces, bug320.
9550 Reported by Pierre-David Pfister.
9551 (verilog-read-module-name): Fix import statements between module
9552 name and open parenthesis, bug317.
9553 Reported by Pierre-David Pfister.
9554 (verilog-simplify-range-expression): Fix simplification of
9555 multiplications inside AUTOWIRE connections, bug303.
9556 (verilog-auto-inst-port): Support parameter expansion in
9557 multidimensional arrays.
9558 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
9559 after "assert property". Reported by Julian Gorfajn.
9560 (verilog-simplify-range-expression): Fix "couldn't merge" errors
9561 with multiplication, bug303.
9562 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
9563 Reported by Jan Frode Lonnum.
9564
9565 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
9566
9567 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
9568 (hfy-shell-file-name, hfy-shell):
9569 * international/fontset.el (x-decompose-font-name): Fix typos.
9570
9571 2011-11-29 Ken Brown <kbrown@cornell.edu>
9572
9573 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
9574 (gdb-version): Remove defvar.
9575 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
9576 (gdb-gud-context-command, gdb-non-stop-handler)
9577 (gdb-current-context-command, gdb-stopped): Use it.
9578 (gdb-init-1): Enable pretty printing here.
9579 (gdb-non-stop-handler): Don't enable pretty-printing here.
9580 Check to see if the target supports non-stop mode; if not, turn off
9581 non-stop mode. Use the following.
9582 (gdb-check-target-async): New defun.
9583 (gud-watch, gdb-stopped): Fix whitespace.
9584 (gdb-get-source-file): Don't try to display the source file if
9585 `gdb-main-file' is nil.
9586
9587 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
9588
9589 * align.el: Try to generate fewer markers (bug#10047).
9590 (align--set-marker): New macro.
9591 (align-region): Use it.
9592
9593 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
9594
9595 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
9596
9597 2011-11-29 Chong Yidong <cyd@gnu.org>
9598
9599 * indent.el (indent-for-tab-command, indent-according-to-mode):
9600 Doc fix.
9601 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
9602
9603 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
9604
9605 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
9606 aware of remote file names. (Bug#10124)
9607
9608 2011-11-29 Chong Yidong <cyd@gnu.org>
9609
9610 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
9611
9612 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9613
9614 * files.el (find-file): Don't use force-same-window (bug#10144).
9615 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
9616 use pop-to-buffer if the selected window can't be used.
9617 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
9618
9619 2011-11-28 Eli Zaretskii <eliz@gnu.org>
9620
9621 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
9622 special-mode-map.
9623
9624 2011-11-28 Chong Yidong <cyd@gnu.org>
9625
9626 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
9627
9628 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
9629
9630 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
9631 gdb-get-source-file-list on gdb-create-source-file-list.
9632
9633 2011-11-26 Eli Zaretskii <eliz@gnu.org>
9634
9635 * whitespace.el (whitespace-newline): Use a different foreground
9636 color for 16-color light-background displays.
9637
9638 2011-11-24 Chong Yidong <cyd@gnu.org>
9639
9640 * window.el (display-buffer--special-action): Doc fix.
9641
9642 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
9643
9644 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
9645 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
9646 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
9647 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
9648 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
9649 (avl-tree-stack-first):
9650 * emacs-lisp/cconv.el (cconv--analyse-use):
9651 * net/gnutls.el (gnutls-negotiate): Fix typos.
9652
9653 2011-11-24 Glenn Morris <rgm@gnu.org>
9654
9655 * lpr.el (lpr-windows-system, lpr-lp-system):
9656 * mail/binhex.el (binhex-begin-line):
9657 * progmodes/grep.el (grep-history, grep-find-history):
9658 * textmodes/flyspell.el:
9659 * vc/pcvs-defs.el (cvs-global-menu):
9660 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
9661 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
9662 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
9663
9664 * net/tls.el: Fix case of "GnuTLS".
9665
9666 * paths.el (rmail-file-name): Format doc-string for make-docfile.
9667
9668 * version.el (emacs-build-system): Give it a doc-string.
9669
9670 2011-11-24 Juri Linkov <juri@jurta.org>
9671
9672 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
9673
9674 2011-11-24 Glenn Morris <rgm@gnu.org>
9675
9676 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
9677 if called on a non-mime message just toggle the headers. (Bug#8006)
9678
9679 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
9680
9681 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
9682 (allout-lead-with-comment-string, allout-structure-deleted-hook)
9683 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
9684 (allout-rebullet-heading, allout-open-sibtopic)
9685 (allout-toggle-current-subtree-encryption)
9686 (allout-toggle-subtree-encryption, allout-encrypt-string)
9687 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
9688 (allout-distinctive-bullets-string, allout-auto-activation):
9689 * window.el (window-normalize-buffer-to-display):
9690 * progmodes/verilog-mode.el (verilog-batch-indent):
9691 * textmodes/bibtex.el (bibtex-field-braces-opt)
9692 (bibtex-field-strings-opt):
9693 * vc/cvs-status.el (cvs-tree-merge):
9694 Fix typos.
9695
9696 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
9697
9698 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
9699 `non-essential' to t, in order to avoid remote connections.
9700
9701 2011-11-23 Eli Zaretskii <eliz@gnu.org>
9702
9703 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9704 On MS-DOS and MS-Windows, compare with loaddefs.el
9705 case-insensitively.
9706
9707 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9708
9709 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
9710
9711 2011-11-23 Glenn Morris <rgm@gnu.org>
9712
9713 * paths.el (rmail-file-name): Reformat the doc-string so that it
9714 is picked up.
9715
9716 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
9717 (rmail-auto-file): Ignore case in the "special" field names,
9718 as mail-fetch-field does for all others.
9719
9720 * mail/rmail.el (rmail-forward):
9721 * mail/rmailkwd.el (rmail-set-label):
9722 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
9723 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
9724
9725 * mail/rmail.el (rmail-current-message): Doc fix.
9726
9727 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
9728
9729 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
9730
9731 * server.el (server-eval-and-print): Allow C-g (bug#6585).
9732
9733 2011-11-22 Glenn Morris <rgm@gnu.org>
9734
9735 * mail/rmailmm.el (test-rmail-mime-handler)
9736 (test-rmail-mime-bulk-handler)
9737 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
9738
9739 2011-11-21 Juri Linkov <juri@jurta.org>
9740
9741 * calc/calc.el (calc-read-key-sequence):
9742 Let-bind `input-method-function' to nil. (Bug#10018)
9743
9744 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9745
9746 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
9747 Tell the caller that the next line needs recomputation, even
9748 though it doesn't start a sexp (bug#10094).
9749
9750 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9751
9752 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
9753
9754 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9755
9756 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
9757 Use force-same-window.
9758
9759 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9760
9761 * descr-text.el (describe-char-unicode-data):
9762 * json.el (json-string-escape):
9763 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
9764 (Footnote-unicode, Footnote-style-p):
9765 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
9766
9767 2011-11-20 Chong Yidong <cyd@gnu.org>
9768
9769 * window.el (replace-buffer-in-windows): Restore interactive spec.
9770
9771 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9772
9773 * electric.el (electric-indent-mode): Fix last change (too optimistic).
9774
9775 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
9776 (byte-compile-global-not-obsolete-vars): New var.
9777 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
9778 Use it.
9779 (byte-compile-warn-obsolete): Align text with the one in *Help*.
9780
9781 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9782
9783 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
9784 * progmodes/pascal.el (electric-pascal-equal):
9785 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
9786 * xml.el (xml-substitute-special): Fix typos.
9787
9788 2011-11-20 Glenn Morris <rgm@gnu.org>
9789
9790 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
9791 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
9792 Doc fixes.
9793 (rmail-decode-mime-charset): Mark as obsolete.
9794
9795 * mail/rmailsum.el (rmail-message-regexp-p-1):
9796 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
9797 Before using mime functions, check they are set. (Bug#10077)
9798
9799 2011-11-19 Juri Linkov <juri@jurta.org>
9800
9801 * info.el (Info-finder-find-node): Use `package--builtins' instead
9802 of `package-alist'. Use node names formed by the pattern "Keyword "
9803 and the keyword name.
9804
9805 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9806
9807 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
9808
9809 2011-11-19 Juri Linkov <juri@jurta.org>
9810
9811 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
9812 that calls `revert-buffer' on all Info buffers. (Bug#9915)
9813 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
9814 `old-history', `old-history-forward'. Add let-binding
9815 `window-selected'. Remove calls to `kill-buffer',
9816 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
9817 before calling `Info-find-node', so `Info-find-node-2' will reread
9818 the Info file. Restore window positions only when `window-selected'
9819 is non-nil.
9820
9821 2011-11-19 Juri Linkov <juri@jurta.org>
9822
9823 * isearch.el (isearch-lazy-highlight-new-loop):
9824 Remove condition `(not isearch-error)'. (Bug#9918)
9825
9826 * misearch.el (multi-isearch-search-fun): Add condition
9827 `(not bound)' to ignore lazy-highlighting search.
9828 Add the search-failed message "end of multi" when the end of
9829 multi-sequence is reached. Uncapitalize the search-failed
9830 message "Repeat for next buffer".
9831
9832 * info.el (Info-search): Add the search-failed message
9833 "end of the manual" when the end of the manual is reached
9834 in Isearch mode.
9835
9836 2011-11-19 Juri Linkov <juri@jurta.org>
9837
9838 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
9839 Use non-destructive `remove' instead of `delete' because
9840 `Info-history-list' stored to `Info-isearch-initial-history-list' in
9841 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
9842
9843 2011-11-19 Juri Linkov <juri@jurta.org>
9844
9845 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
9846 to nil instead of binding `search-ring' and `regexp-search-ring'.
9847 (Bug#9185)
9848
9849 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9850
9851 * simple.el (line-move): Force movement by logical lines for any
9852 hscrolled window, not only when auto-hscroll-mode is on.
9853 (line-move-visual): Update doc string to that effect. (Bug#10076)
9854
9855 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
9856
9857 * language/european.el (macintosh): Define as alias for mac-roman.
9858
9859 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9860
9861 * mail/rmailmm.el (rmail-mime-display-header)
9862 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
9863 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
9864 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
9865 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
9866 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
9867 of a raw aref.
9868 (rmail-mime-entity-segment): To get past the tagline, move forward
9869 2 more lines, to account for the 2 empty lines that precede and
9870 follow the line with the buttons.
9871 (rmail-mime-update-tagline): Move one more line, to get past the
9872 empty line that follows the buttons in the tagline. (Bug#9520)
9873
9874 2011-11-19 Martin Rudalics <rudalics@gmx.at>
9875
9876 * window.el (window-max-delta-1, window-min-delta-1)
9877 (window-min-size-1, window-state-get-1, window-state-put-1)
9878 (window-state-put-2): Use "window--" prefix.
9879
9880 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
9881
9882 * emacs-lisp/smie.el: Improve warnings and conflict detection.
9883 (smie-warning-count): New var.
9884 (smie-set-prec2tab): Use it.
9885 (smie-bnf->prec2): Improve warnings. Add docstring.
9886 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
9887 (smie-bnf--set-class): New function.
9888 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
9889 corner case.
9890
9891 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
9892 (compilation-error-properties, compilation-move-to-column):
9893 Handle compilation-first-column while in the target buffer.
9894
9895 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
9896 Don't hardcode point-min==1.
9897
9898 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
9899 (eshell-rewrite-for-command): Remove workaround.
9900 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
9901 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
9902 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
9903
9904 * files-x.el (modify-file-local-variable): Obey commenting conventions.
9905
9906 2011-11-17 Glenn Morris <rgm@gnu.org>
9907
9908 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9909 Ignore buffer-local generated-autoload-file if it is the same
9910 as the global value. (Bug#10049)
9911
9912 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
9913
9914 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
9915 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
9916 (reftex-toc-previous-heading, reftex-toc-max-level)
9917 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
9918 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
9919 (reftex-toc-do-promote, reftex-toc-promote-prepare)
9920 (reftex-toc-promote-action, reftex-toc-extract-section-number)
9921 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
9922 (reftex-toc-rename-label, reftex-toc-visit-location)
9923 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
9924 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
9925 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
9926 leaving "*toc*" only for references to the buffer.
9927
9928 2011-11-17 Martin Rudalics <rudalics@gmx.at>
9929
9930 * window.el (window-resize, delete-window, split-window):
9931 Replace window-splits by window-combination-resize.
9932 * cus-start.el (window-splits): Replace by window-combination-resize.
9933
9934 2011-11-17 Glenn Morris <rgm@gnu.org>
9935
9936 * progmodes/sh-script.el (sh-font-lock-keywords-var):
9937 Make bash entry derive from sh entry, not shell entry.
9938
9939 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
9940
9941 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
9942 local file name.
9943
9944 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9945
9946 * menu-bar.el (menu-bar-file-menu):
9947 * printing.el (pr-ps-utility):
9948 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
9949 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
9950 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
9951 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
9952 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
9953 (icalendar--convert-cyclic-to-ical)
9954 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
9955 (icalendar--convert-ical-to-diary)
9956 (icalendar--convert-recurring-to-diary)
9957 (icalendar--convert-non-recurring-all-day-to-diary)
9958 (icalendar-import-format-sample):
9959 * progmodes/idlw-shell.el (idlwave-shell-mode):
9960 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
9961 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
9962 (vhdl-ps-print-init): Fix typos.
9963
9964 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
9965
9966 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
9967 FSF and collapse date sequence, obscure author/maintainer email address
9968 better, remove extra version line, track relocation of author's webpage.
9969
9970 * progmodes/python.el (python-pdbtrack-input-prompt)
9971 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
9972 regular python pdb prompts. Adjustments shamelessly taken exactly as
9973 suggested in EmacsWiki page (tiny change):
9974 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
9975
9976 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9977
9978 * expand.el (expand-pos, expand-index, expand-point):
9979 Remove redundant info from docstring.
9980 (expand-add-abbrevs): Doc fix.
9981 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
9982 (expand-sample-perl-mode-expand-list): Fix typos.
9983
9984 * net/dbus.el (dbus-event-member-name):
9985 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
9986 * term/pc-win.el (msdos-create-frame-with-faces):
9987 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
9988
9989 2011-11-16 Martin Rudalics <rudalics@gmx.at>
9990
9991 * window.el (split-window, window-state-get-1)
9992 (window-state-put-1, window-state-put-2): Rename occurrences of
9993 window-nest to window-combination-limit.
9994 * cus-start.el (window-nest): Rename to window-combination-limit.
9995
9996 2011-11-16 Chong Yidong <cyd@gnu.org>
9997
9998 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
9999 regexp (Bug#10033).
10000
10001 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
10002
10003 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
10004 `completing-read' will remove *Completions* and will preserve
10005 current-buffer for us.
10006 (tmm-add-prompt): Users of *Completions* will always (re)set its
10007 major mode.
10008 (tmm-old-comp-map): Remove.
10009
10010 2011-11-16 Glenn Morris <rgm@gnu.org>
10011
10012 * mail/rmailedit.el: Require rmailmm when compiling.
10013 (rmail-old-mime-state): New declaration.
10014 (rmail-edit-current-message): If editing a mime message,
10015 edit the "raw" message from the mbox buffer.
10016 (rmail-cease-edit): Handle mime messages. (Bug#9840)
10017
10018 2011-11-15 Glenn Morris <rgm@gnu.org>
10019
10020 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
10021 which wasn't being used. Add optional arg to force given state.
10022 (rmail-mime): Add optional arg to force given state.
10023
10024 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
10025
10026 * allout.el (allout-encryption-plaintext-sanitization-regexps):
10027 * frame.el (display-mm-dimensions-alist):
10028 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
10029 (outline-move-subtree-down):
10030 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
10031 (newsticker--treeview-do-get-node):
10032 * net/quickurl.el (quickurl-list-buffer-name):
10033 * progmodes/dcl-mode.el (dcl-mode):
10034 * progmodes/gdb-mi.el (gdb-mapcar*):
10035 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
10036
10037 2011-11-15 Glenn Morris <rgm@gnu.org>
10038
10039 * mail/rmail.el (rmail-file-coding-system): It's only ever used
10040 in a boolean sense, so just make it a boolean, and fix the doc.
10041 (rmail-show-mime-function, rmail-mime-feature)
10042 (rmail-require-mime-maybe): Doc fixes.
10043 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
10044
10045 * mail/rmailmm.el (rmail-show-mime): Doc fix.
10046
10047 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
10048
10049 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
10050 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
10051 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
10052 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
10053
10054 2011-11-15 Glenn Morris <rgm@gnu.org>
10055
10056 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
10057 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
10058 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
10059 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
10060 (rmail-mime, rmail-show-mime): Doc fixes.
10061
10062 * term/ns-win.el (mode-line-frame-identification):
10063 Leave it alone. (Bug#10051)
10064
10065 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
10066
10067 * mail/rmailout.el (rmail-output-to-rmail-buffer):
10068 Handle empty buffers. (Bug#9978)
10069
10070 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
10071
10072 * international/mule.el (define-charset):
10073 * mail/rmailmm.el (rmail-mime-find-header-encoding):
10074 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
10075 * progmodes/verilog-mode.el (verilog-backward-token):
10076 * textmodes/ispell.el (lookup-words):
10077 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
10078
10079 2011-11-14 Glenn Morris <rgm@gnu.org>
10080
10081 * progmodes/executable.el
10082 (executable-make-buffer-file-executable-if-script-p):
10083 Handle file-modes returning nil.
10084
10085 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
10086 message - not necessary, and causes problems. (Bug#9831)
10087
10088 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
10089
10090 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
10091
10092 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
10093 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
10094 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
10095
10096 2011-11-12 Martin Rudalics <rudalics@gmx.at>
10097
10098 * window.el (window-resize, delete-window): Use window-splits
10099 variable instead of function.
10100 (window-state-get-1, window-state-put-2, window-state-put):
10101 Don't deal with windows' splits status.
10102
10103 2011-11-12 Glenn Morris <rgm@gnu.org>
10104
10105 * apropos.el (apropos-do-all, apropos-library, apropos-value)
10106 (apropos-documentation): Doc fixes.
10107
10108 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
10109
10110 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
10111 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
10112
10113 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
10114
10115 * electric.el (electric-indent-post-self-insert-function): Make it
10116 possible for a char to only indent in some circumstances.
10117 (electric-indent-mode): Simplify.
10118
10119 2011-11-11 Martin Rudalics <rudalics@gmx.at>
10120
10121 * window.el (windows-with-parameter): Remove unused function.
10122 (windows-at-side): Rename to window-at-side-list.
10123 (window-check, window-atom-check, window-atom-check-1)
10124 (window-side-check, window-size-ignore, window-size-fixed-1)
10125 (window-in-direction-2): Prefix with "window--".
10126 (window-tree-1): Rename to window--subtree, fix doc-string.
10127
10128 2011-11-11 Glenn Morris <rgm@gnu.org>
10129
10130 * subr.el (eval-after-load): If FILE is already loaded,
10131 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
10132
10133 2011-11-10 Glenn Morris <rgm@gnu.org>
10134
10135 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
10136 Call svn via vc-svn-command rather than vc-do-command.
10137 (vc-svn-command): Add --non-interactive. (Bug#9993)
10138 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
10139
10140 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10141 Add toggle-read-only. (Bug#7292)
10142 * files.el (toggle-read-only): Mention that it should only
10143 be used interactively. (Bug#10006)
10144
10145 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
10146
10147 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10148 Adjust regexp for OCaml warnings.
10149
10150 * electric.el (electric-pair-post-self-insert-function): Let user
10151 turn it off buffer-locally (bug#9932).
10152
10153 * progmodes/python.el (python-beginning-of-statement):
10154 Rewrite (bug#2703).
10155
10156 * progmodes/compile.el: Better handle TABs (bug#9749).
10157 (compilation-internal-error-properties)
10158 (compilation-next-error-function): Obey the target buffer's
10159 compilation-error-screen-columns.
10160
10161 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
10162
10163 * progmodes/meta-mode.el: Remove obsolete comments.
10164 (meta-right-comment-regexp, meta-ignore-comment-regexp):
10165 Fix typos in docstrings.
10166
10167 2011-11-09 Martin Rudalics <rudalics@gmx.at>
10168
10169 * window.el (window-size-fixed-p): Rewrite doc-string.
10170 (window-resizable-p): Rename to window--resizable-p. Update callers.
10171 (window--resizable): New function. Make all callers of
10172 window-resizable call window--resizable instead.
10173 (window-resizable): Rewrite in terms of window--resizable.
10174
10175 2011-11-08 Glenn Morris <rgm@gnu.org>
10176
10177 * progmodes/delphi.el (delphi-mode-syntax-table):
10178 Let define-derived-mode define a proper syntax table. (Bug#9994)
10179
10180 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
10181
10182 * window.el: Stay away from defsubst.
10183 (window-list-no-nils): Remove.
10184 (window-state-get-1, window-state-get): Use backquote instead.
10185
10186 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10187
10188 * emacs-lisp/find-func.el (find-function-read):
10189 Fix incorrect use of default argument in `completing-read'.
10190
10191 2011-11-08 Martin Rudalics <rudalics@gmx.at>
10192
10193 * window.el (display-buffer-function, special-display-function):
10194 Mention display-buffer-record-window but do not mention
10195 help-setup parameter in doc-strings.
10196 (window-min-delta): Fix doc-string typo.
10197
10198 2011-11-08 Chong Yidong <cyd@gnu.org>
10199
10200 * window.el (window-total-height, window-total-width): Doc fix.
10201 (window-body-size): Move from C.
10202 (window-body-height, window-body-width): Move to C.
10203
10204 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
10205
10206 * window.el: Make special-display like display-buffer-alist (bug#9532).
10207 (display-buffer--special-action): New function, morphed
10208 from display-buffer--special.
10209 (display-buffer): Use it to handle special-display-buffers at higher
10210 priority (just after display-buffer-alist).
10211 (display-buffer-fallback-action, display-buffer--other-frame-action)
10212 (pop-to-buffer-same-window): Remove display-buffer--special.
10213
10214 2011-11-07 Glenn Morris <rgm@gnu.org>
10215
10216 * calendar/cal-menu.el (cal-menu-set-date-title):
10217 Do nothing if not in a calendar. (Bug#9976)
10218
10219 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
10220
10221 * files.el (find-file): Always use selected-window.
10222
10223 2011-11-07 Martin Rudalics <rudalics@gmx.at>
10224
10225 * window.el (window-combinations): Make WINDOW argument
10226 mandatory. Rewrite doc-string.
10227 (walk-window-subtree, window-atom-check, window-min-delta)
10228 (window-max-delta, window--resize-this-window)
10229 (window--resize-root-window-vertically, window-tree)
10230 (balance-windows, window-state-put): Rewrite doc-strings as to
10231 not mention the term "subwindow".
10232 (window--resize-subwindows-skip-p): Rename to
10233 window--resize-child-windows-skip-p.
10234 (window--resize-subwindows-normal): Rename to
10235 window--resize-child-windows-normal.
10236 (window--resize-subwindows): Rename to
10237 window--resize-child-windows.
10238 (window-or-subwindow-p): Rename to window--in-subtree-p.
10239
10240 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
10241
10242 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
10243 Ensure that mbox format messages end in two newlines (Bug#9974).
10244
10245 2011-11-06 Chong Yidong <cyd@gnu.org>
10246
10247 * window.el (window-combination-p): Function deleted; its
10248 side-effect is not used in any existing code.
10249 (window-combinations, window-combined-p): Call window-*-child
10250 directly.
10251
10252 2011-11-05 Chong Yidong <cyd@gnu.org>
10253
10254 * window.el (window-valid-p): Rename from window-any-p.
10255 (window-size-ignore, window-state-get): Callers changed.
10256 (window-normalize-window): Rename from window-normalize-any-window.
10257 New arg LIVE-ONLY, replacing window-normalize-live-window.
10258 (window-normalize-live-window): Delete.
10259 (window-combination-p, window-combined-p, window-combinations)
10260 (walk-window-subtree, window-atom-root, window-min-size)
10261 (window-sizable, window-sizable-p, window-size-fixed-p)
10262 (window-min-delta, window-max-delta, window-resizable)
10263 (window-resizable-p, window-full-height-p, window-full-width-p)
10264 (window-current-scroll-bars, window-point-1, set-window-point-1)
10265 (window-at-side-p, window-in-direction, window-resize)
10266 (adjust-window-trailing-edge, maximize-window, minimize-window)
10267 (window-deletable-p, delete-window, delete-other-windows)
10268 (record-window-buffer, unrecord-window-buffer)
10269 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
10270 (quit-window, split-window, window-state-put)
10271 (set-window-text-height, fit-window-to-buffer)
10272 (shrink-window-if-larger-than-buffer): Callers changed.
10273
10274 2011-11-04 Eli Zaretskii <eliz@gnu.org>
10275
10276 * mail/rmail.el (rmail-simplified-subject): Decode subject with
10277 rfc2047-decode-string.
10278 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
10279 warnings.
10280
10281 * window.el (window-body-height, window-body-width): Mention in
10282 the doc string that the return values are in frame's canonical
10283 units. (Bug#9949)
10284
10285 2011-11-03 Alan Mackenzie <acm@muc.de>
10286
10287 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
10288 change in cc-engine.el.
10289
10290 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
10291
10292 * window.el (switch-to-buffer): Use `force-same-window' interactively.
10293
10294 2011-11-02 Martin Rudalics <rudalics@gmx.at>
10295
10296 * window.el (quit-window): Call unrecord-window-buffer after
10297 showing another buffer in the window. (Bug#9937)
10298 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
10299
10300 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
10301
10302 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
10303 Accept status with more than 9 shelves. (Bug#9935)
10304 Reported by Colin D Bennett <colin@gibibit.com>.
10305
10306 2011-11-01 Martin Rudalics <rudalics@gmx.at>
10307
10308 * help.el (with-help-window): Don't reference
10309 temp-buffer-show-specifiers in doc-string.
10310
10311 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
10312
10313 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
10314 menu-item.
10315
10316 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10317
10318 * whitespace.el: New version 13.2.2.
10319 (whitespace-newline-mode): Disable properly. Reported by Sarah
10320 <EmacsWiki>.
10321
10322 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
10323
10324 * net/newst-treeview.el: Remove "Time-stamp".
10325 (newsticker--group-manage-orphan-feeds): Do not call
10326 newsticker--treeview-tree-update.
10327 (newsticker-treeview-update, newsticker-treeview):
10328 Call newsticker--treeview-tree-update if necessary.
10329
10330 2011-10-30 Martin Rudalics <rudalics@gmx.at>
10331
10332 * window.el (window-iso-combination-p, window-iso-combined-p)
10333 (window-iso-combinations): Remove "iso-" infix.
10334 Suggested by Chong Yidong.
10335 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
10336 (window-max-delta-1, window-resize, window--resize-siblings)
10337 (window--resize-this-window, adjust-window-trailing-edge)
10338 (split-window, balance-windows-1)
10339 (shrink-window-if-larger-than-buffer):
10340 * calendar/calendar.el (calendar-generate-window):
10341 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
10342
10343 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
10344
10345 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
10346 in place (bug#9907).
10347 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
10348 (eshell-rewrite-if-command, eshell-rewrite-for-command)
10349 (eshell-structure-basic-command, eshell-rewrite-while-command)
10350 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
10351 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
10352 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
10353 (eshell-do-pipelines-synchronously, eshell-eval-command):
10354 Use backquotes and prefer setq to set.
10355 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
10356 (eshell-macrop): Use functionp.
10357 (eshell-do-eval): Handle multiple expressions in `while' body.
10358
10359 2011-10-30 Chong Yidong <cyd@gnu.org>
10360
10361 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
10362 instead of set-mark (Bug#9810).
10363
10364 2011-10-30 Chong Yidong <cyd@gnu.org>
10365
10366 * window.el (split-window-below, split-window-right): Rename from
10367 split-window-above-each-other and split-window-side-by-side
10368 respectively. All callers changed.
10369 (split-window-sensibly, split-window-sensibly): Use them.
10370 (split-window-keep-point): Doc fix.
10371
10372 * isearch.el: Add isearch-scroll property to split-window-below
10373 and split-window-right.
10374
10375 * follow.el (follow-mode):
10376 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
10377 * progmodes/ada-xref.el (ada-gdb-application):
10378 * emulation/vip.el (vip-buffer-in-two-windows):
10379 * image-dired.el (image-dired-dired-with-window-configuration):
10380 * dired-x.el (dired-do-find-marked-files):
10381 * dired.el (dired-pop-to-buffer):
10382 * bs.el (bs--show-with-configuration):
10383 * vc/emerge.el (emerge-setup-windows):
10384 * textmodes/two-column.el (2C-two-columns):
10385 * textmodes/reftex-toc.el (reftex-toc):
10386 * progmodes/gdb-mi.el (gdb-setup-windows):
10387 * progmodes/fortran.el (fortran-window-create):
10388 * net/newst-treeview.el (newsticker--treeview-window-init):
10389 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
10390 * emulation/tpu-edt.el (tpu-gold-map):
10391 * emulation/crisp.el (crisp-mode-map):
10392 * calendar/calendar.el (calendar-basic-setup): Callers changed.
10393
10394 2011-10-29 Chong Yidong <cyd@gnu.org>
10395
10396 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
10397
10398 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
10399
10400 * textmodes/flyspell.el (flyspell-word): Fix char offset for
10401 forged Ispell output (Bug#7904).
10402
10403 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
10404
10405 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10406
10407 * doc-view.el: Avoid ugly errors about not finding nil.
10408 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
10409 (doc-view-dvipdf-program, doc-view-unoconv-program)
10410 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
10411 Avoid nil or absolute file name as default value.
10412 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
10413
10414 2011-10-28 Alan Mackenzie <acm@muc.de>
10415
10416 * progmodes/cc-defs.el (c-version): -> 5.32.2.
10417
10418 2011-10-28 Alan Mackenzie <acm@muc.de>
10419
10420 Amend the handling of c-beginning/end-of-defun in nested declaration
10421 scopes.
10422
10423 * progmodes/cc-vars.el (c-defun-tactic): Move here from
10424 cc-langs.el. Change it to a defcustom.
10425
10426 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
10427 cc-vars.el.
10428
10429 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10430 Prevent "class foo : bar" being spuriously recognized as a label.
10431
10432 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
10433 Add parameter `inclusive' (to include enclosing braces in the region).
10434 (c-widen-to-enclosing-decl-scope): New function.
10435 (c-while-widening-to-decl-block): New macro.
10436 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
10437 outward for defun boundaries, and correspondingly change symbol
10438 `respect-enclosure' to `go-outward'.
10439 (c-declaration-limits): Change algorithm to report only the "innermost"
10440 defun's boundaries.
10441
10442 2011-10-28 Deniz Dogan <deniz@dogan.se>
10443
10444 * net/rcirc.el (rcirc-mode): Use hard newlines.
10445
10446 2011-10-28 Alan Mackenzie <acm@muc.de>
10447
10448 Amend to indent and fontify macros "which include their own semicolon"
10449 correctly, using the "virtual semicolon" mechanism.
10450
10451 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
10452
10453 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
10454 Recode to scan one line at a time rather than having \n and \r
10455 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
10456 (c-forward-label): Amend for virtual semicolons.
10457 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
10458
10459 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
10460 of the new C macros.
10461
10462 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
10463 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
10464 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
10465 (c-opt-cpp-macro-define): Make into a full language variable.
10466 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
10467 AWK Mode (including \n, \r) removed, no longer needed.
10468
10469 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
10470 Invoke c-make-macro-with-semi-re.
10471
10472 * progmodes/cc-vars.el (c-macro-with-semi-re):
10473 (c-macro-names-with-semicolon): New variables.
10474 (c-make-macro-with-semi-re): New function.
10475
10476 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10477
10478 * vc/log-edit.el: Fill empty field rather than adding new one.
10479 (log-edit-add-field): New function.
10480 (log-edit-insert-changelog): Use it.
10481
10482 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
10483
10484 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
10485
10486 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10487
10488 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
10489 (gdb--check-interpreter): New function.
10490 (gdb): Use it.
10491
10492 2011-10-27 Glenn Morris <rgm@gnu.org>
10493
10494 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
10495 (least-positive-float, least-negative-float)
10496 (least-positive-normalized-float, least-negative-normalized-float)
10497 (float-epsilon, float-negative-epsilon):
10498 Remove unnecessary declarations.
10499
10500 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
10501 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
10502 (least-positive-float, least-negative-float)
10503 (least-positive-normalized-float, least-negative-normalized-float)
10504 (float-epsilon, float-negative-epsilon): Add doc-strings,
10505 based on those in cl.texi.
10506
10507 * files.el (set-visited-file-name): If the major-mode changed,
10508 reload the local variables. (Bug#9796)
10509
10510 2011-10-27 Chong Yidong <cyd@gnu.org>
10511
10512 * subr.el (change-major-mode-after-body-hook): New hook.
10513 (run-mode-hooks): Run it.
10514
10515 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10516 Use change-major-mode-before-body-hook.
10517
10518 * simple.el (fundamental-mode):
10519 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
10520 change introducing fundamental-mode-hook.
10521
10522 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
10523
10524 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
10525
10526 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
10527
10528 * ido.el (ido-file-name-all-completions-1): Do not require
10529 tramp.el explicitly. (Bug#7583)
10530
10531 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
10532
10533 * progmodes/octave-mod.el:
10534 * progmodes/octave-inf.el: Update maintainer.
10535
10536 2011-10-26 Chong Yidong <cyd@gnu.org>
10537
10538 * subr.el (with-wrapper-hook): Rewrite doc.
10539
10540 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
10541
10542 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
10543 filenames "/method:foo:". (Bug#9793)
10544
10545 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
10546
10547 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
10548 (bug#9865).
10549
10550 2011-10-24 Glenn Morris <rgm@gnu.org>
10551
10552 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
10553
10554 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
10555
10556 * notifications.el: Add the requirement of a running D-Bus session
10557 bus to the Commentary.
10558
10559 2011-10-24 Juri Linkov <juri@jurta.org>
10560
10561 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
10562 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
10563 (Bug#9364)
10564
10565 2011-10-24 Juri Linkov <juri@jurta.org>
10566
10567 * info.el (Info-following-node-name-re): Add newline to the list
10568 of allowed characters for leading space. (Bug#9824)
10569
10570 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
10571
10572 * progmodes/octave-inf.el (inferior-octave-mode-map):
10573 Fix C-c C-h binding.
10574 * progmodes/octave-mod.el (octave-help): Remove.
10575
10576 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
10577
10578 Sync with Tramp 2.2.3.
10579
10580 * net/tramp-cache.el (top): Pacify byte-compiler using
10581 `init-file-user' and `site-run-file'.
10582
10583 * net/trampver.el: Update release number.
10584
10585 2011-10-23 Chong Yidong <cyd@gnu.org>
10586
10587 * files.el (toggle-read-only): Remove obsolete comment about
10588 version control.
10589
10590 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
10591 for toggle-read-only. Note that this hasn't called vc-next-action
10592 since 2008-05-02, though it wasn't documented at the time.
10593
10594 * vc/ediff-init.el (ediff-toggle-read-only-function):
10595 Use toggle-read-only.
10596
10597 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
10598
10599 Fix bug #9560, sporadic wrong indentation; improve instrumentation
10600 of c-parse-state.
10601
10602 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
10603 correct faulty logical expression.
10604 (c-parse-state-state, c-record-parse-state-state):
10605 (c-replay-parse-state-state): New defvar/defuns.
10606 (c-debug-parse-state): Use new functions.
10607
10608 2011-10-22 Martin Rudalics <rudalics@gmx.at>
10609
10610 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
10611 last fix. Use window-in-direction correctly.
10612
10613 2011-10-21 Chong Yidong <cyd@gnu.org>
10614
10615 * progmodes/idlwave.el (idlwave-mode):
10616 * progmodes/vera-mode.el (vera-mode): No need to set
10617 require-final-newline; that's done in prog-mode.
10618 Suggested by Stefan Monnier.
10619
10620 2011-10-21 Martin Rudalics <rudalics@gmx.at>
10621
10622 * mouse.el (mouse-drag-window-above)
10623 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
10624 (mouse-drag-mode-line-1, mouse-drag-header-line)
10625 (mouse-drag-vertical-line-rightward-window): Remove.
10626 (mouse-drag-line): New function.
10627 (mouse-drag-mode-line, mouse-drag-header-line)
10628 (mouse-drag-vertical-line): Call mouse-drag-line.
10629 * window.el (window-at-side-p, windows-at-side): New functions.
10630
10631 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
10632
10633 * tar-mode.el (tar-grind-file-mode):
10634 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
10635
10636 2011-10-21 Chong Yidong <cyd@gnu.org>
10637
10638 * progmodes/idlwave.el (idlwave-mode):
10639 * progmodes/vera-mode.el (vera-mode):
10640 Use mode-require-final-newline.
10641
10642 2011-10-20 Glenn Morris <rgm@gnu.org>
10643
10644 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
10645
10646 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
10647
10648 * emulation/cua-base.el (cua-set-mark): Fix case of string.
10649
10650 2011-10-20 Chong Yidong <cyd@gnu.org>
10651
10652 * emulation/cua-base.el (cua-mode):
10653 * mail/footnote.el (footnote-mode):
10654 * mail/mailabbrev.el (mail-abbrevs-mode):
10655 * net/xesam.el (xesam-minor-mode):
10656 * progmodes/bug-reference.el (bug-reference-mode):
10657 * progmodes/cap-words.el (capitalized-words-mode):
10658 * progmodes/compile.el (compilation-minor-mode)
10659 (compilation-shell-minor-mode):
10660 * progmodes/gud.el (gud-tooltip-mode):
10661 * progmodes/hideif.el (hide-ifdef-mode):
10662 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
10663 * progmodes/subword.el (subword-mode):
10664 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
10665 * progmodes/which-func.el (which-function-mode):
10666 * term/tvi970.el (tvi970-set-keypad-mode):
10667 * term/vt100.el (vt100-wide-mode):
10668 * textmodes/flyspell.el (flyspell-mode):
10669 * textmodes/ispell.el (ispell-minor-mode):
10670 * textmodes/nroff-mode.el (nroff-electric-mode):
10671 * textmodes/paragraphs.el (use-hard-newlines):
10672 * textmodes/refill.el (refill-mode):
10673 * textmodes/reftex.el (reftex-mode):
10674 * textmodes/rst.el (rst-minor-mode):
10675 * textmodes/sgml-mode.el (html-autoview-mode)
10676 (sgml-electric-tag-pair-mode):
10677 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
10678 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
10679 * emulation/crisp.el (crisp-mode):
10680 * emacs-lisp/eldoc.el (eldoc-mode):
10681 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
10682 minor mode behavior.
10683
10684 2011-10-19 Juri Linkov <juri@jurta.org>
10685
10686 * descr-text.el (describe-char): Add #x2010 and #x2011 to
10687 the list of hard-coded chars with escape-glyph face.
10688
10689 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
10690
10691 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
10692
10693 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
10694
10695 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
10696 running process.
10697
10698 2011-10-19 Glenn Morris <rgm@gnu.org>
10699
10700 * vc/vc-bzr.el (vc-bzr-after-dir-status):
10701 Ignore ignored files. (Bug#9726)
10702
10703 2011-10-19 Chong Yidong <cyd@gnu.org>
10704
10705 Doc fix for minor modes, stating that an omitted argument enables
10706 the mode unconditionally when called from Lisp.
10707
10708 * abbrev.el (abbrev-mode):
10709 * allout.el (allout-mode):
10710 * autoinsert.el (auto-insert-mode):
10711 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10712 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
10713 (global-auto-revert-mode):
10714 * battery.el (display-battery-mode):
10715 * composite.el (global-auto-composition-mode)
10716 (auto-composition-mode):
10717 * delsel.el (delete-selection-mode):
10718 * desktop.el (desktop-save-mode):
10719 * dired-x.el (dired-omit-mode):
10720 * dirtrack.el (dirtrack-mode):
10721 * doc-view.el (doc-view-minor-mode):
10722 * double.el (double-mode):
10723 * electric.el (electric-indent-mode, electric-pair-mode):
10724 * emacs-lock.el (emacs-lock-mode):
10725 * epa-hook.el (auto-encryption-mode):
10726 * follow.el (follow-mode):
10727 * font-core.el (font-lock-mode):
10728 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
10729 * help.el (temp-buffer-resize-mode):
10730 * hilit-chg.el (highlight-changes-mode)
10731 (highlight-changes-visible-mode):
10732 * hi-lock.el (hi-lock-mode):
10733 * hl-line.el (hl-line-mode, global-hl-line-mode):
10734 * icomplete.el (icomplete-mode):
10735 * ido.el (ido-everywhere):
10736 * image-file.el (auto-image-file-mode):
10737 * image-mode.el (image-minor-mode):
10738 * iswitchb.el (iswitchb-mode):
10739 * jka-cmpr-hook.el (auto-compression-mode):
10740 * linum.el (linum-mode):
10741 * longlines.el (longlines-mode):
10742 * master.el (master-mode):
10743 * mb-depth.el (minibuffer-depth-indicate-mode):
10744 * menu-bar.el (menu-bar-mode):
10745 * minibuf-eldef.el (minibuffer-electric-default-mode):
10746 * mouse-sel.el (mouse-sel-mode):
10747 * msb.el (msb-mode):
10748 * mwheel.el (mouse-wheel-mode):
10749 * outline.el (outline-minor-mode):
10750 * paren.el (show-paren-mode):
10751 * recentf.el (recentf-mode):
10752 * reveal.el (reveal-mode, global-reveal-mode):
10753 * rfn-eshadow.el (file-name-shadow-mode):
10754 * ruler-mode.el (ruler-mode):
10755 * savehist.el (savehist-mode):
10756 * scroll-all.el (scroll-all-mode):
10757 * scroll-bar.el (scroll-bar-mode):
10758 * server.el (server-mode):
10759 * shell.el (shell-dirtrack-mode):
10760 * simple.el (auto-fill-mode, transient-mark-mode)
10761 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
10762 (line-number-mode, column-number-mode, size-indication-mode)
10763 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
10764 * strokes.el (strokes-mode):
10765 * time.el (display-time-mode):
10766 * t-mouse.el (gpm-mouse-mode):
10767 * tool-bar.el (tool-bar-mode):
10768 * tooltip.el (tooltip-mode):
10769 * type-break.el (type-break-mode-line-message-mode)
10770 (type-break-query-mode):
10771 * view.el (view-mode):
10772 * whitespace.el (whitespace-mode, whitespace-newline-mode)
10773 (global-whitespace-mode, global-whitespace-newline-mode):
10774 * xt-mouse.el (xterm-mouse-mode): Doc fix.
10775
10776 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10777 Fix autogenerated docstring.
10778
10779 2011-10-19 Juri Linkov <juri@jurta.org>
10780
10781 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
10782 by checking environment variables "DESKTOP_SESSION" and
10783 "XDG_CURRENT_DESKTOP". (Bug#9779)
10784
10785 2011-10-19 Juri Linkov <juri@jurta.org>
10786
10787 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
10788 (browse-url-chromium-program, browse-url-chromium-arguments):
10789 New defcustoms.
10790 (browse-url-default-browser): Check for `browse-url-chromium' and
10791 call `browse-url-chromium-program'.
10792 (browse-url-chromium): New command. (Bug#9779)
10793
10794 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
10795
10796 * facemenu.el (list-colors-duplicates): On Windows, detect more
10797 duplicates by assuming that only colors matching "^System" are
10798 special "system colors". (Bug#9722)
10799
10800 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
10801
10802 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
10803 to distinguish the author from the committer.
10804
10805 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
10806
10807 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
10808
10809 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
10810
10811 * international/mule.el (sgml-html-meta-auto-coding-function):
10812 Add support for detecting encoding in HTML5 specified only as
10813 <meta charset="UTF-8">. Implementation just makes http-equiv and
10814 content-type parts from HTML4 encoding string optional. (Bug#9716)
10815
10816 2011-10-18 Glenn Morris <rgm@gnu.org>
10817
10818 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
10819
10820 2011-10-18 Chong Yidong <cyd@gnu.org>
10821
10822 * faces.el (cursor): Doc fix.
10823
10824 2011-10-17 Chong Yidong <cyd@gnu.org>
10825
10826 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
10827
10828 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
10829
10830 * dirtrack.el (dirtrack): Support shell buffers with path
10831 prefixes, e.g. tramp-based remote shells. (Bug#9647)
10832
10833 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
10834
10835 * json.el: Bump version to 1.3 and note change in History.
10836 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
10837
10838 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
10839
10840 * comint.el (comint-insert-input, comint-send-input)
10841 (comint-get-old-input-default, comint-backward-matching-input)
10842 (comint-next-prompt): Use nil instead of `input' for field property of
10843 past user input (bug#114).
10844
10845 * minibuffer.el (completion--replace): Inherit surrounding properties
10846 (bug#114).
10847 (minibuffer-complete-and-exit): Use it.
10848
10849 * comint.el (comint--table-subvert): Quote the all-completions output
10850 (bug#9160).
10851
10852 2011-10-17 Martin Rudalics <rudalics@gmx.at>
10853
10854 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
10855
10856 * menu-bar.el (menu-bar-file-menu): Add entry for making new
10857 window on right of selected. (Bug#9350) Reword other window
10858 entries and separate them from frame entries.
10859
10860 2011-10-15 Glenn Morris <rgm@gnu.org>
10861
10862 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
10863 Doc fixes.
10864
10865 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
10866
10867 * net/network-stream.el (network-stream-open-starttls):
10868 Improve detection of failure due to lack of TLS support.
10869
10870 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
10871 putting the input text in front and in bold.
10872
10873 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
10874
10875 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
10876
10877 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
10878 empty buffer.
10879
10880 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
10881 unread-command-events rather than pushing yet-another event.
10882
10883 2011-10-14 Eli Zaretskii <eliz@gnu.org>
10884
10885 * mail/sendmail.el (sendmail-query-once): Improve the wording of
10886 the explanation of the possible choices. Make the options passed
10887 to completing-read shorter.
10888
10889 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10890
10891 * textmodes/flyspell.el (flyspell-large-region): Make sure
10892 extended character mode is used if defined (Bug#1339).
10893
10894 2011-10-13 Eli Zaretskii <eliz@gnu.org>
10895
10896 * simple.el (what-cursor-position): Fix the display of the
10897 character info for LRE, LRO, RLE, and RLO characters by appending
10898 an invisible PDF.
10899
10900 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
10901
10902 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
10903 even in case of error; add debug spec; simplify data flow.
10904 (with-timeout-handler): Remove.
10905
10906 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
10907
10908 Fix Bug#6019, Bug#9315.
10909
10910 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
10911 complete `buffer-file-name', the local file name part could look
10912 remotely (for example on VMS).
10913
10914 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
10915 `tramp-run-real-handler'.
10916 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
10917 already quoted by '"'.
10918
10919 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
10920 Let `file-name-handler-alist' be nil, the local file name part
10921 could look remotely (for example on VMS).
10922
10923 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
10924
10925 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
10926 from here...
10927 (flyspell-post-command-hook): ...to here.
10928
10929 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10930
10931 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
10932 if not needed.
10933 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
10934 using completion. Protect against "slow" callers.
10935 Remove the "message hack".
10936
10937 2011-10-11 Juri Linkov <juri@jurta.org>
10938
10939 * isearch.el (isearch-lazy-highlight-word): New variable.
10940 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
10941 Use it. (Bug#9727)
10942
10943 2011-10-11 Glenn Morris <rgm@gnu.org>
10944
10945 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
10946 like f90-previous-statement does.
10947
10948 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10949
10950 * eshell/eshell.el (eshell-command): History should be saved
10951 only in interactive use, to avoid error.
10952
10953 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10954
10955 * minibuffer.el (completion-file-name-table): Fix last change,
10956 i.e. ignore normal errors but not the other ones.
10957
10958 2011-10-10 Martin Rudalics <rudalics@gmx.at>
10959
10960 * window.el (special-display-buffer-names)
10961 (special-display-regexps): Remove some remnants of earlier
10962 changes from doc-strings.
10963 (quit-windows-on): New function.
10964
10965 * vc/vc.el (vc-revert, vc-rollback):
10966 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
10967 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
10968 (Bug#6183) (Bug#7074) (Bug#7447)
10969
10970 2011-10-09 Martin Rudalics <rudalics@gmx.at>
10971
10972 * window.el (frame-auto-hide-function): Add version tag.
10973 (Bug#9699)
10974
10975 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
10976
10977 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
10978 condition.
10979
10980 2011-10-09 Leo Liu <sdl.web@gmail.com>
10981
10982 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
10983 (Bug#9701)
10984
10985 2011-10-08 Glenn Morris <rgm@gnu.org>
10986
10987 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
10988 before the first code statement zero indent. (Bug#9690)
10989
10990 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
10991
10992 * simple.el (count-words-region): Always count in the region.
10993 Report the number of lines and characters too.
10994 (count-words): New command, which counts in the buffer if the
10995 region is inactive, as count-words-region used to.
10996 (count-words--message): New function. Handle plurals.
10997 (count-lines-region): Make it an alias for count-words-region.
10998
10999 * bindings.el (esc-map): Replace count-lines-region with
11000 count-words-region.
11001
11002 2011-10-08 Martin Rudalics <rudalics@gmx.at>
11003
11004 * window.el (window--delete): Delete dedicated frame
11005 unconditionally when argument KILL is non-nil. (Bug#9699)
11006 (switch-to-buffer): Fix doc-string typo.
11007
11008 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11009
11010 * eshell/eshell.el (eshell-command): Avoid using hooks.
11011
11012 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
11013
11014 * bindings.el ([M-left],[M-right]): Bind to left-word and
11015 right-word respectively.
11016
11017 2011-10-07 Glenn Morris <rgm@gnu.org>
11018
11019 * cus-start.el (debug-on-quit): Fix custom type.
11020
11021 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11022
11023 * subr.el (define-key-after): Clarify that the function is not
11024 useful for non-menu keymaps.
11025
11026 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
11027
11028 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11029
11030 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
11031 in current minibuffer (Fix bug with recursive minibuffers).
11032
11033 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
11034
11035 * progmodes/gdb-mi.el (gdb): Doc fix.
11036
11037 2011-10-05 Martin Rudalics <rudalics@gmx.at>
11038
11039 * window.el (frame-auto-hide-function): New option replacing
11040 frame-auto-delete. Suggested by Stefan Monnier.
11041 (window--delete): Call frame-auto-hide-function instead of
11042 investigating frame-auto-delete.
11043 (window-point-1, set-window-point-1): New functions.
11044 (window-in-direction, record-window-buffer, window-state-get-1)
11045 (display-buffer-record-window): Use window-point-1 instead of
11046 window-point.
11047 (set-window-buffer-start-and-point): Use set-window-point-1.
11048
11049 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11050
11051 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
11052
11053 2011-10-05 Glenn Morris <rgm@gnu.org>
11054
11055 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
11056 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
11057
11058 2011-10-05 Leo Liu <sdl.web@gmail.com>
11059
11060 * subr.el (read-char-choice): Fix argument to buffer-live-p which
11061 works with buffer object.
11062
11063 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * mpc.el (mpc-tool-bar-map): Add labels.
11066
11067 2011-10-04 Glenn Morris <rgm@gnu.org>
11068
11069 * calendar/holidays.el (calendar-check-holidays): Doc fix.
11070
11071 2011-10-04 Martin Rudalics <rudalics@gmx.at>
11072
11073 * window.el (window--delete): New function.
11074 (frame-auto-delete): Resuscitate option.
11075 (bury-buffer, replace-buffer-in-windows)
11076 (quit-window): Rewrite using window--delete.
11077 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11078 Pass display-buffer-mark-dedicated to window--display-buffer-2
11079 (Bug#9639).
11080
11081 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
11082
11083 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
11084 returns a list (bug#9554). Add remote file name completion.
11085 * comint.el (comint--table-subvert): Curry and get quote&unquote
11086 functions as arguments.
11087 (comint--complete-file-name-data): Adjust call accordingly.
11088 * pcomplete.el (pcomplete--table-subvert): Remove.
11089 (pcomplete-completions-at-point): Use comint--table-subvert instead.
11090
11091 * minibuffer.el (completion-table-case-fold): Use currying.
11092 (completion--styles-type, completion--cycling-threshold-type):
11093 New constants.
11094 (completion-styles, completion-category-overrides)
11095 (completion-cycle-threshold): Use them.
11096 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
11097 completion-table-case-fold.
11098
11099 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
11100
11101 * minibuffer.el (completion-category-overrides): Fix type of styles
11102 and add more user friendly tags (bug#9660).
11103
11104 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
11105
11106 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
11107 (mule-input-method-string): New widget.
11108 (default-input-method, language-info-custom-alist): Use it.
11109
11110 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
11111
11112 * pcomplete.el: Require comint.
11113 (pcomplete--common-suffix): Remove.
11114 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
11115 (pcomplete--table-subvert): Sync with comint--table-subvert.
11116 (pcomplete--entries): Use comint-completion-file-name-table.
11117 * comint.el (comint-unquote-filename): Simplify.
11118 (comint-completion-file-name-table): New function (bug#9616).
11119 (comint--complete-file-name-data): Use it.
11120
11121 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
11122 (pcmpl-gnu-tar-buffer): Remove.
11123 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
11124 around. Make sure pcomplete-suffix-list is only changed temporarily.
11125 Don't look inside the tar's file if it's too large.
11126
11127 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
11128
11129 * cus-edit.el (custom-mode-map):
11130 * epa.el (epa-key-list-mode-map):
11131 * man.el (Man-mode-map):
11132 * startup.el (splash-screen-keymap):
11133 * simple.el (special-mode-map): Use scroll-up-command and
11134 scroll-down-command.
11135
11136 * progmodes/idlw-help.el (idlwave-help-mode-map):
11137 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
11138 * net/newst-plainview.el (newsticker-mode-map):
11139 * emulation/ws-mode.el (wordstar-mode-map):
11140 * emulation/vi.el (vi-com-map):
11141 * calc/calc-graph.el (calc-graph-show-dumb):
11142 * term/sun.el (terminal-init-sun):
11143 * term/ns-win.el (global-map):
11144 * progmodes/grep.el (grep-mode-map):
11145 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
11146 * mail/rmail.el (rmail-mode-map):
11147 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
11148
11149 * custom.el (custom-safe-themes, load-theme): Treat value of t for
11150 custom-safe-themes as special.
11151
11152 2011-10-01 Julien Danjou <julien@danjou.info>
11153
11154 * notifications.el (notifications-notify): Fix docstring.
11155
11156 2011-10-01 Per Starbäck <per@starback.se>
11157
11158 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
11159
11160 2011-09-30 Martin Rudalics <rudalics@gmx.at>
11161
11162 * startup.el (command-line-1): Fix last fix by inserting
11163 initial-scratch-message into *scratch* before displaying it.
11164 (Bug#9605) and (Bug#9636)
11165
11166 2011-09-29 Eli Zaretskii <eliz@gnu.org>
11167
11168 * simple.el (line-move): If auto-hscroll-mode is disabled and the
11169 window is hscrolled, move by logical lines. (Bug#9607)
11170 (line-move-visual): Update the doc string to the above effect.
11171
11172 2011-09-29 Martin Rudalics <rudalics@gmx.at>
11173
11174 * window.el (display-buffer-record-window): When WINDOW is the
11175 selected window use `point' instead of `window-point'. (Bug#9626)
11176
11177 * startup.el (command-line-1): Use insert-before-markers when
11178 inserting initial-scratch-message. (Bug#9605)
11179
11180 * help.el (help-window): Remove variable.
11181
11182 2011-09-29 Glenn Morris <rgm@gnu.org>
11183
11184 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
11185
11186 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
11187
11188 * descr-text.el (describe-char-categories): Accept category
11189 descriptions more than one line long.
11190
11191 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
11192
11193 * simple.el (delete-trailing-whitespace): Fix last change.
11194
11195 * progmodes/perl-mode.el (perl-syntax-propertize-function):
11196 Don't confuse "y => 3" as the beginning of a `y' operation.
11197
11198 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
11199 object has more than 4 slots (bug#9613).
11200
11201 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
11202
11203 * subr.el (with-output-to-temp-buffer):
11204 * net/quickurl.el (quickurl, quickurl-browse-url):
11205 Fix typos in docstrings.
11206
11207 2011-09-27 Eli Zaretskii <eliz@gnu.org>
11208
11209 * minibuffer.el (completion-styles)
11210 (completion-category-overrides): Cross reference each other in doc
11211 strings.
11212
11213 2011-09-27 Glenn Morris <rgm@gnu.org>
11214
11215 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
11216 to split-string. (Bug#9606)
11217
11218 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11219
11220 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
11221 (bug#9615).
11222
11223 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
11224
11225 * emacs-lisp/package.el (list-packages): Fix echo area message.
11226
11227 2011-09-27 Leo Liu <sdl.web@gmail.com>
11228
11229 * ido.el (ido-read-internal): Accept cons cell HIST arg.
11230
11231 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
11232
11233 * net/dbus.el (dbus-unregister-object): Don't release services for
11234 registered signals. (Bug#9581)
11235
11236 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
11237
11238 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
11239 function that picks between cfengine 2 and 3 support
11240 automatically. Update docs accordingly.
11241
11242 2011-09-22 Kenichi Handa <handa@m17n.org>
11243
11244 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
11245 ZERO.
11246 (indian-itrans-v5-table-for-tamil): New variable.
11247 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
11248
11249 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
11250
11251 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
11252 that's true if the current command involved collapsing of text.
11253 It's reset to false at the beginning of the next command.
11254 (allout-post-command-business): Move the cursor to the beginning
11255 of entry if the cursor is hidden and collapsing activity just
11256 happened.
11257
11258 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
11259
11260 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
11261 tracking (Bug#9541).
11262
11263 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
11264
11265 * net/newst-reader.el (newsticker-html-renderer)
11266 (newsticker-show-news): Automatically load html rendering package
11267 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
11268 because w3m-fill-column is let-bound" and the error "Symbol's value
11269 as variable is void: w3m-fill-column".
11270
11271 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
11272
11273 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
11274 Release services only if they are defined. (Bug#9581)
11275
11276 2011-09-23 Richard Stallman <rms@gnu.org>
11277
11278 * textmodes/paragraphs.el (forward-sentence): For backwards case,
11279 distinguish start of paragraph from start of its text.
11280
11281 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
11282
11283 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
11284 (rmail-generate-viewer-buffer): Put that hook on view buffer.
11285 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
11286
11287 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
11288
11289 * international/mule-diag.el (mule-diag): Insert a newline after
11290 each fontset description.
11291
11292 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
11293
11294 * simple.el (delete-trailing-whitespace):
11295 Document last change; simplify.
11296
11297 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
11298
11299 * simple.el (delete-trailing-whitespace): Also delete
11300 extra newlines at the end of the buffer.
11301
11302 * textmodes/picture.el: Make motion commands obey shift-select-mode.
11303 (picture-newline): Use forward-line so as to ignore fields.
11304
11305 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
11306
11307 * subr.el (with-wrapper-hook): Fix edebug spec.
11308
11309 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
11310
11311 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
11312 (bug#4538).
11313
11314 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
11315
11316 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
11317 Fix nasty bug using wrong cached values.
11318
11319 2011-09-23 Alan Mackenzie <acm@muc.de>
11320
11321 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
11322
11323 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
11324
11325 * window.el (pop-to-buffer): Ensure right window is selected if we
11326 chose another frame.
11327
11328 2011-09-22 Eli Zaretskii <eliz@gnu.org>
11329
11330 * simple.el (what-cursor-position): Use get-char-property-change
11331 and next-single-char-property-change, to be able to show display
11332 properties that come from overlays as well as text properties.
11333
11334 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
11335
11336 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
11337
11338 * cmuscheme.el (run-scheme, switch-to-scheme):
11339 * cus-edit.el (customize-group, custom-buffer-create)
11340 (customize-browse):
11341 * info.el (info):
11342 * shell.el (shell):
11343 * mail/sendmail.el (mail):
11344 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
11345
11346 2011-09-22 Richard Stallman <rms@gnu.org>
11347
11348 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
11349 move back only to line beg, don't move back over blank lines.
11350
11351 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
11352
11353 * files.el (copy-directory): Set directory attributes only in case
11354 they could be retrieved from the source directory. (Bug#9565)
11355
11356 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
11357
11358 * progmodes/hideshow.el (hs-looking-at-block-start-p)
11359 (hs-find-block-beginning, hs-hide-level-recursive):
11360 Ignore strings as well as comments. (Bug#9502)
11361
11362 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
11363
11364 * progmodes/sql.el (sql-comint-postgres):
11365 Convert port number to a string. (Bug#9566)
11366
11367 2011-09-22 Martin Rudalics <rudalics@gmx.at>
11368
11369 * window.el (quit-window): Undedicate window when switching to
11370 previous buffer. Reported by Thierry Volpiatto
11371 <thierry.volpiatto@gmail.com>.
11372 (special-display-popup-frame): When popping up a new frame reset
11373 its previous buffers to nil. Simplify code.
11374
11375 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
11376
11377 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
11378 and process filter, as done also in `shell-command'.
11379
11380 2011-09-21 Martin Rudalics <rudalics@gmx.at>
11381
11382 * window.el (set-window-buffer-start-and-point):
11383 Call set-window-start with NOFORCE argument t.
11384 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11385 (quit-window): Reword doc-string. Handle new format of
11386 quit-restore parameter. Don't delete window if it has a
11387 previous buffer we can show instead of the present one.
11388 (display-buffer-record-window): Rewrite using a new format for
11389 the quit-restore window parameter
11390 (special-display-popup-frame, display-buffer-same-window)
11391 (display-buffer-reuse-window, display-buffer-pop-up-frame)
11392 (display-buffer-pop-up-window, display-buffer-use-some-window):
11393 Adapt symbol passed to display-buffer-record-window.
11394 * help.el (help-window-setup): Handle new format of quit-restore
11395 parameter.
11396
11397 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
11398
11399 * faces.el (face-list): Fix docstring (bug#9564).
11400
11401 * window.el (display-buffer--action-function-custom-type):
11402 Don't include internal functions in the Custom interface.
11403
11404 2011-09-20 Juri Linkov <juri@jurta.org>
11405
11406 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
11407 (Info-forward-node, Info-backward-node, Info-next-preorder)
11408 (Info-last-preorder): Use it. (Bug#9528)
11409
11410 2011-09-20 Juri Linkov <juri@jurta.org>
11411
11412 * info.el (Info-last-preorder): Visit last menu item only when
11413 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
11414
11415 2011-09-20 Julien Danjou <julien@danjou.info>
11416
11417 * password-cache.el (password-cache-remove): Remove entries even if the
11418 value is nil, so that password with a nil value (negative caching) is
11419 possible to invalidate.
11420
11421 2011-09-20 Lawrence Mitchell <wence@gmx.li>
11422
11423 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
11424 all whitespace around breakpoint. (Bug#9553)
11425 (f90-find-breakpoint): Only break at whitespace inside a comment.
11426
11427 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
11428
11429 * minibuffer.el (completion-file-name-table): Keep track of errors.
11430 (completion-table-with-predicate): Handle the case where pred1 is nil.
11431 * pcomplete.el (pcomplete-completions-at-point): Simplify.
11432
11433 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
11434
11435 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
11436 (debugger-return-value): Signal an error if the debugging context does
11437 not await any return value.
11438
11439 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
11440 * image-mode.el (image-toggle-display-text)
11441 (image-toggle-display-image): Stay away from evil `intangible'.
11442
11443 2011-09-19 Leo Liu <sdl.web@gmail.com>
11444
11445 * replace.el (occur-revert-arguments): Make it permanent-local.
11446 (occur-mode): Don't call font-lock-defontify.
11447
11448 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
11449
11450 * net/ldap.el (ldap-search-internal): Don't push empty search
11451 result (Bug#9508).
11452
11453 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
11454
11455 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
11456
11457 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
11458
11459 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
11460 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
11461
11462 2011-09-18 Juri Linkov <juri@jurta.org>
11463
11464 * buff-menu.el (Buffer-menu-mode-map):
11465 * dired.el (dired-mode-map):
11466 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
11467 (lisp-interaction-mode-map):
11468 * emacs-lisp/package.el (package-menu-mode-map):
11469 * epa.el (epa-key-list-mode-map):
11470 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
11471 (menu-bar-options-menu):
11472 * outline.el (outline-mode-menu-bar-map):
11473 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
11474 * vc/vc-dir.el (vc-dir-menu-map):
11475 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
11476 Capitalize non-function content words in menu item strings.
11477
11478 * dired.el (dired-mode-map): Add menu item for
11479 `image-dired-dired-toggle-marked-thumbs'.
11480
11481 2011-09-18 Juri Linkov <juri@jurta.org>
11482
11483 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
11484 to `isearch-case-fold-search' and restore its original value
11485 after the `isearch-mode' call.
11486
11487 2011-09-18 Juri Linkov <juri@jurta.org>
11488
11489 * progmodes/grep.el (grep-process-setup): Don't check code for 1
11490 because `zgrep' returns 1 for successful matches (bug#9226).
11491
11492 2011-09-18 Juri Linkov <juri@jurta.org>
11493
11494 * info.el (Info-extract-menu-node-name): Check the second match
11495 for empty string (second test-case of bug#9528).
11496 (Info-last-preorder): Let-bind `Info-history' to nil to not add
11497 intermediate nodes to the history (first test-case of bug#9528).
11498
11499 2011-09-18 Juri Linkov <juri@jurta.org>
11500
11501 * info.el (Info-mode-syntax-table): New variable.
11502 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
11503
11504 2011-09-18 Juri Linkov <juri@jurta.org>
11505
11506 * info.el (Info-file-supports-index-cookies):
11507 Increment line-beginning-position's arg from 3 to 4 because makeinfo
11508 outputs one more line for long file names (bug#4142).
11509
11510 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11511
11512 * newcomment.el (comment-normalize-vars): If prompting for
11513 comment-start, set comment-start-skip too (Bug#8424).
11514
11515 2011-09-18 Johan Bockgård <bojohan@gnu.org>
11516
11517 * icomplete.el: Fix previous fix of Bug#5849.
11518 (icomplete-mode): Don't set completion-show-inline-help.
11519 (icomplete-minibuffer-setup): Set completion-show-inline-help
11520 locally during icompletion.
11521
11522 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11523
11524 * woman.el (woman2-process-escapes): Don't delete unrecognized
11525 escapes (Bug#7843).
11526
11527 * files.el (inhibit-first-line-modes-regexps): Add image files.
11528 (hack-local-variables-prop-line): Return nil for malformed
11529 prop-lines (Bug#9044).
11530
11531 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
11532
11533 * net/tramp.el (top): Don't require 'shell.
11534 (tramp-methods): Fix docstring.
11535 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
11536 Return complete remote file name. Handle "smb" case.
11537 Use `tramp-tmpdir', if defined for the respective method.
11538 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
11539
11540 * net/tramp-compat.el (top): Require 'shell.
11541
11542 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
11543 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
11544 `tramp-current-host'.
11545 (tramp-get-remote-tmpdir): Remove.
11546
11547 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
11548 `tramp-tmpdir' entries.
11549 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
11550 (tramp-smb-handle-file-attributes): Ignore errors.
11551 (tramp-smb-wait-for-output): Check also for process end.
11552
11553 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
11554
11555 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
11556 when sending QUIT (bug#9312).
11557
11558 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
11559
11560 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
11561 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
11562 occur-mode-display-occurrence.
11563 (occur-edit-mode): Add usage message.
11564 (occur-cease-edit): New command.
11565 (occur-after-change-function): Use text properties to find the
11566 position of the prefix text.
11567 (occur-engine): Set stickiness of prefix text properties.
11568
11569 2011-09-17 Glenn Morris <rgm@gnu.org>
11570
11571 * progmodes/etags.el (complete-tag):
11572 Fix call to completion-in-region. (Bug#9526)
11573
11574 2011-09-17 Juri Linkov <juri@jurta.org>
11575
11576 * textmodes/ispell.el (ispell-word): Add to the error message
11577 the word, ispell program name and current dictionary (bug#9121).
11578 (ispell-tex-arg-end): Capitalize "error" in the error message.
11579
11580 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
11581
11582 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
11583 check. (Bug#4251)
11584
11585 2011-09-17 Juri Linkov <juri@jurta.org>
11586
11587 * window.el (window-safe-min-height, window-safe-min-width):
11588 Fix typos (followup to bug#9522).
11589
11590 2011-09-17 Sven Joachim <svenjoac@gmx.de>
11591
11592 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
11593
11594 2011-09-16 Eli Zaretskii <eliz@gnu.org>
11595
11596 * simple.el (line-move): If goal-column is set, move by logical
11597 lines, not by display lines. (Bug#971)
11598 (next-line, previous-line, goal-column, line-move-visual): Doc fix
11599 to reflect the above change.
11600
11601 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
11602
11603 * image.el (imagemagick-register-types): Use regexp-opt.
11604
11605 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
11606
11607 * window.el (display-buffer-base-action): Rename from
11608 display-buffer-default-action. Make default value empty.
11609 (display-buffer-overriding-action): Convert to defvar.
11610 (display-buffer-fallback-action): New var.
11611
11612 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
11613
11614 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
11615 declaration.
11616 (package--add-to-archive-contents): If there is a duplicate entry
11617 with an older version, remove it.
11618 (package-menu-mark-delete, package-menu-mark-install)
11619 (package-menu-mark-unmark): Make unused args optional.
11620 (package-menu-mark-obsolete-for-deletion):
11621 Use package-menu-get-status instead of a regexp search.
11622 (package-menu-get-status): Use tabulated-list-entry.
11623 (package-menu-mark-upgrades): New command.
11624 (package-menu-mode-map): Bind it to U. Add it to menu bar.
11625 (package-menu-execute): Do installation before deletion.
11626 (package-menu-refresh, package-menu-execute): Use derived-mode-p
11627 instead of checking major-mode.
11628 (package-menu--find-upgrades): New function.
11629
11630 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11631
11632 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
11633 passwords in the log buffer.
11634 (smtpmail-process-filter): Update the process marker so that the
11635 "broken by peer" status message is inserted in the right place.
11636
11637 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
11638
11639 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
11640 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
11641 bibtex-completion-at-point-function.
11642 (bibtex-completion-at-point-function): Use them.
11643
11644 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
11645
11646 * mpc.el (mpc-constraints-tag-lookup): New function.
11647 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
11648 also to browser "album|playlist".
11649
11650 2011-09-14 Juri Linkov <juri@jurta.org>
11651
11652 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
11653 (isearch-edit-string): Use length of `isearch-string' when
11654 `isearch-fail-pos' returns nil.
11655 (isearch-message): Remove duplicate code and call
11656 `isearch-fail-pos' with arg `t'.
11657
11658 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
11659
11660 * replace.el (occur-mode-goto-occurrence): Don't force using other
11661 window (Bug#9499).
11662
11663 * dired-aux.el (dired-do-chmod): Don't provide initial input.
11664
11665 2011-09-14 Martin Rudalics <rudalics@gmx.at>
11666
11667 * window.el (display-buffer-window): Remove.
11668 (display-buffer-record-window): Use help-setup window parameter
11669 instead of variable display-buffer-window.
11670 (display-buffer-function, special-display-buffer-names)
11671 (special-display-function): Mention help-setup parameter instead
11672 of display-buffer-window in doc-string.
11673 * help.el (help-window-setup): New argument help-window.
11674 Use help-window-setup parameter instead of display-buffer-window.
11675 Reword some messages.
11676 (with-help-window): Pass window used for displaying the buffer
11677 to help-window-setup. Don't set display-buffer-window.
11678
11679 2011-09-13 Glenn Morris <rgm@gnu.org>
11680
11681 * emacs-lisp/debug.el (debugger-make-xrefs):
11682 Preserve point. (Bug#9462)
11683
11684 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11685
11686 * window.el (window-deletable-p): Use next-frame.
11687
11688 2011-09-13 Martin Rudalics <rudalics@gmx.at>
11689
11690 * window.el (window-auto-delete): Remove.
11691 (window-deletable-p): Remove argument FORCE. Don't deal with
11692 dedication and previous buffers.
11693 (switch-to-prev-buffer): Don't delete window.
11694 (delete-windows-on): Delete a window's frame if and only if the
11695 window is dedicated.
11696 (replace-buffer-in-windows): Delete buffer's window or frame if
11697 and only if window is dedicated.
11698 (quit-window): Handle quit-restore as before last change.
11699 (bury-buffer): Delete window only if window-deletable-p returns t.
11700
11701 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11702
11703 * window.el (window-deletable-p): Never delete the last frame on a
11704 given terminal.
11705
11706 2011-09-13 Glenn Morris <rgm@gnu.org>
11707
11708 * help.el (describe-key-briefly): Copy previous standard-output change.
11709
11710 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
11711
11712 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
11713
11714 2011-09-13 Glenn Morris <rgm@gnu.org>
11715
11716 * emacs-lisp/lisp-mode.el (lisp-indent-function):
11717 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
11718
11719 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
11720
11721 * dired-aux.el (dired-mark-read-string): Don't return default
11722 value on empty input (Bug#9361).
11723 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
11724 Omit initial minibuffer contents.
11725 (dired-do-chmod): Signal an error on empty input.
11726 (dired-mark-read-string): Don't return default on empty input.
11727
11728 * files.el (file-modes-symbolic-to-number): Doc fix.
11729
11730 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
11731
11732 * international/mule-cmds.el (ucs-completions): Remove.
11733 (read-char-by-name): Use complete-with-action instead; add metadata.
11734
11735 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11736
11737 * window.el (display-buffer--action-function-custom-type)
11738 (display-buffer--action-custom-type): New vars.
11739 (display-buffer-alist, display-buffer-default-action)
11740 (display-buffer-overriding-action): Add defcustom types.
11741
11742 * frame.el (delete-other-frames): Doc fix (Bug#276).
11743
11744 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11745
11746 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
11747
11748 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11749
11750 Change modes that used same-window-* vars to use switch-to-buffer.
11751
11752 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
11753 Use switch-to-buffer.
11754
11755 * cus-edit.el (customize-group, custom-buffer-create)
11756 (customize-browse, custom-buffer-create-other-window):
11757 Use switch-to-buffer or switch-to-buffer-other-window.
11758
11759 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
11760 (Info-prev, Info-up, Info-speedbar-goto-node)
11761 (info-display-manual): Use switch-to-buffer.
11762 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
11763
11764 * mail/sendmail.el (mail): Use switch-to-buffer.
11765 (mail-recover): Use switch-to-buffer-other-window.
11766
11767 * cmuscheme.el (run-scheme, switch-to-scheme):
11768 * ielm.el (ielm):
11769 * shell.el (shell):
11770 * net/rlogin.el (rlogin):
11771 * net/telnet.el (telnet, rsh):
11772 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
11773
11774 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
11775
11776 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
11777
11778 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11779
11780 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
11781 so don't mention it (bug#9301).
11782 (dired-sort-toggle-or-edit): Clarify string further.
11783
11784 * faces.el (face-spec-set-match-display): Make `(type graphic)'
11785 match `x', `w32' and `ns', like the manual says (bug#9029).
11786
11787 * subr.el (eval-after-load): Doc string clarification (bug#9125).
11788 (process-kill-buffer-query-function): Mention the buffer name in
11789 the query.
11790
11791 * image-mode.el (image-next-line): The line parameter is mandatory
11792 (bug#9258).
11793
11794 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
11795 which can be useful (bug#9301).
11796
11797 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
11798
11799 * subr.el (match-string): Mention that the current buffer should
11800 be the same as the search was done in (bug#9282).
11801
11802 * facemenu.el: Disable the remove-* commands if the mark isn't
11803 active (bug#9162).
11804
11805 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11806
11807 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
11808 of display-buffer.
11809 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
11810
11811 * replace.el (occur-mode-goto-occurrence)
11812 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
11813 and display-buffer.
11814
11815 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
11816 display-buffer.
11817
11818 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
11819 special-display and same-window variables.
11820 (mail-other-window): Use switch-to-buffer-other-window.
11821 (mail-other-frame): USe switch-to-buffer-other-frame.
11822
11823 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
11824 Use display-buffer-other-frame.
11825 (gdb-display-gdb-buffer): Use pop-to-buffer.
11826
11827 * progmodes/gud.el (gud-goto-info): Use info-other-window.
11828
11829 * progmodes/python.el: Don't set same-window-buffer-names.
11830
11831 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
11832
11833 * window.el (display-buffer-alist): Add *Python*.
11834
11835 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
11836
11837 * window.el (display-buffer-alist): Add entry for buffers
11838 previously handled same-window-*.
11839 (display-buffer-alist, display-buffer-default-action)
11840 (display-buffer-overriding-action): Mark as risky.
11841 (display-buffer-alist): Document action function changes.
11842 (display-buffer--same-window-action)
11843 (display-buffer--other-frame-action): New variables.
11844 (switch-to-buffer, display-buffer-other-frame): Use them.
11845 (display-buffer): Rename reuse-frame entry to reusable-frames.
11846 (display-buffer-reuse-selected-window): Function deleted.
11847 (display-buffer-reuse-window): Handle reusable-frames alist entry.
11848 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
11849 (display-buffer-special): New function.
11850 (display-buffer--maybe-pop-up-frame-or-window): Rename from
11851 display-buffer-reuse-or-pop-window. Split off special-display
11852 part into display-buffer-special.
11853 (display-buffer-use-some-window): Don't perform any special
11854 pop-up-frames handling.
11855 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
11856 (display-buffer--maybe-same-window): Rename from
11857 display-buffer-maybe-same-window.
11858
11859 * info.el: Don't set same-window-regexps.
11860 (info-setup): New function.
11861 (info-other-window, info): Call it.
11862
11863 * cus-edit.el: Don't set same-window-regexps.
11864 (customize-group): New argument.
11865 (customize-group-other-window): Use it.
11866 (customize-face, customize-face-other-window): Likewise.
11867 (custom-buffer-create-other-window): Use pop-to-buffer directly.
11868
11869 * net/rlogin.el:
11870 * net/telnet.el:
11871 * progmodes/gud.el: Don't set same-window-regexps.
11872
11873 * cmuscheme.el:
11874 * ielm.el:
11875 * shell.el:
11876 * mail/sendmail.el:
11877 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
11878
11879 2011-09-10 Juri Linkov <juri@jurta.org>
11880
11881 * isearch.el (isearch-edit-string): Remove obsolete mention of
11882 `C-w' (`isearch-yank-word-or-char') from docstring.
11883 (isearch-query-replace): Fix typo in docstring (bug#9466).
11884
11885 2011-09-10 Juri Linkov <juri@jurta.org>
11886
11887 * paren.el (show-paren-function): Don't show escaped parens.
11888 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
11889
11890 2011-09-10 Eli Zaretskii <eliz@gnu.org>
11891
11892 * mail/sendmail.el (mml-to-mime, mml-attach-file)
11893 (mm-default-file-encoding): Remove autoload forms, they are
11894 replaced with autoload cookies in mml.el and mm-encode.el.
11895 (mail-add-attachment): New command.
11896 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
11897 (mail-mode): Mention mail-insert-file and mail-add-attachment in
11898 the doc string.
11899 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
11900
11901 2011-09-10 Reuben Thomas <rrt@sc3d.org>
11902
11903 * simple.el (count-words-region): Use buffer if there's no region
11904 (bug#9429).
11905
11906 2011-09-09 Juri Linkov <juri@jurta.org>
11907
11908 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
11909 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
11910 (wdired-isearch-filter-read-only): New function. (Bug#6362)
11911
11912 2011-09-09 Alan Mackenzie <acm@muc.de>
11913
11914 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
11915 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
11916
11917 2011-09-09 Eli Zaretskii <eliz@gnu.org>
11918
11919 Fix for Savannah bug#9392.
11920 * simple.el (mail-encode-mml): New defvar.
11921
11922 * mail/rmail.el (mail-encode-mml): Add a defvar.
11923 (rmail-enable-mime-composing): Default to t.
11924 (rmail-forward): Use MIME method of forwarding only if both
11925 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
11926 Set mail-encode-mml non-nil if the MIME method was used.
11927
11928 * mail/sendmail.el (mml-to-mime): Add autoload form.
11929 (mail-encode-mml): Add a defvar.
11930 (mail-mode): Make mail-encode-mml buffer-local and initialize it
11931 to nil.
11932 (mail-send): If mail-encode-mml is non-nil, run the outgoing
11933 message through mml-to-mime, and reset mail-encode-mml to nil.
11934
11935 2011-09-09 Glenn Morris <rgm@gnu.org>
11936
11937 * woman.el (woman-if-body): When processing an .el block,
11938 do not delete the next .el block as well. (Bug#9447)
11939 (woman-special-characters): Add oq, cq, and hy characters.
11940
11941 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11942
11943 * window.el (window-deletable-p): Make sure window is live before
11944 invoking window-prev-buffers.
11945
11946 2011-09-08 Leo Liu <sdl.web@gmail.com>
11947
11948 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
11949
11950 2011-09-08 Juri Linkov <juri@jurta.org>
11951
11952 * progmodes/compile.el (compilation-environment): Make it
11953 a defcustom (bug#8340).
11954
11955 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11956
11957 * window.el (frame-auto-delete): Rename to window-auto-delete.
11958 Make it control auto-deletion of windows and/or frames.
11959 (window-deletable-p): New argument FORCE. Rewrite conditions
11960 for deleting window/frame. (Bug#9419)
11961 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
11962 Rewrite handling of case when window/frame can be deleted.
11963 (delete-windows-on): Call window-deletable-p with new FORCE
11964 argument t. (Bug#9456)
11965
11966 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
11967
11968 * help-mode.el (help-mode): Restore autoload.
11969
11970 2011-09-07 Juri Linkov <juri@jurta.org>
11971
11972 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
11973 `compilation-environment'. Set buffer-local
11974 `compilation-environment' to `thisenv' later after (funcall mode).
11975 (Bug#8340)
11976
11977 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
11978 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
11979 instead of replacing its value. (Bug#8340)
11980
11981 2011-09-07 Juri Linkov <juri@jurta.org>
11982
11983 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
11984 based on text properties put by `grep-filter' instead of matching
11985 escape sequences.
11986 (grep-mode): Set buffer-local `compilation-error-screen-columns'
11987 to the value of `grep-error-screen-columns' (bug#9438).
11988
11989 2011-09-07 Juri Linkov <juri@jurta.org>
11990
11991 * simple.el (next-error-highlight, next-error-highlight-no-select):
11992 Doc fix (bug#9432).
11993
11994 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
11995
11996 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11997 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
11998
11999 2011-09-07 Leo Liu <sdl.web@gmail.com>
12000
12001 * net/rcirc.el (rcirc-mode): Conditionally initialize
12002 rcirc-input-ring.
12003
12004 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
12005
12006 * emacs-lisp/find-func.el (find-function-C-source): Only set
12007 find-function-C-source-directory after checking that we found a source
12008 file there (bug#9440).
12009
12010 2011-09-06 Alan Mackenzie <acm@muc.de>
12011
12012 * isearch.el (isearch-other-meta-char): Wherever a key list is
12013 unread, "unread" the prefix arg, too. This fixes bug #8901.
12014
12015 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
12016
12017 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
12018
12019 2011-09-05 Juri Linkov <juri@jurta.org>
12020
12021 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
12022
12023 2011-09-05 Juri Linkov <juri@jurta.org>
12024
12025 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
12026 keeping point where processing of grep matches begins, and
12027 continue to delete remaining escape sequences from the same point.
12028 (grep-filter): Make leading zero optional in "0?1;31m" because
12029 git-grep emits "\033[1;31m" escape sequences unlike expected
12030 "\033[01;31m" as GNU Grep does (bug#9408).
12031 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
12032
12033 2011-09-05 Juri Linkov <juri@jurta.org>
12034
12035 * subr.el (y-or-n-p): Capitalize "yes".
12036
12037 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
12038
12039 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
12040 `tramp-cache-unload-hook' where appropriate.
12041 (tramp-methods): Rename `tramp-remote-sh' to
12042 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
12043 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
12044
12045 * net/tramp-sh.el (top): Don't require 'shell.
12046 (tramp-methods): Add `tramp-remote-shell' and
12047 `tramp-remote-shell-args' entries.
12048 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
12049 (tramp-sh-handle-shell-command): Remove.
12050 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
12051 Use `tramp-remote-shell'.
12052
12053 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
12054
12055 * mail/sendmail.el (sendmail-query-once-function): Delete.
12056 (sendmail-query-once): Save directly to send-mail-function.
12057 Update message-send-mail-function too.
12058
12059 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
12060
12061 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
12062
12063 * progmodes/python.el (python-mode-map): Use correct function to
12064 start python interpreter from menu-bar (as reported by Geert
12065 Kloosterman).
12066 (inferior-python-mode-map): Fix typo.
12067 (python-shell-map): Remove.
12068
12069 2011-09-03 Deniz Dogan <deniz@dogan.se>
12070
12071 * net/rcirc.el (rcirc-print): Simplify code for
12072 rcirc-scroll-show-maximum-output. There is no need to walk
12073 through all windows to find the right one.
12074
12075 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
12076
12077 * help.el (help-return-method): Doc fix.
12078
12079 2011-09-03 Martin Rudalics <rudalics@gmx.at>
12080
12081 * window.el (window-deletable-p): Don't return a non-nil value
12082 when there's a buffer that was shown in the window before.
12083 (Bug#9419)
12084 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
12085 Set window's previous buffers to nil.
12086
12087 2011-09-03 Eli Zaretskii <eliz@gnu.org>
12088
12089 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
12090 newline before and after the tag line, so it doesn't interfere
12091 with determining the paragraph direction of bidirectional text.
12092
12093 2011-09-03 Leo Liu <sdl.web@gmail.com>
12094
12095 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
12096
12097 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
12098
12099 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
12100 (pop-to-buffer): Change interactive spec. Pass second argument
12101 directly to display-buffer.
12102 (display-buffer): Fix interactive spec. Use functionp to
12103 distinguish between a function and a list of functions.
12104
12105 * abbrev.el (edit-abbrevs):
12106 * arc-mode.el (archive-extract):
12107 * autoinsert.el (auto-insert):
12108 * bookmark.el (bookmark-bmenu-list):
12109 * files.el (find-file):
12110 * view.el (view-buffer):
12111 * progmodes/compile.el (compilation-goto-locus):
12112 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
12113
12114 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
12115
12116 * window.el (display-buffer-alist): Doc fix.
12117 (display-buffer): Add docstring. Don't treat
12118 display-buffer-default specially.
12119 (display-buffer-reuse-selected-window)
12120 (display-buffer-same-window, display-buffer-maybe-same-window)
12121 (display-buffer-reuse-window, display-buffer-pop-up-frame)
12122 (display-buffer-pop-up-window)
12123 (display-buffer-reuse-or-pop-window)
12124 (display-buffer-use-some-window): New functions.
12125 (display-buffer-default-action): Use them.
12126 (display-buffer-default): Delete.
12127 (pop-to-buffer-1): Fix choice of actions.
12128
12129 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
12130
12131 * minibuffer.el (completion--insert-strings): Don't get confused by
12132 completion entries that end with an LF char.
12133
12134 2011-09-01 Eli Zaretskii <eliz@gnu.org>
12135
12136 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
12137
12138 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
12139
12140 * window.el (display-buffer): Restore interactive spec.
12141 (display-buffer-same-window, display-buffer-other-window):
12142 New functions.
12143 (pop-to-buffer-1): New function. Use the above.
12144 (pop-to-buffer, pop-to-buffer-same-window): Use it.
12145 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
12146
12147 * view.el (view-buffer-other-window, view-buffer-other-frame):
12148 Just use pop-to-buffer.
12149
12150 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12151
12152 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
12153
12154 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
12155
12156 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
12157
12158 2011-08-31 Richard Stallman <rms@gnu.org>
12159
12160 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
12161 of the separation of rmail-view-buffer from rmail-buffer.
12162 If you say no to "replace original", the decrypt is in the
12163 view buffer. If you say yes, the decrypt goes into the
12164 rmail buffer also.
12165
12166 2011-08-31 Martin Rudalics <rudalics@gmx.at>
12167
12168 * window.el (display-buffer-window): Rewrite doc-string.
12169 (display-buffer-record-window): New function.
12170 (display-buffer-macro-specifiers)
12171 (display-buffer-even-window-sizes, display-buffer-set-height)
12172 (display-buffer-set-width, display-buffer-in-window)
12173 (display-buffer-reuse-window, display-buffer-split-specifiers)
12174 (display-buffer-side-specifiers, display-buffer-split-window-1)
12175 (display-buffer-split-window, display-buffer-split-atom-window)
12176 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
12177 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
12178 (display-buffer-other-window-means-other-frame)
12179 (display-buffer-normalize-special)
12180 (display-buffer-normalize-default)
12181 (display-buffer-normalize-argument)
12182 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
12183 (display-buffer-normalize-specifiers, display-buffer-frame)
12184 (display-buffer-same-window, display-buffer-same-frame)
12185 (display-buffer-other-window)
12186 (display-buffer-same-frame-other-window)
12187 (display-buffer-other-frame, pop-to-buffer-same-window)
12188 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
12189 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
12190 (switch-to-buffer-same-frame)
12191 (switch-to-buffer-other-window-same-frame)
12192 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
12193 (display-buffer-alist-set-1, display-buffer-alist-set-2)
12194 (display-buffer-alist-set): Remove.
12195 (display-buffer-function, special-display-buffer-names)
12196 (special-display-regexps, special-display-function):
12197 In doc-string refer to display-buffer-window and quit-restore
12198 parameter.
12199 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
12200 (special-display-frame-alist, special-display-popup-frame)
12201 (same-window-buffer-names, same-window-regexps, same-window-p)
12202 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12203 (split-window-preferred-function, split-height-threshold)
12204 (split-width-threshold, window-splittable-p)
12205 (split-window-sensibly, window--try-to-split-window)
12206 (window--frame-usable-p, even-window-heights)
12207 (window--even-window-heights, window--display-buffer-1)
12208 (window--display-buffer-2, display-buffer-other-frame):
12209 Restore old Emacs 23 code, order and doc-strings where applicable.
12210 (display-buffer-default, display-buffer-assq-regexp): New functions.
12211 (display-buffer-alist): Rewrite doc-string.
12212 (display-buffer-default-action)
12213 (display-buffer-overriding-action): New variables.
12214 (display-buffer, switch-to-buffer): Rewrite.
12215 (pop-to-buffer): Restore Emacs 23 behavior but use
12216 window-normalize-buffer-to-display.
12217 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
12218 Restore Emacs 23 behavior but use
12219 window-normalize-buffer-to-switch-to.
12220 (pop-to-buffer-same-window): Rewrite.
12221 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
12222 Rewrite using Emacs 23 options.
12223
12224 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
12225
12226 * net/tramp.el (tramp-root-regexp): Remove.
12227 (tramp-completion-file-name-regexp-unified)
12228 (tramp-completion-file-name-regexp-separate)
12229 (tramp-completion-file-name-regexp-url): Don't use leading volume
12230 letter on w32 systems. (Bug#5303, Bug#9311)
12231 (tramp-drop-volume-letter): Simplify definition.
12232 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
12233
12234 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
12235
12236 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
12237 (bug#9356).
12238
12239 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
12240
12241 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
12242
12243 2011-08-29 Juri Linkov <juri@jurta.org>
12244
12245 * isearch.el (isearch-done): Don't display message "Mark saved"
12246 when arg `edit' is non-nil to prevent its flicker in the echo area.
12247
12248 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
12249
12250 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
12251 obsolete packages for deletion.
12252
12253 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
12254
12255 * help-mode.el (help-mode-map): Add special-mode-map to parent.
12256 (help-mode): Derive help-mode from special-mode. Don't invoke
12257 view-mode from help-mode.
12258 (help-xref-override-view-map): Remove.
12259 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
12260 view-mode is not used anymore.
12261
12262 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
12263
12264 * server.el (server-port): Doc fix.
12265
12266 * cus-theme.el (custom-theme-choose-mode): Inherit from
12267 special-mode (Bug#9124).
12268 (custom-theme-choose-mode-map): Add special-mode to parent.
12269
12270 2011-08-28 Alan Mackenzie <acm@muc.de>
12271
12272 * progmodes/cc-fonts.el
12273 (c-make-font-lock-BO-decl-search-function): New function.
12274 (c-basic-matchers-after - "Fontify the clauses after various
12275 keywords"): Extract the three keyword lists for the 3 erroneous
12276 constructs from the list of four, and use the new function above
12277 in place of an old one.
12278
12279 2011-08-28 Deniz Dogan <deniz@dogan.se>
12280
12281 * net/rcirc.el (rcirc-insert-prev-input)
12282 (rcirc-insert-next-input): Remove unused argument.
12283
12284 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
12285
12286 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
12287
12288 2011-08-27 Alan Mackenzie <acm@muc.de>
12289
12290 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
12291 handle function pointer parameters properly.
12292
12293 2011-08-27 Martin Rudalics <rudalics@gmx.at>
12294
12295 * window.el (display-buffer-reuse-window): Fix case where
12296 selected window was reused with non-nil OTHER-WINDOW argument.
12297 (Bug#9381)
12298
12299 2011-08-27 Deniz Dogan <deniz@dogan.se>
12300
12301 * net/rcirc.el (rcirc-check-auth-status): Adding support for
12302 oftc's NickServ messages.
12303
12304 2011-08-27 Glenn Morris <rgm@gnu.org>
12305
12306 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
12307
12308 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
12309
12310 * emacs-lisp/package.el (package-install): Call package-initialize
12311 if called interactively.
12312
12313 2011-08-26 Leo Liu <sdl.web@gmail.com>
12314
12315 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
12316
12317 2011-08-25 Juri Linkov <juri@jurta.org>
12318
12319 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
12320 `search-whitespace-regexp' (bug#9364).
12321
12322 2011-08-25 Juri Linkov <juri@jurta.org>
12323
12324 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
12325 `regexp-search-ring' to their global values to protect from
12326 updating by `read-from-minibuffer' (bug#9185).
12327
12328 2011-08-25 Juri Linkov <juri@jurta.org>
12329
12330 * textmodes/ispell.el (ispell-command-loop): Add newline
12331 at the end of the "Use option `i'..." line.
12332
12333 2011-08-25 Juri Linkov <juri@jurta.org>
12334
12335 * battery.el (display-battery-mode): If `battery-status-function'
12336 or `battery-mode-line-format' is nil, display the message and set
12337 `display-battery-mode' to nil (bug#9363).
12338
12339 2011-08-25 Eli Zaretskii <eliz@gnu.org>
12340
12341 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
12342 bidi-string-mark-left-to-right; they are unnecessary now.
12343
12344 2011-08-25 Deniz Dogan <deniz@dogan.se>
12345
12346 * net/quickurl.el: Documentation typo fixes.
12347
12348 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
12349
12350 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
12351
12352 2011-08-25 Glenn Morris <rgm@gnu.org>
12353
12354 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
12355
12356 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
12357 (smtpmail-via-smtp): Handle nil response from smtp.
12358
12359 2011-08-24 Juri Linkov <juri@jurta.org>
12360
12361 * proced.el (proced-marked): Inherit from `error' instead of
12362 `font-lock-warning-face'.
12363
12364 * ibuffer.el (ibuffer-marked-face): Change default face from
12365 `font-lock-warning-face' to `warning'.
12366 (ibuffer-deletion-face): Change default face from
12367 `font-lock-type-face' to `error'.
12368
12369 * battery.el (battery-update): Use the face `error' instead of
12370 `font-lock-warning-face' (bug#6117).
12371
12372 2011-08-24 Juri Linkov <juri@jurta.org>
12373
12374 * faces.el (success): Change face color from "Green3" to
12375 "ForestGreen" on light background (bug#9353).
12376
12377 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
12378
12379 * window.el (quit-window): Rename from quit-restore-window.
12380 Use same arglist as old quit-window.
12381 (frame-auto-delete): Doc fix.
12382
12383 * view.el (view-mode-exit): Use quit-window.
12384
12385 2011-08-24 Juri Linkov <juri@jurta.org>
12386
12387 * isearch.el (isearch-ring-adjust1): Start visiting previous
12388 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
12389 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
12390 for empty search string (when the last search string is reused
12391 automatically) to adjust the isearch ring to the last element and
12392 prepare the correct index for further M-p commands (bug#9185).
12393
12394 2011-08-24 Kenichi Handa <handa@m17n.org>
12395
12396 * international/ucs-normalize.el: If decomposition property of
12397 CHAR is the default one (i.e. a list of CHAR itself), treat it as
12398 nil.
12399 (nfd, nfkd): Likewise.
12400
12401 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
12402
12403 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
12404 from process filters aren't reliably transmitted to the surrounding
12405 accept-process-output.
12406 (mpc-proc-check): New function.
12407 (mpc-proc-sync): Use it (bug#8293)
12408
12409 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
12410
12411 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
12412 Add compatibility functions (bug#9313).
12413
12414 2011-08-23 Eli Zaretskii <eliz@gnu.org>
12415
12416 * cus-start.el (all): Add entry for bidi-paragraph-direction.
12417
12418 * international/uni-bidi.el: Regenerate.
12419
12420 2011-08-23 Kenichi Handa <handa@m17n.org>
12421
12422 * international/charprop.el:
12423 * international/uni-bidi.el:
12424 * international/uni-category.el:
12425 * international/uni-combining.el:
12426 * international/uni-comment.el:
12427 * international/uni-decimal.el:
12428 * international/uni-decomposition.el:
12429 * international/uni-digit.el:
12430 * international/uni-lowercase.el:
12431 * international/uni-mirrored.el:
12432 * international/uni-name.el:
12433 * international/uni-numeric.el:
12434 * international/uni-old-name.el:
12435 * international/uni-titlecase.el:
12436 * international/uni-uppercase.el: Regenerate.
12437
12438 2011-08-23 Martin Rudalics <rudalics@gmx.at>
12439
12440 * help.el (help-window-setup): Fix message displayed when other
12441 window is reused. (Bug#9341)
12442
12443 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
12444
12445 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
12446 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
12447
12448 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
12449 Mark obsolete.
12450 * shell.el (shell-parse-pcomplete-arguments): New function.
12451 (shell-completion-vars): Use it instead (bug#9160).
12452
12453 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
12454
12455 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
12456 strings and comments (bug#9333).
12457
12458 * emacs-lisp/debug.el (debug-arglist): New function.
12459 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
12460 (debug-on-entry-1): Handle interpreted closures (bug#9120).
12461
12462 2011-08-22 Juri Linkov <juri@jurta.org>
12463
12464 * progmodes/compile.el (compilation-mode-font-lock-keywords):
12465 Revert regexp that highlights output switches to its old
12466 pre-2010-10-28 value and remove one `?' from it (bug#9319).
12467
12468 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
12469 to check for empty output (bug#9226).
12470
12471 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
12472
12473 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
12474 symbol-constituent as the default, as that stops font-lock from
12475 working properly (Bug#8843).
12476
12477 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12478
12479 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
12480 `coding-system-for-*' around the process open call to avoid
12481 auth-source side effects.
12482 (smtpmail-try-auth-methods): Expand the secret password.
12483 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
12484 probe hangs.
12485
12486 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
12487
12488 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
12489
12490 * emacs-lisp/find-func.el (find-function-noselect): New arg
12491 lisp-only.
12492
12493 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
12494 signal an error for built-in functions (Bug#6664).
12495
12496 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12497
12498 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
12499 (smtpmail-try-auth-methods): Use it.
12500
12501 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
12502
12503 * font-lock.el (font-lock-fontify-region)
12504 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
12505 (font-lock-default-unfontify-buffer)
12506 (font-lock-default-fontify-region)
12507 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
12508
12509 * progmodes/compile.el (compilation-error-properties):
12510 Fix confusion between file struct and message struct (Bug#9319).
12511 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
12512 `ant' regexp.
12513
12514 * net/browse-url.el (browse-url-firefox): Don't call
12515 browse-url-firefox-sentinel unless using -remote (Bug#9328).
12516
12517 2011-08-20 Glenn Morris <rgm@gnu.org>
12518
12519 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
12520
12521 * tutorial.el (tutorial--default-keys): Update some default bindings.
12522
12523 * files.el (hack-local-variables): Fully ignore case for "mode:".
12524
12525 2011-08-20 Alan Mackenzie <acm@muc.de>
12526
12527 Resolve invalid use of a regexp in regexp-opt.
12528
12529 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
12530 detection for a java annotation.
12531
12532 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
12533 detection for a java annotation.
12534
12535 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
12536 handling for java.
12537 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
12538
12539 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
12540
12541 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
12542 (Bug#9274).
12543
12544 2011-08-20 Alan Mackenzie <acm@muc.de>
12545
12546 Fontify CPP expressions correctly when starting in the middle of
12547 such a construct. Mainly for when jit-lock etc. starts a chunk
12548 here.
12549
12550 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
12551 variable.
12552 (c-make-font-lock-search-form): New function, extracted from
12553 c-make-font-lock-search-function.
12554 (c-make-font-lock-search-function): Use the above function.
12555 (c-make-font-lock-context-search-function): New function.
12556 (c-cpp-matchers): Enhance the preprocessor expression case with
12557 the above function
12558 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
12559 which takes an expression.
12560
12561 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
12562
12563 2011-08-20 Martin Rudalics <rudalics@gmx.at>
12564
12565 * window.el (display-buffer-reuse-window)
12566 (display-buffer-pop-up-window): Don't reuse or split a side
12567 window.
12568
12569 2011-08-19 Glenn Morris <rgm@gnu.org>
12570
12571 * files.el (hack-local-variables-prop-line, hack-local-variables):
12572 Downcase "Mode:". (Bug#9331)
12573
12574 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
12575
12576 * international/characters.el: Add L and R categories.
12577
12578 * subr.el (bidi-string-mark-left-to-right): Rename from
12579 string-mark-left-to-right. Use category search.
12580
12581 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
12582
12583 2011-08-18 Juri Linkov <juri@jurta.org>
12584
12585 * faces.el (error, warning, success): New faces with definitions
12586 copied from old default values of `font-lock-warning-face',
12587 `compilation-warning', `compilation-info' (bug#6117).
12588
12589 * font-lock.el (font-lock-warning-face): Inherit from `error'.
12590
12591 * progmodes/compile.el (compilation-error): Inherit from `error'.
12592 (compilation-warning): Inherit from `warning'.
12593 (compilation-info): Inherit from `success'.
12594
12595 * dired.el (dired-marked): Inherit from `warning'.
12596 (dired-flagged): Inherit from `error'.
12597
12598 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12599
12600 * mail/smtpmail.el (auth-source): Require to avoid problems with
12601 binding variables (bug#9298). Also clean up some unused
12602 autoloads.
12603
12604 * net/network-stream.el (network-stream-open-starttls):
12605 Support using starttls.el without using gnutls-cli.
12606
12607 2011-08-17 Juri Linkov <juri@jurta.org>
12608
12609 * progmodes/grep.el (rgrep): Handle the case when
12610 `grep-find-command' is a cons cell (bug#9278).
12611
12612 2011-08-17 Martin Rudalics <rudalics@gmx.at>
12613
12614 * window.el (display-buffer-pop-up-frame): Run frame creation
12615 function with BUFFER current (as special-display-popup-frame
12616 does). Reported by Drew Adams.
12617
12618 2011-08-17 Daiki Ueno <ueno@unixuser.org>
12619
12620 * epa-mail.el: Simplify GnuPG group expansion using
12621 epg-expand-group.
12622 (epa-mail-group-alist, epa-mail-group-modtime)
12623 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
12624 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
12625 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
12626 Remove.
12627
12628 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
12629
12630 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
12631
12632 2011-08-16 Alan Mackenzie <acm@muc.de>
12633
12634 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
12635 Correct, to avoid the inside of macros.
12636
12637 2011-08-16 Richard Stallman <rms@gnu.org>
12638
12639 * epa-mail.el: Handle GnuPG group definitions.
12640 (epa-mail-group-alist, epa-mail-group-modtime)
12641 (epa-mail-gnupg-conf-file): New variables.
12642 (epa-mail-parse-groups, epa-mail-sync-groups)
12643 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
12644 (epa-mail-expand-recipients): New functions.
12645 (epa-mail-encrypt): Call epa-mail-expand-recipients.
12646
12647 * mail/rmail.el (rmail-epa-decrypt): New command.
12648
12649 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
12650 Don't bind buffer-read-only, just inhibit-read-only.
12651 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
12652 (epa-decrypt-armor-in-region): Make error message clearer.
12653
12654 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
12655
12656 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
12657 and "a2b" to "ab" for `prefix'.
12658
12659 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
12660
12661 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
12662 filter groups.
12663 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
12664 Fourquet (Bug#8804).
12665
12666 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
12667
12668 * startup.el (argi): Declare as global variable (bug#9275).
12669
12670 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
12671
12672 * subr.el (string-mark-left-to-right): Search the entire string
12673 for RTL script, not just the terminating character. Doc fix.
12674
12675 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12676
12677 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
12678 New function.
12679 (js--regexp-literal, js-syntax-propertize-function): Remove.
12680 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
12681 (js-mode-map): Don't rebind electric keys.
12682 (js-insert-and-indent): Remove.
12683 (js-mode): Setup electric-layout and electric-indent instead.
12684
12685 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
12686
12687 2011-08-12 Daiki Ueno <ueno@unixuser.org>
12688
12689 * epa.el (epa-progress-callback-function): Fix the logic of
12690 displaying progress.
12691 * epa-file.el (epa-file-insert-file-contents): Make progress
12692 display more user-friendly.
12693 (epa-file-write-region): Ditto.
12694
12695 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
12696
12697 * subr.el (string-mark-left-to-right): New function.
12698
12699 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
12700 Use string-mark-left-to-right.
12701 (list-buffers-noselect): Caller changed.
12702
12703 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12704 Use string-mark-left-to-right.
12705 (tabulated-list-print): Recenter after moving point.
12706
12707 2011-08-10 Juri Linkov <juri@jurta.org>
12708
12709 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
12710 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
12711 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
12712
12713 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
12714
12715 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
12716 (Bug#7554).
12717
12718 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
12719
12720 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
12721 character. (Bug#6594)
12722
12723 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
12724
12725 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
12726 (image-dired--with-db-file): New macro.
12727 (image-dired-write-tags, image-dired-remove-tag)
12728 (image-dired-create-gallery-lists, image-dired-write-comments)
12729 (image-dired-get-comment, image-dired-mark-tagged-files)
12730 (image-dired-list-tags, image-dired-gallery-generate): Use it.
12731 (image-dired-gallery-generate): Use insert-file-contents.
12732
12733 * time.el (display-time-world-list, display-time-world-display):
12734 * time-stamp.el (time-stamp-string):
12735 * vc/add-log.el (add-change-log-entry): Use setenv instead of
12736 set-time-zone-rule (Bug#7337).
12737
12738 2011-08-08 Daiki Ueno <ueno@unixuser.org>
12739
12740 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
12741 (epg-error-to-string, epg-errors-to-string): New function.
12742 (epg-wait-for-completion): Reverse errors list.
12743 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
12744 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
12745 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
12746 (epg-sign-keys, epg-generate-key-from-file)
12747 (epg-generate-key-from-string): Format errors by using
12748 epg-errors-to-string (bug#9255).
12749 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
12750
12751 2011-08-07 Juri Linkov <juri@jurta.org>
12752
12753 * faces.el (list-faces-display): Remove extra angle bracket
12754 from `help-mode-map'.
12755
12756 * info.el (Info-history-toc-nodes): Doc fix.
12757
12758 * longlines.el (longlines-mode): Doc fix.
12759
12760 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
12761
12762 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
12763 of statements and in a few more cases (bug#9183).
12764
12765 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
12766 New functions.
12767 (cl-transform-lambda): Use them (bug#9239).
12768
12769 2011-08-05 Martin Rudalics <rudalics@gmx.at>
12770
12771 * window.el (display-buffer-same-window)
12772 (display-buffer-same-frame, display-buffer-other-window)
12773 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12774 (pop-to-buffer-other-window)
12775 (pop-to-buffer-same-frame-other-window)
12776 (pop-to-buffer-other-frame): Make them defuns.
12777 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
12778
12779 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12780
12781 * subr.el (make-composed-keymap): Move from C. Change calling
12782 convention, and improve docstring to bring attention to a subtle point.
12783 * minibuffer.el (completing-read-default): Adjust accordingly.
12784
12785 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
12786
12787 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
12788 (tramp-open-shell): Use `tramp-shell-quote-argument'.
12789
12790 * net/trampver.el: Update release number.
12791
12792 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12793
12794 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
12795 "in" (bug#9190).
12796
12797 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12798
12799 * mail/sendmail.el (sendmail-query-once): Restore the current
12800 buffer after querying (bug#9074).
12801
12802 * dired.el (dired-flagged): Use different faces for marked and
12803 flagged files (bug#6117).
12804
12805 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
12806 (bug#4433).
12807
12808 * ido.el (ido-mode): Switch off the message if called
12809 non-interactively.
12810
12811 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
12812 before 587, since it appears that that's more likely to work for
12813 more people.
12814
12815 * cus-edit.el (custom-file): When running under emacs -q, always
12816 refuse to save the customizations, even if the .emacs file doesn't
12817 exist.
12818
12819 * info.el: Remove the `Info-beginning-of-buffer' function
12820 (bug#8325).
12821
12822 * net/network-stream.el (network-stream-open-starttls):
12823 Use `starttls-available-p' to see whether starttls.el can be used.
12824
12825 2011-08-01 Martin Rudalics <rudalics@gmx.at>
12826
12827 * window.el (display-buffer-in-window): Don't set dedicated status
12828 of window here (Bug#9215).
12829 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
12830 (display-buffer-pop-up-side-window)
12831 (display-buffer-in-side-window): Set dedicated status of window here.
12832
12833 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
12834
12835 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
12836 before binding generated-autoload-file.
12837
12838 2011-08-01 Deniz Dogan <deniz@dogan.se>
12839
12840 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
12841
12842 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
12843
12844 Sync with Tramp 2.2.2.
12845
12846 * net/trampver.el: Update release number.
12847
12848 2011-07-30 Juri Linkov <juri@jurta.org>
12849
12850 * dired-aux.el (dired-touch-initial): Remove function.
12851 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
12852 current time, and `default' to the last modification time of the
12853 current marked file (bug#6887).
12854
12855 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
12856
12857 * simple.el (goto-line): Use string-to-number to provide a
12858 numeric argument to read-number (bug#9163).
12859
12860 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
12861
12862 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
12863 connection process, it could be nil.
12864
12865 2011-07-27 Leo Liu <sdl.web@gmail.com>
12866
12867 Simplify url handling in rcirc-mode.
12868
12869 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
12870 (rcirc-browse-url-at-mouse): Remove.
12871 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
12872
12873 2011-07-26 Alan Mackenzie <acm@muc.de>
12874
12875 Fontify bitfield declarations properly.
12876
12877 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
12878 (c-symbol-chars): Now exported as a lang variable.
12879 (c-not-primitive-type-keywords): New lang variable.
12880
12881 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
12882 QT keyword "more" to prevent "more slots: ...." being spuriously
12883 parsed as a bitfield declaration.
12884
12885 * progmodes/cc-engine.el (c-beginning-of-statement-1):
12886 Refactor and enhance to handle bitfield declarations.
12887 (c-punctuation-in): New function.
12888 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
12889 declarations properly.
12890
12891 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
12892
12893 * calendar/icalendar.el (icalendar--all-events): Take care of
12894 multiple vcalendars in a single file.
12895 (icalendar--convert-float-to-ical): Checkdoc fixes.
12896
12897 2011-07-25 Deniz Dogan <deniz@dogan.se>
12898
12899 * image.el (insert-image): Clarifying docstring.
12900
12901 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
12902
12903 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
12904 `tramp-send-command-and-check' if there is no error.
12905 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
12906
12907 2011-07-22 Alan Mackenzie <acm@muc.de>
12908
12909 Prevent cc-langs.elc being loaded at run time.
12910
12911 * progmodes/cc-mode.el: Remove two autoload forms which loaded
12912 cc-langs.
12913
12914 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
12915 "(require 'cc-langs)". Quote a form so it will evaluate at
12916 (cc-mode's) compilation time.
12917
12918 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
12919
12920 * net/tramp.el (tramp-file-name-handler): Avoid recursive
12921 loading. (Bug#9114)
12922
12923 2011-07-21 Martin Rudalics <rudalics@gmx.at>
12924
12925 * window.el (display-buffer-pop-up-window)
12926 (display-buffer-pop-up-side-window)
12927 (display-buffer-in-side-window): Call display-buffer-set-height
12928 and display-buffer-set-width after setting the new window's
12929 buffer so `fit-window-to-buffer' and friends work on the right buffer.
12930
12931 2011-07-20 Sam Steingold <sds@gnu.org>
12932
12933 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
12934 (etags-tags-included-tables): Call `convert-standard-filename' on
12935 the file names contained in TAGS so that windows Emacs can handle
12936 TAGS files created by cygwin ctags.
12937
12938 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12939
12940 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
12941 which apparently didn't work.
12942
12943 2011-07-19 Roland Winkler <winkler@gnu.org>
12944
12945 * proced.el (proced-send-signal): For *Marked Processes* buffer
12946 put point at beginning of buffer.
12947
12948 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
12949
12950 * proced.el (proced-format): Make header lines align with the text
12951 (bug#1779).
12952
12953 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12954
12955 * view.el (view-buffer): Allow running in `special' modes if we're
12956 visiting a file (bug#8615).
12957
12958 2011-07-19 Martin Rudalics <rudalics@gmx.at>
12959
12960 * window.el (display-buffer-alist-of-strings-p)
12961 (display-buffer-alist-set-1, display-buffer-alist-set-2):
12962 New functions.
12963 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
12964 more accurately.
12965
12966 2011-07-18 Alan Mackenzie <acm@muc.de>
12967
12968 Fontify declarators properly when, e.g., a jit-lock chunk begins
12969 inside a declaration.
12970
12971 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
12972
12973 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12974 New function.
12975 (c-complex-decl-matchers): Insert reference to
12976 c-font-lock-enclosing-decls.
12977
12978 * progmodes/cc-engine.el (c-backward-single-comment):
12979 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
12980 to nil around calls to (forward-comment -1).
12981
12982 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12983
12984 * image.el (put-image): Doc typo fix.
12985
12986 * progmodes/etags.el (tags-search): Doc typo fix.
12987
12988 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
12989 password if we get errors 550 to 554.
12990
12991 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12992
12993 * net/gnutls.el (gnutls-log-level): Remove.
12994
12995 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
12996 indentation character (bug#6380).
12997
12998 * files.el (buffer-offer-save): Made permanently local (bug#6241).
12999
13000 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
13001 to clarify what the problem is (bug#4291).
13002
13003 * simple.el (current-kill): Clarify what
13004 `interprogram-paste-function' does (bug#7500).
13005 (auto-fill-mode): Document `auto-fill-function' in relation to
13006 `auto-fill-mode' (bug#2470).
13007
13008 2011-07-16 Lawrence Mitchell <wence@gmx.li>
13009
13010 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
13011 method if slot is read-only (bug#9035).
13012
13013 2011-07-16 Martin Rudalics <rudalics@gmx.at>
13014
13015 * frame.el (select-frame-set-input-focus): New argument NORECORD.
13016 * window.el (pop-to-buffer): Select window used even if it was
13017 selected before, see discussion of (Bug#8615), (Bug#6954).
13018 Pass argument NORECORD on to select-frame-set-input-focus.
13019
13020 2011-07-15 Glenn Morris <rgm@gnu.org>
13021
13022 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
13023 Respect help-form.
13024
13025 2011-07-09 Lawrence Mitchell <wence@gmx.li>
13026
13027 * net/gnutls.el (gnutls-min-prime-bits): New variable.
13028 (gnutls-negotiate): Use it.
13029
13030 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13031
13032 * net/gnutls.el (gnutls-negotiate):
13033 Upcase `gnutls-algorithm-priority'.
13034
13035 2011-07-15 Glenn Morris <rgm@gnu.org>
13036
13037 * jka-compr.el (jka-compr-verbose): Move from here...
13038 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
13039 Add missing :version tag.
13040 * info.el: No need to require jka-compr when compiling.
13041
13042 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13043
13044 * net/gnutls.el (gnutls-algorithm-priority): New variable.
13045 (gnutls-negotiate): Use it.
13046
13047 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
13048
13049 * info.el (Info-beginning-of-buffer): New command.
13050 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
13051 announcing `b' as the key (bug#8325).
13052 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
13053
13054 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
13055
13056 * international/mule-cmds.el
13057 (describe-specified-language-support): Make the error message
13058 clearer (bug#8905).
13059
13060 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
13061
13062 * isearch.el (isearch-barrier): Add a doc string, since it's
13063 mentioned in a function doc string (bug#8678).
13064
13065 2011-07-15 Martin Rudalics <rudalics@gmx.at>
13066
13067 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
13068 buffer argument (Bug#9083) and self-identifying label argument.
13069
13070 2011-07-15 Glenn Morris <rgm@gnu.org>
13071
13072 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
13073
13074 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13075
13076 * man.el (Man-fontify-manpage): Fix message when formatting the
13077 man page (bug#7929).
13078
13079 2011-07-14 Eli Zaretskii <eliz@gnu.org>
13080
13081 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
13082 argument LRM; if non-nil, append an invisible LRM character to the
13083 buffer name.
13084 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
13085 last argument non-nil, when formatting buffer names.
13086 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
13087 paragraph direction.
13088
13089 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13090
13091 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
13092 the man page name (bug#7929).
13093
13094 * image.el (put-image): Mention the `put-image' overlay property
13095 (bug#7834).
13096
13097 * scroll-bar.el (set-scroll-bar-mode): Mention that
13098 `scroll-bar-mode' lists the values (bug#7772).
13099
13100 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
13101 command (bug#7729).
13102
13103 * rect.el (apply-on-rectangle): Return the point after the last
13104 operation.
13105 (string-rectangle): Go to the point after the last operation
13106 (bug#7522).
13107
13108 * printing.el (pr-toggle-region): Clarify the documentation
13109 slightly (bug#7493).
13110
13111 * time.el (display-time-update):
13112 Allow `display-time-mail-function' to return nil (bug#7158).
13113 Fix suggested by Detlev Zundel.
13114
13115 * vc/diff.el (diff): Clarify the order the file names are read
13116 (bug#7111).
13117
13118 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
13119 the doc string (bug#7015).
13120
13121 * font-lock.el (font-lock-maximum-decoration): Mention what
13122 numeric levels mean (bug#6935).
13123
13124 * startup.el (initial-buffer-choice): Don't mention the `none'
13125 selection, which is against policy.
13126
13127 2011-07-14 Martin Rudalics <rudalics@gmx.at>
13128
13129 * window.el (display-buffer-normalize-special):
13130 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
13131
13132 2011-07-14 Eli Zaretskii <eliz@gnu.org>
13133
13134 * subr.el (version<, version<=, version=): Mention "-CVS" and
13135 "-12345" alpha version numbers.
13136
13137 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
13138
13139 * bindings.el: Add advertised binding for set-mark-command
13140 (Bug#5772).
13141
13142 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
13143
13144 * bindings.el (mode-line-other-buffer):
13145 * bookmark.el (bookmark-bmenu-2-window):
13146 * bs.el (bs-cycle-next, bs-cycle-previous):
13147 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
13148 switch-to-buffer.
13149
13150 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
13151 Delete.
13152
13153 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
13154
13155 * follow.el (follow-debug-message, follow-redisplay):
13156 * jka-cmpr-hook.el (with-auto-compression-mode):
13157 Fix typos in docstrings.
13158
13159 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13160
13161 * subr.el (with-silent-modifications): Clarify somewhat what the
13162 macro inhibits (bug#6525).
13163
13164 * simple.el (eval-expression): Note what it does if called
13165 interactively (bug#6495).
13166
13167 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
13168
13169 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
13170 Use pop-to-buffer buffer-or-name if it is nil.
13171
13172 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13173 Remove switch-to-buffer.
13174
13175 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13176
13177 * files.el (make-directory): Clarify that an error will be raised
13178 if there's an error (bug#6397).
13179
13180 * startup.el (initial-buffer-choice): Add `none' as a choice
13181 (bug#6234).
13182
13183 * subr.el (add-hook): Clarify section about buffer-local hooks
13184 (bug#6218).
13185
13186 * dired.el (dired-flagged): Clarify doc string (bug#6117).
13187
13188 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
13189
13190 * tabify.el (untabify): Preserve the current column so that point
13191 doesn't move (bug#6032).
13192
13193 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13194
13195 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
13196 Rewrite to avoid awkward possessive "s" (bug#5986).
13197
13198 2011-07-13 Glenn Morris <rgm@gnu.org>
13199
13200 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
13201 (dired-insert-directory): Give a message the first time
13202 if ls is found not to support --dired.
13203
13204 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13205
13206 * simple.el (toggle-truncate-lines): Clarify what is toggled
13207 (bug#5580). Text by Drew Adams.
13208
13209 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
13210
13211 * simple.el (blink-matching-open): Make the error message from the
13212 last change less verbose.
13213
13214 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
13215
13216 * font-lock.el (font-lock-comment-face): Use the high contrast
13217 "yellow" color for font-lock-comment-face on low color terminals
13218 using a dark background color (bug#4221).
13219
13220 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13221
13222 * dired.el (dired-insert-set-properties): Make the doc string
13223 reflect what it does now (bug#5325).
13224
13225 * simple.el (blink-matching-open): Say that we were unable to find
13226 the match within the limit, if we're limited (bug#5122).
13227
13228 * international/mule-cmds.el (prefer-coding-system): Add an
13229 example (bug#4869).
13230
13231 * progmodes/etags.el (tags-search): Document `file-list-form'
13232 (bug#4731).
13233
13234 2011-07-13 Lawrence Mitchell <wence@gmx.li>
13235
13236 * net/browse-url.el (browse-url-default-browser)
13237 (browse-url-browser-function): Make the default browser choice a
13238 bit more logical (bug#4300). Also clean up the doc string.
13239
13240 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
13241
13242 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
13243 binary endings (bug#4440).
13244
13245 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13246
13247 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
13248 which can be pretty annoying (bug#8971).
13249
13250 * jka-compr.el (jka-compr-verbose): New variable, and use
13251 throughout (bug#8971).
13252
13253 * info.el (Info-find-file): Fall back on the installation
13254 directory if we can't find the info node anywhere else.
13255
13256 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
13257
13258 * vc/vc.el (vc-revert-file):
13259 Don't set file time-stamp in the past. (Bug#5181)
13260
13261 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
13262
13263 * files.el (after-find-file): Give a better error message when
13264 trying to find a symlink that points to a file that doesn't exist
13265 (bug#4398).
13266
13267 * progmodes/cc-vars.el: Remove (probably) misleading comment
13268 (bug#4396).
13269
13270 2011-07-12 Johan Bockgård <bojohan@gnu.org>
13271
13272 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
13273
13274 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
13275
13276 * mouse-sel.el: Hack restoring functionality, while keeping
13277 compatibility with 2010-07-03 changes to mouse selection.
13278 (mouse-sel-primary-overlay): New var.
13279 (mouse-sel-selection-alist): Use it.
13280 (mouse-sel-mode): Doc fix; remove points that are default features
13281 of mouse.el.
13282
13283 2011-07-12 Johan Bockgård <bojohan@gnu.org>
13284
13285 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13286 Fix previous fix (bug#2490).
13287
13288 2011-07-12 Roland Winkler <winkler@gnu.org>
13289
13290 * textmodes/bibtex.el (bibtex-initialize):
13291 Use pop-to-buffer-same-window.
13292 (bibtex-search-entries): Fix interactive call.
13293
13294 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
13295
13296 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13297 Fontise bytecomp Error lines more correctly (bug#2490).
13298 Fix suggested by Johan Bockgård.
13299
13300 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
13301
13302 * dired-x.el (dired-guess-default): Use `delete-dups'.
13303
13304 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
13305
13306 * dired.el (dired-mark-prompt):
13307 * dired-aux.el (dired-read-shell-command): Doc fix.
13308
13309 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13310
13311 * mail/sendmail.el (sendmail-query-once):
13312 Use `customize-save-variable' unconditionally, now that it works under
13313 emacs -Q.
13314
13315 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
13316
13317 * cus-edit.el (custom-file): Take an optional no-error variable.
13318 (customize-save-variable): Set the variable, and give a warning if
13319 running under "emacs -q".
13320
13321 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
13322
13323 * loadhist.el (unload-feature-special-hooks):
13324 Add `auto-coding-functions', `fill-nobreak-predicate' and
13325 `find-directory-functions' (bug#5327).
13326
13327 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13328
13329 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
13330
13331 * cus-edit.el (custom-guess-name-alist): -alist variables should
13332 use the `alist' type (bug#3120). Suggested by Drew Adams.
13333
13334 * printing.el: Add documentation to all the `pr-toggle-' commands.
13335
13336 2011-07-11 Leo Liu <sdl.web@gmail.com>
13337
13338 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
13339 backends where it makes sense (bug#2623).
13340
13341 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13342
13343 * dired-x.el (dired-guess-default): Remove duplicate shell command
13344 entries (bug#2028).
13345 (dired-guess-default): Fix grammar in doc string (bug#2028).
13346 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
13347
13348 * subr.el (remove-duplicates): New conveniency function.
13349
13350 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13351
13352 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
13353 (bug#1526).
13354
13355 2011-07-10 Martin Rudalics <rudalics@gmx.at>
13356
13357 * window.el (display-buffer-normalize-default): Don't invert
13358 meaning of even-window-heights. Reported by Eli Zaretskii
13359 <eliz@gnu.org>.
13360
13361 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
13362
13363 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
13364
13365 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
13366
13367 * window.el (display-buffer): Fix arguments to
13368 display-buffer-reuse-window in last change.
13369
13370 * faces.el (link): Use a less saturated blue on light backgrounds.
13371
13372 * startup.el (fancy-startup-text, fancy-about-text)
13373 (fancy-startup-tail): Use font-lock faces, for background safety.
13374
13375 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
13376
13377 * emulation/viper-cmd.el (viper-change-state-to-vi):
13378 Limit triggering of abbrev expansion (Bug#9038).
13379
13380 2011-07-09 Martin Rudalics <rudalics@gmx.at>
13381
13382 * window.el (display-buffer-default-specifiers): Remove.
13383 (display-buffer-macro-specifiers): Remove default specifiers.
13384 (display-buffer-alist): Default to nil.
13385 (display-buffer-reuse-window): New optional argument other-window.
13386 (display-buffer-pop-up-window): Allow splitting internal
13387 windows. Check whether a live window was created.
13388 (display-buffer-other-window-means-other-frame)
13389 (display-buffer-normalize-arguments): Rename to
13390 display-buffer-normalize-argument and rewrite. Set the
13391 other-window specifier.
13392 (display-buffer-normalize-special): New function.
13393 (display-buffer-normalize-options): Rename to
13394 display-buffer-normalize-default and rewrite.
13395 (display-buffer-normalize-options-inhibit): Remove.
13396 (display-buffer-normalize-specifiers): Rewrite.
13397 (display-buffer): Process other-window specifier and call
13398 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
13399 more faithfully.
13400 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
13401 (display-buffer-alist-set): Don't handle 'unset default values.
13402 (display-buffer-in-window, display-buffer-alist-set):
13403 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
13404 <tassilo@member.fsf.org>.
13405
13406 2011-07-09 Leo Liu <sdl.web@gmail.com>
13407
13408 * register.el (insert-register): Restore accidental change on
13409 2011-06-26. (Bug#9028)
13410
13411 2011-07-09 Glenn Morris <rgm@gnu.org>
13412
13413 * subr.el (remq): Handle the empty list. (Bug#9024)
13414
13415 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
13416
13417 * mail/sendmail.el (send-mail-function): No longer delay custom
13418 initialization.
13419 * custom.el (custom-initialize-delay): Doc fix.
13420
13421 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
13422
13423 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
13424
13425 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
13426
13427 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
13428 human-friendly prompt.
13429
13430 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
13431
13432 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
13433 provided by a particular plugin.
13434
13435 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
13436
13437 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
13438 save customizations (with "emacs -Q"), just set the variable
13439 instead of erroring out.
13440
13441 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
13442
13443 2011-07-08 Juri Linkov <juri@jurta.org>
13444
13445 * arc-mode.el (archive-zip-expunge, archive-zip-update)
13446 (archive-zip-update-case): Use 7z if found by `executable-find'.
13447 The order of searching the available programs is the same as in
13448 `archive-zip-extract' (bug#8968).
13449
13450 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
13451
13452 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
13453 (menu-bar-options-menu): Tweak descriptions.
13454
13455 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
13456
13457 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
13458 menu items into verb phrases (bug#1421). Also refill to fit under
13459 80 columns.
13460
13461 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
13462
13463 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
13464 (Info-read-node-name): Doc fix (Bug#1084).
13465
13466 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
13467 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
13468 (end-of-sexp, beginning-of-sexp)
13469 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
13470 (forward-symbol, forward-same-syntax, word-at-point)
13471 (sentence-at-point): Doc fix (Bug#1144).
13472
13473 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
13474
13475 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
13476 should cover it (bug#1281).
13477
13478 * cus-edit.el (custom-show): Mark as obsolete.
13479
13480 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
13481 negotiation fails, then possibly try again with a non-encrypted
13482 connection (bug#9017).
13483
13484 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
13485 be used.
13486
13487 2011-07-07 Richard Stallman <rms@gnu.org>
13488
13489 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
13490 property, and handle its changed format.
13491 Look for the correct line number.
13492 Use file's line contents (but not past first =) to find
13493 correct line in message.
13494
13495 2011-07-07 Kenichi Handa <handa@m17n.org>
13496
13497 * international/characters.el (build-unicode-category-table):
13498 Delete it.
13499 (unicode-category-table): Set it by unicode-property-table-internal.
13500
13501 * international/mule-cmds.el (char-code-property-alist): Move to
13502 to src/chartab.c.
13503 (get-char-code-property): Call unicode-property-table-internal to
13504 load a file. Call get-unicode-property-internal where necessary.
13505 (put-char-code-property): Call unicode-property-table-internal to
13506 load a file. Call put-unicode-property-internal where necessary.
13507 put-unicode-property-internal where necessary.
13508 (char-code-property-description):
13509 Call unicode-property-table-internal to load a file.
13510
13511 * international/charprop.el:
13512 * international/uni-bidi.el:
13513 * international/uni-category.el:
13514 * international/uni-combining.el:
13515 * international/uni-comment.el:
13516 * international/uni-decimal.el:
13517 * international/uni-decomposition.el:
13518 * international/uni-digit.el:
13519 * international/uni-lowercase.el:
13520 * international/uni-mirrored.el:
13521 * international/uni-name.el:
13522 * international/uni-numeric.el:
13523 * international/uni-old-name.el:
13524 * international/uni-titlecase.el:
13525 * international/uni-uppercase.el: Regenerate.
13526
13527 * loadup.el: Load international/charprop.el before
13528 international/characters.
13529
13530 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
13531
13532 * window.el (next-buffer, previous-buffer): Signal an error if
13533 called from a minibuffer window.
13534
13535 * bindings.el: Revert 2011-07-04 change.
13536
13537 2011-07-06 Richard Stallman <rms@gnu.org>
13538
13539 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
13540 (rmail-mime-insert-bulk, rmail-mime-insert-text):
13541 Treat markers like ints.
13542 (rmail-mime-entity): Doc fix.
13543
13544 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13545
13546 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
13547 defcustom again for backwards compatibility.
13548
13549 * simple.el (shell-command-on-region): Fill.
13550
13551 * dired-aux.el (dired-kill-line): Add a doc string.
13552
13553 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
13554 to "\\sw\\|\\s_" (bug#358).
13555
13556 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
13557 (dired-unmark-backward): Ditto.
13558 (dired-flag-backup-files): Ditto.
13559
13560 * dired-x.el (dired-mark-sexp): Ditto.
13561
13562 2011-07-06 Richard Stallman <rms@gnu.org>
13563
13564 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
13565 (rmail-mime-entity): New arg TRUNCATED.
13566 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
13567 New functions.
13568 (rmail-mime-save): Warn if entity is truncated.
13569 (rmail-mime-toggle-hidden): Likewise, for showing.
13570 (rmail-mime-process-multipart): Record when an entity is truncated.
13571
13572 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
13573 if ENTITY is a string.
13574
13575 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13576
13577 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
13578 of faces when `M-C-x'-ing their definitions (bug#8378).
13579 Also clean up the code slightly.
13580
13581 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
13582 because that makes the colors go away.
13583
13584 * mail/sendmail.el (send-mail-function): Change the default to
13585 `sendmail-query-once'.
13586 (sendmail-query-once): Add an autoload cookie.
13587
13588 * net/network-stream.el (network-stream-open-starttls): Try using
13589 a plain connection even if the server offered STARTTLS, and we
13590 kinda wanted to use it, if Emacs doesn't have any STARTTLS
13591 capability. This should make smtpmail.el work in slightly more
13592 configurations.
13593
13594 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
13595
13596 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
13597 New defun.
13598 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
13599
13600 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
13601
13602 * progmodes/sql.el: Version 3.0
13603 (sql-product-alist): Add product :completion-object,
13604 :completion-column, and :statement attributes.
13605 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
13606 (sql-mode-syntax-table): Mark all punctuation.
13607 (sql-font-lock-keywords-builder): Temporarily remove fallback on
13608 ansi keywords.
13609 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
13610 (sql-mode-oracle-font-lock-keywords): Improve.
13611 (sql-oracle-show-reserved-words): New function for development.
13612 (sql-product-font-lock): Simplify for source code buffers.
13613 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
13614 New functions.
13615 (sql-highlight-product): Set product specific syntax table.
13616 (sql-mode-map): Add statement movement functions.
13617 (sql-ansi-statement-starters, sql-oracle-statement-starters):
13618 New variable.
13619 (sql-statement-regexp, sql-beginning-of-statement)
13620 (sql-end-of-statement, sql-signum): New functions.
13621 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
13622 (sql-show-sqli-buffer): Bug fix.
13623 (sql-interactive-mode): Store connection data as buffer local.
13624 (sql-connect): Add NEW-NAME parameter. Redesign interaction
13625 with sql-interactive-mode.
13626 (sql-save-connection): Save buffer local settings.
13627 (sql-connection-menu-filter): Change menu entry name.
13628 (sql-product-interactive): Bug fix.
13629 (sql-preoutput-hold): New variable.
13630 (sql-interactive-remove-continuation-prompt): Bug fixes.
13631 (sql-debug-redirect): New variable.
13632 (sql-str-literal): New function.
13633 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
13634 Redesign.
13635 (sql-oracle-save-settings, sql-oracle-restore-settings)
13636 (sql-oracle-list-all, sql-oracle-list-table): New functions.
13637 (sql-completion-object, sql-completion-column)
13638 (sql-completion-sqlbuf): New variables.
13639 (sql-build-completions-1, sql-build-completions)
13640 (sql-try-completion): New functions.
13641 (sql-read-table-name): Use them.
13642 (sql-contains-names): New buffer local variable.
13643 (sql-list-all, sql-list-table): Use it.
13644 (sql-oracle-completion-types): New variable.
13645 (sql-oracle-completion-object, sql-sqlite-completion-object)
13646 (sql-postgres-completion-object): New functions.
13647
13648 2011-07-06 Glenn Morris <rgm@gnu.org>
13649
13650 * window.el (pop-to-buffer): Doc fix.
13651
13652 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
13653
13654 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
13655
13656 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
13657
13658 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
13659
13660 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
13661
13662 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
13663
13664 * button.el (button): Inherit from link face. Suggested by Dan
13665 Nicolaescu.
13666
13667 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13668
13669 * progmodes/gdb-mi.el: Fit in 80 columns.
13670 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
13671 switch-to-buffer.
13672
13673 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
13674 if imenu is simply not configured (bug#8941).
13675
13676 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
13677
13678 * allout.el (allout-post-undo-hook): New allout outline-change
13679 event hook to signal undo activity.
13680 (allout-post-command-business): Run allout-post-undo-hook if an
13681 undo just occurred.
13682 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
13683 * allout-widgets.el (allout-widgets-after-undo-function):
13684 Ensure the integrity of the current item's decoration after it has been
13685 in the vicinity of an undo.
13686 (allout-widgets-mode): Include allout-widgets-after-undo-function
13687 on the new allout-post-undo-hook.
13688
13689 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13690
13691 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
13692 Let define-derived-mode define it.
13693 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
13694 cycles of abbrev-table inheritance (bug#8998).
13695
13696 2011-07-05 Roland Winkler <winkler@gnu.org>
13697
13698 * textmodes/bibtex.el: Add support for biblatex.
13699 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
13700 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
13701 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
13702 (bibtex-entry-alist, bibtex-field-alist): New variables.
13703 (bibtex-entry-field-alist): Obsolete alias for
13704 bibtex-BibTeX-entry-alist.
13705 (bibtex-entry-alist, bibtex-field-alist): New widgets.
13706 (bibtex-set-dialect): New command.
13707 (bibtex-entry-type, bibtex-entry-head)
13708 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
13709 Bind via bibtex-set-dialect.
13710 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
13711 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
13712 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
13713 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
13714 Define via bibtex-set-dialect.
13715 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
13716 Obey bibtex-no-opt-remove-re.
13717 (bibtex-vec-push, bibtex-vec-incr): New functions.
13718 (bibtex-format-entry, bibtex-field-list)
13719 (bibtex-print-help-message, bibtex-validate)
13720 (bibtex-search-entries): Use new format of bibtex-entry-alist.
13721
13722 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
13723
13724 * progmodes/compile.el (compilation-goto-locus):
13725 * net/tramp-cmds.el (tramp-append-tramp-buffers):
13726 * bs.el (bs-cycle-next, bs-cycle-previous):
13727 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
13728 * bindings.el (mode-line-other-buffer):
13729 * autoinsert.el (auto-insert):
13730 * arc-mode.el (archive-extract):
13731 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
13732
13733 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13734
13735 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
13736 Fix check of `emacs-lock-unlockable-modes'.
13737 Coerce true values of `emacs-lock--try-unlocking' to t.
13738
13739 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13740
13741 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
13742 * emacs-lock.el: New file.
13743
13744 2011-07-05 Julien Danjou <julien@danjou.info>
13745
13746 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
13747 than `boundp' to check if face is set.
13748
13749 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
13750
13751 * register.el (registerv-make):
13752 * window.el (window-min-height): Fix typos in docstrings.
13753
13754 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
13755
13756 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
13757 Update doc string.
13758
13759 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13760
13761 * server.el (server-execute): Catch quit and call
13762 `server-return-error' to pass the error back to emacsclient and
13763 close the connection (bug#8942).
13764
13765 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
13766
13767 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
13768 insecure exception for current topic. Also note that auto-saves
13769 are handled differently.
13770
13771 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13772 State variables for tracking auto-save inhibition situation.
13773
13774 (allout-write-contents-hook-handler): Rename from
13775 'allout-write-file-hook-handler', and describe how it depends on
13776 write-contents-functions sensitivity to non-nil value to prevent
13777 file write.
13778
13779 (allout-auto-save-hook-handler): Remove. auto-save does not check
13780 this in individual buffers, only in the starting buffer, so this
13781 is not the right way for us to inhibit auto-save in a buffer
13782 according to its condition.
13783
13784 (allout-mode): Use new allout-write-contents-hook-handler, and
13785 only with write-contents-functions. Remove auto-save provisions -
13786 they're implemented elsewhere.
13787
13788 (allout-before-change-handler): If undo is in progress, note that
13789 for attention of allout-post-command-business.
13790
13791 (allout-post-command-business): If the command we're following was
13792 an undo, check for change in the status of encrypted items and
13793 adjust auto-save inhibitions accordingly.
13794
13795 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
13796 according to whether there are or aren't any plain-text topics
13797 pending encryption.
13798
13799 (allout-inhibit-auto-save-info-for-decryption):
13800 Adjust buffer-saved-size and some allout state to inhibit auto-saves
13801 if there are plain-text topics pending encryption.
13802
13803 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
13804 buffer-saved-size and some allout state to not inhibit auto-saves
13805 if there are no longer any plain-text topics pending encryption.
13806
13807 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
13808 No longer provide for exemption of the current topic.
13809
13810 2011-07-04 Juri Linkov <juri@jurta.org>
13811
13812 Add 7z operations to delete and save changed members (bug#8968).
13813 * arc-mode.el (archive-7z-expunge, archive-7z-update):
13814 New defcustoms.
13815 (archive-7z-write-file-member): New function.
13816 (archive-7z-summarize): Fix the number of dashes in the
13817 listing output.
13818
13819 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13820
13821 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
13822 (bug#8958).
13823
13824 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
13825
13826 * bindings.el: Ignore next-buffer and previous-buffer in
13827 minibuffer-local-map.
13828
13829 * font-lock.el (font-lock-builtin-face): Change light background
13830 color to dark slate blue (Bug#6693).
13831
13832 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
13833
13834 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
13835
13836 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13837
13838 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
13839 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13840 Add switch-to-buffer.
13841
13842 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13843
13844 * isearch.el (isearch-search-fun-function): Clarify further the
13845 meaning of the function returned.
13846
13847 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
13848
13849 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
13850
13851 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
13852 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
13853 Use it.
13854 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
13855 `tramp-default-remote-path' does not exist.
13856 (tramp-send-command-and-read): New optional argument NOERROR.
13857 (tramp-open-connection-setup-interactive-shell)
13858 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
13859 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
13860 (tramp-process-sentinel): Flush also process' connection property.
13861 (tramp-sh-handle-start-file-process): Do not set process
13862 sentinel. It is done now ...
13863 (tramp-maybe-open-connection): ... here. (Bug#8929)
13864
13865 2011-07-04 MON KEY <monkey@sandpframing.com>
13866
13867 * play/animate.el (animate-string): Doc fixes and allow changing
13868 the buffer name (bug#5417).
13869
13870 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13871
13872 * play/animate.el (animation-buffer-name): Rename from *animate*.
13873
13874 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13875
13876 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
13877 This is simpler and helps future-proof the code.
13878 (timer-until): Use time-subtract and float-time.
13879 (timer--time-less-p): Use time-less-p.
13880
13881 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13882
13883 * type-break.el (timep): Use the value of `float-time' to avoid a
13884 byte-compiler warning.
13885
13886 * server.el (server-eval-and-print): Return any result, even nil.
13887
13888 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
13889
13890 * type-break.el: Accept time formats that the builtins accept.
13891 (timep, type-break-time-difference): Accept any format that
13892 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
13893 This is simpler and helps future-proof the code.
13894 (type-break-time-difference): Round rather than ignoring
13895 subseconds components.
13896
13897 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13898
13899 * info.el (Info-apropos-matches): Make non-interactive, since it
13900 doesn't seem to do anything useful as a command (bug#8829).
13901
13902 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
13903
13904 * frame.el (frame-background-mode, frame-set-background-mode):
13905 Move from faces.el.
13906 (frame-default-terminal-background): New function.
13907
13908 * custom.el (custom-push-theme): Don't record faces in `changed'
13909 theme; this doesn't work correctly for per-frame face settings.
13910 (disable-theme): Use face-set-after-frame-default to reset faces.
13911 (custom--frame-color-default): New function.
13912
13913 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13914
13915 * dired.el (dired-flagging-regexp): Remove unused variable
13916 (bug#8769).
13917
13918 2011-03-29 Kevin Ryde <user42@zip.com.au>
13919
13920 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13921 `perl-Test2' extend to match possible "fail #N" rep count
13922 (bug#8377).
13923
13924 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13925
13926 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
13927 `smtpmail-via-smtp' now returns the error instead of nil.
13928
13929 * isearch.el (isearch-search-fun-function): Clarify the doc string
13930 (bug#8101).
13931
13932 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
13933
13934 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
13935 unnecessary spaces (bug#8987).
13936
13937 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13938
13939 * net/network-stream.el (open-network-stream): Use the
13940 :end-of-capability command thoughout.
13941
13942 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13943
13944 * net/network-stream.el (open-network-stream): Add the
13945 :end-of-capability command parameter, used by pop3.el.
13946
13947 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13948
13949 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
13950
13951 * fringe.el (fringe-query-style): Remove redundant text " (type ?
13952 for list)" (bug#6475).
13953
13954 * files.el (file-expand-wildcards): Ignore non-readable
13955 sub-directories while trying to find matches instead of signaling
13956 an error (bug#6297).
13957
13958 * man.el (Man-reference-regexp): Allow matching possible
13959 word-wrapped references (bug#6289).
13960
13961 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
13962 for consistency with the other vc buffers (bug#6197).
13963 (vc-checkin): Ditto.
13964
13965 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
13966
13967 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
13968
13969 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13970
13971 * custom.el (defcustom): Clarify that :set is only used in the
13972 Customize user interface (bug#6089).
13973
13974 * progmodes/flymake.el (flymake-mode): If the buffer isn't
13975 associated with a file, refuse to run instead of erroring out
13976 (bug#6084).
13977
13978 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
13979 the doc string, since it appears that using `fill-column' always
13980 controls the width (bug#7845).
13981
13982 * simple.el (shell-command-on-region): Say where the error output
13983 went if `shell-command-default-error-buffer' is set (bug#6857).
13984
13985 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
13986
13987 * allout.el (allout-yank-processing): Adjust cursor position for
13988 backwards-deleted space.
13989
13990 (allout-rebullet-heading): Register changes with
13991 allout-exposure-changed-hook, so the modified topic is properly
13992 decorated.
13993
13994 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13995
13996 * minibuffer.el (completion-in-region): Document PREDICATE
13997 (bug#7136).
13998
13999 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
14000 of keyword/argument pairs (bug#6904).
14001
14002 * replace.el (multi-occur):
14003 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
14004
14005 2011-07-02 Drew Adams <drew.adams@oracle.com>
14006
14007 * dired.el (dired-mark-if): Make the message about whether it's
14008 marking or unmarking clearer (bug#8523).
14009
14010 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14011
14012 * disp-table.el (display-table-print-array): New function.
14013 (describe-display-table): Use it to print the vectors more pretty
14014 (Bug#8859).
14015
14016 2011-07-02 Martin Rudalics <rudalics@gmx.at>
14017
14018 * window.el (window-state-get-1): Don't assign clone numbers.
14019 Add clone-of item to list of window parameters.
14020 (window-state-put-2): Don't process clone numbers.
14021 (display-buffer-alist): Fix doc-string.
14022
14023 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
14024
14025 * subr.el (remq): Don't allocate if it's not needed.
14026 (keymap--menu-item-binding, keymap--menu-item-with-binding)
14027 (keymap--merge-bindings): New functions.
14028 (keymap-canonicalize): Use them to refine the canonicalization.
14029 * minibuffer.el (minibuffer-local-completion-map)
14030 (minibuffer-local-must-match-map): Move initialization from C.
14031 (minibuffer-local-filename-completion-map): Move initialization from C;
14032 don't inherit from anything here.
14033 (minibuffer-local-filename-must-match-map): Make obsolete.
14034 (completing-read-default): Use make-composed-keymap to combine
14035 minibuffer-local-filename-completion-map with either
14036 minibuffer-local-must-match-map or
14037 minibuffer-local-filename-completion-map.
14038
14039 2011-07-01 Glenn Morris <rgm@gnu.org>
14040
14041 * type-break.el (type-break-time-sum): Use dolist.
14042
14043 * textmodes/flyspell.el (flyspell-word-search-backward):
14044 Replace CL function.
14045
14046 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
14047
14048 * mouse.el (mouse--strip-first-event): New function.
14049 (function-key-map): Use it to map fringe clicks to normal clicks
14050 by default.
14051
14052 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
14053 (vc-bzr-revision-completion-table): Add support for annotate and date.
14054
14055 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
14056 inherit from parent.
14057
14058 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14059
14060 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
14061 (dired-show-file-type): Doc fixup (bug#8818).
14062
14063 * dired.el (dired-mode): Fix up the doc string as suggested by
14064 Drew Adams (bug#8817).
14065
14066 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
14067 cookie, since the manual says that it should be possible to add
14068 this function to `find-file-hook' (bug#8709).
14069
14070 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
14071
14072 * progmodes/cfengine.el: Moved all cfengine3.el functionality
14073 here. Noted Ted Zlatanov as the maintainer.
14074 (cfengine-common-settings, cfengine-common-syntax): New functions
14075 to set up common things between `cfengine-mode' and
14076 `cfengine3-mode'.
14077 (cfengine3-mode): New mode.
14078 (cfengine3-defuns cfengine3-defuns-regex
14079 (cfengine3-class-selector-regex cfengine3-category-regex)
14080 (cfengine3-vartypes cfengine3-font-lock-keywords)
14081 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
14082 (cfengine3-indent-line): Add from cfengine3.el.
14083
14084 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
14085
14086 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
14087
14088 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
14089
14090 2011-07-01 Martin Rudalics <rudalics@gmx.at>
14091
14092 * window.el (same-window-buffer-names, same-window-regexps)
14093 (same-window-p, special-display-frame-alist)
14094 (special-display-popup-frame, special-display-function)
14095 (special-display-buffer-names, special-display-regexps)
14096 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
14097 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
14098 (split-window-preferred-function, split-height-threshold)
14099 (split-width-threshold, even-window-heights)
14100 (display-buffer-mark-dedicated, window-splittable-p)
14101 (split-window-sensibly, window-safely-shrinkable-p):
14102 Un-obsolete.
14103 (display-buffer): Don't spread args with function specifier
14104 because special-display-popup-frame won't like it.
14105
14106 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
14107
14108 Time-stamp simplifications and fixes.
14109 These improve accuracy slightly, and future-proof the code
14110 against some potential changes to current-time format.
14111
14112 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
14113 by using time-since and float-time.
14114
14115 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
14116 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
14117 + NNN microseconds".
14118
14119 * type-break.el (type-break-time-sum): Rewrite using time-add.
14120
14121 * play/hanoi.el (hanoi-current-time-float): Remove.
14122 All uses replaced by float-time.
14123
14124 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
14125 This yields a more-accurate answer.
14126 (rng-time-to-float): Remove; no longer needed.
14127
14128 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
14129
14130 * calendar/timeclock.el (timeclock-seconds-to-time):
14131 Defalias to seconds-to-time, since they're the same thing.
14132
14133 * emacs-lisp/elp.el (elp-elapsed-time):
14134 * emacs-lisp/benchmark.el (benchmark-elapse):
14135 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
14136
14137 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
14138
14139 * window.el (bury-buffer): Don't iconify the only frame.
14140 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
14141 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
14142
14143 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
14144
14145 * eshell/em-smart.el (eshell-smart-display-navigate-list):
14146 Add mouse-yank-primary.
14147
14148 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
14149
14150 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
14151
14152 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
14153
14154 * emacs-lisp/find-func.el (find-library--load-name): New fun.
14155 (find-library-name): Use it to find relative load names when provided
14156 absolute file name (bug#8803).
14157
14158 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
14159
14160 * textmodes/flyspell.el (flyspell-word): Consider words that
14161 differ only in case as potential doublons (bug#5687).
14162
14163 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
14164 Remove two rather uninteresting debugging-like messages to make
14165 debbugs.el more silent.
14166
14167 * comint.el (comint-password-prompt-regexp): Accept "Response" as
14168 a password-like phrase.
14169
14170 2011-06-30 Masatake YAMATO <yamato@redhat.com>
14171
14172 * progmodes/cc-guess.el: New file.
14173
14174 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
14175
14176 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
14177 derived from `c-basic-common-init'.
14178
14179 * progmodes/cc-mode.el (top-level): Require cc-guess.
14180 (c-basic-common-init): Use `cc-choose-style-for-mode'.
14181
14182 2011-06-30 Lawrence Mitchell <wence@gmx.li>
14183
14184 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
14185
14186 2011-06-30 Alan Mackenzie <acm@muc.de>
14187
14188 * progmodes/cc-engine.el (c-guess-continued-construct):
14189 Correct the handling of template-args-cont, particularly for when font
14190 lock is disabled. Name this case as "CASE G".
14191
14192 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
14193
14194 * allout.el (allout-yank-processing): Fix injection of extra space
14195 between bullet and non-whitespace character in first topic when
14196 pasting, ensuring that the actual spacing in the pasted topic
14197 following the bullet char is preserved. This extra space was
14198 causing pasted encrypted topics to get a decrypted status even
14199 when the content was actually still encrypted. Now the decryption
14200 status from before the paste is preserved.
14201
14202 (allout-flag-region): Set all allout overlays so they evaporate
14203 when reduced to zero length (evanescent), to prevent overlay
14204 leakage.
14205
14206 2011-06-30 Glenn Morris <rgm@gnu.org>
14207
14208 * w32-fns.el (w32-charset-info-alist): Declare.
14209
14210 * find-dired.el (find-grep-options): Simplify.
14211
14212 * term/ns-win.el (ns-set-resource): Declare.
14213
14214 * ses.el (row, col): Declare dynamic variables honestly.
14215
14216 * textmodes/reftex-parse.el (index-tags): Declare.
14217
14218 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
14219
14220 * cus-edit.el (customize-push-and-save): New function.
14221
14222 * files.el (hack-local-variables-confirm): Use it.
14223
14224 * custom.el (load-theme): New arg NO-CONFIRM.
14225 Use customize-push-and-save (Bug#8720).
14226 (custom-enabled-themes): Doc fix.
14227
14228 * cus-theme.el (customize-create-theme)
14229 (custom-theme-merge-theme): Callers to load-theme changed.
14230
14231 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
14232
14233 * thingatpt.el (thing-at-point-short-url-regexp): Require that
14234 short URLs have at least one dot in them (bug #7614).
14235
14236 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
14237 nil, because using a pty is apparently too slow (bug #895).
14238
14239 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
14240
14241 * mail/sendmail.el (sendmail-query-once): New function.
14242 (sendmail-query-once-function): New variable.
14243
14244 2011-06-29 Glenn Morris <rgm@gnu.org>
14245
14246 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
14247
14248 * ses.el (top-level): Require cl when compiling.
14249 (ses-set-localvars): Fix error statement.
14250 Call it at compile time to silence a storm of warnings.
14251
14252 2011-06-29 Martin Rudalics <rudalics@gmx.at>
14253
14254 * window.el (normalize-live-buffer): Rename to
14255 window-normalize-buffer.
14256 (normalize-live-frame): Rename to window-normalize-frame.
14257 (normalize-any-window): Rename to window-normalize-any-window.
14258 (normalize-live-window): Rename to window-normalize-live-window.
14259 (make-window-atom): Rename to window-make-atom.
14260 (window-resize-reset): Rename to window--resize-reset.
14261 (window-resize-reset-1): Rename to window--resize-reset-1.
14262 (resize-mini-window): Rename to window--resize-mini-window.
14263 (resize-subwindows-skip-p): Rename to
14264 window--resize-subwindows-skip-p.
14265 (resize-subwindows-normal): Rename to
14266 window--resize-subwindows-normal.
14267 (resize-subwindows): Rename to window--resize-subwindows.
14268 (resize-other-windows): Rename to window--resize-siblings.
14269 (resize-this-window): Rename to window--resize-this-window.
14270 (resize-root-window): Rename to window--resize-root-window.
14271 (resize-root-window-vertically): Rename to
14272 window--resize-root-window-vertically.
14273 (normalize-buffer-to-display): Rename to
14274 window-normalize-buffer-to-display.
14275 (normalize-buffer-to-switch-to): Rename to
14276 window-normalize-buffer-to-switch-to.
14277 Correspondingly update all callers of the functions listed
14278 above.
14279 (display-buffer-alist, display-buffer-normalize-arguments)
14280 (display-buffer-normalize-options, display-buffer)
14281 (display-buffer-alist-set): Use "function" instead of
14282 "fun-with-args".
14283
14284 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
14285
14286 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
14287 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
14288 debbugs.gnu.org. Mention acknowledgment email.
14289
14290 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
14291
14292 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
14293 buffer multibyteness, since it shouldn't matter.
14294
14295 2011-06-28 Martin Rudalics <rudalics@gmx.at>
14296
14297 * window.el (display-buffer-in-side-window): Handle dedicated
14298 windows as in display-buffer-reuse-window.
14299 (display-buffer-normalize-alist): Use value of override
14300 specifier.
14301 (display-buffer-normalize-specifiers): Use value of
14302 other-window-means-other-frame specifier.
14303 (display-buffer-alist): Rewrite some texts in widgets.
14304 (display-buffer): Spread arguments when calling function
14305 specified by fun-with-args.
14306
14307 2011-06-28 Deniz Dogan <deniz@dogan.se>
14308
14309 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
14310 Unnest `let'.
14311
14312 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
14313 selectors (Bug#5732).
14314 (css-proprietary-nmstart-re): Use `regexp-opt'.
14315
14316 2011-06-27 Jari Aalto <jari.aalto@cante.net>
14317
14318 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
14319 (eshell-ls-date-format): New defcustom.
14320 (eshell-ls-file): Use it.
14321
14322 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
14323
14324 * help-fns.el (describe-variable): Fix message for terminal-local vars.
14325
14326 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
14327
14328 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
14329 (ange-ftp-make-tmp-name): New arg.
14330 (ange-ftp-file-local-copy): Use it.
14331
14332 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
14333
14334 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
14335 no-conversion (Bug#8870).
14336
14337 2011-06-27 Martin Rudalics <rudalics@gmx.at>
14338
14339 * window.el (window-right, window-left, window-child)
14340 (window-child-count, window-last-child)
14341 (window-iso-combination-p, walk-window-tree-1)
14342 (window-atom-check-1, window-tree-1, delete-window)
14343 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
14344 new naming conventions - window-vchild, window-hchild,
14345 window-next and window-prev are now called window-top-child,
14346 window-left-child, window-next-sibling and window-prev-sibling
14347 respectively.
14348 (resize-window-reset): Rename to window-resize-reset.
14349 (resize-window-reset-1): Rename to window-resize-reset-1.
14350 (resize-window): Rename to window-resize.
14351 (window-min-height, window-min-width)
14352 (resize-mini-window, resize-this-window, resize-root-window)
14353 (resize-root-window-vertically, adjust-window-trailing-edge)
14354 (enlarge-window, shrink-window, maximize-window)
14355 (minimize-window, delete-window, quit-restore-window)
14356 (split-window, balance-windows, balance-windows-area-adjust)
14357 (balance-windows-area, window-state-put-2)
14358 (display-buffer-even-window-sizes, display-buffer-set-height)
14359 (display-buffer-set-width, set-window-text-height)
14360 (fit-window-to-buffer): Rename all "resize-window" prefixed
14361 calls to use the "window-resize" prefix convention.
14362 (display-buffer-alist): Fix symbol for label specifier.
14363 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
14364 corresponding specifier.
14365 Reported by Juanma Barranquero <lekktu@gmail.com>.
14366
14367 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
14368
14369 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
14370 convention.
14371 (ses-call-printer): Does not pass an empty string to formatter when the
14372 cell is empty to keep from barking printer Calc math-format-value.
14373
14374 2011-06-27 Richard Stallman <rms@gnu.org>
14375
14376 * battery.el (battery-mode-line-limit): New variable.
14377 (battery-update): Handle it.
14378
14379 * mail/rmailmm.el (rmail-mime-process-multipart):
14380 Handle truncated messages.
14381
14382 2011-06-27 Glenn Morris <rgm@gnu.org>
14383
14384 * progmodes/flymake.el (flymake-err-line-patterns):
14385 Allow for column numbers in the ant/javac pattern. (Bug#8866)
14386
14387 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
14388
14389 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
14390 (ses--clean-!, ses--clean-_): New functions.
14391 (ses-range): Add configurability of readout order, and conversion
14392 to Calc vector.
14393
14394 * ses.el (ses-repair-cell-reference-all): New function.
14395 (ses-cell-symbol): Set macro as safe, so that it can be used in
14396 formulas.
14397
14398 * ses.el: Update cycle detection algorithm.
14399 (ses-localvars): Add ses--Dijkstra-attempt-nb and
14400 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
14401 (ses-set-localvars): New function.
14402 (ses-make-cell): Add property-list as a cell element.
14403 (ses-cell-property-get-fun, ses-cell-property-get)
14404 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
14405 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
14406 New functions.
14407 (ses-cell-property-set, ses-cell-property-pop)
14408 (ses-cell-property-get-handle): New macro.
14409 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
14410 New aliases, used for code readability.
14411 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
14412 cycle detection.
14413 (ses-self-reference-early-detection): New defcustom.
14414 (ses-formula-references): Robustify against self-referring cells.
14415 (ses-mode): Use ses-set-localvars.
14416 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
14417 before lauching the update processing.
14418 (ses-initialize-Dijkstra-attempt): New function.
14419 (ses-recalculate-cell): Update for cycle detection based on
14420 Dijkstra algorithm.
14421
14422 * ses.el: Fix commenting and indenting convention.
14423
14424 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
14425
14426 * bs.el (bs-cycle-next): Complete last change.
14427
14428 2011-06-27 Drew Adams <drew.adams@oracle.com>
14429
14430 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
14431
14432 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14433
14434 * net/network-stream.el (network-stream-open-starttls):
14435 Don't re-get capabilities unless we've reestablished connection.
14436 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
14437
14438 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
14439 to binary to possibly avoid line encoding issues on Windows (among
14440 other things).
14441
14442 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
14443
14444 * net/network-stream.el (open-network-stream): Return an :error
14445 saying what the problem was, if possible.
14446
14447 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
14448 server.
14449
14450 * net/network-stream.el (network-stream-open-starttls): If we
14451 wanted to use STARTTLS, and the server offered it, but we weren't
14452 able to because we had no STARTTLS support, then close the connection.
14453 (open-network-stream): Return an :error element, if present.
14454
14455 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
14456
14457 * hl-line.el (hl-line-sticky-flag): Doc fix.
14458 (global-hl-line-sticky-flag): New option (Bug#8323).
14459 (global-hl-line-highlight): Obey it.
14460
14461 * vc/vc.el (vc-revert-show-diff): Default to t.
14462
14463 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
14464
14465 * allout-widgets.el (allout-widgets-post-command-business):
14466 Stop decorating intermediate isearch matches. They're not being
14467 undecorated when an isearch is continued past, and isearch
14468 automatically collapses them. This leads to "widget leaks", where
14469 decorated items accumulate in collapsed areas. Lines with lots of
14470 hidden widgets can slow down cursor travel, substantially.
14471 Too much complicated machinery would be needed to ensure undecoration,
14472 so we're doing without this nicety.
14473
14474 (allout-widgets-tally-string): Don't try to do a hash-table-count
14475 of allout-widgets-tally when it's nil. This eliminates spurious "Error
14476 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
14477 *Messages* when allout-widgets-maintain-tally is t.
14478
14479 2011-06-26 Martin Rudalics <rudalics@gmx.at>
14480
14481 * window.el (display-buffer-normalize-argument): Rename to
14482 display-buffer-normalize-arguments. Handle special meaning of
14483 LABEL argument. Respect special-display-function when popping up
14484 a new frame. Fix code searching for a window showing the buffer
14485 on another frame.
14486 (display-buffer-normalize-specifiers):
14487 Call display-buffer-normalize-arguments.
14488 (display-buffer-in-window): Don't undedicate the window if its
14489 buffer remains the same.
14490 Reported by Drew Adams <drew.adams@oracle.com>.
14491 (display-buffer-alist): Add choice for same-window macro
14492 specfier.
14493 (display-buffer): Mention special meaning of LABEL argument in
14494 doc-string. Fix quoting. Don't pop up a new frame even as
14495 fallback.
14496
14497 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
14498
14499 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
14500 avoid deleting the current window in some cases (bug#8911).
14501
14502 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
14503
14504 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
14505 (Bug#8934)
14506
14507 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
14508
14509 * net/network-stream.el (network-stream-open-starttls):
14510 Use built-in TLS support if `gnutls-available-p' is true.
14511 (network-stream-open-tls): Ditto.
14512
14513 2011-06-26 Leo Liu <sdl.web@gmail.com>
14514
14515 * register.el (registerv): New struct.
14516 (registerv-make): New function.
14517 (jump-to-register, describe-register-1, insert-register):
14518 Support the jump-func, print-func and insert-func slot of a registerv
14519 struct. (Bug#8415)
14520
14521 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
14522
14523 * vc/vc.el (vc-revert-show-diff): New defcustom.
14524 (vc-diff-internal): New arg specifying diff buffer.
14525 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
14526 reuse an existing *vc-diff* buffer (Bug#8927).
14527
14528 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
14529
14530 2011-06-26 Glenn Morris <rgm@gnu.org>
14531
14532 * progmodes/f90.el (f90-critical-indent): New option.
14533 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
14534 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
14535 (f90-mode): Doc fix.
14536 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
14537 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
14538 (f90-beginning-of-block, f90-next-block, f90-indent-region)
14539 (f90-match-end): Handle block, critical.
14540
14541 2011-06-25 Glenn Morris <rgm@gnu.org>
14542
14543 * calendar/diary-lib.el (diary-included-files): Doc fix.
14544 (diary-include-files): New function, extracted from
14545 diary-include-other-diary-files and diary-mark-included-diary-files.
14546 (diary-include-other-diary-files, diary-mark-included-diary-files):
14547 Just call diary-include-files.
14548 (diary-mark-entries): Reset diary-included-files on first call.
14549
14550 * calendar/diary-lib.el (diary-mark-entries)
14551 (diary-mark-included-diary-files):
14552 Visit included diary-files in temp buffers.
14553
14554 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
14555 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
14556 (f90-start-block-re, f90-imenu-generic-expression)
14557 (f90-looking-at-program-block-start, f90-no-block-limit):
14558 Add support for submodules.
14559
14560 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14561 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
14562
14563 2011-06-25 Eli Zaretskii <eliz@gnu.org>
14564
14565 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
14566 buffer-file-type before setting its value, to avoid disastrous
14567 global effects on decoding files for DOS/Windows systems. (Bug#8780)
14568
14569 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
14570
14571 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
14572
14573 * ses.el (ses-unload-function):
14574 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
14575
14576 * proced.el (proced-unload-function):
14577 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
14578
14579 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
14580
14581 * server.el (server-create-window-system-frame): Add parameters arg.
14582 (server-process-filter): Doc fix. Handle frame-parameters.
14583
14584 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
14585
14586 Fix bug#8730, bug#8781.
14587
14588 * loadhist.el (unload--set-major-mode): New function.
14589 (unload-feature): Use it.
14590
14591 * progmodes/python.el (python-after-info-look): Add autoload cookie.
14592 (python-unload-function): New function.
14593
14594 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
14595
14596 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
14597
14598 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
14599
14600 * net/browse-url.el (browse-url-firefox-program): Add icecat to
14601 the candidates list.
14602
14603 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
14604
14605 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
14606
14607 2011-06-23 Richard Stallman <rms@gnu.org>
14608
14609 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
14610 (rmail-variables): Set next-error-move-function.
14611 (rmail-what-message): Take argument POS.
14612 (rmail-next-error-move): New function.
14613
14614 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
14615
14616 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
14617 messages for adjacent non-terminals.
14618
14619 2011-06-23 Richard Stallman <rms@gnu.org>
14620
14621 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
14622 (rmail-show-message-1): Preserve buffer modified flag.
14623 (rmail-start-mail): Don't specify use of rmail-mail-return;
14624 that's done by mail-bury now.
14625 (rmail-mail-return): Handle arg NEWBUF.
14626
14627 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
14628
14629 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
14630 SIZE is a number.
14631
14632 2011-06-23 Martin Rudalics <rudalics@gmx.at>
14633
14634 * window.el (get-lru-window, get-mru-window)
14635 (get-largest-window): Never return a minibuffer window.
14636 (display-buffer-pop-up-window): Fix a bug that could lead to
14637 reusing the minibuffer window.
14638 (display-buffer): Pass original specifier argument to
14639 display-buffer-function instead of the normalized one.
14640 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14641
14642 2011-06-22 Leo Liu <sdl.web@gmail.com>
14643
14644 * minibuffer.el (completing-read-function)
14645 (completing-read-default): Move from minibuf.c
14646
14647 2011-06-22 Richard Stallman <rms@gnu.org>
14648
14649 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
14650 to Rmail even if not started by a special Rmail command.
14651
14652 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
14653 Copy the buffer currently showing just one message.
14654
14655 2011-06-22 Roland Winkler <winkler@gnu.org>
14656
14657 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
14658 (bibtex-clean-entry): First delete the old key so that a
14659 customized algorithm for generating the new key does not get
14660 confused by the old key.
14661 (bibtex-url): Obey regexp of first step.
14662 (bibtex-search-entries): Do not use add-to-list with local
14663 list-var.
14664
14665 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14666
14667 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
14668 stored a user name, then query for the password first, instead of
14669 waiting for SMTP to give an error message and the trying again.
14670
14671 2011-06-22 Lawrence Mitchell <wence@gmx.li>
14672
14673 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
14674 BUFFER in call-process.
14675
14676 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14677
14678 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
14679 QUIT twice.
14680 (smtpmail-try-auth-methods): Require user name and password from
14681 auth-source.
14682
14683 2011-06-22 Martin Rudalics <rudalics@gmx.at>
14684
14685 * window.el (display-buffer-default-specifiers)
14686 (display-buffer-alist): Remove entries for pop-up-frame-alist.
14687 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
14688 (split-window): Normalize SIDE argument (Bug#8916).
14689
14690 * frame.el (pop-up-frame-alist, pop-up-frame-function)
14691 (special-display-frame-alist, special-display-popup-frame):
14692 Remove duplicate declarations. These are now in window.el.
14693
14694 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14695
14696 * mail/smtpmail.el (smtpmail-via-smtp):
14697 Set :use-starttls-if-possible so that we always use STARTTLS if the
14698 server supports it. SMTP servers that support STARTTLS commonly
14699 require it.
14700
14701 * net/network-stream.el (network-stream-open-starttls): Support
14702 upgrading to STARTTLS always, even if we don't have built-in support.
14703 (open-network-stream): Add the :always-query-capabilities keyword.
14704
14705 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
14706 upgrades with `open-network-stream', and rely solely on
14707 auth-source for all credentials. Big changes throughout the file,
14708 but in particular:
14709 (smtpmail-auth-credentials): Remove.
14710 (smtpmail-starttls-credentials): Remove.
14711 (smtpmail-via-smtp): Check for servers saying they want AUTH after
14712 MAIL FROM, too.
14713
14714 * net/network-stream.el (network-stream-open-starttls):
14715 Provide support for client certificates both for external and built-in
14716 STARTTLS.
14717 (auth-source): Require.
14718 (open-network-stream): Document the :client-certificate keyword.
14719 (network-stream-certificate): Change cert-cert to cert and
14720 cert-key to key.
14721
14722 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
14723
14724 * net/tramp-cache.el (top): Don't load the persistency file when
14725 "emacs -Q" has been called.
14726
14727 2011-06-21 Tim Harper <timcharper@gmail.com>
14728
14729 * term/ns-win.el (ns-initialize-window-system):
14730 Set application-specific `ApplePressAndHoldEnabled' system
14731 resource to NO as it is not yet supported by the NS port.
14732
14733 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
14734
14735 * misc.el (list-dynamic-libraries--refresh): Compute header here...
14736 (list-dynamic-libraries): ...not here.
14737
14738 2011-06-21 Leo Liu <sdl.web@gmail.com>
14739
14740 * subr.el (sha1): Implement sha1 using secure-hash.
14741
14742 2011-06-21 Martin Rudalics <rudalics@gmx.at>
14743
14744 * window.el (display-buffer-alist): In default value do not
14745 enforce searching a window on any but the selected frame.
14746 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
14747 (display-buffer-select-window): Remove function.
14748 (display-buffer-in-window): When a window on another frame gets
14749 reused, do not select it any more but just raise its frame if
14750 necessary (Bug#8851) and (Bug#8856).
14751 (display-buffer-normalize-options): Handle pop-up-frames related
14752 options more faithfully.
14753 (pop-to-buffer): Don't rely on `display-buffer' selecting the
14754 window if it is on another frame.
14755 (display-buffer-alist, display-buffer-default-specifiers):
14756 Don't make new frame unsplittable by default.
14757 (display-buffer-normalize-argument): Fix doc-string typo and use
14758 'same-frame-other-window instead of 'other-window when associating
14759 with display-buffer-macro-specifiers.
14760
14761 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
14762
14763 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
14764 New functions.
14765 (5x5-mode-map, 5x5-mode-menu): Bind them.
14766 (5x5-draw-grid): Tweak the solver's rendering.
14767
14768 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14769
14770 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
14771 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
14772
14773 2011-06-21 Drew Adams <drew.adams@oracle.com>
14774
14775 * menu-bar.el: Use function variable instead of switch-to-buffer.
14776 (menu-bar-select-buffer-function): New variable.
14777 (menu-bar-update-buffers): Use it (bug#8876).
14778
14779 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
14780
14781 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
14782 variable's status.
14783
14784 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
14785
14786 * x-dnd.el (x-dnd-version-from-flags)
14787 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
14788 and long as number (Bug#8899).
14789 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
14790
14791 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
14792
14793 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
14794 (completion-try-completion, completion-all-completions): Compute the
14795 metadata argument if it's missing; make it optional (bug#8795).
14796
14797 * wid-edit.el: Use lex-bind and move towards completion-at-point.
14798 (widget-complete): Use new :completion-function property.
14799 (widget-completions-at-point): New function.
14800 (default): Use :completion-function instead of :complete.
14801 (widget-default-completions): Rename from widget-default-complete;
14802 Rewrite.
14803 (widget-string-complete, widget-file-complete, widget-color-complete):
14804 Remove functions.
14805 (file, symbol, function, variable, coding-system, color):
14806 * international/mule-cmds.el (default-input-method, charset)
14807 (language-info-custom-alist):
14808 * cus-edit.el (face): Use new property :completions.
14809
14810 * progmodes/pascal.el (pascal-completions-at-point): New function.
14811 (pascal-mode): Use it.
14812 (pascal-mode-map): Use completion-at-point.
14813 (pascal-toggle-completions): Make obsolete.
14814 (pascal-complete-word, pascal-show-completions):
14815 * progmodes/octave-mod.el (octave-complete-symbol):
14816 Redefine as obsolete alias.
14817 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
14818 Signal absence of completion info for old Octave,
14819 (inferior-octave-complete): Redefine as obsolete alias.
14820 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
14821 (meta-completions-at-point): Rename from meta-complete-symbol and
14822 adapt it for use on completion-at-point-functions.
14823 (meta-common-mode): Use it.
14824 (meta-looking-at-backward, meta-match-buffer): Remove.
14825 (meta-complete-symbol): Redefine as obsolete alias.
14826 (meta-common-mode-map): Use completion-at-point.
14827 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
14828 (makefile-mode-map): Use completion-at-point.
14829 (makefile-completions-at-point): Rename from makefile-complete and
14830 adapt it for use on completion-at-point-functions.
14831 (makefile-mode): Use it.
14832 (makefile-complete): Redefine as obsolete alias.
14833
14834 2011-06-20 Deniz Dogan <deniz@dogan.se>
14835
14836 * net/rcirc.el: Delete trailing whitespaces once and for all.
14837
14838 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
14839
14840 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
14841
14842 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
14843
14844 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
14845
14846 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
14847
14848 2011-06-19 Martin Rudalics <rudalics@gmx.at>
14849
14850 * window.el (display-buffer-other-window-means-other-frame):
14851 Call display-buffer-normalize-alist.
14852 (display-buffer-normalize-specifiers-1): Rename to
14853 display-buffer-normalize-argument. New argument other-frame.
14854 Rewrite.
14855 (display-buffer-normalize-specifiers-2): Rename to
14856 display-buffer-normalize-options.
14857 (display-buffer-normalize-alist-1): New function.
14858 (display-buffer-normalize-specifiers-3): Rename to
14859 display-buffer-normalize-alist.
14860 Call display-buffer-normalize-alist-1.
14861 (display-buffer-normalize-options-inhibit): New variable.
14862 (display-buffer-normalize-specifiers): Rewrite calling
14863 display-buffer-normalize-alist,
14864 display-buffer-normalize-argument, and
14865 display-buffer-normalize-options. Don't call the latter if
14866 display-buffer-normalize-options-inhibit is non-nil.
14867 (frame-auto-delete): New option.
14868 (window-deletable-p): Use frame-auto-delete.
14869 (window-list-no-nils, window-state-ignored-parameters)
14870 (window-state-get-1, window-state-get, window-state-put-list)
14871 (window-state-put-1, window-state-put-2, window-state-put):
14872 New functions.
14873 (display-buffer-normalize-options): Move special-display-p group
14874 after pop-up-frame group (Bug#8851) and (Bug#8856).
14875
14876 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
14877
14878 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
14879 groups (Bug#8776).
14880 (rx-submatch-n): New function.
14881 (rx): Document it.
14882
14883 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
14884 (Bug#8768).
14885
14886 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
14887
14888 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
14889
14890 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
14891 anytime existing face settings are present (Bug#8889).
14892
14893 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
14894 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
14895 Remove unused argument.
14896
14897 2011-06-18 Martin Rudalics <rudalics@gmx.at>
14898
14899 * window.el (display-buffer-default-specifiers):
14900 Remove pop-up-frame. Add pop-up-window-min-height,
14901 pop-up-window-min-width, and another reuse-window specifier
14902 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
14903 (display-buffer-normalize-specifiers-2):
14904 Handle split-height-threshold and split-width-threshold also when
14905 pop-up-windows is unset. Add a reuse-window specifier for the
14906 case popping up a new window fails.
14907 (special-display-popup-frame): Remove double quoting.
14908 (display-buffer-normalize-specifiers-1): Fix thinko.
14909
14910 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
14911
14912 * shell.el (shell-completion-vars): Set pcomplete-termination-string
14913 according to comint-completion-addsuffix.
14914
14915 * pcomplete.el: Convert to lexical binding and fix bug#8819.
14916 (pcomplete-suffix-list): Mark as obsolete.
14917 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
14918 pcomplete-seen in the closure.
14919 (pcomplete-comint-setup): Setup completion-at-point as well.
14920 (pcomplete--entries): New function.
14921 (pcomplete--env-regexp): New var.
14922 (pcomplete-entries): Rewrite to work with partial-completion and
14923 without relying on pcomplete-suffix-list.
14924 (pcomplete-pare-list): Remove, unused.
14925
14926 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14927
14928 * window.el (display-buffer-alist): Set pop-up-window-min-height
14929 and pop-up-window-min-width in default value. Reported by
14930 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
14931 other-window-means-other-frame.
14932 (display-buffer-macro-specifiers): Comment out entry for
14933 other-window specifier.
14934 (display-buffer-other-window-means-other-frame): New function.
14935 (display-buffer-normalize-specifiers-1): New arguments
14936 buffer-name and label. Treat other-window case specially.
14937 (display-buffer-normalize-specifiers-2): Treat other-window case
14938 specially.
14939 (display-buffer-normalize-specifiers-3): New function.
14940 (display-buffer-normalize-specifiers):
14941 Call display-buffer-normalize-specifiers-3.
14942
14943 2011-06-17 Martin Rudalics <rudalics@gmx.at>
14944
14945 * window.el (same-window-p): Fix two typos introduced when
14946 adding with-no-warnings.
14947 (display-buffer-normalize-specifiers-1): Don't check
14948 pop-up-frames for 'unset initialization.
14949 (display-buffer-normalize-specifiers-2): Major rewrite using
14950 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
14951 (pop-up-frames, display-buffer-reuse-frames)
14952 (display-buffer-mark-dedicated): Don't initialize to 'unset.
14953 Suggested by David Engster <deng@randomsample.de>.
14954 (even-window-heights): Initialize to 'unset.
14955 (display-buffer-alist-set): Handle new 'unset initializations.
14956 (display-buffer-macro-specifiers): Don't pop up a new frame in the
14957 other window case.
14958
14959 2011-06-16 Martin Rudalics <rudalics@gmx.at>
14960
14961 * window.el (display-buffer-normalize-specifiers-1):
14962 Respect current value of pop-up-frames for most reasonable values of
14963 second argument of display-buffer (Bug#8865).
14964 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
14965 (switch-to-buffer-other-window-same-frame)
14966 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
14967 Adams (Bug#8875).
14968 (display-buffer): Don't check noninteractive when calling
14969 display-buffer-pop-up-frame.
14970 (display-buffer-pop-up-frame): Never pop up a frame in
14971 noninteractive mode (Bug#8857).
14972 (enlarge-window, shrink-window): Don't report an error when the
14973 window can't be resized as requested (Bug#8862).
14974
14975 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14976
14977 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
14978
14979 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
14980
14981 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
14982
14983 2011-06-15 Alan Mackenzie <acm@muc.de>
14984
14985 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
14986 for declarators, disable knr checking to speed up for normal files.
14987 2: Refactor, replacing a sequence of nested if forms by a cond form.
14988
14989 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
14990
14991 * net/network-stream.el (open-network-stream): Add the keyword
14992 :always-query-capabilities for the case where you want to force a
14993 `plain' network connection, but the protocol still requires the
14994 capabilitiy command (i.e., SMTP and EHLO).
14995
14996 * subr.el (process-live-p): Rename from `process-alive-p' for
14997 consistency with other `-live-p' functions.
14998
14999 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
15000
15001 * window.el (same-window-buffer-names, same-window-regexps)
15002 (special-display-frame-alist, special-display-popup-frame)
15003 (special-display-function, special-display-buffer-names)
15004 (special-display-regexps, pop-up-frame-alist)
15005 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
15006 (pop-up-windows, split-window-preferred-function)
15007 (split-height-threshold, split-width-threshold, even-window-heights)
15008 (display-buffer-mark-dedicated): Don't encourage the use of
15009 display-buffer-alist from Elisp code.
15010
15011 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
15012
15013 * progmodes/python.el (python-mode): Derive from prog-mode.
15014 * progmodes/ps-mode.el (ps-mode):
15015 * progmodes/mixal-mode.el (mixal-mode):
15016 * progmodes/cfengine.el (cfengine-mode):
15017 * progmodes/ld-script.el (ld-script-mode): Likewise.
15018
15019 2011-06-15 Martin Rudalics <rudalics@gmx.at>
15020
15021 * window.el (display-buffer-alist): Trim default value to avoid
15022 popping up a new frame (Bug#8857) or reusing an arbitrary window
15023 on another frame.
15024 (display-buffer): Do not fall back on popping up a new frame in
15025 batch mode (Bug#8857).
15026
15027 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
15028
15029 * cus-theme.el (describe-theme-1): Use custom-theme-p.
15030 (custom-theme-summary): New function.
15031 (customize-themes): Use it.
15032
15033 2011-06-13 Glenn Morris <rgm@gnu.org>
15034
15035 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
15036
15037 2011-06-13 Martin Rudalics <rudalics@gmx.at>
15038
15039 * help.el (help-window): Remove variable.
15040 (help-window-point-marker, temp-buffer-max-height)
15041 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
15042 (help-print-return-message): Don't set help-window.
15043 (resize-temp-buffer-window): Rewrite cod eand doc-string.
15044 (help-window-setup-finish): Remove.
15045 (help-window-display-message, help-window-setup)
15046 (with-help-window): Major rewrite based on new
15047 display-buffer-window variable.
15048
15049 * help-mode.el (help-mode-finish): Remove help-window related
15050 code.
15051
15052 * view.el (view-exits-all-viewing-windows): Remove reference to
15053 view-return-to-alist in doc-string.
15054 (view-return-to-alist): Make obsolete.
15055 (view-buffer): Call pop-to-buffer-same-window and remove
15056 undo-window code.
15057 (view-buffer-other-window): Call pop-to-buffer-other-window and
15058 simplify code. Ignore second argument.
15059 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
15060 simplify code. Ignore second argument.
15061 (view-return-to-alist-update): Make obsolete.
15062 (view-mode-enter): Rename second argument to QUIT-RESTORE.
15063 Rewrite using quit-restore window parameters.
15064 (view-mode-exit): Rename second argument to EXIT-ONLY.
15065 Rewrite using quit-restore-window.
15066 (View-exit, View-exit-and-edit, View-leave, View-quit)
15067 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
15068 appropriate arguments.
15069 (view-end-message): Use quit-restore window parameter.
15070
15071 * window.el (display-buffer-function): Rewrite doc-string.
15072 (display-buffer-window, display-buffer-alist): New variables.
15073 (display-buffer-split-specifiers)
15074 (display-buffer-side-specifiers)
15075 (display-buffer-macro-specifiers): New constants.
15076 (display-buffer-even-window-sizes, display-buffer-set-height)
15077 (display-buffer-set-width, display-buffer-select-window)
15078 (display-buffer-in-window, display-buffer-reuse-window)
15079 (display-buffer-split-window-1, display-buffer-split-window)
15080 (display-buffer-split-atom-window, display-buffer-pop-up-window)
15081 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
15082 (display-buffer-in-side-window, normalize-buffer-to-display)
15083 (display-buffer-normalize-specifiers-1)
15084 (display-buffer-normalize-specifiers-2)
15085 (display-buffer-normalize-specifiers, display-buffer-frame):
15086 New functions.
15087 (display-buffer): Major rewrite.
15088 (display-buffer-other-window, display-buffer-other-frame)
15089 (pop-to-buffer, switch-to-buffer-other-window)
15090 (switch-to-buffer-other-frame): Rewrite.
15091 (display-buffer-same-window, display-buffer-same-frame)
15092 (display-buffer-same-frame-other-window)
15093 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15094 (pop-to-buffer-other-window)
15095 (pop-to-buffer-same-frame-other-window)
15096 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
15097 (switch-to-buffer-other-window-same-frame): New functions.
15098 (same-window-p, special-display-p): Rewrite disabling warnings.
15099 Make obsolete.
15100 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15101 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
15102 Make obsolete
15103 (same-window-buffer-names, same-window-regexps)
15104 (special-display-frame-alist, special-display-popup-frame)
15105 (special-display-function, special-display-buffer-names)
15106 (special-display-regexps, pop-up-frame-alist)
15107 (pop-up-frame-function, split-window-preferred-function)
15108 (split-height-threshold, split-width-threshold)
15109 (even-window-heights): Make obsolete.
15110
15111 2011-06-12 Glenn Morris <rgm@gnu.org>
15112
15113 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
15114 Misc simplifications.
15115
15116 2011-06-12 Martin Rudalics <rudalics@gmx.at>
15117
15118 * window.el (window-safely-shrinkable-p): Restore function which
15119 was inadvertently removed in change from 2011-06-11. Declare as
15120 obsolete.
15121
15122 * calendar/calendar.el (calendar-generate-window):
15123 Use window-iso-combined-p instead of combination of one-window-p and
15124 window-safely-shrinkable-p.
15125
15126 2011-06-12 Glenn Morris <rgm@gnu.org>
15127
15128 * progmodes/fortran.el (fortran-mode-syntax-table):
15129 * progmodes/f90.el (f90-mode-syntax-table):
15130 Set % to punctuation. (Bug#8820)
15131 (f90-find-tag-default): Remove, no longer needed.
15132
15133 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
15134
15135 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
15136
15137 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
15138
15139 * image.el (image-animated-p): Return animation delay in seconds.
15140 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
15141 (image-animate-timeout): Remove DELAY argument. Don't assume
15142 every subimage has the same delay; get it from image-animated-p.
15143 (image-animate): Caller changed.
15144
15145 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
15146
15147 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
15148 to ignored backtrace functions.
15149
15150 2011-06-11 Glenn Morris <rgm@gnu.org>
15151
15152 * calendar/appt.el (appt-disp-window-function): Doc fix.
15153 (appt-check): Handle overlapping appointments. (Bug#8337)
15154
15155 2011-06-11 Martin Rudalics <rudalics@gmx.at>
15156
15157 * window.el (window-tree-1, window-tree): New functions, moving
15158 the latter to window.el.
15159 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
15160 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
15161 (bw-refresh-edges): Remove.
15162 (balance-windows-1, balance-windows-2): New functions.
15163 (balance-windows): Rewrite in terms of window tree functions,
15164 balance-windows-1 and balance-windows-2.
15165 (bw-adjust-window): Remove.
15166 (balance-windows-area-adjust): New function with functionality of
15167 bw-adjust-window but using resize-window.
15168 (set-window-text-height): Rewrite doc-string.
15169 Use normalize-live-window and resize-window.
15170 (enlarge-window-horizontally, shrink-window-horizontally):
15171 Rename argument to DELTA.
15172 (window-buffer-height): New function.
15173 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
15174 Rewrite using new window resize routines.
15175 (kill-buffer-and-window, mouse-autoselect-window-select):
15176 Use ignore-errors instead of condition-case.
15177 (quit-window): Call delete-frame instead of delete-windows-on
15178 for the only buffer on frame.
15179
15180 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15181
15182 * loadup.el (top-level): Load window before files for the sake
15183 of replace-buffer-in-windows.
15184
15185 * files.el (read-buffer-to-switch)
15186 (switch-to-buffer-other-window)
15187 (switch-to-buffer-other-frame, display-buffer-other-frame):
15188 Move to window.el.
15189
15190 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
15191 (previous-buffer): Move to window.el.
15192
15193 * bindings.el (unbury-buffer): Move to window.el.
15194
15195 * window.el (delete-other-windows-vertically): Move after
15196 definition of delete-other-windows.
15197 (other-window, delete-windows-on, replace-buffer-in-windows):
15198 Move here from window.c.
15199 (record-window-buffer, unrecord-window-buffer)
15200 (set-window-buffer-start-and-point, switch-to-prev-buffer)
15201 (switch-to-next-buffer): New functions.
15202 (get-next-valid-buffer, last-buffer, next-buffer): Move here
15203 from simple.el. Call switch-to-next-buffer.
15204 (previous-buffer): Move here from simple.el.
15205 Call switch-to-prev-buffer.
15206 (bury-buffer): Move here from buffer.c. Switch to previous
15207 buffer when window cannot be deleted.
15208 (unbury-buffer): Move here from bindings.el.
15209 (ctl-x-map): Move binding for other-window from window.c to
15210 here.
15211 (read-buffer-to-switch, switch-to-buffer-other-window)
15212 (switch-to-buffer-other-frame): Move here from files.el.
15213 (normalize-buffer-to-switch-to): New functions.
15214 (switch-to-buffer): Move here from buffer.c.
15215 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
15216
15217 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15218
15219 * window.el (window-min-height, window-min-width): Move here
15220 from window.c. Add defcustoms and rewrite doc-strings.
15221 (resize-mini-window, resize-window): New functions.
15222 (adjust-window-trailing-edge, enlarge-window, shrink-window):
15223 Move here from window.c.
15224 (maximize-window, minimize-window): New functions.
15225 (delete-window, delete-other-windows, split-window): Move here
15226 from window.c.
15227 (window-split-min-size): New function.
15228 (split-window-keep-point): Mention split-window-above-each-other
15229 instead of split-window-vertically.
15230 (split-window-above-each-other, split-window-vertically):
15231 Rename split-window-vertically to split-window-above-each-other
15232 and provide defalias for old definition.
15233 (split-window-side-by-side, split-window-horizontally):
15234 Rename split-window-horizontally to split-window-side-by-side
15235 and provide defalias for the old definition.
15236 (ctl-x-map): Move bindings for delete-window,
15237 delete-other-windows and enlarge-window here from window.c.
15238 Replace bindings for split-window-vertically and
15239 split-window-horizontally by bindings for
15240 split-window-above-each-other and split-window-side-by-side.
15241
15242 * cus-start.el (all): Remove entries for window-min-height and
15243 window-min-width. Add entries for window-splits and
15244 window-nest.
15245
15246 2011-06-09 Glenn Morris <rgm@gnu.org>
15247
15248 * calendar/appt.el (appt-mode-line): New function.
15249 (appt-check, appt-disp-window): Use it.
15250
15251 * files.el (hack-one-local-variable-eval-safep):
15252 Allow minor-modes with explicit +/-1 arguments.
15253
15254 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
15255
15256 * term/xterm.el (xterm): Add defgroup.
15257 (xterm-extra-capabilities): Add defcustom to supply known xterm
15258 capabilities, skip querying them, or query them (default).
15259 (terminal-init-xterm): Use it.
15260 (terminal-init-xterm-modify-other-keys): New function to set up
15261 modifyOtherKeys support to simplify `terminal-init-xterm'.
15262
15263 2011-06-09 Martin Rudalics <rudalics@gmx.at>
15264
15265 * window.el (resize-window-reset, resize-window-reset-1)
15266 (resize-subwindows-skip-p, resize-subwindows-normal)
15267 (resize-subwindows, resize-other-windows, resize-this-window)
15268 (resize-root-window, resize-root-window-vertically)
15269 (window-deletable-p, window-or-subwindow-p)
15270 (frame-root-window-p): New functions.
15271
15272 2011-06-09 Glenn Morris <rgm@gnu.org>
15273
15274 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
15275 (ange-ftp-get-files): Use it.
15276
15277 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
15278
15279 * mail/sendmail.el (mail-recover-1, mail-recover):
15280 * files.el (recover-file, recover-session):
15281 Handle dired-listing-switches not being just a single short option.
15282
15283 2011-06-09 Glenn Morris <rgm@gnu.org>
15284
15285 * calendar/appt.el (appt-display-message, appt-disp-window):
15286 Handle lists of appointments.
15287
15288 2011-06-08 Martin Rudalics <rudalics@gmx.at>
15289
15290 * window.el (one-window-p): Move down in code.
15291 Rewrite doc-string.
15292 (window-current-scroll-bars): Rewrite doc-string.
15293 Normalize live window argument.
15294 (walk-windows, get-window-with-predicate, count-windows):
15295 Rewrite doc-string. Use window-list-1.
15296 (window-in-direction-2, window-in-direction, get-mru-window):
15297 New functions.
15298
15299 2011-06-08 Reuben Thomas <rrt@sc3d.org>
15300
15301 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
15302 Doc fix (Bug#8713).
15303
15304 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
15305
15306 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
15307
15308 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
15309
15310 * loadhist.el (unload-feature-special-hooks):
15311 Add `comint-output-filter-functions'.
15312
15313 2011-06-08 Ivan Kanis <gnu@kanis.fr>
15314
15315 * calendar/appt.el (appt-check): Move some initializations into the let.
15316
15317 2011-06-08 Martin Rudalics <rudalics@gmx.at>
15318
15319 * window.el (window-height): Defalias to window-total-height.
15320 (window-width): Defalias to window-body-width.
15321
15322 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
15323
15324 * image-mode.el (image-toggle-animation): New command.
15325 (image-mode-map): Bind it to RET.
15326 (image-mode): Update message.
15327 (image-toggle-display-image): Avoid a spurious cache flush.
15328 (image-transform-rotation): Doc fix.
15329 (image-transform-properties): Return quickly in the normal case.
15330 (image-animate-loop): Rename from image-animate-max-time.
15331
15332 * image.el (image-animate-max-time): Move to image-mode.el.
15333 (create-animated-image): Remove unnecessary function.
15334 (image-animate): Rename from image-animate-start. New arg.
15335 (image-animate-stop): Remove; just use image-animate-timer.
15336 (image-animate-timer): Use car-safe.
15337 (image-animate-timeout): Rename argument.
15338
15339 2011-06-07 Martin Rudalics <rudalics@gmx.at>
15340
15341 * window.el (get-lru-window, get-largest-window): Move here from
15342 window.c. Rename first argument to ALL-FRAMES.
15343 Rephrase doc-strings.
15344 (get-buffer-window-list): Rewrite using window-list-1.
15345 Rephrase doc-string.
15346 (window-safe-min-height, window-safe-min-width): New constants.
15347 (window-size-ignore, window-min-size, window-min-size-1)
15348 (window-sizable, window-sizable-p, window-size-fixed-1)
15349 (window-size-fixed-p, window-min-delta-1, window-min-delta)
15350 (window-max-delta-1, window-max-delta, window-resizable)
15351 (window-resizable-p, window-total-height, window-total-width)
15352 (window-body-width): New functions.
15353 (window-full-height-p, window-full-width-p): Rewrite using
15354 window-total-size.
15355 (window-body-height): Rewrite using window-body-size.
15356
15357 2011-06-06 Martin Rudalics <rudalics@gmx.at>
15358
15359 * window.el (window-right, window-left, window-child)
15360 (window-child-count, window-last-child, window-any-p)
15361 (normalize-live-buffer, normalize-live-frame)
15362 (normalize-any-window, normalize-live-window)
15363 (window-iso-combination-p, window-iso-combined-p)
15364 (window-iso-combinations)
15365 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
15366 (windows-with-parameter, window-with-parameter)
15367 (window-atom-root, make-window-atom, window-atom-check-1)
15368 (window-atom-check, window-side-check, window-check):
15369 New functions.
15370 (ignore-window-parameters, window-sides, window-sides-vertical)
15371 (window-sides-slots): New variables.
15372 (window-size-fixed): Move down in code. Minor doc-string fix.
15373
15374 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
15375
15376 * comint.el (comint-dynamic-complete-as-filename)
15377 (comint-dynamic-complete-filename): Correctly call
15378 completion-in-region.
15379
15380 2011-06-05 Deniz Dogan <deniz@dogan.se>
15381
15382 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
15383 in last change.
15384
15385 2011-06-05 Deniz Dogan <deniz@dogan.se>
15386
15387 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
15388 (rcirc): Use it to prompt for encryption.
15389
15390 2011-06-05 Roland Winkler <winkler@gnu.org>
15391
15392 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
15393 (bibtex-search-entries): New command bound to C-c C-a.
15394 (bibtex-display-entries): New function.
15395
15396 2011-06-05 Roland Winkler <winkler@gnu.org>
15397
15398 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
15399 (bibtex-insert-kill): After yanking insert newline if necessary.
15400 (bibtex-initialize): Call bibtex-string-files-init only once.
15401 (bibtex-mode): Do not call easy-menu-add.
15402 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
15403 (bibtex-yank): Set arg properly if nil.
15404
15405 2011-06-05 Roland Winkler <winkler@gnu.org>
15406
15407 * textmodes/bibtex.el (bibtex-search-entry-globally):
15408 New variable.
15409 (bibtex-search-entry): Use it.
15410
15411 2011-06-05 Roland Winkler <winkler@gnu.org>
15412
15413 * textmodes/bibtex.el (bibtex-entry-format): New option
15414 sort-fields.
15415 (bibtex-format-entry, bibtex-reformat): Honor this option.
15416 (bibtex-parse-entry): Return fields in proper order.
15417
15418 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
15419
15420 * doc-view.el (doc-view-remove-if): Move computation of result out
15421 of `dolist' to silence misleading lexical-binding warning.
15422
15423 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
15424
15425 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
15426 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
15427
15428 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
15429
15430 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
15431 "SunOS 5.10".
15432
15433 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
15434
15435 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
15436 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
15437 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
15438 (tramp-parse-putty):
15439 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
15440 (tramp-completion-function-alist-ssh)
15441 (tramp-completion-function-alist-telnet)
15442 (tramp-completion-function-alist-su)
15443 (tramp-completion-function-alist-putty): Set `tramp-autoload'
15444 cookie.
15445
15446 * net/tramp-ftp.el:
15447 * net/tramp-sh.el:
15448 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
15449 load "tramp.el" `tramp-set-completion-function'.
15450
15451 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
15452
15453 * shell.el: Require and use pcomplete.
15454 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
15455 (shell-completion-vars): Set pcomplete-default-completion-function.
15456
15457 2011-06-04 Deniz Dogan <deniz@dogan.se>
15458
15459 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
15460 `memq' (Bug#8799).
15461
15462 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
15463
15464 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
15465
15466 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
15467
15468 * bs.el (bs--mark-unmark, bs--nth-wrapper):
15469 * mpc.el (mpc-select-extend, mpc-songpointer-context):
15470 * vc/log-view.el (log-view-beginning-of-defun):
15471 * vc/smerge-mode.el (smerge-apply-resolution-patch)
15472 (smerge-refine-forward, smerge-refine-chopup-region):
15473 Silence warning for unused `dotimes' counter variables.
15474
15475 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
15476
15477 * net/tramp.el (tramp-with-progress-reporter): Rename from
15478 with-progress-reporter. Use `declare'.
15479 * net/tramp-smb.el:
15480 * net/tramp-sh.el:
15481 * net/tramp-gvfs.el: Update all uses.
15482
15483 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
15484
15485 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
15486 buffer isn't killed before making it current.
15487
15488 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15489
15490 Silence various byte-compiler warnings.
15491 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
15492 `access-type' and new obsolescence format.
15493 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
15494 new format.
15495 (byte-compile-check-variable): New `access-type' argument.
15496 Only warn if the access-type is obsolete.
15497 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15498 (byte-compile-variable-set): Adjust callers.
15499 * help-fns.el (describe-variable): Adjust to new obsolescence format.
15500 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
15501 setting it as obsolete.
15502 * simple.el (minibuffer-completing-symbol):
15503 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
15504 access as obsolete.
15505 * minibuffer.el (minibuffer-completing-file-name): Don't make it
15506 obsolete yet.
15507 * international/quail.el (quail-mouse-choose-completion): Remove unused
15508 code referring to obsolete var.
15509 (quail-choose-completion-string): Remove.
15510 * server.el (server-clients-with, server-kill-buffer-query-function)
15511 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
15512 * proced.el (proced-send-signal):
15513 * emacs-lisp/lisp.el (lisp-complete-symbol):
15514 Replace completion-annotate-function with completion-extra-properties.
15515
15516 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15517
15518 * simple.el (goto-line): Use read-number.
15519 (overriding-map-is-bound): Remove.
15520 (saved-overriding-map): Change default.
15521 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
15522 Take the map as argument.
15523 (universal-argument, negative-argument, digit-argument): Use it.
15524 (restore-overriding-map): Adjust.
15525 (do-auto-fill): Use fill-forward-paragraph.
15526 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
15527
15528 * minibuffer.el (minibuffer-inactive-mode-map): New var.
15529 (minibuffer-inactive-mode): New major mode.
15530 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
15531 the *Messages* buffer" hack.
15532 (mouse-popup-menubar): Don't burp if the event is a normal key.
15533
15534 Miscellaneous tweaks.
15535 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
15536 lexical scoping as in subr.el's dolist and dotimes.
15537 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
15538 Silence compiler warning.
15539 * thingatpt.el (forward-whitespace): Trivial coding style fix.
15540 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
15541 * international/ccl.el (ccl-compile): Trivial simplification.
15542 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
15543 * emacs-lisp/testcover.el (testcover-end): Remove spurious
15544 `printflag' argument.
15545 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
15546 Purecopy the whole obsolescence data.
15547
15548 2011-06-01 Leo Liu <sdl.web@gmail.com>
15549
15550 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
15551 improve doc-string as suggested by Marco Pessotto
15552 <melmothx@gmail.com>.
15553 (rcirc-print): Fix last change.
15554
15555 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15556
15557 * minibuffer.el (complete-with-action): Return nil for the metadata and
15558 boundaries of non-functional tables.
15559 (completion-table-dynamic): Return nil for the metadata.
15560 (completion-table-with-terminator): Add default case, using
15561 complete-with-action.
15562 (completion--metadata): New function.
15563 (completion-all-sorted-completions, minibuffer-completion-help): Use it
15564 to try and avoid pathological performance problems.
15565 (completion--embedded-envvar-table): Return `category' metadata.
15566
15567 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
15568
15569 * subr.el (process-alive-p): New tiny convenience function.
15570
15571 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15572
15573 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
15574 content but also its previous major mode.
15575
15576 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
15577
15578 * emacs-lisp/debug.el (debug): Restore the previous content of the
15579 *Backtrace* buffer when we exit with C-M-c.
15580
15581 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15582
15583 * minibuffer.el: Add metadata method to completion tables.
15584 (completion-category-overrides): New defcustom.
15585 (completion-metadata, completion--field-metadata)
15586 (completion-metadata-get, completion--styles)
15587 (completion--cycle-threshold): New functions.
15588 (completion-try-completion, completion-all-completions):
15589 Add `metadata' argument to choose completion-styles.
15590 (completion--do-completion): Use metadata to choose cycling.
15591 (completion-all-sorted-completions): Use metadata for sorting.
15592 Remove :completion-cycle-penalty which is not needed any more.
15593 (completion--try-word-completion): Add `metadata' argument.
15594 (minibuffer-completion-help): Check metadata for annotation function
15595 and sorting.
15596 (completion-file-name-table): Return `category' metadata.
15597 (minibuffer-completing-file-name): Make obsolete.
15598 * simple.el (minibuffer-completing-symbol): Make obsolete.
15599 * icomplete.el (icomplete-completions): Pass new `metadata' param to
15600 completion-try-completion.
15601
15602 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
15603
15604 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
15605
15606 2011-05-30 Leo Liu <sdl.web@gmail.com>
15607
15608 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
15609 (rcirc-print): Decode all incoming messages (bug#8744).
15610 (rcirc-decode-coding-system): Allow value nil for automatic coding
15611 system detection.
15612
15613 2011-06-01 Glenn Morris <rgm@gnu.org>
15614
15615 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
15616
15617 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15618
15619 * image.el (image-animate-max-time): Allow nil and t values.
15620 Default to nil.
15621 (create-animated-image): Doc fix.
15622 (image-animate-start): Remove second arg; just use
15623 image-animate-max-time.
15624 (image-animate-timeout): Doc fix. Args changed.
15625
15626 * image-mode.el (image-toggle-display-image): Ensure that the
15627 image spec passed to the animate timer is the same object as in
15628 the buffer's display property (Bug#6981).
15629 (image-transform-properties): Doc fix.
15630
15631 * image.el (image-animate-max-time): Default to nil.
15632
15633 2011-05-29 Martin Rudalics <rudalics@gmx.at>
15634
15635 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
15636 entire buffer list (Bug#8184).
15637
15638 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15639
15640 * image.el (imagemagick-types-inhibit)
15641 (imagemagick-register-types): Doc fix.
15642
15643 2011-05-29 Deniz Dogan <deniz@dogan.se>
15644
15645 * net/rcirc.el (rcirc): Use the user's stored encryption method by
15646 default.
15647
15648 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15649
15650 * select.el: Don't perform clipboard-manager saving in hooks;
15651 leave the hooks empty.
15652
15653 2011-05-28 Leo Liu <sdl.web@gmail.com>
15654
15655 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
15656 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
15657 (occur-edit-mode): New major mode (Bug#8463).
15658 (occur-after-change-function): New function.
15659 (occur-engine): Give Occur tags a read-only property.
15660
15661 2011-05-28 Kevin Ryde <user42@zip.com.au>
15662
15663 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
15664
15665 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15666
15667 * bindings.el (help-echo): Make the initial non-indicator dash
15668 empty on graphical terminals (Bug#7295).
15669
15670 * files.el (auto-mode-alist): Move config rule after the
15671 in-stripping one (Bug#8547).
15672
15673 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
15674
15675 * startup.el (normal-splash-screen): Remove gratuitous mode-line
15676 setting (Bug#8740).
15677
15678 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
15679
15680 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
15681 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
15682 (Bug#8539).
15683
15684 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15685
15686 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
15687
15688 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
15689
15690 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
15691 (hs-hide-block-at-point, hs-find-block-beginning)
15692 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
15693 (Bug#8279).
15694
15695 2011-05-28 Glenn Morris <rgm@gnu.org>
15696
15697 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
15698
15699 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
15700
15701 * help-fns.el (describe-function-1): If the function is a derived
15702 major mode, print the parent mode.
15703
15704 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
15705 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
15706
15707 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
15708
15709 * minibuffer.el (completion--capf-wrapper): Check applicability before
15710 returning non-nil for non-exclusive completion data.
15711 * progmodes/etags.el (tags-completion-at-point-function):
15712 * info-look.el (info-lookup-completions-at-point): Mark as
15713 non-exclusive.
15714 (info-complete): Adjust accordingly.
15715
15716 * info-look.el: Convert to lexical-binding and completion-at-point.
15717 (info-lookup-completions-at-point): New function.
15718 (info-complete): Use it and completion-in-region.
15719
15720 2011-05-28 Drew Adams <drew.adams@oracle.com>
15721
15722 * isearch.el: Let M-e start with point at the first mismatched char.
15723 (isearch-fail-pos): New function.
15724 (isearch-edit-string): Use it.
15725
15726 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15727
15728 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15729
15730 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
15731
15732 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
15733 traversal functions for avl-trees.
15734 (avl-tree--stack): New struct.
15735 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
15736 (avl-tree-enter): Add optional `updatefun' arg.
15737 (avl-tree--do-enter): Add optional `updatefun' arg.
15738 Change return value.
15739 (avl-tree-delete): Add optional `test' and `nilflag' args.
15740 (avl-tree--do-delete): Add `test' and `nilflag' args.
15741 Change return value.
15742 (avl-tree-member): Add optional `nilflag'
15743 (avl-tree-member-p): New function.
15744 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
15745 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
15746 (avl-tree-stack-empty-p): New functions.
15747
15748 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
15749 avl-tree--del-balance1 and make it work both ways.
15750 (avl-tree--del-balance2): Remove.
15751 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
15752 make it work both ways.
15753 (avl-tree--enter-balance2): Remove.
15754 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
15755 New macros.
15756 (avl-tree--mapc, avl-tree-map): Add direction argument.
15757
15758 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
15759
15760 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
15761
15762 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
15763
15764 * select.el: Support clipboard managers with built-in function
15765 x-clipboard-manager-save, via delete-frame-functions and
15766 kill-emacs-hook.
15767 (xselect-convert-to-targets): Add MULTIPLE target to list.
15768 (xselect-convert-to-save-targets): New function.
15769
15770 2011-05-27 Kenichi Handa <handa@m17n.org>
15771
15772 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
15773 let-binding rfc2047-encode-encoded-words to nil.
15774
15775 2011-05-27 Glenn Morris <rgm@gnu.org>
15776
15777 * mail/emacsbug.el: Don't require url-util.
15778
15779 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
15780
15781 * files.el (set-auto-mode):
15782 Also respect mode: entries at the end of the file. (Bug#8586)
15783
15784 2011-05-26 Glenn Morris <rgm@gnu.org>
15785
15786 * files.el (hack-local-variables-prop-line, hack-local-variables):
15787 Downcase mode names, as seems to be traditional.
15788 (hack-local-variables, hack-local-variables-apply): Doc fixes.
15789
15790 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
15791 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
15792
15793 2011-05-25 Julien Danjou <julien@danjou.info>
15794
15795 * textmodes/rst.el (rst-define-level-faces): Do not define face
15796 symbol if it is already defined.
15797
15798 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
15799
15800 * play/5x5.el (5x5-new-game, 5x5-randomize):
15801 Reset 5x5-solver-output to nil when a new grid is cast.
15802 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
15803 these debugging traces, as defmacro breaks the compiled code.
15804
15805 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
15806
15807 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
15808
15809 2011-05-24 Leo Liu <sdl.web@gmail.com>
15810
15811 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
15812 (vc-bzr-sha1): Adapt.
15813
15814 * sha1.el: Remove. Function `sha1' is now builtin.
15815
15816 * bindings.el: Provide sha1 feature.
15817
15818 2011-05-24 Kenichi Handa <handa@m17n.org>
15819
15820 * mail/sendmail.el: Require `rfc2047'.
15821 (mail-insert-from-field): Do not perform RFC2047 encoding.
15822 (mail-encode-header): New function.
15823 (sendmail-send-it): Set buffer-file-coding-system of the work
15824 buffer to the return value of select-message-coding-system.
15825 Call mail-encode-header.
15826
15827 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
15828
15829 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
15830
15831 * mail/supercite.el (sc-default-cite-frame):
15832 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
15833
15834 2011-05-24 Glenn Morris <rgm@gnu.org>
15835
15836 * progmodes/python.el (brm-menu): Declare.
15837
15838 * emulation/viper.el (viper-set-hooks): Declare.
15839
15840 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
15841 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
15842 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
15843 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
15844 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
15845 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
15846
15847 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
15848
15849 Add an :exit-function for completion-at-point.
15850
15851 * minibuffer.el (completion--done): New fun.
15852 (completion--do-completion): Use it. New arg `expect-exact'.
15853 (minibuffer-complete, minibuffer-complete-word): Don't output message,
15854 since completion--do-completion does it for us now.
15855 (minibuffer-force-complete): Use completion--done and
15856 completion--replace. Handle sole-completion case with more care.
15857 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
15858 (completion-extra-properties): New var.
15859 (completion-annotate-function): Make obsolete.
15860 (minibuffer-completion-help): Adjust accordingly.
15861 Use completion-list-insert-choice-function.
15862 (completion-at-point, completion-help-at-point):
15863 Bind completion-extra-properties.
15864 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
15865 * simple.el (completion-list-insert-choice-function): New var.
15866 (completion-setup-function): Preserve it.
15867 (choose-completion): Pay attention to it, shuffle the code a bit.
15868 (choose-completion-string): New arg `insert-function'.
15869
15870 * textmodes/bibtex.el: Convert to lexical binding.
15871 (bibtex-mode-map): Use completion-at-point.
15872 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
15873 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
15874 (bibtex-complete): Define as obsolete alias.
15875 (bibtex-complete-internal): Remove.
15876 (bibtex-format-entry): Remove unused sub-group in regexp.
15877 * shell.el (shell--command-completion-data)
15878 (shell-environment-variable-completion):
15879 * pcomplete.el (pcomplete-completions-at-point):
15880 * comint.el (comint--complete-file-name-data): Use :exit-function
15881 instead of completion-table-with-terminator so it also works for
15882 choose-completion.
15883
15884 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15885
15886 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
15887
15888 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
15889 (bug#8710).
15890
15891 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
15892
15893 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
15894
15895 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
15896 customization variable and implement: If non-nil, auto-fill will
15897 be inhibited while on topic's header line.
15898
15899 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
15900
15901 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
15902 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
15903 always have a solution in grid size = 5 cases.
15904 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
15905 (5x5-solver-output, 5x5-log-buffer): New vars.
15906 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
15907 Make these variables buffer local to achieve 5x5 multi-session-ness.
15908 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
15909 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
15910 (5x5-solve-suggest): New funs.
15911 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
15912 randomize a grid so that we ensure that there is always a solution.
15913 (5x5-make-random-grid): Allow other movement than flipping.
15914
15915 2011-05-23 Kevin Ryde <user42@zip.com.au>
15916
15917 * emacs-lisp/advice.el (ad-read-advised-function):
15918 Use `function-called-at-point' as the default, if it has
15919 advice and passes PREDICATE.
15920
15921 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
15922
15923 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
15924 byte-compile-lambda if it's actually a lambda.
15925
15926 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
15927 Fix function quoting. Use backquote better.
15928
15929 2011-05-22 Yuanle Song <sylecn@gmail.com>
15930
15931 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
15932 matching (Bug#8516).
15933
15934 2011-01-22 Jari Aalto <jari.aalto@cante.net>
15935
15936 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
15937 different face (Bug#8178).
15938
15939 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15940
15941 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
15942 defface (Bug#8144).
15943
15944 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
15945
15946 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
15947 funcall as well (bug#8712). Warn when performing those conversions.
15948 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
15949
15950 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
15951
15952 2011-05-22 Glenn Morris <rgm@gnu.org>
15953
15954 * files.el (hack-local-variables-prop-line): Small simplifications.
15955 (hack-local-variables, hack-local-variables-prop-line):
15956 If MODE-ONLY, return the mode, rather than just `t'.
15957
15958 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
15959
15960 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
15961
15962 2011-05-21 Glenn Morris <rgm@gnu.org>
15963
15964 * files.el (hack-local-variables-prop-line, hack-local-variables):
15965 If only interested in the mode, don't bother doing the other stuff.
15966
15967 * image-mode.el (image-after-revert-hook):
15968 Redraw all frames on which the image is visible. (Bug#8567)
15969
15970 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
15971
15972 * wid-edit.el (widget-checklist-match-inline):
15973 Fix 2011-04-19 change. (Bug#8649)
15974
15975 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
15976
15977 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
15978 Also allow singlespace after single-letter capitals followed by a dot.
15979
15980 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
15981 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
15982
15983 2011-05-20 Nix <nix@esperi.org.uk>
15984
15985 * files.el (basic-save-buffer-2):
15986 Fix handling of break-hardlink-on-save with non-existent files.
15987
15988 2011-05-19 Deniz Dogan <deniz@dogan.se>
15989
15990 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
15991 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
15992
15993 2011-05-19 Glenn Morris <rgm@gnu.org>
15994
15995 * progmodes/f90.el (f90-type-def-re):
15996 Handle "type, bind(c)". (Bug#8691)
15997
15998 * emacs-lisp/autoload.el (batch-update-autoloads):
15999 Set autoload-excludes by parsing loadup.el rather than Makefiles.
16000
16001 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
16002
16003 * net/tramp.el (tramp-process-actions): Set "first-password-request"
16004 property for the correct connection in case of multihops.
16005
16006 2011-05-18 Glenn Morris <rgm@gnu.org>
16007
16008 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
16009 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
16010
16011 Rationalize calendar handling of day and month abbrev-arrays.
16012 * calendar/calendar.el (calendar-customized-p): New function.
16013 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
16014 (calendar-day-name-array, calendar-month-name-array): Doc fix.
16015 Add :set function.
16016 (calendar-abbrev-length, calendar-day-abbrev-array)
16017 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
16018 (calendar-day-abbrev-array, calendar-month-abbrev-array):
16019 Elements may no longer be nil.
16020 (calendar-day-name, calendar-month-name):
16021 Update for changed nature of abbrev arrays.
16022 * calendar/diary-lib.el (diary-name-pattern):
16023 Update for changed nature of abbrev arrays.
16024 (diary-mark-entries-1): Update calendar-make-alist calls.
16025 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
16026 * calendar/cal-html.el (cal-html-day-abbrev-array):
16027 Simply inherit from calendar-day-abbrev-array.
16028
16029 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
16030
16031 * progmodes/grep.el (grep-mode): Disable default
16032 compilation-directory-matcher setting (bug#8684).
16033
16034 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
16035
16036 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
16037 instead of "head" and "tail". There were problems with SunOS 5.9,
16038 and it performs better.
16039
16040 2011-05-17 Glenn Morris <rgm@gnu.org>
16041
16042 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
16043
16044 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
16045 Replace obsolete function.
16046
16047 * shell.el (pcomplete-parse-arguments-function): Declare.
16048
16049 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
16050 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
16051 (appt-check): Doc fixes.
16052 (appt-disp-window-function, appt-delete-window-function):
16053 Remove needless special case in custom :type.
16054 (appt-display-count): Default to 0, not nil.
16055 (appt-check): Reset appt-display-count to 0, not nil.
16056
16057 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
16058
16059 * progmodes/python.el (python-font-lock-keywords):
16060 Add the Python 3.X keyword "nonlocal" (bug#8639).
16061
16062 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
16063
16064 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
16065
16066 2011-05-16 Kevin Ryde <user42@zip.com.au>
16067
16068 * info-look.el (makefile-automake-mode): New setups, looking in
16069 automake manual, then makefile-mode.
16070 (makefile-mode): Remove automake manual, have it just in
16071 makefile-automake-mode since there's various things different or
16072 not relevant to plain make.
16073 (makefile-mode): Remove "other-modes" non-existent automake-mode,
16074 believe a hypothetical automake-mode would go to makefile-mode,
16075 not the other way around.
16076
16077 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
16078
16079 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
16080 hunk-end tags (Bug#8672).
16081
16082 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
16083 vc-annotate-show-diff-revision-at-line (Bug#8671).
16084
16085 2011-05-14 Glenn Morris <rgm@gnu.org>
16086
16087 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
16088 in the middle of an existing one with multiple authors. (Bug#8645)
16089 (change-log-font-lock-keywords): Also handle multiple author lines
16090 with leading tabs. (Bug#8644)
16091
16092 * calendar/appt.el (appt-check): Rename some local variables.
16093 Some simplification/reordering.
16094
16095 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
16096 (feedmail-sendmail-f-doesnt-sell-me-out)
16097 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
16098 (feedmail-debug-sit-for, feedmail-queue-express-hook)
16099 (feedmail-queue-runner-message-sender): Set :version.
16100 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
16101 (bbdb-dwim-net-address, vm-mail): Declare.
16102 (feedmail-binmail-gnulinuxish-template):
16103 Rename from feedmail-binmail-linuxish-template.
16104 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
16105 Use insert-buffer-substring.
16106
16107 2011-05-14 Bill Carpenter <bill@carpenter.org>
16108
16109 * mail/feedmail.el (feedmail-patch-level): Increase.
16110 (feedmail-debug): New custom group.
16111 (feedmail-confirm-outgoing-timeout)
16112 (feedmail-sendmail-f-doesnt-sell-me-out)
16113 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
16114 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
16115 (feedmail-sender-line, feedmail-from-line)
16116 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
16117 (feedmail-spray-this-address)
16118 (feedmail-spray-address-fiddle-plex-list)
16119 (feedmail-queue-use-send-time-for-date)
16120 (feedmail-queue-use-send-time-for-message-id)
16121 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
16122 (feedmail-buffer-eating-function):
16123 Doc fixes.
16124 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
16125 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
16126 (feedmail-message-action-scroll-down): New functions.
16127 (feedmail-queue-directory, feedmail-queue-draft-directory):
16128 Use expand-file-name.
16129 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
16130 Remove C-v help entry.
16131 (feedmail-queue-buffer-file-name): New variable.
16132 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
16133 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
16134 (feedmail-message-action-send-strong, feedmail-message-action-edit)
16135 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
16136 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
16137 (feedmail-message-action-toggle-spray)
16138 (feedmail-run-the-queue-no-prompts)
16139 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
16140 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
16141 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
16142 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
16143 (feedmail-envelope-deducer, feedmail-fiddle-from)
16144 (feedmail-fiddle-sender, feedmail-default-date-generator)
16145 (feedmail-fiddle-date, feedmail-fiddle-message-id)
16146 (feedmail-fiddle-spray-address)
16147 (feedmail-fiddle-list-of-spray-fiddle-plexes)
16148 (feedmail-fiddle-list-of-fiddle-plexes)
16149 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
16150 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
16151 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
16152 Change default. Doc fix.
16153 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
16154 (feedmail-binmail-linuxish-template): New constant.
16155 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
16156 Respect feedmail-sendmail-f-doesnt-sell-me-out.
16157 (feedmail-send-it): Add debug call.
16158 Use feedmail-queue-buffer-file-name, and
16159 feedmail-send-it-immediately-wrapper.
16160 (feedmail-message-action-send): Add debug call.
16161 Use feedmail-send-it-immediately-wrapper.
16162 (feedmail-queue-express-to-queue): Add debug call.
16163 Run feedmail-queue-express-hook.
16164 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
16165 (feedmail-message-action-help-blat):
16166 Rename from feedmail-queue-send-edit-prompt-help-first.
16167 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
16168 Check line-endings. Handle errors better.
16169 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
16170 Doc fix. Add debug call.
16171 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
16172 Use feedmail-queue-send-edit-prompt-inner.
16173 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
16174 (feedmail-queue-send-edit-prompt-inner): New function, extracted
16175 from feedmail-queue-send-edit-prompt.
16176 (feedmail-queue-send-edit-prompt-help)
16177 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
16178 (feedmail-tidy-up-slug): Add debug call.
16179 Respect feedmail-queue-slug-suspect-regexp.
16180 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
16181 (feedmail-dump-message-to-queue): Add debug call.
16182 Expand queue-directory.
16183 (feedmail-dump-message-to-queue): Change message slightly.
16184 Use feedmail-say-chatter.
16185 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
16186 (feedmail-send-it-immediately-wrapper): New function.
16187 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
16188 Insert empty string rather than newline. Handle full-frame case.
16189 Use catch/throw. Use feedmail-say-chatter.
16190 (feedmail-fiddle-from): Try mail-host-address.
16191 (feedmail-default-message-id-generator): Doc fix.
16192 Bind system-time-locale. Handle missing end.
16193 (feedmail-fiddle-x-mailer): Add debug call.
16194 Handle feedmail-x-mailer-line being nil.
16195 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
16196 Add debug call. Use buffer-substring-no-properties.
16197 (feedmail-say-debug, feedmail-say-chatter): New functions.
16198 (feedmail-find-eoh): Give an explicit error.
16199
16200 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
16201
16202 * net/newst-treeview.el (newsticker-treeview-face): Change default
16203 family from helvetica to sans.
16204 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
16205 etc/images/newsticker.
16206
16207 * net/newst-reader.el (newsticker-feed-face): Change default
16208 family from helvetica to sans.
16209
16210 * net/newst-plainview.el (newsticker-new-item-face)
16211 (newsticker-old-item-face, newsticker-immortal-item-face)
16212 (newsticker-obsolete-item-face, newsticker-date-face)
16213 (newsticker-statistics-face): Change default family from
16214 helvetica to sans.
16215 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
16216 etc/images/newsticker.
16217
16218 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
16219 (newsticker--process-auto-mark-filter-match): Tell user about
16220 auto-marking.
16221
16222 2011-05-13 Didier Verna <didier@xemacs.org>
16223
16224 Common Lisp indentation improvements on defmethod and lambda-lists.
16225 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
16226 TODO entries.
16227 (lisp-lambda-list-keyword-parameter-indentation)
16228 (lisp-lambda-list-keyword-parameter-alignment)
16229 (lisp-lambda-list-keyword-alignment): New customizable user options.
16230 (lisp-indent-defun-method): Improve docstring.
16231 (extended-loop-p): Fix comment.
16232 (lisp-indent-lambda-list-keywords-regexp): New variable.
16233 (lisp-indent-lambda-list): New function.
16234 (lisp-indent-259): Use it.
16235 (lisp-indent-defmethod): Support for more than one
16236 method qualifier and properly indent methods lambda-lists.
16237 (defgeneric): Provide a missing common-lisp-indent-function property.
16238
16239 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
16240
16241 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
16242 bounds for the empty string (bug#8667).
16243
16244 2011-05-13 Glenn Morris <rgm@gnu.org>
16245
16246 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
16247
16248 * mail/sendmail.el (sendmail-program): Try executable-find first.
16249 (sendmail-send-it): `sendmail-program' cannot be unbound.
16250
16251 * calendar/appt.el (appt-make-list): Simplify.
16252 (appt-time-msg-list): Doc fix.
16253 (appt-check): Change mode-line message at the time of the appointment.
16254
16255 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
16256
16257 * progmodes/ld-script.el (ld-script-keywords)
16258 (ld-script-builtins): Update keywords list.
16259
16260 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
16261
16262 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
16263
16264 * shell.el (shell-completion-vars): New function.
16265 (shell-mode):
16266 * simple.el (read-shell-command): Use it.
16267 (blink-matching-open): No need for " [...]" in minibuffer-message.
16268
16269 2011-05-12 Glenn Morris <rgm@gnu.org>
16270
16271 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
16272 (appt-check): Simplify.
16273
16274 2011-05-12 Eli Zaretskii <eliz@gnu.org>
16275
16276 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
16277 literal "/dev/null".
16278
16279 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
16280
16281 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
16282 Fix typo.
16283
16284 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
16285
16286 * progmodes/which-func.el (which-function):
16287 Use add-log-current-defun instead of add-log-current-defun-function,
16288 which might not be defined (Bug#8260).
16289
16290 2011-05-12 Glenn Morris <rgm@gnu.org>
16291
16292 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
16293 Let byte-compile-initial-macro-environment always take precedence.
16294
16295 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
16296
16297 * net/rcirc.el: Add support for SSL/TLS connections.
16298 (rcirc-server-alist): New field `encryption'.
16299 (rcirc): Check `encryption' settings.
16300 (rcirc-connect): New arg `encryption'. Use open-network-stream.
16301 Merge make-local-variable into `set'.
16302 (rcirc--connection-open-p): New function.
16303 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
16304 the process is not a network process (e.g. running gnutls-cli).
16305 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
16306 Make rcirc-(en|de)code-coding-system local here.
16307 (rcirc-mode): Merge make-local-variable into `set'.
16308 (rcirc-parent-buffer): Make permanent buffer-local.
16309 (rcirc-multiline-minor-mode): Don't do it here.
16310 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
16311 there's no server buffer.
16312
16313 2011-05-11 Glenn Morris <rgm@gnu.org>
16314
16315 * newcomment.el (comment-kill): Prefix "unused" local.
16316
16317 * term/w32console.el (get-screen-color): Declare.
16318
16319 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
16320 Handle symbol elements of byte-compile-initial-macro-environment.
16321
16322 2011-05-10 Leo Liu <sdl.web@gmail.com>
16323
16324 * bookmark.el (bookmark-bmenu-mode-map):
16325 Bind bookmark-bmenu-search to `/'.
16326
16327 * mail/footnote.el: Convert to utf-8 encoding.
16328 (footnote-unicode-string, footnote-unicode-regexp): New variable.
16329 (Footnote-unicode): New function.
16330 (footnote-style-alist): Add unicode style to the list.
16331 (footnote-style): Doc fix.
16332
16333 2011-05-10 Jim Meyering <meyering@redhat.com>
16334
16335 Fix doubled-word typos.
16336 * international/quail.el (quail-insert-kbd-layout): and and -> and
16337 * kermit.el: and and -> and
16338 * net/ldap.el (ldap-search-internal): to to -> to
16339 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
16340 * progmodes/js.el (js-mode): and and -> and
16341 * textmodes/artist.el (artist-move-to-xy): at at -> at
16342 (artist-draw-region-trim-line-endings): if if -> if
16343 And Safetyc -> Safety.
16344 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
16345
16346 2011-05-10 Glenn Morris <rgm@gnu.org>
16347 Stefan Monnier <monnier@iro.umontreal.ca>
16348
16349 * files.el (hack-one-local-variable-eval-safep):
16350 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
16351
16352 2011-05-10 Glenn Morris <rgm@gnu.org>
16353
16354 * calendar/diary-lib.el (diary-list-entries-hook)
16355 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
16356 (diary-nongregorian-marking-hook, diary-list-entries)
16357 (diary-include-other-diary-files, diary-mark-entries)
16358 (diary-mark-included-diary-files): Doc fixes.
16359
16360 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
16361
16362 * misc.el: Require tabulated-list.el during compilation.
16363
16364 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
16365
16366 * progmodes/compile.el (compilation-start):
16367 Run compilation-filter-hook for the async case too.
16368 (compilation-filter-hook): Doc fix.
16369
16370 2011-05-09 Deniz Dogan <deniz@dogan.se>
16371
16372 * wdired.el: Remove outdated installation comment. Fix usage
16373 comment.
16374
16375 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
16376
16377 * misc.el: Implement new command `list-dynamic-libraries'.
16378 (list-dynamic-libraries--loaded-only-p): New variable.
16379 (list-dynamic-libraries--refresh): New function.
16380 (list-dynamic-libraries): New command.
16381
16382 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
16383
16384 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16385 Fix the ant regexp to handle end-line and end-column info from jikes.
16386 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
16387 higher priority to avoid clobbering by gnu.
16388
16389 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
16390
16391 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
16392 if the face has existing theme settings (Bug#8454).
16393
16394 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
16395
16396 * progmodes/perl-mode.el (perl-imenu-generic-expression):
16397 Only match variables declared via `my' or `our' (Bug#8261).
16398
16399 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
16400 special file names `.' and `..' (Bug#8259).
16401
16402 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
16403
16404 * progmodes/grep.el (grep-mode-font-lock-keywords):
16405 Remove buffer-changing entries.
16406 (grep-filter): New function.
16407 (grep-mode): Add it to compilation-filter-hook.
16408
16409 * progmodes/compile.el (compilation-filter-hook)
16410 (compilation-filter-start): New defvars.
16411 (compilation-filter): Call compilation-filter-hook prior to
16412 updating the process mark.
16413
16414 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
16415
16416 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
16417
16418 2011-05-07 Eli Zaretskii <eliz@gnu.org>
16419
16420 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
16421 mailclient-send-it even if window-system is nil. (Bug#8595)
16422
16423 * term/w32console.el (terminal-init-w32console):
16424 Call get-screen-color and use its output to set the frame
16425 background-mode. (Bug#8597)
16426
16427 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
16428
16429 Make bytecomp.el understand that defmethod defines funs (bug#8631).
16430 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
16431 New functions.
16432 (defgeneric, eieio--defmethod): Use them.
16433 (eieio-defgeneric): Remove.
16434 (defmethod): Call defgeneric in a way visible to the byte-compiler.
16435
16436 2011-05-07 Glenn Morris <rgm@gnu.org>
16437
16438 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
16439 Use let rather than let*.
16440 (timeclock-find-discrep): Remove unused local.
16441
16442 * calendar/diary-lib.el (diary-comment-start): Doc fix.
16443
16444 * calendar/appt.el (appt-time-msg-list): Doc fix.
16445
16446 2011-05-06 Noah Friedman <friedman@splode.com>
16447
16448 * apropos.el (apropos-print-doc): Only use
16449 emacs-lisp-docstring-fill-column when it is bound to an integer,
16450 per that variable's documentation.
16451
16452 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
16453
16454 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
16455 and warnings are not silently discarded (e.g. use -d instead of -P).
16456
16457 2011-05-06 Glenn Morris <rgm@gnu.org>
16458
16459 * calendar/appt.el (appt-message-warning-time): Doc fix.
16460 (appt-warning-time-regexp): New option.
16461 (appt-make-list): Respect appt-message-warning-time.
16462
16463 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
16464 New options.
16465 (diary-add-to-list): Strip comments from the displayed string.
16466 (diary-mode): Set comment-start and comment-end.
16467
16468 * vc/diff-mode.el (smerge-refine-subst): Declare.
16469 (diff-refine-hunk): Don't require smerge-mode when compiling.
16470
16471 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16472
16473 * simple.el (list-processes): Return nil as the docstring says.
16474
16475 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
16476
16477 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
16478 to "".
16479 (ange-ftp-write-region, ange-ftp-insert-file-contents)
16480 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
16481 determining of binary transfer. (Bug#7383)
16482
16483 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
16484
16485 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16486 Fix port computation bug. (Bug#8618)
16487
16488 2011-05-05 Glenn Morris <rgm@gnu.org>
16489
16490 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
16491
16492 * simple.el (shell-dynamic-complete-functions)
16493 (comint-dynamic-complete-functions): Declare.
16494
16495 * net/network-stream.el (gnutls-negotiate):
16496 * simple.el (tabulated-list-print): Fix declarations.
16497
16498 * progmodes/gud.el (syntax-symbol, syntax-point):
16499 Remove unnecessary and incorrect declarations.
16500
16501 * emacs-lisp/check-declare.el (check-declare-scan):
16502 Handle byte-compile-initial-macro-environment in bytecomp.el
16503
16504 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
16505
16506 Fix earlier half-done eieio-defmethod change (bug#8338).
16507 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
16508 Streamline and change calling convention.
16509 (defmethod): Adjust accordingly and simplify.
16510 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
16511 new eieio--defmethod.
16512 (slot-boundp): Minor CSE simplification.
16513
16514 2011-05-05 Milan Zamazal <pdm@zamazal.org>
16515
16516 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
16517 (glasses-make-readable): Use glasses-separate-capital-groups.
16518
16519 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
16520
16521 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
16522 (warning-series): Doc fix.
16523 (display-warning): Don't try to create the buffer if we just found it.
16524
16525 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
16526
16527 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
16528 (autoload-find-generated-file): New function.
16529 (generate-file-autoloads): Bind generated-autoload-file to
16530 buffer-file-name.
16531 (update-file-autoloads, update-directory-autoloads):
16532 Use autoload-find-generated-file. If called interactively, prompt for
16533 output file (Bug#7989).
16534 (batch-update-autoloads): Doc fix.
16535
16536 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16537
16538 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
16539
16540 2011-05-04 Glenn Morris <rgm@gnu.org>
16541
16542 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
16543 function, so it follows changes in calendar-date-style.
16544 (diary-fancy-date-matcher): New function.
16545 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
16546 (diary-fancy-font-lock-fontify-region-function):
16547 Use diary-fancy-date-pattern as a function.
16548
16549 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
16550 non-numbers for `year' etc pseudo-variables. (Bug#8583)
16551
16552 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
16553
16554 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
16555 instead of positional arguments. Allow :keylist and :crlfiles
16556 arguments.
16557 (open-gnutls-stream): Call it.
16558
16559 * net/network-stream.el (network-stream-open-starttls): Adjust to
16560 call `gnutls-negotiate' with :process and :hostname arguments.
16561
16562 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
16563
16564 * minibuffer.el (completion--message): New function.
16565 (completion--do-completion, minibuffer-complete)
16566 (minibuffer-force-complete, minibuffer-complete-word): Use it.
16567 (completion--do-completion): Don't ignore completion-auto-help when in
16568 icomplete-mode.
16569
16570 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
16571 internal encoding (e.g. tibetan zero is not whitespace).
16572 (global-whitespace-mode): Prefer save-current-buffer.
16573 (whitespace-trailing-regexp): Remove useless save-match-data.
16574 (whitespace-empty-at-bob-regexp): Minor simplification.
16575
16576 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
16577
16578 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
16579
16580 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16581
16582 * textmodes/ispell.el (ispell-add-per-file-word-list):
16583 Use `concat' to create string for insertion.
16584
16585 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
16586
16587 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
16588 Avoid open-line which runs post-self-insert-hook.
16589 (bibtex-fill-entry): Remove unused `end' var.
16590
16591 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
16592
16593 * textmodes/ispell.el (ispell-add-per-file-word-list):
16594 Protect against `nil' value of `comment-start' (Bug#8579).
16595
16596 2011-05-03 Leo Liu <sdl.web@gmail.com>
16597
16598 * isearch.el (isearch-yank-pop): New command.
16599 (isearch-mode-map): Bind it to `M-y'.
16600 (isearch-forward): Mention it.
16601
16602 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
16603
16604 * simple.el (minibuffer-complete-shell-command): Remove.
16605 (minibuffer-local-shell-command-map): Use completion-at-point.
16606 (read-shell-command): Setup completion vars here instead.
16607 (read-expression-map): Bind TAB to symbol completion.
16608
16609 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
16610 error directly rather via storing it into `results'.
16611
16612 2011-05-02 Leo Liu <sdl.web@gmail.com>
16613
16614 * vc/diff.el: Fix description.
16615
16616 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16617
16618 * server.el (server-eval-at): New function.
16619
16620 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16621
16622 * net/network-stream.el (open-network-stream): Take a :nowait
16623 parameter and pass it on to `make-network-process'.
16624 (network-stream-open-plain): Ditto.
16625
16626 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
16627
16628 * faces.el (face-spec-set-match-display): Don't match toolkit
16629 options on terminal frames.
16630
16631 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
16632
16633 * progmodes/pascal.el: Use lexical binding.
16634 (pascal-mode-map): Remove author preferences.
16635
16636 * pcomplete.el (pcomplete-std-complete): Don't abuse
16637 completion-at-point.
16638
16639 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16640
16641 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
16642 removing code that has been dead since 1991 or so.
16643
16644 * startup.el (command-line): When warning about "_emacs", use a
16645 delayed warning to allow the user to filter it out.
16646
16647 2011-04-28 Deniz Dogan <deniz@dogan.se>
16648
16649 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
16650 user has not joined.
16651
16652 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16653
16654 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
16655 aren't any completions at point.
16656
16657 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16658
16659 * subr.el (display-delayed-warnings): New function.
16660 (delayed-warnings-hook): New variable.
16661
16662 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
16663
16664 * minibuffer.el (completion-at-point, completion-help-at-point):
16665 Don't presume that a given completion-at-point-function will always
16666 use the same calling convention.
16667
16668 * pcomplete.el (pcomplete-completions-at-point):
16669 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
16670 pcomplete-seen is non-nil.
16671 (pcomplete-comint-setup): Also recognize the new comint/shell
16672 completion functions.
16673 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
16674 pcomplete-seen is non-nil.
16675
16676 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
16677
16678 * calendar/icalendar.el (diary-lib): Add require statement.
16679 (icalendar--create-uid): Read out a uid from a text-property on
16680 the first character in the entry. This allows for code to add its
16681 own uid to the entry.
16682 (icalendar--convert-float-to-ical): Add export of
16683 `diary-float'-entries save for those with the optional DAY
16684 argument.
16685
16686 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
16687
16688 * subr.el (shell-quote-argument): Use alternate escaping strategy
16689 when we spot a variable reference in a string.
16690
16691 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16692
16693 * cus-start.el (all): Define customization for debug-on-event.
16694
16695 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16696
16697 * subr.el (shell-quote-argument): Escape correctly under Windows.
16698
16699 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16700
16701 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
16702
16703 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
16704
16705 * net/tramp.el (tramp-process-actions): Add POS argument.
16706 Delete region between POS and (pos).
16707
16708 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16709 Use `nil' position in `tramp-process-actions' call.
16710 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
16711
16712 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
16713 position in `tramp-process-actions' call.
16714
16715 * net/trampver.el: Update release number.
16716
16717 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
16718
16719 * custom.el (defcustom): Obey lexical-binding.
16720
16721 Fix octave-inf completion problems reported by Alexander Klimov.
16722 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
16723 Inherit from octave-mode-syntax-table.
16724 (inferior-octave-mode): Set info-lookup-mode.
16725 (inferior-octave-completion-at-point): New function.
16726 (inferior-octave-complete): Use it and completion-in-region.
16727 (inferior-octave-dynamic-complete-functions): Use it as well, and use
16728 comint-filename-completion.
16729 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
16730 symbol elements which shouldn't be word elements.
16731 (octave-font-lock-keywords, octave-beginning-of-defun)
16732 (octave-function-header-regexp): Adjust regexps accordingly.
16733 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
16734
16735 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
16736
16737 * net/gnutls.el (gnutls-errorp): Declare before first use.
16738
16739 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
16740
16741 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
16742 verify-error, and verify-hostname-error parameters. Check whether
16743 default trustfile exists before going to use it. Add missing
16744 argument to gnutls-message-maybe call. Return value.
16745 Reported by Claudio Bley <claudio.bley@gmail.com>.
16746 (open-gnutls-stream): Add usage example.
16747
16748 * net/network-stream.el (network-stream-open-starttls): Give host
16749 parameter to `gnutls-negotiate'.
16750 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
16751 * subr.el (shell-quote-argument): Escape correctly under Windows.
16752
16753 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
16754
16755 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
16756 Use correct match group (bug#8438).
16757
16758 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16759
16760 * emacs-lisp/package.el (package-built-in-p): Fix typo.
16761 (package-menu--generate): New arg specifying packages to show.
16762 (package-menu-refresh, package-menu-execute, list-packages):
16763 Callers changed.
16764 (package-show-package-list): New function, replacing deleted
16765 package--list-packages (renamed because it is non-internal).
16766
16767 * finder.el (finder-list-matches): Use package-show-package-list
16768 instead of deleted package--list-packages.
16769
16770 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
16771 Based on a previous implementation by Juanma Barranquero (Bug#8366).
16772 (vc-annotate-mode-map): Bind it to RET.
16773
16774 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
16775
16776 * progmodes/etags.el (next-file): Don't use set-buffer to change
16777 buffers (Bug#8478).
16778
16779 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
16780
16781 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
16782
16783 * apropos.el (apropos-label-face): Avoid variable-pitch face.
16784 (apropos-accumulator): Doc fix.
16785 (apropos-function, apropos-macro, apropos-command)
16786 (apropos-variable, apropos-face, apropos-group, apropos-widget)
16787 (apropos-plist): Add face property.
16788 (apropos-symbols-internal): Fix indentation.
16789 (apropos-print): Simplify help, and recognize apropos-multi-type.
16790 (apropos-print-doc): Use button-type-get to extract the button's
16791 face property. Fill docstring (Bug#8352).
16792
16793 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
16794
16795 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
16796
16797 * play/mpuz.el (mpuz-silent): Doc fix.
16798 (mpuz-mode-map): Use mapc.
16799 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
16800 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
16801 Fix typos in docstrings.
16802
16803 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
16804 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
16805
16806 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
16807
16808 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
16809
16810 * minibuffer.el (completion--do-completion): Avoid the "Next char
16811 not unique" prompt if icomplete-mode is enabled (Bug#5849).
16812
16813 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
16814 mouse-2 into unread-command-events, it is interpreted correctly.
16815
16816 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
16817 (image-toggle-display): Doc fix.
16818
16819 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
16820
16821 * textmodes/page.el (what-page): Use line-number-at-pos to
16822 calculate line number (Bug#6825).
16823
16824 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16825
16826 * eshell/esh-mode.el (find-tag-interactive): Declare function.
16827 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
16828 Pass argument NO-DEFAULT to `find-tag-interactive'.
16829
16830 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
16831
16832 Lexical-binding cleanup.
16833
16834 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
16835 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
16836 * progmodes/ada-prj.el (ada-prj-initialize-values)
16837 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
16838 (ada-prj-show-value):
16839 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
16840 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
16841 (antlr-invalidate-context-cache, antlr-options-menu-filter)
16842 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
16843 * progmodes/bug-reference.el (bug-reference-push-button):
16844 * progmodes/fortran.el (fortran-line-length):
16845 * progmodes/glasses.el (glasses-change):
16846 * progmodes/octave-mod.el (octave-fill-paragraph):
16847 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
16848 (python-pdbtrack-grub-for-buffer, python-sentinel):
16849 * progmodes/sql.el (sql-save-connection):
16850 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
16851 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
16852 Mark unused parameters.
16853
16854 * progmodes/compile.el (compilation--flush-directory-cache)
16855 (compilation--flush-parse, compile-internal): Mark unused parameters.
16856 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
16857 (compilation-next-error-function): Remove unused variable `timestamp'.
16858
16859 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
16860 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
16861
16862 * progmodes/dcl-mode.el (dcl-end-of-command):
16863 Remove unused variable `start'.
16864 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
16865 (dcl-option-value-basic, dcl-option-value-offset)
16866 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
16867 Mark unused parameters.
16868 (dcl-save-local-variable): Remove unused variable `val'.
16869 (mode): Declare.
16870
16871 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
16872 Mark unused parameters.
16873 (delphi-ignore-changes): Move before first use.
16874 (delphi-charset-token-at): Remove unused variable `start'.
16875 (delphi-else-start): Remove unused variable `if-count'.
16876 (delphi-comment-block-start, delphi-comment-block-end):
16877 Remove unused variable `kind'.
16878 (delphi-indent-line): Remove unused variable `new-point'.
16879
16880 * progmodes/ebrowse.el (ebrowse-files-list)
16881 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
16882 Mark unused parameters. Don't quote `lambda'.
16883 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
16884 Don't quote `lambda'.
16885 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
16886 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
16887 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
16888 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
16889 Use `ignore-errors'.
16890 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
16891 (ebrowse-view/find-file-and-search-pattern)
16892 (ebrowse-view/find-member-declaration/definition):
16893 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
16894 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
16895 Rename parameter PREFIX-ARG to PREFIX.
16896 (ebrowse-tags-read-name): Remove unused variables `start' and
16897 `member-info'.
16898 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
16899 to `tags-file'.
16900
16901 * progmodes/etags.el (local-find-tag-hook): Declare.
16902 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
16903 Mark unused parameters.
16904
16905 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
16906 (executable-interpret): Mark unused parameter.
16907
16908 * progmodes/flymake.el (flymake-process-sentinel)
16909 (flymake-after-change-function)
16910 (flymake-create-temp-with-folder-structure)
16911 (flymake-get-include-dirs-dot): Mark unused parameters.
16912 (flymake-safe-delete-directory): Remove unused variable `err'.
16913
16914 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
16915 (speedbar-timer-fn, speedbar-line-text)
16916 (speedbar-change-expand-button-char, speedbar-delete-subblock)
16917 (speedbar-center-buffer-smartly): Declare functions.
16918 (gdb-find-watch-expression): Remove unused variable `array'.
16919 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
16920 (gdb-starting): Mark unused parameters.
16921 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
16922 (gdb-table-string): Remove unused variable `res'.
16923 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
16924 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
16925 (gdb-display-buffer): Remove unused variable `cur-size'.
16926
16927 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
16928 allow lexical-binding compilation.
16929 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
16930 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
16931 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
16932 Mark unused parameters.
16933 (gud-gdb-marker-filter): Remove unused variable `match'.
16934 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
16935 lambda expressions and funcall them, instead of using `fset'.
16936
16937 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
16938 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
16939
16940 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
16941 variable `header-beg'; use `let'.
16942
16943 * progmodes/icon.el (indent-icon-exp): Remove unused variables
16944 `restart', `last-sexp' and `at-do'.
16945
16946 * progmodes/js.el (js--debug): Mark unused parameter.
16947 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
16948 (js--splice-into-items): Remove unused variable `item'.
16949 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
16950
16951 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
16952 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
16953 (makefile-complete): Remove unused variable `try'.
16954 (makefile-fill-paragraph, makefile-match-function-end):
16955 Mark unused parameters.
16956
16957 * progmodes/octave-inf.el (inferior-octave-complete):
16958 Remove unused variable `proc'.
16959 (inferior-octave-output-digest): Mark unused parameter.
16960
16961 * progmodes/perl-mode.el (perl-calculate-indent):
16962 Remove unused variable `err'.
16963
16964 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
16965 (prolog-indent-line): Mark unused parameters.
16966 (prolog-indent-line): Remove unused variable `beg'.
16967
16968 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
16969 (reporter-dont-compact-list): Declare.
16970
16971 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
16972 Remove unused variable `char'.
16973 (sh-debug): Mark unused parameter.
16974 (sh-get-indent-info): Remove unused variable `start'.
16975 (sh-calculate-indent): Remove unused variable `var'.
16976
16977 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
16978 (simula-electric-keyword): Remove unused variable `null'.
16979 (simula-search-backward, simula-search-forward): Remove unused
16980 variables `begin' and `end'.
16981
16982 * progmodes/vera-mode.el (vera-guess-basic-syntax):
16983 Remove unused variable `pos'.
16984 (vera-electric-tab, vera-comment-uncomment-region):
16985 Mark unused parameters.
16986 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
16987
16988 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
16989
16990 * emacs-lisp/package.el (package--builtins, package-alist)
16991 (package-load-descriptor, package-built-in-p, package-activate)
16992 (define-package, package-installed-p)
16993 (package-compute-transaction, package-buffer-info)
16994 (package--push): Doc fix. Distinguish more clearly between
16995 version strings and version lists.
16996
16997 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
16998
16999 Lexical-binding cleanup.
17000
17001 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
17002 (5x5-make-mutate-best):
17003 * play/fortune.el (fortune-in-buffer):
17004 * play/gomoku.el (gomoku-init-display):
17005 * play/solitaire.el (solitaire, solitaire-do-check):
17006 * play/tetris.el (tetris-default-update-speed-function):
17007 Mark unused parameters.
17008
17009 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
17010 (bubbles--shift): Remove unused variable `char-org'.
17011 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
17012 (bubbles--show-images): Remove unused variable `char'.
17013
17014 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
17015 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
17016 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
17017 (decipher-analyze-buffer): Use ?\s.
17018 (decipher-make-checkpoint): Remove unused variable `mapping'.
17019
17020 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
17021
17022 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
17023 Remove unused variable `result'; use `let'.
17024
17025 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
17026 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
17027 (gametree-children-shown-p, gametree-compute-reduced-score):
17028 Use `ignore-errors'.
17029
17030 * play/handwrite.el (ps-lpr-switches): Declare.
17031 (handwrite): Remove unused variables `pmin' and `lastp'.
17032
17033 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
17034
17035 * play/landmark.el (landmark-init-display)
17036 (landmark-update-naught-weights): Mark unused parameters.
17037 (landmark-y): Remove unused variable `noise'. Simplify.
17038 (landmark-human-plays): Remove unused variable `score'.
17039
17040 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
17041 (mpuz-try-proposal): Remove unused variable `game'.
17042
17043 * play/zone.el (life-patterns): Declare.
17044
17045 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
17046
17047 * vc/vc.el (ediff-vc-internal): Declare function.
17048
17049 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
17050
17051 * shell.el: Use lexical-binding and std completion UI.
17052 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
17053 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
17054 comint-preoutput-filter-functions rather than on
17055 comint-output-filter-functions.
17056 (shell-command-completion, shell--command-completion-data)
17057 (shell-filename-completion, shell-environment-variable-completion)
17058 (shell-c-a-p-replace-by-expanded-directory): New functions.
17059 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
17060 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
17061 (shell-dynamic-complete-environment-variable): Use them.
17062 (shell-dynamic-complete-as-environment-variable)
17063 (shell-dynamic-complete-as-command): Remove.
17064 (shell-match-partial-variable): Match past point.
17065 * comint.el: Clean up use of completion-at-point-functions.
17066 (comint-completion-at-point): New function.
17067 (comint-mode): Use it completion-at-point-functions.
17068 (comint-dynamic-complete): Make it obsolete.
17069 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
17070 (comint-c-a-p-replace-by-expanded-history): New function.
17071 (comint-dynamic-complete-functions)
17072 (comint-replace-by-expanded-history): Use it.
17073 * minibuffer.el (completion-table-with-terminator): Allow dynamic
17074 termination strings. Try harder to avoid second try-completion.
17075 (completion-in-region-mode-map): Disable bindings that don't work yet.
17076
17077 * comint.el: Use lexical-binding. Require CL.
17078 (comint-dynamic-complete-functions): Use comint-filename-completion.
17079 (comint-completion-addsuffix): Tweak custom type.
17080 (comint-filename-completion, comint--common-suffix)
17081 (comint--common-quoted-suffix, comint--table-subvert)
17082 (comint--complete-file-name-data): New functions.
17083 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
17084 (comint-dynamic-list-filename-completions): Use them.
17085 (comint-dynamic-simple-complete): Make obsolete.
17086
17087 * minibuffer.el (completion-in-region-mode):
17088 Keep completion-in-region-mode--predicate global.
17089 (completion-in-region--postch):
17090 Assume completion-in-region-mode--predicate is not null.
17091
17092 * progmodes/flymake.el (flymake-start-syntax-check-process):
17093 Obey `dir'. Simplify.
17094
17095 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
17096 we're in VC after all.
17097
17098 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
17099
17100 * vc/vc.el (vc-diff-build-argument-list-internal)
17101 (vc-version-ediff, vc-ediff): New commands.
17102 (vc-version-diff): Use vc-diff-build-argument-list-internal.
17103
17104 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
17105
17106 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
17107 add sanity check.
17108
17109 * obsolete/erc-hecomplete.el: Make obsolete.
17110 * obsolete/: Standardize obsolescence info in the header.
17111
17112 2011-04-20 Glenn Morris <rgm@gnu.org>
17113
17114 * calendar/solar.el (solar-horizontal-coordinates):
17115 Use the longitude argument rather than `calendar-longitude'.
17116 (solar-date-next-longitude): Remove unused locals.
17117
17118 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17119
17120 * whitespace.el: New version 13.2.1.
17121
17122 2011-04-20 felix <EmacsWiki> (tiny change)
17123
17124 * whitespace.el (global-whitespace-mode): Keep highlight when
17125 switching between major modes on a file.
17126
17127 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
17128
17129 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
17130 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
17131 multi-line comments as well.
17132
17133 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
17134
17135 Lexical-binding cleanup.
17136
17137 * arc-mode.el (archive-mode-revert):
17138 * cmuscheme.el (scheme-interactively-start-process):
17139 * custom.el (custom-initialize-delay):
17140 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
17141 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
17142 * emacs-lock.el (emacs-lock-clear-sentinel):
17143 * ezimage.el (defezimage):
17144 * follow.el (follow-avoid-tail-recenter):
17145 * fringe.el (set-fringe-mode-1):
17146 * generic-x.el (bat-generic-mode-compile):
17147 * help-mode.el (help-info-variable, help-do-xref)
17148 (help-mode-revert-buffer):
17149 * help.el (view-emacs-todo):
17150 * iswitchb.el (iswitchb-completion-help):
17151 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
17152 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
17153 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
17154 * locate.el (locate-update):
17155 * longlines.el (longlines-encode-region)
17156 (longlines-after-change-function):
17157 * outline.el (outline-isearch-open-invisible):
17158 * ps-def.el (declare-function, charset-dimension, char-width)
17159 (encode-char):
17160 * ps-mule.el (ps-mule-plot-string):
17161 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
17162 (recentf-edit-list-select, recentf-edit-list-validate)
17163 (recentf-open-files-action):
17164 * rect.el (delete-whitespace-rectangle-line)
17165 (rectangle-number-line-callback):
17166 * register.el (window-configuration-to-register)
17167 (frame-configuration-to-register):
17168 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
17169 * select.el (xselect-convert-to-string, xselect-convert-to-length)
17170 (xselect-convert-to-targets, xselect-convert-to-delete)
17171 (xselect-convert-to-filename, xselect-convert-to-charpos)
17172 (xselect-convert-to-lineno, xselect-convert-to-colno)
17173 (xselect-convert-to-os, xselect-convert-to-host)
17174 (xselect-convert-to-user, xselect-convert-to-class)
17175 (xselect-convert-to-name, xselect-convert-to-integer)
17176 (xselect-convert-to-atom, xselect-convert-to-identity):
17177 * subr.el (declare, ignore, process-kill-without-query)
17178 (text-clone-maintain):
17179 * terminal.el (te-get-char, te-tic-sentinel):
17180 * tool-bar.el (tool-bar-make-keymap):
17181 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
17182 * type-break.el (type-break-mode, type-break-noninteractive-query):
17183 * view.el (View-back-to-mark):
17184 * wid-browse.el (widget-browse-action, widget-browse-widget)
17185 (widget-browse-widgets, widget-browse-sexp):
17186 * widget.el (define-widget-keywords):
17187 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
17188 Mark unused parameters.
17189
17190 * align.el (align-adjust-col-for-rule): Mark unused parameter.
17191 (align-areas): Remove unused variable `look'.
17192 (align-region): Remove unused variables `real-end' and `pos-list'.
17193
17194 * apropos.el (apropos-score-doc): Remove unused variable `i'.
17195
17196 * bindings.el (mode-line-modified, mode-line-remote):
17197 Mark unused parameters.
17198 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
17199
17200 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
17201 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
17202
17203 * comint.el (comint-history-isearch-pop-state)
17204 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
17205 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
17206 (comint-substitute-in-file-name): Doc fix.
17207
17208 * completion.el (cmpl-statistics-block): Mark unused parameter.
17209 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
17210 (save-completions-to-file, load-completions-from-file):
17211 Remove unused local variable `e'.
17212
17213 * composite.el (compose-chars): Remove unused variable `len'.
17214 (lgstring-insert-glyph): Remove unused variable `g'.
17215 (compose-glyph-string): Remove unused variables `ascent',
17216 `descent', `lbearing' and `rbearing'.
17217 (compose-glyph-string-relative): Remove unused variables
17218 `lbearing', `rbearing' and `wadjust'.
17219 (compose-gstring-for-graphic): Remove unused variables `header',
17220 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
17221 (compose-gstring-for-terminal): Remove unused variables `header'
17222 and `nchars'. Use `let', not `let*'.
17223
17224 * cus-edit.el (Custom-set, Custom-save, custom-reset)
17225 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
17226 (Custom-buffer-done, custom-buffer-create-internal)
17227 (custom-browse-visibility-action, custom-browse-group-tag-action)
17228 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
17229 (widget-magic-mouse-down-action, custom-toggle-parent)
17230 (custom-add-parent-links, custom-toggle-hide-variable)
17231 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
17232 (custom-toggle-hide-face, face, hook, custom-group-link-action)
17233 (custom-face-menu-create, custom-variable-menu-create, get)
17234 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
17235 (custom-reset-standard-save-and-update): Remove unused variable `value'.
17236 (customize-apropos): Remove unused variable `tests'.
17237 (custom-group-value-create): Remove unused variable `hidden-p'.
17238 (sort-fold-case): Declare.
17239
17240 * cus-theme.el (custom-reset-standard-faces-list)
17241 (custom-reset-standard-variables-list): Declare.
17242 (customize-create-theme, custom-theme-revert, custom-theme-write)
17243 (custom-theme-choose-mode, customize-themes, custom-theme-save):
17244 Mark unused parameters.
17245
17246 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
17247
17248 * delim-col.el (delimit-columns-max): Move defvar before first use.
17249
17250 * descr-text.el (describe-char-categories): Don't quote `lambda'.
17251 (describe-char): Don't quote `lambda'. Mark unused parameter.
17252
17253 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
17254 (auto-insert): Declare.
17255 (desktop-restore-file-buffer): Rename desktop-* parameters;
17256 mark unused ones.
17257 (desktop-create-buffer): Rename desktop-* parameters and bind them.
17258 (desktop-buffer): Rename desktop-* parameters.
17259
17260 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
17261 (dframe-reposition-frame-xemacs, dframe-help-echo)
17262 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
17263 Mark unused parameters.
17264
17265 * dired-aux.el (backup-extract-version-start, overwrite-query)
17266 (overwrite-backup-query, rename-regexp-query)
17267 (rename-non-directory-query): Declare.
17268 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
17269 (dired-add-entry): Remove unused variable `orig-file-name'.
17270 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
17271 Use parameter PRESERVE-TIME instead of accessing dynamic variable
17272 `dired-copy-preserve-time' directly.
17273 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
17274 (dired-insert-subdir-newpos): Rename unused variable `pos'.
17275
17276 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
17277 (dired-virtual-revert, dired-make-relative-symlink):
17278 Mark unused parameters.
17279 (manual-program): Declare.
17280 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
17281 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
17282 wrapped in `with-no-warnings' to avoid replacing one warning by another.
17283
17284 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
17285
17286 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
17287
17288 * echistory.el (electric-history-in-progress, Helper-return-blurb):
17289 Declare.
17290
17291 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
17292
17293 * electric.el (Electric-command-loop): Rename parameter
17294 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
17295
17296 * expand.el (expand-in-literal): Remove unused variable `here'.
17297
17298 * facemenu.el (facemenu-add-new-color):
17299 Remove unused variable `docstring'.
17300
17301 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
17302 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
17303 (face-attr-construct): Mark unused parameter. Doc fix.
17304 (read-color): Remove unused variable `hex-string'.
17305
17306 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
17307 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
17308 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
17309 (display-buffer-other-frame): Remove unused variable `old-window'.
17310 (kill-buffer-hook): Declare.
17311 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
17312 Mark unused parameters.
17313 (after-find-file): Pass 1 to `auto-save-mode', not t.
17314
17315 * files-x.el (auto-insert): Declare.
17316 (modify-file-local-variable-prop-line): Remove unused variable `val'.
17317
17318 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
17319 variable `buf'. Mark unused parameter.
17320 (find-lisp-insert-directory): Mark unused parameter.
17321
17322 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
17323 (format-encode-region): Remove unused variables `cur-buf' and `result'.
17324 (format-common-tail): Remove, unused.
17325 (format-deannotate-region): Remove unused variable `loc'.
17326 (format-annotate-region): Remove unused variable `p'.
17327 (format-annotate-single-property-change): Remove unused variables
17328 `default' and `tail'.
17329
17330 * forms.el (read-file-filter): Declare.
17331 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
17332
17333 * frame.el (frame-creation-function-alist): Mark unused parameter.
17334 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
17335
17336 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
17337 Remove unused parameters.
17338 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
17339 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
17340
17341 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
17342 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
17343 (hfy-prepare-tag-map): Mark unused parameters.
17344 (htmlfontify-buffer): Use `called-interactively-p'.
17345
17346 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
17347 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
17348 (ibuffer-do-occur): Mark unused parameters.
17349 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
17350 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
17351
17352 * ibuffer.el: Don't quote `lambda'.
17353 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
17354 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
17355 Mark unused parameters.
17356
17357 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
17358 (ido-completing-read): Mark unused parameters.
17359 (ido-copy-current-word): Mark unused parameters;
17360 remove unused variable `name'.
17361 (ido-sort-merged-list): Remove unused parameter `dirs'.
17362
17363 * ielm.el (ielm-input-sender): Mark unused parameter.
17364 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
17365 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
17366 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
17367 `ielm-string' as a dynamic variable accessible from the IELM prompt.
17368 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
17369
17370 * image-dired.el (image-dired-display-thumbs): Remove unused
17371 variables `curr-file' and `count'.
17372 (image-dired-remove-tag): Remove unused variable `start'.
17373 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
17374 variable `curr-file'
17375 (image-dired-rotate-original): Remove unused variable `temp-file'.
17376 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
17377 Remove unused variable `file'.
17378 (image-dired-gallery-generate): Remove unused variable `curr'.
17379 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
17380
17381 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
17382
17383 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
17384
17385 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
17386
17387 * isearch.el (minibuffer-history-symbol): Declare.
17388 (isearch-edit-string): Remove unused variable `err'.
17389 (isearch-message-prefix, isearch-message-suffix):
17390 Mark unused parameters.
17391
17392 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
17393
17394 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
17395
17396 * makesum.el (double-column): Remove unused variable `cnt'.
17397
17398 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
17399 (ido-ignore-item-temp-list): Declare.
17400
17401 * mouse-drag.el (mouse-drag-throw): Remove unused variables
17402 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
17403 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
17404 (mouse-drag-drag): Remove unused variables `mouse-delta' and
17405 `mouse-col-delta'.
17406
17407 * mouse-sel.el (mouse-extend-internal):
17408 Remove unused variable `orig-window-frame'.
17409
17410 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
17411 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
17412 Move declarations before first use.
17413 (pcomplete-opt): Mark unused parameters; doc fix.
17414
17415 * proced.el (proced-revert): Mark unused parameter.
17416 (proced-send-signal): Remove unused variable `err'.
17417
17418 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
17419 Rename parameter PREFIX-ARG to ARG.
17420 (ps-basic-plot-string, ps-basic-plot-whitespace):
17421 Mark unused parameters.
17422
17423 * replace.el (replace-count): Define.
17424 (occur-revert-function): Mark unused parameters.
17425 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
17426 (isearch-case-fold-search, isearch-string): Declare.
17427 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
17428 bind `case-fold-search'. Remove unused variables `beg' and `end',
17429 and simplify.
17430 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
17431 COUNT and bind `replace-count'.
17432 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
17433 to COUNT.
17434
17435 * savehist.el (print-readably, print-string-length): Declare.
17436
17437 * shadowfile.el (shadow-expand-cluster-in-file-name):
17438 Remove unused variable `cluster'.
17439 (shadow-copy-file): Remove unused variable `i'.
17440 (shadow-noquery, shadow-clusters, shadow-site-cluster)
17441 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
17442 (shadow-define-literal-group, shadow-define-regexp-group)
17443 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
17444
17445 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
17446 (shell): Use `called-interactively-p'.
17447 (shell-directory-tracker): Remove unused variable `chdir-failure'.
17448
17449 * simple.el (compilation-context-lines, comint-file-name-quote-list)
17450 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
17451 (delete-backward-char): Remove unused variable `ocol'.
17452 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
17453 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
17454 (event-apply-hyper-modifier, event-apply-shift-modifier)
17455 (event-apply-control-modifier, event-apply-meta-modifier):
17456 Mark unused parameters.
17457 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
17458 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
17459
17460 * speedbar.el (speedbar-ignored-directory-expressions)
17461 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
17462 (speedbar-find-file, speedbar-dir-follow)
17463 (speedbar-directory-buttons-follow, speedbar-tag-find)
17464 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
17465 (speedbar-buffers-line-directory, speedbar-buffer-click):
17466 Mark unused parameters.
17467 (speedbar-tag-file): Remove unused variable `mode'.
17468 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
17469
17470 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
17471
17472 * talk.el (talk): Remove unused variable `display'.
17473
17474 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
17475 (tar-write-region-annotate): Mark unused parameter.
17476
17477 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
17478 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
17479 Declare them, wrapped in `with-no-warnings' to avoid replacing one
17480 warning by another.
17481
17482 * time-stamp.el (time-stamp-string-preprocess):
17483 Remove unused variable `require-padding'.
17484
17485 * tree-widget.el (widget-glyph-enable): Declare.
17486 (tree-widget-action): Mark unused parameter.
17487
17488 * w32-fns.el (x-get-selection): Mark unused parameter.
17489 (autoload-make-program, generated-autoload-file): Declare.
17490
17491 * wdired.el (wdired-revert): Mark unused parameters.
17492 (wdired-xcase-word): Remove unused variable `err'.
17493
17494 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
17495 (whitespace-help-scroll): Remove unused variable `data-help'.
17496
17497 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
17498 (widget-image-insert, widget-after-change, default)
17499 (widget-default-format-handler, widget-default-notify)
17500 (widget-default-prompt-value, widget-info-link-action)
17501 (widget-url-link-action, widget-function-link-action)
17502 (widget-variable-link-action, widget-file-link-action)
17503 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
17504 (widget-field-prompt-internal, widget-field-action, widget-field-match)
17505 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
17506 (widget-insert-button-action, widget-delete-button-action, visibility)
17507 (widget-documentation-link-action, widget-documentation-string-action)
17508 (widget-const-prompt-value, widget-regexp-match, symbol)
17509 (widget-coding-system-prompt-value)
17510 (widget-key-sequence-value-to-external, sexp)
17511 (widget-sexp-value-to-internal, character, vector, cons)
17512 (widget-choice-prompt-value, widget-boolean-prompt-value)
17513 (widget-color--choose-action): Mark unused parameters.
17514 (widget-item-match-inline, widget-choice-match-inline)
17515 (widget-checklist-match, widget-checklist-match-inline)
17516 (widget-group-match): Rename parameter VALUES to VALS.
17517 (widget-field-value-set): Remove unused variable `size'.
17518 (widget-color-action): Remove unused variables `value' and `start'.
17519
17520 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
17521 variable `dir'. Doc fix.
17522 (windmove-find-other-window): Don't pass it.
17523
17524 * window.el (count-windows): Mark unused parameter.
17525 (bw-adjust-window): Remove unused variable `err'.
17526
17527 * woman.el (woman-file-name): Remove unused variable `default'.
17528 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
17529 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
17530 (global-font-lock-mode): Declare.
17531 (woman-decode-region): Mark unused parameter.
17532 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
17533
17534 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
17535 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
17536 (x-dnd-handle-moz-url): Remove unused variable `title'.
17537 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
17538
17539 * xml.el (xml-parse-tag, xml-parse-attlist):
17540 Remove unused variable `pos'.
17541
17542 2011-04-19 Glenn Morris <rgm@gnu.org>
17543
17544 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
17545 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
17546 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
17547 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
17548 * calendar/cal-html.el (cal-html-insert-minical):
17549 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
17550 (calendar-mark-date-pattern):
17551 Prefix "unused" locals.
17552
17553 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
17554 optional argument `style'.
17555
17556 * calendar/appt.el (appt-make-list):
17557 * calendar/cal-china.el (calendar-chinese-date-string):
17558 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
17559 (diary-hebrew-yahrzeit):
17560 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
17561 * calendar/calendar.el (calendar-generate-window):
17562 * calendar/time-date.el (time-to-days):
17563 Remove unused local variables.
17564
17565 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
17566
17567 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
17568 glyphless-char-display table.
17569 (tabulated-list-glyphless-char-display): New var.
17570
17571 2011-04-18 Sam Steingold <sds@gnu.org>
17572
17573 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
17574 to acknowledgments.
17575
17576 2011-04-17 Glenn Morris <rgm@gnu.org>
17577
17578 * calendar/diary-lib.el (diary-sexp-entry):
17579 * calendar/holidays.el (holiday-sexp):
17580 Set debug-on-error rather than the removed stack-trace-on-error.
17581
17582 2011-04-16 Glenn Morris <rgm@gnu.org>
17583
17584 * progmodes/f90.el: Use lexical-binding.
17585 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
17586
17587 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17588
17589 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
17590 (mail-mode): Setup mailalias completion here instead.
17591 * mail/mailalias.el: Use lexical-binding.
17592 (pattern, mailalias-done): Declare dynamic.
17593 (mail-completion-at-point-function): New function, from mail-complete.
17594 (mail-complete): Use it.
17595 (mail-completion-expand): New function.
17596 (mail-get-names): Use it.
17597 (mail-directory, mail-directory-process, mail-directory-stream):
17598 Don't use `pattern' for lexically bound arg.
17599
17600 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
17601
17602 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
17603 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
17604 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
17605
17606 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
17607 (byte-save-window-excursion, byte-temp-output-buffer-setup)
17608 (byte-interactive-p): Define them again, for use when inlining
17609 old code.
17610
17611 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
17612
17613 * loadup.el: Use `string-to-number', not `string-to-int'.
17614
17615 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17616
17617 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
17618 gud-gdb-complete-command.
17619 (gud-gdb-completions): New function, from gud-gdb-complete-command.
17620 (gud-gdb-completion-at-point): New function.
17621 (gud-gdb-completions): Remove.
17622
17623 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
17624
17625 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
17626 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
17627 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
17628 whether `executable-find' is bound.
17629
17630 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
17631
17632 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
17633
17634 * minibuffer.el (completion-in-region-mode-predicate)
17635 (completion-in-region-mode--predicate): New vars.
17636 (completion-in-region, completion-in-region--postch)
17637 (completion-in-region-mode): Use them.
17638 (completion--capf-wrapper): Also return the hook function.
17639 (completion-at-point, completion-help-at-point):
17640 Adjust and provide a predicate.
17641
17642 Preserve arg names for advice of subr and lexical functions (bug#8457).
17643 * help-fns.el (help-function-arglist): Consolidate the subr and
17644 new-byte-code cases. Add argument `preserve-names' to extract names
17645 from the docstring when needed.
17646 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
17647 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
17648 (ad-arglist): Use help-function-arglist's new arg.
17649 (ad-definition-type): Use cond.
17650
17651 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
17652
17653 * autorevert.el (auto-revert-handler):
17654 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
17655 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
17656 Don't quote lambda.
17657
17658 * image-mode.el (image-transform-set-scale):
17659 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
17660
17661 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17662
17663 * net/network-stream.el (network-stream-open-starttls): Only do
17664 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
17665 Upgrades via gnutls-cli are too slow to be done opportunistically.
17666
17667 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
17668
17669 * dframe.el (dframe-current-frame): Remove spurious quote.
17670
17671 2011-04-12 Glenn Morris <rgm@gnu.org>
17672
17673 * calendar/cal-tex.el (cal-tex-end-document):
17674 Try to automatically use latin1 input if needed.
17675
17676 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
17677 Don't try to cons a mark onto an empty element.
17678
17679 2011-04-11 Leo Liu <sdl.web@gmail.com>
17680
17681 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
17682 buffers.
17683 (ido-kill-buffer-at-head): Support killing virtual buffers.
17684
17685 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
17686
17687 * minibuffer.el (completion-show-inline-help): New var.
17688 (completion--do-completion, minibuffer-complete)
17689 (minibuffer-force-complete, minibuffer-complete-word):
17690 Inhibit minibuffer messages if completion-show-inline-help is nil.
17691
17692 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
17693 to avoid interference from inline help (Bug#5849).
17694
17695 2011-04-10 Leo Liu <sdl.web@gmail.com>
17696
17697 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
17698 Fix typo.
17699
17700 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17701
17702 * image-mode.el (image-toggle-display-image): Signal an error if
17703 not in Image mode.
17704 (image-transform-mode, image-transform-resize)
17705 (image-transform-set-rotation): Doc fix.
17706 (image-transform-set-resize): Delete.
17707 (image-transform-set-scale, image-transform-fit-to-height)
17708 (image-transform-fit-to-width): Handle image-toggle-display-image
17709 and image-transform-resize directly.
17710
17711 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
17712
17713 * doc-view.el (doc-view-fit-width-to-window)
17714 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
17715 New functions for fitting the shown image to the Emacs window size.
17716 (doc-view-mode-map): Add bindings for the new functions.
17717
17718 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
17719
17720 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
17721 Fix typo in docstring.
17722
17723 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17724
17725 * files.el (file-size-human-readable): Produce one digit after
17726 decimal, like "ls -lh" does.
17727
17728 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
17729 the file size representation.
17730
17731 * simple.el (list-processes): If async subprocesses are not
17732 available, error out with a clear error message.
17733
17734 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
17735
17736 * help.el (help-form-show): New function, to be called from C.
17737 Put help-form output in a buffer named differently than *Help*.
17738
17739 2011-04-08 Eli Zaretskii <eliz@gnu.org>
17740
17741 * files.el (file-size-human-readable): New function.
17742
17743 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
17744 computing the representation inline. Don't require `cl'.
17745
17746 2011-04-08 Glenn Morris <rgm@gnu.org>
17747
17748 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
17749
17750 * net/browse-url.el (browse-url-firefox):
17751 Test system-type, not system-configuration.
17752
17753 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
17754 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
17755 Use log-edit-empty-buffer-p. (Bug#7598)
17756
17757 * net/rlogin.el (rlogin-process-connection-type): Simplify.
17758 (rlogin-mode-map): Initialize in the defvar.
17759 (rlogin): Use ignore-errors.
17760
17761 * replace.el (occur-mode-map): Some fixes for menu items.
17762
17763 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
17764
17765 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
17766
17767 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17768
17769 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
17770 issuing unused warnings.
17771
17772 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
17773 macro directly.
17774
17775 * simple.el: Lisp reimplement of list-processes. Based on an
17776 earlier reimplementation by Leo Liu, but using tabulated-list.el.
17777 (process-menu-mode): New major mode.
17778 (list-processes--refresh, list-processes):
17779 (process-menu-visit-buffer): New functions.
17780
17781 * files.el (save-buffers-kill-emacs): Don't assume any return
17782 value of list-processes, which is undocumented anyway.
17783
17784 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17785
17786 * emacs-lisp/tabulated-list.el: New file.
17787
17788 * emacs-lisp/package.el: Use Tabulated List mode.
17789 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
17790 (package-menu-mode): Derive from tabulated-list-mode. Set up the
17791 table format using Tabulated List mode variables.
17792 (package--push): New macro, replacing package-list-maybe-add.
17793 (package-menu--generate): Use package--push. Renamed from
17794 package--generate-package-list.
17795 (package-menu-refresh, list-packages): Use it.
17796 (package-menu--print-info): Rename from package-print-package.
17797 Return insertion data instead of inserting it directly.
17798 (package-menu-describe-package, package-menu-execute):
17799 Use tabulated-list-get-id.
17800 (package-menu-mark-delete, package-menu-mark-install)
17801 (package-menu-mark-unmark, package-menu-backup-unmark)
17802 (package-menu-mark-obsolete-for-deletion):
17803 Use tabulated-list-put-tag.
17804 (package--list-packages, package-menu-revert)
17805 (package-menu-get-package, package-menu-get-version)
17806 (package-menu-sort-by-column): Functions deleted.
17807 (package-menu-package-list, package-menu-sort-key): Vars deleted.
17808 (package-menu--status-predicate, package-menu--version-predicate)
17809 (package-menu--name-predicate)
17810 (package-menu--description-predicate): Handle arguments in the
17811 Tabulated List format.
17812 (package-list-packages-no-fetch): Call list-packages.
17813
17814 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
17815
17816 * files.el (after-find-file-from-revert-buffer): Remove variable.
17817 (after-find-file): Don't bind it.
17818 (revert-buffer-in-progress-p): New variable.
17819 (revert-buffer): Bind it.
17820 Pass nil for `after-find-file-from-revert-buffer'.
17821
17822 * saveplace.el (save-place-find-file-hook): Use new variable
17823 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
17824
17825 2011-04-06 Glenn Morris <rgm@gnu.org>
17826
17827 * Makefile.in (AUTOGEN_VCS): New variable.
17828 (autoloads): Use $AUTOGEN_VCS.
17829
17830 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
17831 * calendar/calendar.el (calendar-mode-map):
17832 Check for toolkit scroll bars. (Bug#8305)
17833
17834 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17835
17836 * minibuffer.el (completion-in-region--postch)
17837 (completion-in-region-mode): Remove unnecessary messages.
17838
17839 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
17840
17841 * font-lock.el (font-lock-refresh-defaults):
17842 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
17843 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
17844
17845 * info.el (Info-directory-list, Info-read-node-name-2)
17846 (Info-split-parameter-string): Doc fixes.
17847 (Info-virtual-nodes): Reflow docstring.
17848 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
17849 (Info-apropos-toc-nodes, info-finder, Info-get-token)
17850 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
17851 Fix typos in docstrings.
17852 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
17853 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
17854 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
17855 (Info-restore-desktop-buffer): Mark unused parameters.
17856 (Info-directory-find-file, Info-directory-find-node)
17857 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
17858 (Info-virtual-index-find-node, Info-apropos-find-file)
17859 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
17860 Mark unused parameters; fix typos in docstrings.
17861 (Info-virtual-index): Remove unused local variable `nodename'.
17862
17863 2011-04-05 Deniz Dogan <deniz@dogan.se>
17864
17865 * net/rcirc.el: Update my e-mail address.
17866 (rcirc-mode-map): Remove M-o binding.
17867
17868 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
17869
17870 * startup.el (command-line): Save the cursor's theme-face
17871 directly, instead of using face-override-spec.
17872
17873 * custom.el (load-theme): Minor optimization in assigning faces.
17874
17875 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17876
17877 * help-fns.el (describe-variable): Complete all variables having
17878 documentation, including keywords.
17879 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
17880
17881 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
17882
17883 Convert to lexical-binding.
17884
17885 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
17886 (bs--get-marked-string, bs--get-modified-string)
17887 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
17888 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
17889 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
17890
17891 * ehelp.el (electric-help-execute-extended)
17892 (electric-help-ctrl-x-prefix):
17893 * hexl.el (hexl-revert-buffer-function):
17894 * linum.el (linum-after-change, linum-after-scroll):
17895 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
17896
17897 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
17898
17899 2011-04-04 Daiki Ueno <ueno@unixuser.org>
17900
17901 * epa-dired.el:
17902 * epa-mail.el:
17903 * epa-hook.el:
17904 * epa-file.el:
17905 * epa.el:
17906 * epg.el: Use lexical binding.
17907
17908 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
17909
17910 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
17911
17912 * textmodes/flyspell.el (flyspell-word): Recognize default
17913 dictionary case for flyspell-mark-duplications-exceptions.
17914 Use regexp matching for languages.
17915 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
17916 default dictionary (Bug#7926).
17917
17918 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
17919
17920 * emacs-lisp/package.el (package--with-work-buffer):
17921 Recognize https URLs.
17922
17923 * net/network-stream.el: Move from gnus/proto-stream.el.
17924 Change prefix to network-stream throughout.
17925 (open-protocol-stream): Merge into open-network-stream, leaving
17926 open-protocol-stream as an alias. Handle nil BUFFER args.
17927
17928 * subr.el (open-network-stream): Move to net/network-stream.el.
17929
17930 2011-04-02 Glenn Morris <rgm@gnu.org>
17931
17932 * find-dired.el (find-exec-terminator): New option.
17933 (find-ls-option): Test for -ls support.
17934 (find-ls-subdir-switches): Test for -b in find-ls-option.
17935 (find-dired, find-grep-dired): Doc fixes.
17936 (find-dired): Use find-exec-terminator.
17937
17938 * find-dired.el (find-ls-option, find-ls-subdir-switches)
17939 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
17940 (find-name-arg): Remove purecopy.
17941
17942 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
17943 (grep-compute-defaults): Check for `-exec COMMAND +' support.
17944 Set grep-find-use-xargs, grep-find-command, and grep-find-template
17945 accordingly. Don't add the null-device if not needed.
17946
17947 * files.el (save-some-buffers): Doc fix.
17948
17949 2011-04-02 Eli Zaretskii <eliz@gnu.org>
17950
17951 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
17952
17953 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
17954
17955 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
17956 Use `dolist' rather than `mapcar'.
17957
17958 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
17959
17960 Add lexical binding.
17961
17962 * subr.el (apply-partially): Use new closures rather than CL.
17963 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
17964 (dolist, dotimes): Use slightly different expansion for lexical code.
17965 (functionp): Move to C.
17966 (letrec): New macro.
17967 (with-wrapper-hook): Use it and apply-partially instead of CL.
17968 (eval-after-load): Preserve lexical-binding.
17969 (save-window-excursion, with-output-to-temp-buffer): Turn them
17970 into macros.
17971
17972 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
17973
17974 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
17975 than the arglist.
17976 (help-add-fundoc-usage): Don't add `Not documented'.
17977 (help-function-arglist): Handle closures, subroutines, and new
17978 byte-code-functions.
17979 (help-make-usage): Remove leading underscores.
17980 (describe-function-1): Handle closures.
17981 (describe-variable): Use special-variable-p for completion.
17982
17983 * files.el (lexical-binding): Declare safe.
17984
17985 * emacs-lisp/pcase.el: Don't use destructuring-bind.
17986 (pcase--memoize): Rename from pcase-memoize. Change weakness.
17987 (pcase): Add `let' pattern.
17988 Change memoization so it actually works.
17989 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
17990 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
17991 <let>: New case.
17992
17993 * emacs-lisp/macroexp.el: Use lexical binding.
17994 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
17995 Don't convert ' to #' without checking that it's indeed quoting
17996 a lambda.
17997
17998 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
17999 Use eval-sexp-add-defvars.
18000 (eval-sexp-add-defvars): New fun.
18001
18002 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
18003
18004 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
18005 Don't autoload.
18006 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
18007 than the internal `byte-compile-lambda'.
18008 (defmethod): Don't hide code under quotes.
18009 (eieio-defmethod): New `code' argument.
18010
18011 * emacs-lisp/eieio-comp.el: Remove.
18012
18013 * emacs-lisp/edebug.el (edebug-eval-defun)
18014 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
18015 (edebug-toggle): Avoid `eval'.
18016
18017 * emacs-lisp/disass.el (disassemble-internal): Handle new
18018 `closure' objects.
18019 (disassemble-1): Handle new byte codes.
18020
18021 * emacs-lisp/cl.el (pushnew): Silence warning.
18022
18023 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
18024 (cl-byte-compile-throw): Remove.
18025 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
18026
18027 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
18028 closures.
18029
18030 * emacs-lisp/cconv.el: New file.
18031
18032 * emacs-lisp/bytecomp.el: Use lexical binding instead of
18033 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
18034 (byte-compile-initial-macro-environment):
18035 Handle declare-function here.
18036 (byte-compile--lexical-environment): New var.
18037 (byte-stack-ref, byte-stack-set, byte-discardN)
18038 (byte-discardN-preserve-tos): New lap codes.
18039 (byte-interactive-p): Don't use any more.
18040 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
18041 New macros.
18042 (byte-compile-lapcode): Use them and handle new lap codes.
18043 (byte-compile-obsolete): Remove.
18044 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
18045 (byte-compile-arglist-warn): Check late def of inlinable funs.
18046 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
18047 since they should have been expanded by now.
18048 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
18049 (byte-compile-from-buffer): Remove unused second arg.
18050 (byte-compile-preprocess): New function.
18051 (byte-compile-toplevel-file-form): New function to distinguish
18052 file-form calls from outside from file-form calls from hunk-handlers.
18053 (byte-compile-file-form): Simplify.
18054 (byte-compile-file-form-defsubst): Remove.
18055 (byte-compile-file-form-defmumble): Simplify now that
18056 byte-compile-lambda always returns a byte-code-function.
18057 (byte-compile): Preprocess.
18058 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
18059 Remove, not used any more.
18060 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
18061 (byte-compile-make-args-desc): New funs.
18062 (byte-compile-lambda): Handle lexical functions. Always return
18063 a byte-code-function.
18064 (byte-compile-reserved-constants): New var, to make up room for
18065 closed-over variables.
18066 (byte-compile-constants-vector): Obey it.
18067 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
18068 (byte-compile-macroexpand-declare-function): New function.
18069 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
18070 byte-code-functions.
18071 (byte-compile-form): Check obsolescence here.
18072 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
18073 (byte-compile-variable-ref): Remove.
18074 (byte-compile-dynamic-variable-op): New fun.
18075 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18076 (byte-compile-variable-set): New funs.
18077 (byte-compile-discard): Add 2 args.
18078 (byte-compile-stack-ref, byte-compile-stack-set)
18079 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
18080 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
18081 macroexpand-all instead.
18082 (byte-compile-quote-form): Remove.
18083 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
18084 (byte-compile-bind, byte-compile-unbind): New funs.
18085 (byte-compile-let): Handle let* and lexical binding.
18086 (byte-compile-let*): Remove.
18087 (byte-compile-catch, byte-compile-unwind-protect)
18088 (byte-compile-track-mouse, byte-compile-condition-case):
18089 Handle a new :fun-body form, used for lexical scoping.
18090 (byte-compile-save-window-excursion)
18091 (byte-compile-with-output-to-temp-buffer): Remove.
18092 (byte-compile-defun): Simplify.
18093 (byte-compile-stack-adjustment): New fun.
18094 (byte-compile-out): Use it.
18095 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
18096
18097 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
18098 handler any more.
18099
18100 * emacs-lisp/byte-opt.el: Use lexical binding.
18101 (byte-inline-lapcode): Remove (to bytecomp).
18102 (byte-compile-inline-expand): Pay attention to inlining to/from
18103 lexically bound code.
18104 (byte-compile-unfold-lambda): Don't handle byte-code-functions
18105 any more.
18106 (byte-optimize-form-code-walker): Don't handle save-window-excursion
18107 any more and don't call compiler-macros.
18108 (byte-compile-splice-in-already-compiled-code): Remove.
18109 (byte-code): Don't inline any more.
18110 (disassemble-offset): Receive `bytes' as argument rather than via
18111 dynamic scoping.
18112 (byte-compile-tag-number): Declare before first use.
18113 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
18114 `return' even if make-spliceable.
18115 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
18116 obsolete interactive-p.
18117 (byte-optimize-lapcode): Optimize new lap-codes.
18118 Don't trip up on new form of `byte-constant' lap code.
18119
18120 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
18121
18122 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
18123
18124 * custom.el (custom-initialize-default, custom-declare-variable):
18125 Use `defvar'.
18126
18127 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
18128 New variables.
18129 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
18130 (COMPILE_FIRST): Add macroexp and cconv.
18131 * makefile.w32-in: Mirror changes in Makefile.in.
18132
18133 * vc/cvs-status.el:
18134 * vc/diff-mode.el:
18135 * vc/log-edit.el:
18136 * vc/log-view.el:
18137 * vc/smerge-mode.el:
18138 * textmodes/bibtex-style.el:
18139 * textmodes/css-mode.el:
18140 * startup.el:
18141 * uniquify.el:
18142 * minibuffer.el:
18143 * newcomment.el:
18144 * reveal.el:
18145 * server.el:
18146 * mpc.el:
18147 * emacs-lisp/smie.el:
18148 * doc-view.el:
18149 * dired.el:
18150 * abbrev.el: Use lexical binding.
18151
18152 2011-04-01 Eli Zaretskii <eliz@gnu.org>
18153
18154 * info.el (info-display-manual): New function.
18155
18156 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
18157
18158 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
18159
18160 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
18161
18162 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
18163 an entry for that server in rcirc-authinfo. (Bug#8385)
18164
18165 2011-03-31 Glenn Morris <rgm@gnu.org>
18166
18167 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
18168
18169 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
18170
18171 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
18172
18173 * progmodes/python.el (python-default-interpreter)
18174 (python-python-command-args, python-jython-command-args)
18175 (python-which-shell, python-which-args, python-which-bufname)
18176 (python-file-queue, python-comint-output-filter-function)
18177 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
18178 variables and functions.
18179
18180 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
18181
18182 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
18183 (completion-in-region-mode): New minor mode.
18184 (completion-in-region): Use it.
18185 (completion-in-region--data, completion-in-region-mode-map): New vars.
18186 (completion-in-region--postch): New function.
18187 (completion--capf-misbehave-funs, completion--capf-safe-funs):
18188 New vars.
18189 (completion--capf-wrapper): New function.
18190 (completion-at-point): Use it to track well-behavedness of
18191 hook functions.
18192 (completion-help-at-point): New command.
18193
18194 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
18195
18196 * vc/add-log.el (add-change-log-entry): Don't use whitespace
18197 syntax class to search for whitespace on a single line
18198 (Message-ID: <4D938140.4030905@redhat.com>).
18199
18200 2011-03-30 Leo Liu <sdl.web@gmail.com>
18201
18202 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
18203 New commands.
18204 (edit-abbrevs-map): Bind them here.
18205 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
18206
18207 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
18208
18209 * allout.el (allout-hide-by-annotation, allout-flag-region):
18210 Reduce possibility of overlay leakage by making them volatile.
18211
18212 * allout-widgets.el (allout-widgets-tally): Define as nil so the
18213 hash is not shared between buffers. Mode initialization is
18214 responsible for giving it a useful starting value.
18215 (allout-item-span): Reduce possibility of overlay leakage by
18216 making them volatile.
18217 (allout-widgets-count-buttons-in-region): Add diagnostic function
18218 for tracking down button overlay leaks.
18219
18220 2011-03-29 Leo Liu <sdl.web@gmail.com>
18221
18222 * ido.el (ido-read-internal): Use the default history var
18223 minibuffer-history if no HISTORY is specified.
18224
18225 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
18226
18227 * net/imap.el (imap-shell-open, imap-process-connection-type):
18228 Use imap-process-connection-type for 'shell' streams as well as
18229 Kerberos, SSL, other subprocesses.
18230
18231 2011-03-28 Leo Liu <sdl.web@gmail.com>
18232
18233 * abbrev.el (abbrev-table-empty-p): New function.
18234 (prepare-abbrev-list-buffer): Place empty abbrev tables after
18235 nonempty ones. (Bug#5937)
18236
18237 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
18238
18239 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
18240
18241 2011-03-27 Leo Liu <sdl.web@gmail.com>
18242
18243 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
18244 for foreground and background colors.
18245 (ansi-color-make-color-map): Adapt.
18246
18247 2011-03-25 Leo Liu <sdl.web@gmail.com>
18248
18249 * midnight.el (midnight-time-float): Remove. Note it calculates
18250 the microsecond component incorrectly and seconds-to-time does the
18251 same job.
18252 Remove redundant (require 'timer).
18253
18254 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
18255 (ido-completions): Remove unused arguments. (Bug#8329)
18256
18257 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
18258
18259 * minibuffer.el (completion--flush-all-sorted-completions):
18260 Remove itself from hook.
18261 (completion-at-point): Let the functions perform the completion
18262 immediately and return nil or t.
18263 * comint.el (comint-dynamic-complete-functions): Now identical to
18264 completion-at-point-functions.
18265 (comint-dynamic-list-input-ring): Remove unused var `index'.
18266 (comint--match-partial-filename, comint--unquote&expand-filename):
18267 New funs, split from comint-match-partial-filename.
18268 (comint-dynamic-complete): Use completion-at-point.
18269 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
18270
18271 2011-03-24 Drew Adams <drew.adams@oracle.com>
18272
18273 * thingatpt.el: Support `defun'.
18274
18275 2011-03-23 Leo Liu <sdl.web@gmail.com>
18276
18277 * abbrevlist.el: Move to obsolete/abbrevlist.el.
18278
18279 * help-mode.el (help-mode-finish): Tweak regexp.
18280
18281 2011-03-23 Glenn Morris <rgm@gnu.org>
18282
18283 * eshell/esh-opt.el (eshell-eval-using-options):
18284 Do not bind unused local variable `eshell-option-stub'.
18285
18286 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
18287
18288 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
18289
18290 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
18291 keymap variable in `with-no-warnings' to avoid a warning when the
18292 keymap has been already `defconst'ed.
18293
18294 2011-03-22 Leo Liu <sdl.web@gmail.com>
18295
18296 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
18297 encode all chars in abbrevs; otherwise use emacs-mule or
18298 utf-8-emacs. (Bug#8308)
18299
18300 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
18301
18302 * simple.el (backward-delete-char-untabify):
18303 Avoid warning about using `delete-backward-char'.
18304
18305 * image.el (image-type-file-name-regexps): Make it variable.
18306 `imagemagick-register-types' modifies it, and the user may want
18307 to add new extensions for known image types.
18308 (imagemagick-register-types): Throw error if not using ImageMagick.
18309
18310 2011-03-22 Leo Liu <sdl.web@gmail.com>
18311
18312 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
18313 located before rcirc-prompt-end-marker.
18314 (rcirc-complete): Error if point is not after rcirc prompt.
18315 Handle the case when table is nil.
18316 (rcirc-user-authenticated): Define to fix compiler warning.
18317
18318 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
18319
18320 * custom.el (custom--inhibit-theme-enable): Make it affect only
18321 custom-theme-set-variables and custom-theme-set-faces.
18322 (provide-theme): Ignore custom--inhibit-theme-enable.
18323 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
18324 (custom-enabling-themes): Delete variable.
18325 (enable-theme): Accept only loaded themes as arguments.
18326 Ignore the special custom-enabled-themes variable.
18327 (custom-enabled-themes): Forbid themes from setting this.
18328 Eliminate use of custom-enabling-themes.
18329 (custom-push-theme): Quote "changed" custom var entry.
18330
18331 2011-03-21 Leo Liu <sdl.web@gmail.com>
18332
18333 * ido.el (ido-read-internal): Add ido-selected to history instead
18334 of user input.
18335
18336 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
18337
18338 * subr.el (deferred-action-list, deferred-action-function):
18339 Mark obsolete.
18340
18341 2011-03-21 Leo Liu <sdl.web@gmail.com>
18342
18343 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
18344 change on 2011-02-13 (bug#8309).
18345
18346 * minibuffer.el (read-file-name-function): Change default value.
18347 (read-file-name--defaults): Rename from read-file-name-defaults.
18348 (read-file-name-default): Rename from read-file-name.
18349 (read-file-name): Call read-file-name-function.
18350
18351 2011-03-21 Glenn Morris <rgm@gnu.org>
18352
18353 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
18354 Doc fixes.
18355
18356 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
18357
18358 * cus-theme.el: Add missing provide statement.
18359 (customize-create-theme): Extract theme value correctly.
18360 (custom-theme-visit-theme): Autoload.
18361 (customize-create-theme): Prompt before inserting default faces.
18362
18363 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
18364
18365 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
18366 units and musical notes.
18367
18368 2011-03-20 Leo Liu <sdl.web@gmail.com>
18369
18370 * ido.el (ido-read-internal): Use completing-read-default.
18371 (ido-completing-read): Fix compatibility with completing-read.
18372
18373 2011-03-20 Christian Ohler <ohler@gnu.org>
18374
18375 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
18376 (ert-delete-all-tests): Use `called-interactively-p' rather than
18377 `interactive-p'.
18378 (ert--make-xrefs-region): Respect END.
18379
18380 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
18381
18382 * dired-aux.el (dired-create-directory): Signal an error if the
18383 directory already exists (Bug#8246).
18384
18385 * facemenu.el (list-colors-display): Call list-faces-display
18386 inside with-help-window.
18387 (list-colors-print): Use display property to align the final
18388 column, instead of checking window-width.
18389
18390 2011-03-19 Eli Zaretskii <eliz@gnu.org>
18391
18392 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
18393 windows-nt systems.
18394 (emerge-protect-metachars): Quote correctly for ms-dos and
18395 windows-nt systems.
18396
18397 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
18398
18399 * info.el (info-initialize): Replace all uses of `:' with
18400 path-separator for compatibility with non-Unix systems.
18401 Cache quoting of path-separator. (Bug#8258)
18402
18403 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
18404
18405 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
18406 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
18407 (mouse-avoidance-mode): Fix typos in docstrings.
18408
18409 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
18410
18411 * startup.el (package-subdirectory-regexp): Move from package.el.
18412 Omit \\` and \\', and let callers add them.
18413
18414 * emacs-lisp/package.el (package-strip-version)
18415 (package-load-all-descriptors): Add \\` and \\' to
18416 package-subdirectory-regexp before using it.
18417 (package-untar-buffer): New arg DIR; ensure that file untars only
18418 into this expected directory. Remove superfluous delete-region.
18419 (package-unpack): Caller changed.
18420 (package-tar-file-info): Use package-subdirectory-regexp.
18421
18422 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
18423
18424 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
18425 diff-mode-shared-map (bug#8284).
18426 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
18427
18428 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18429
18430 * calendar/time-date.el (format-seconds): Use assoc instead of
18431 assoc-string, since assoc-string doesn't exist in XEmacs.
18432
18433 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
18434
18435 * custom.el (custom-known-themes): Reflow docstring.
18436 (custom-theme-load-path): Fix typo in docstring.
18437 (load-theme): Fix typo in error message.
18438 (custom-available-themes, custom-variable-theme-value):
18439 Use `let', not `let*'.
18440
18441 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
18442
18443 * calc/README: Mention inclusion of musical notes.
18444
18445 * calc/calc-units.el (calc-lu-quant): Rename from
18446 `calc-logunits-quantity'.
18447 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
18448 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
18449 (calc-db): Rename from `calc-dblevel'.
18450 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
18451 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
18452 (calc-np): Rename from `calc-nplevel'.
18453 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
18454 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
18455 (calc-lu-plus): Rename from `calc-logunits-add'.
18456 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
18457 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
18458 (calc-lu-minus): Rename from `calc-logunits-sub'.
18459 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
18460 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
18461 (calc-lu-times): Rename from `calc-logunits-mul'.
18462 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
18463 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
18464 (calc-lu-divide): Rename from `calc-logunits-div'.
18465 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
18466 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
18467
18468 * calc/calc-ext.el (calc-init-extensions): Update the names of the
18469 functions being autoloaded.
18470
18471 * calc/calc.el (calc-lu-power-reference): Rename from
18472 `calc-logunits-power-reference'.
18473 (calc-lu-field-reference): Rename from
18474 `calc-logunits-field-reference'.
18475
18476 * calc/calc-help.el (calc-l-prefix-help):
18477 Mention musical note functions.
18478
18479 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
18480
18481 * minibuffer.el (completion-all-sorted-completions):
18482 Use :completion-cycle-penalty text property if present.
18483
18484 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
18485
18486 * allout.el (allout-yank-processing): Adjust for new rebulleting
18487 regime so bullet being yanked is used without prompting the user
18488 for a choice.
18489
18490 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
18491
18492 * startup.el (command-line): Warn the user that _emacs is deprecated.
18493
18494 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
18495
18496 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
18497 (delphi-verbose, delphi-comment-face, delphi-string-face)
18498 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
18499 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
18500 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
18501 (delphi-new-comment-line, delphi-font-lock-defaults)
18502 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
18503 Fix typos in docstrings.
18504
18505 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
18506
18507 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
18508 Invert the roles of character and string values for INSTEAD, so a
18509 string is used for the more common case of a defaulting prompt.
18510
18511 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18512
18513 * progmodes/ruby-mode.el (ruby-backward-sexp):
18514 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
18515 * play/gamegrid.el (gamegrid-make-face):
18516 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
18517 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
18518 * notifications.el (notifications-notify):
18519 * net/xesam.el (xesam-search-engines):
18520 * net/quickurl.el (quickurl-list-insert):
18521 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
18522
18523 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
18524
18525 * startup.el (command-line): Update package subdirectory regexp.
18526
18527 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18528
18529 * allout.el (allout-abbreviate-flattened-numbering)
18530 (allout-mode-deactivate-hook): Fix up obsolescence "date".
18531
18532 * subr.el (read-char-choice): Only show the cursor after the prompt,
18533 not after the answer.
18534
18535 2011-03-15 Kevin Ryde <user42@zip.com.au>
18536
18537 * help-fns.el (variable-at-point): Skip leading quotes, if any
18538 (bug#8253).
18539
18540 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
18541
18542 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
18543 warning message.
18544
18545 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
18546
18547 * shell.el (shell): When called interactively, offer to change the
18548 shell file name on remote hosts.
18549
18550 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
18551
18552 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
18553 integration for LDAP parameters. The host, base, user or binddn,
18554 and secret tokens can be specified in a netrc file, for instance.
18555 This is optional because an `auth-source' parameter must be
18556 specified in the search attributes.
18557
18558 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
18559
18560 * help.el (describe-mode): Link to the mode's definition (bug#8185).
18561
18562 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
18563
18564 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
18565 into declaration. Remove redundant and harmful binding.
18566
18567 2011-03-12 Eli Zaretskii <eliz@gnu.org>
18568
18569 * files.el (file-ownership-preserved-p): Pass `integer' as an
18570 explicit 2nd argument to `file-attributes'. If the file's owner
18571 is the Administrators group on Windows, and the current user is
18572 Administrator, consider that a match.
18573
18574 * server.el (server-ensure-safe-dir): Consider server directory
18575 safe on MS-Windows if its owner is the Administrators group while
18576 the current Emacs user is Administrator. Use `=' to compare
18577 numerical UIDs, since they could be integers or floats.
18578
18579 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
18580
18581 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
18582
18583 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
18584
18585 Sync with Tramp 2.2.1.
18586
18587 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
18588
18589 * net/trampver.el: Update release number.
18590
18591 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
18592
18593 * progmodes/compile.el (compilation--previous-directory): Fix up
18594 various nil/dead-marker mismatches (bug#8014).
18595 (compilation-directory-properties, compilation-error-properties):
18596 Don't call it at a position past the one we're about to change.
18597
18598 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
18599 Disable obsolescence warnings in the file that declares it.
18600
18601 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
18602
18603 * allout-widgets.el (allout-widgets-tally):
18604 Initialize allout-widgets-tally as a hash table rather than nil to
18605 prevent mode-line redisplay warnings. Also, clarify the module
18606 description and fix a comment typo.
18607
18608 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
18609
18610 * help-fns.el (describe-variable): Don't complete keywords.
18611 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
18612
18613 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
18614
18615 * emacs-lisp/package.el (package-version-join): Impose a standard
18616 string representation for pre/alpha/beta version lists.
18617 (package-unpack-single): Standardize the directory name by passing
18618 it through package-version-join.
18619 (package-strip-rcs-id): Accept any version string that does not
18620 signal an error in version-to-list.
18621
18622 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
18623
18624 * simple.el (delete-trailing-whitespace): Return nil for the
18625 benefit of `write-file-functions'.
18626
18627 2011-03-10 Glenn Morris <rgm@gnu.org>
18628
18629 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
18630
18631 * vc/vc-git.el (vc-git-program): New option.
18632 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
18633 (vc-git--call): Use it.
18634
18635 * eshell/esh-util.el (eshell-condition-case): Doc fix.
18636
18637 * cus-edit.el (Custom-newline): If no button at point, look
18638 for a subgroup button at start-of-line. (Bug#2298)
18639
18640 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
18641
18642 2011-03-10 Julien Danjou <julien@danjou.info>
18643
18644 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
18645 `cursor-type' is nil.
18646
18647 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
18648
18649 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
18650
18651 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
18652
18653 * allout.el: Change so yank of distinctive-bullet items
18654 preserves the existing header prefix, rebulleting it if necessary,
18655 rather than replacing it. This is necessary for proper operation
18656 of cooperative addons like allout-widgets.
18657 (allout-make-topic-prefix, allout-rebullet-heading):
18658 Change SOLICIT arg to INSTEAD, and interpret additionally a string
18659 value as alternate bullet to be used, instead of prompting the user
18660 for a bullet character.
18661
18662 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
18663
18664 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
18665 Do not use `tramp-file-name-port', because this returns also
18666 `tramp-default-port'.
18667
18668 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
18669
18670 * net/rcirc.el (rcirc-handler-001): Remove useless
18671 with-rcirc-process-buffer.
18672 (rcirc-check-auth-status): Swap arguments to string-match.
18673
18674 2011-03-09 Glenn Morris <rgm@gnu.org>
18675
18676 * shell.el (shell-mode):
18677 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
18678
18679 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
18680 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
18681
18682 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18683
18684 * emacs-lisp/package.el (package-refresh-contents)
18685 (package-menu-execute): Use condition-case-no-debug.
18686
18687 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
18688
18689 * simple.el (shell-command-to-string): Use `process-file'.
18690
18691 * emacs-lisp/package.el (package-tar-file-info): Handle also
18692 remote files.
18693
18694 * emacs-lisp/package-x.el (package-upload-buffer-internal):
18695 Use `equal' for upload base check.
18696
18697 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
18698
18699 * textmodes/texinfo.el (texinfo-environments):
18700 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
18701
18702 2011-03-08 Glenn Morris <rgm@gnu.org>
18703
18704 * cus-start.el (cursor-in-non-selected-windows):
18705 Fix :set quoting oddness. (Bug#8192)
18706
18707 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
18708 in some setf expressions. (Bug#2159)
18709
18710 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
18711
18712 * custom.el (custom-available-themes): Return themes in
18713 alphabetical order.
18714
18715 See ChangeLog.15 for earlier changes.
18716
18717 ;; Local Variables:
18718 ;; coding: utf-8
18719 ;; End:
18720
18721 Copyright (C) 2011-2012 Free Software Foundation, Inc.
18722
18723 This file is part of GNU Emacs.
18724
18725 GNU Emacs is free software: you can redistribute it and/or modify
18726 it under the terms of the GNU General Public License as published by
18727 the Free Software Foundation, either version 3 of the License, or
18728 (at your option) any later version.
18729
18730 GNU Emacs is distributed in the hope that it will be useful,
18731 but WITHOUT ANY WARRANTY; without even the implied warranty of
18732 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18733 GNU General Public License for more details.
18734
18735 You should have received a copy of the GNU General Public License
18736 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.