Bind view-echo-area-messages in minibuffer-inactive-mode-map.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-02-09 Chong Yidong <cyd@gnu.org>
2
3 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
4 view-echo-area-messages (Bug#13340).
5
6 * help.el (view-echo-area-messages): Use display-buffer.
7
8 * dired-x.el (dired-do-run-mail): Prompt for confirmation
9 (Bug#13561).
10
11 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
12
13 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
14 Eval body right away, now that we do eager macroexpansion (bug#13605).
15
16 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
17 (fundamental-mode): Use run-mode-hooks.
18
19 * eshell/esh-proc.el (eshell/kill): Fix last change.
20 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
21
22 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
23
24 * eshell/esh-proc.el (eshell/kill): Rewrite.
25
26 * eshell/em-ls.el (show-almost-all): Declare.
27 (eshell-do-ls): Add support for -A argument.
28
29 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
30
31 * icomplete.el (icomplete-forward-completions)
32 (icomplete-backward-completions): Handle corner case (bug#13602).
33
34 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
35
36 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
37 be nil. Handle this. (Bug#13636)
38
39 2013-02-07 Richard Stallman <rms@gnu.org>
40
41 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
42 `save-buffer-coding-system'.
43
44 2013-02-07 Alan Mackenzie <acm@muc.de>
45
46 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
47 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
48 (c-parse-state-get-strategy): Don't return 'BOD any more.
49 (c-append-lower-brace-pair-to-state-cache):
50 Extra parameter HERE instead of narrowing.
51 Widen to top of buffer before searching backwards for a brace pair.
52 (c-state-push-any-brace-pair): Add HERE parameter to function call.
53 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
54 Narrow to parameter HERE, in place of being called narrowed.
55 (c-remove-stale-state-cache): Extra parameter HERE in place of
56 narrowing. Check there's an open brace in the cache before
57 searching for its match.
58 (c-invalidate-state-cache-1): Add HERE parameter to function call.
59 (c-parse-state-1): Don't narrow here for 'forward strategy,
60 instead passing extra parameter HERE to several functions.
61 Remove 'BOD strategy.
62
63 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
64
65 * emacs-lisp/package.el (describe-package-1): Tell what archive is
66 used to install the package.
67
68 2013-02-06 Glenn Morris <rgm@gnu.org>
69
70 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
71 if we can't get user input. (Bug#6567)
72
73 * startup.el (command-line): If simple.el is missing,
74 test and warn about for some possible causes.
75
76 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
77
78 * cus-start.el (all): Add ns-use-native-fullscreen.
79
80 2013-02-05 Glenn Morris <rgm@gnu.org>
81
82 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
83
84 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
85 Fix directory creation in fallback case.
86
87 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
88
89 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
90 (vc-update-change-log): Use dolist.
91
92 2013-02-04 Chong Yidong <cyd@gnu.org>
93
94 * thingatpt.el: Rewrite the URL detection routines, absorbing some
95 code from ffap.el.
96 (thing-at-point-beginning-of-url-regexp): New var.
97 (thing-at-point-uri-schemes): Update list of URI schemes.
98 (thing-at-point-url-regexp): Variable deleted.
99 (thing-at-point-markedup-url-regexp): Disallow newlines.
100 (thing-at-point-newsgroup-regexp)
101 (thing-at-point-newsgroup-heads)
102 (thing-at-point-default-mail-uri-scheme): New variables.
103 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
104 method to find the possible bounds of the URI at point.
105 New optional argument to find ill-formed URIs.
106 (thing-at-point-url-at-point): Rewrite. New arguments for finding
107 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
108 the scheme-adding heuristics from ffap-url-at-point.
109 (thing-at-point--bounds-of-well-formed-url): New function.
110 Do parens matching to decide whether to include parens in the URI
111 (Bug#9153).
112
113 * ffap.el: Require thingatpt.
114 (ffap-url-at-point): Delegate URI detection to thing-at-point.
115 All URI-valid characters are now recognized (Bug#5673).
116 (ffap-string-at-point): Use use-region-p.
117 (ffap-url-regexp): Extra character is handled by thing-at-point.
118 (ffap-string-at-point-mode-alist): Allow parentheses.
119 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
120 Convert to aliases; code moved to thingatpt.el.
121 (ffap-gnus-hook): Use setq-local.
122
123 2013-02-04 Glenn Morris <rgm@gnu.org>
124
125 * emacs-lisp/ert.el (ert--explain-format-atom):
126 Don't try to print non-characters as characters. (Bug#13543)
127
128 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
129
130 * net/tramp.el (tramp-debug-message): Extend function exclude list.
131 (tramp-backtrace): New defun.
132 (tramp-handle-insert-file-contents): Use `visit' when inserting
133 the local copy.
134
135 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
136 Use `remote-file-name-inhibit-cache'.
137
138 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
139
140 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
141 (bug#13614).
142
143 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
144 current-load-list (bug#13366).
145
146 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
147
148 * progmodes/compile.el (compilation-error-regexp-alist-alist):
149 Identify g++ template instantiation trace. (Bug#12287)
150 (compilation-mode-hook, compilation-start-hook)
151 (compilation-window-height): Simplify docstrings. (Bug#13379)
152
153 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
154
155 * mouse.el (mouse-drag-track): Always deactivate the mark before
156 running the final event's command since that command is in charge of
157 activating the mark if needed (bug#13523).
158
159 2013-02-02 Juri Linkov <juri@jurta.org>
160
161 * replace.el (perform-replace): Move let-bindings of isearch-*
162 variables deeper to the loop that searches for the next match.
163 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
164 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
165 (Bug#13579)
166
167 * isearch.el (isearch-search-fun-default): Check for null
168 first element of isearch-cmds as a precaution when it's used
169 with inactive isearch.
170
171 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
172
173 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
174 error when buffer in question is narrowed so position 1 is out of
175 visible part.
176
177 2013-02-02 Glenn Morris <rgm@gnu.org>
178
179 * textmodes/remember.el (remember-clipboard): Doc fix.
180
181 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
182
183 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
184 properties (bug#13179).
185
186 2013-02-02 Juri Linkov <juri@jurta.org>
187
188 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
189 instead of hard-coded default face `match'. (Bug#9438)
190
191 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
192
193 * vc/vc-arch.el (vc-arch-registered):
194 * vc/vc-bzr.el (vc-bzr-registered):
195 * vc/vc-cvs.el (vc-cvs-registered):
196 * vc/vc-git.el (vc-git-registered):
197 * vc/vc-hg.el (vc-hg-registered):
198 * vc/vc-mtn.el (vc-mtn-registered):
199 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
200 (Bug#13139)
201
202 * info.el (Info-next-reference, Info-prev-reference): Add numeric
203 prefix argument. (Bug#11656)
204
205 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
206
207 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
208
209 2013-02-01 Glenn Morris <rgm@gnu.org>
210
211 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
212 if the backend is known not to support it.
213
214 * imenu.el (imenu-default-create-index-function):
215 Tweak infinite loop test to check for forward motion as well as none.
216
217 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
218
219 * net/soap-client.el (soap-invoke): Encode the string for
220 `url-request-data' as UTF-8.
221 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
222
223 2013-02-01 Glenn Morris <rgm@gnu.org>
224
225 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
226
227 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
228
229 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
230
231 * net/tramp.el (tramp-tramp-file-p): Comment check for
232 `string-as-unibyte'. The function does not exist on XEmacs, and
233 likely we need another approach.
234
235 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
236 `tramp-gw-*' variables are bound.
237
238 2013-01-31 Glenn Morris <rgm@gnu.org>
239
240 * files.el (basic-save-buffer-2): Choose coding system for
241 writing the file before backing it up, to reduce delay between
242 backing up and writing the new version. (Bug#13522)
243
244 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
245
246 * simple.el (cycle-spacing): New command.
247 (just-one-space): Use it.
248
249 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
250
251 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
252 (opascal-newline-always-indents): Remove custom.
253 (opascal-tab, opascal-newline): Remove commands.
254 (opascal-new-comment-line): Insert "\n" instead of calling newline.
255 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
256 (opascal-save-match-data): Remove, use save-match-data instead.
257 (opascal-save-state): Use with-silent-modifications.
258
259 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
260 (bug#13585).
261
262 2013-01-30 Juri Linkov <juri@jurta.org>
263
264 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
265 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
266 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
267
268 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
269
270 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
271 column if we're just deleting the backslashes.
272 (makefile-fill-paragraph): Use eolp.
273
274 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
275
276 * autorevert.el (auto-revert-use-notify): Fix docstring.
277
278 2013-01-30 Leo Liu <sdl.web@gmail.com>
279
280 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
281
282 2013-01-30 Glenn Morris <rgm@gnu.org>
283
284 * mouse.el (mouse-drag-line): Avoid pushing same event onto
285 unread-command-events twice in some cases. This tries to implement
286 the 2012-07-26 changes in a different way. (Bug#13560)
287
288 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
289
290 * progmodes/python.el
291 (python-pdbtrack-comint-output-filter-function): Enhancements on
292 stacktrace detection. (thanks @gnovak)
293
294 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
295
296 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
297 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
298 Use defvar-local.
299 (jit-lock-register): Use setq-local.
300
301 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
302
303 * calc-units.el (math-default-units-table): Remove initial value.
304 (calc-convert-units): Treat expressions where all the units cancel as
305 if they didn't have units.
306
307 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
308
309 * net/tramp.el (tramp-process-connection-type): Fix docstring.
310 (tramp-completion-reread-directory-timeout): Fix type.
311 (tramp-connection-min-time-diff): New defcustom.
312
313 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
314
315 2013-01-30 Glenn Morris <rgm@gnu.org>
316
317 * imenu.el (imenu-default-create-index-function):
318 Put back a version of the infinite loop test removed 2013-01-23.
319
320 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
321
322 * progmodes/python.el (python-shell-parse-command):
323 Find python-shell-interpreter with modified environment.
324
325 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
326
327 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
328
329 2013-01-29 Alan Mackenzie <acm@muc.de>
330
331 Amend to fontify /regexp/s in actions correctly.
332 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
333 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
334 are no longer included.
335 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
336 What used to be these variables without "-line" in the name.
337 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
338 (c-awk-non-arith-op-bra-re): Now also matches {.
339 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
340 "return", and "case".
341 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
342 by /.
343 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
344 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
345
346 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
347
348 * autorevert.el (auto-revert-use-notify):
349 Use `custom-initialize-default' for initialization. (Bug#13583)
350
351 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
352
353 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
354 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
355 in `tramp-file-name-handler'.
356 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
357 compatibility.
358 (tramp-compute-multi-hops): Check, whether
359 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
360
361 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
362
363 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
364 (bug#13297).
365
366 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
367
368 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
369 checks made superfluous by the \_< operator.
370 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
371 temporarily) broken indentation.
372 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
373 Highlight nested constants, too. \_< broke that.
374
375 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
376
377 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
378 instead of "\\b".
379
380 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
381
382 * autorevert.el (auto-revert-handler): Notifications which result
383 from a saved file shall not be taken into account. (Bug#13557)
384
385 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
386
387 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
388 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
389 (lisp-mode): Pass t for it. (Bug#13556)
390
391 2013-01-25 Alan Mackenzie <acm@muc.de>
392
393 AWK Mode: Fix indentation bug at top level. Bug #12274.
394
395 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
396 just before CASE 5D.
397
398 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
399
400 * net/socks.el (socks-nslookup-host): Use string-to-number.
401
402 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
403
404 * autorevert.el (auto-revert-remote-files)
405 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
406 (auto-revert-notify-enabled, auto-revert-use-notify)
407 (auto-revert-notify-watch-descriptor-hash-list)
408 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
409 (auto-revert-notify-event-descriptor)
410 (auto-revert-notify-event-action)
411 (auto-revert-notify-event-file-name): Doc fix.
412 (global-auto-revert-mode): Reorder checks.
413 (auto-revert-notify-rm-watch): Respect changed values of
414 `auto-revert-notify-watch-descriptor-hash-list'.
415 (auto-revert-notify-add-watch): Check for
416 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
417 `inotify-add-watch'. Watch `default-directory' instead of
418 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
419 has a changed meaning now. (Bug#13540)
420 (auto-revert-notify-handler): Change implementation wrt events
421 returning from a directory.
422 (auto-revert-handler): Reorder implementation for checks of remote
423 files.
424 (auto-revert-buffers): Fix parentheses error.
425
426 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
427
428 * progmodes/python.el: Enhancements to header documentation about
429 skeletons. (Bug#5716)
430
431 * imenu.el (imenu-default-create-index-function): Remove useless
432 infinite loop check. (Bug#13438)
433
434 2013-01-25 Alan Mackenzie <acm@muc.de>
435
436 Fix a bug in the state cache mechanism. Refactor this a bit.
437
438 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
439 `cache-pos' element from the return value.
440 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
441 buffer to enable proper searching from beyond HERE. Amend the
442 test for detecting the sought brace pair. Amend the value written
443 to the "brace desert cache" when the brace isn't found.
444 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
445 and several other variables analogously.
446 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
447 parameter to a locally calculated variable.
448 (c-parse-state-1): Change the calling conventions to the two
449 defuns involving `cache-pos'.
450
451 2013-01-25 Chong Yidong <cyd@gnu.org>
452
453 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
454
455 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
456
457 * paren.el (show-paren-function): Make sure to set 'priority and
458 'face only if the overlay does exist.
459
460 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
461
462 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
463
464 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
465 basic attributes.
466 (tramp-sh-handle-set-file-acl): Improve error checking.
467
468 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
469
470 * doc-view.el (doc-view-display): Force mode line update until all
471 document is converted. Suggested by Stefan Monnier (Bug#13164).
472
473 2013-01-23 Bastien Guerry <bzg@gnu.org>
474
475 * paren.el (show-paren-function): Make sure an overlay exists
476 before trying to delete it. Also use `pos' as a position only
477 when it is an integer.
478
479 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
480
481 * play/gametree.el (gametree-break-line-here): Use point-marker.
482
483 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
484
485 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
486 Mark descriptive parts with `display' property.
487
488 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
489
490 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
491 New variable to map standard dict names to hunspell ones.
492 (ispell-set-spellchecker-params): Make sure specific dict names
493 are used for standard dicts with hunspell.
494
495 2013-01-21 Tassilo Horn <tsdh@gnu.org>
496
497 * textmodes/reftex-cite.el (reftex-format-citation): Add format
498 chars for note (%N) and url (%U).
499 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
500
501 2013-01-21 Juri Linkov <juri@jurta.org>
502
503 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
504 in addition to existing separate binding `meta f10' in `global-map'.
505 (Bug#13484)
506
507 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
508
509 Improve XEmacs compatibility.
510
511 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
512
513 * net/tramp-adb.el (top): Require `time-date'.
514 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
515 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
516 Use `tramp-file-name-handler'.
517 (tramp-adb-maybe-open-connection):
518 Use `tramp-compat-set-process-query-on-exit-flag'.
519
520 * net/tramp-sh.el (tramp-sh-handle-file-acl):
521 Use `tramp-compat-funcall'.
522
523 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
524 `tramp-compat-funcall'.
525
526 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
527
528 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
529 reimplementation using "adb shell command ..." instead of running
530 remote shell interactively.
531
532 2013-01-20 Glenn Morris <rgm@gnu.org>
533
534 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
535 Add native profiler menu entries.
536
537 * profiler.el (profiler-running-p): New function.
538 (profiler-cpu-profile): Use profiler-running-p.
539 (profiler-report-mode-map): Add some more menu entries.
540
541 2013-01-19 Glenn Morris <rgm@gnu.org>
542
543 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
544 fixes 2012-12-07 change. (Bug#13499)
545
546 2013-01-19 Leo Liu <sdl.web@gmail.com>
547
548 * dired.el (dired-get-marked-files): Prune erroneous values due to
549 last change. (Bug#13152)
550
551 2013-01-19 Glenn Morris <rgm@gnu.org>
552
553 * progmodes/etags.el (tags-table-check-computed-list):
554 Preserve point in tags buffer. (Bug#13412)
555
556 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
557
558 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
559 Chong Yidong <cyd@gnu.org>
560
561 * image-mode.el (image-next-file, image-previous-file):
562 New commands (Bug#8453).
563 (image-mode-map): Bind them to n and p.
564 (image-mode--images-in-directory): New helper function.
565
566 2013-01-19 Chong Yidong <cyd@gnu.org>
567
568 * image-mode.el (image-mode-fit-frame): Add a frame argument.
569 Suggested by Drew Adams (Bug#7730). Handle window decorations;
570 save and restore the old window configuration.
571
572 2013-01-18 Leo Liu <sdl.web@gmail.com>
573
574 * progmodes/js.el: Tweak autoload cookie for alias.
575
576 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
577
578 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
579 buffer local, again. This was lost with the fix on 2013-01-12.
580
581 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
582
583 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
584 order to support several eshell buffers in parallel.
585
586 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
587
588 * autorevert.el (auto-revert-use-notify): In the :set function, do
589 not modify `kill-buffer-hook'.
590 (auto-revert-notify-rm-watch):
591 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
592 (auto-revert-notify-add-watch): Do not call
593 `auto-revert-notify-rm-watch', but add it to a buffer local
594 `kill-buffer-hook'.
595
596 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
597
598 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
599 call to `eval' rather than a backquoted lambda.
600
601 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
602
603 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
604 to return an explicit nil.
605 (advice--remove-function): Change accordingly.
606
607 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
608 the use of nadvice.el.
609
610 * progmodes/which-func.el (which-function): Silence imenu errors
611 (bug#13433).
612
613 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
614
615 * progmodes/sql.el: (sql-imenu-generic-expression):
616 (sql-mode-font-lock-object-name): Match schema qualified names.
617 (sql-connect): Use string keys.
618 (sql-product-interactive): Wait for interpreter prompt.
619 (sql-comint-oracle): Set process coding based on NLS_LANG.
620
621 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
622
623 * progmodes/sql.el (sql-output-to-send): Remove, unused.
624 (sql-interactive-remove-continuation-prompt):
625 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
626
627 2013-01-14 Leo Liu <sdl.web@gmail.com>
628
629 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
630 (Bug#13420)
631
632 2013-01-14 Glenn Morris <rgm@gnu.org>
633
634 * progmodes/compile.el (compilation-error-regexp-alist-alist):
635 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
636
637 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
638
639 * progmodes/python.el (python-nav-end-of-statement):
640 Fix cornercase when handling multiline strings.
641
642 2013-01-13 Richard Stallman <rms@gnu.org>
643
644 * mail/sendmail.el (mail-position-on-field): Add doc string.
645
646 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
647 Get current message boundaries and pass them to
648 message-forward-make-body-mime. Minor style changes.
649
650 2013-01-13 Eli Zaretskii <eliz@gnu.org>
651
652 * cus-start.el (all): Avoid warnings about
653 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
654
655 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
656
657 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
658
659 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
660
661 * jit-lock.el (jit-lock-debug-mode): New minor mode.
662 (jit-lock--debug-fontifying): New var.
663 (jit-lock--debug-fontify): New function.
664 * subr.el (condition-case-unless-debug): Don't prevent catching the
665 error, just let the debbugger run.
666 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
667 timer code and don't drop errors silently.
668
669 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
670
671 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
672 `permanent-local' property.
673 (auto-revert-notify-handler): Use `file-equal-p'.
674
675 2013-01-12 Eli Zaretskii <eliz@gnu.org>
676
677 * autorevert.el (auto-revert-notify-handler): Fix filtering of
678 file notification by ACTION. For filtering by file name, compare
679 only the non-directory part of the file name.
680
681 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
682
683 * autorevert.el: Use cl-lib instead of cl.
684
685 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
686 (vc-bzr-checkin): Use it.
687 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
688 will preserve match-data.
689
690 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
691
692 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
693 (js--declaration-keyword-re): New var.
694 (js--multi-line-declaration-indentation): New function.
695 (js--proper-indentation): Use it.
696
697 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
698
699 * calc/calc.el (calc-highlight-selections-with-faces)
700 (calc-dispatch):
701 * comint.el (comint-history-isearch-message):
702 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
703 * ffap.el (ffap-string-at-point-region, ffap-next)
704 (ffap-string-at-point, ffap-string-around)
705 (ffap-copy-string-as-kill, ffap-highlight-overlay)
706 (ffap-literally):
707 * font-lock.el (font-lock-keywords-alist)
708 (font-lock-removed-keywords-alist):
709 * help-mode.el (help-xref-symbol-regexp):
710 * info.el (Info-find-emacs-command-nodes):
711 * international/mule.el (add-to-coding-system-list):
712 * isearch.el (isearch-message-function, isearch-fail-pos):
713 * misearch.el (multi-isearch-next-buffer-function):
714 * newcomment.el (comment-box):
715 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
716 (pr-setting-database):
717 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
718 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
719 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
720 (pike-font-lock-keywords-3):
721 * progmodes/compile.el (compile):
722 * progmodes/etags.el (tags-table-files)
723 (tags-table-files-function, tags-included-tables-function):
724 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
725 (gdb-restore-windows):
726 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
727 (ps-n-up-filling-database):
728 * server.el (server-buffer, server-log):
729 * simple.el (newline, delete-backward-char, delete-forward-char)
730 (minibuffer-history-isearch-message, kill-line, track-eol)
731 (temporary-goal-column):
732 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
733 (flyspell-default-deplacement-commands):
734 * textmodes/ispell.el (ispell-accept-output):
735 * textmodes/sgml-mode.el (html-tag-help):
736 * vc/compare-w.el (compare-ignore-whitespace)
737 (compare-ignore-case, compare-windows-dehighlight):
738 * vc/diff.el (diff):
739 * whitespace.el (whitespace-point)
740 (whitespace-font-lock-refontify, whitespace-bob-marker)
741 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
742
743 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
744
745 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
746 (auto-revert-notify-rm-watch): Ignore errors.
747 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
748 inotify, and '(size last-write-time) for w32notify.
749 Set buffer-local `auto-revert-use-notify' to nil when adding a file
750 watch fails - this is a fallback to the file modification check.
751 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
752 (auto-revert-notify-event-action)
753 (auto-revert-notify-event-file-name): New defuns.
754 (auto-revert-notify-handler): Use them. Implement first
755 plausibility checks.
756 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
757
758 2013-01-11 Julien Danjou <julien@danjou.info>
759
760 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
761 max are almost equal. Also return the correct value for V which is
762 already between 0 and 1.
763
764 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
765
766 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
767
768 2013-01-11 Eli Zaretskii <eliz@gnu.org>
769
770 * autorevert.el (auto-revert-notify-rm-watch)
771 (auto-revert-notify-add-watch): Fix typos in w32notify function
772 names.
773
774 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
775
776 * autorevert.el (auto-revert-notify-enabled): Move up.
777 (auto-revert-use-notify): New defcustom.
778 (auto-revert-mode, global-auto-revert-mode)
779 (auto-revert-notify-add-watch, auto-revert-handler)
780 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
781 `auto-revert-notify-enabled'.
782
783 2013-01-10 Elias Pipping <pipping@exherbo.org>
784
785 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
786 * doc-view.el (doc-view-document->bitmap):
787 Use doc-view-single-page-converter-function instead of
788 single-page-converter arg; adjust callers.
789
790 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
791
792 * progmodes/which-func.el (which-function): Understand Semantic's use
793 of overlays in imenu--index-alist.
794
795 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
796
797 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
798 (Man-man-k-use-anchor): New var.
799 (Man-parse-man-k): New function.
800 (Man-completion-table): Use it.
801 (man): Flush the completion cache between uses.
802
803 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
804
805 * autorevert.el: Add file watch support.
806 (auto-revert-notify-enabled): New defconst.
807 (auto-revert-notify-watch-descriptor-hash-list)
808 (auto-revert-notify-watch-descriptor)
809 (auto-revert-notify-modified-p): New defvars.
810 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
811 (auto-revert-notify-handler): New defuns.
812 (auto-revert-mode, global-auto-revert-mode): Remove file watches
813 when mode is disabled.
814 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
815 (auto-revert-buffers): Add file watches for active buffers.
816
817 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
818
819 * cus-start.el (toplevel): Only allow float values for
820 scroll-up-aggressively and scroll-down-aggressively.
821 Allow any number for line-spacing.
822
823 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
824
825 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
826 (doc-view-pdf->png-converter-function): Use mupdf if available.
827 (doc-view-djvu->png-converter-function)
828 (doc-view-ps->png-converter-function): Remove.
829 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
830 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
831 (doc-view-already-converted-p): Adjust accordingly.
832 (doc-view-mode-p): Simplify.
833 (doc-view-enlarge): Use setq-local.
834 (doc-view-pdf->png-converter-ghostscript)
835 (doc-view-djvu->png-converter-ddjvu)
836 (doc-view-pdf->png-converter-mupdf): Rework to call
837 doc-view-start-process directly.
838 (doc-view-pdf/ps->png): Simplify accordingly.
839 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
840 (doc-view-document->bitmap): Rename from doc-view-document->png.
841 (doc-view-convert-current-doc): Merge pdf and djvu cases.
842 (doc-view-set-slice-from-bounding-box): Fix completion table.
843 (doc-view-mode): Use add-hook for after-revert-hook.
844
845 2013-01-10 Glenn Morris <rgm@gnu.org>
846
847 * emacs-lisp/authors.el (authors-ignored-files)
848 (authors-valid-file-names, authors-renamed-files-alist):
849 Add some more entries.
850
851 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
852
853 * image-mode.el (image-mode-winprops): Don't throw away the fallback
854 `t' pseudo-window entry.
855
856 2013-01-10 Alan Mackenzie <acm@muc.de>
857
858 Fix bugs in the c-parse-state mechanism. Reuse some markers
859 instead of continually generating new ones.
860
861 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
862 (c-state-old-cpp-end-marker): New variables.
863 (c-append-lower-brace-pair-to-state-cache): Start a backward
864 search for "}" definitively outside CPP constructs.
865 (c-remove-stale-state-cache): Inform the caller of a need to
866 search back for a brace pair in certain circumstances.
867 (c-state-maybe-marker): New macro.
868 (c-parse-state): Reuse markers when appropriate.
869
870 2013-01-10 Glenn Morris <rgm@gnu.org>
871
872 * simple.el (execute-extended-command): Doc fix.
873 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
874
875 2013-01-10 Chong Yidong <cyd@gnu.org>
876
877 * faces.el (read-face-name): Doc fix.
878
879 2013-01-10 Roland Winkler <winkler@gnu.org>
880
881 * emacs-lisp/crm.el: Allow any regexp for separators.
882 (crm-default-separator): All spaces around the default comma separator.
883 (crm--completion-command): New macro.
884 (crm-completion-help, crm-complete, crm-complete-word): Use it.
885 (crm-complete-and-exit): Handle non-single-char separators.
886
887 2013-01-09 Elias Pipping <pipping@lavabit.com>
888
889 * doc-view.el: Add support for DjVu (bug#13164).
890 (doc-view-djvu->png-converter-function): New config var.
891 (doc-view-single-page-converter-function, doc-view--image-type)
892 (doc-view--image-file-extension): New vars.
893 (doc-view-mode): Initialize them.
894 (doc-view-goto-page): Use them.
895 (doc-view-mode-p): Add support for ddjvu.
896 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
897 (doc-view-set-up-single-converter): New funs.
898 (doc-view-pdf/ps->png): Extend for djvu.
899 (doc-view-document->png): Rename from doc-view-pdf->png.
900 (doc-view-convert-current-doc): Handle djvu.
901 (doc-view-insert-image, doc-view-display)
902 (doc-view-already-converted-p): Don't hardcode png.
903 (doc-view-set-doc-type): Recognize djvu docs.
904
905 2013-01-09 Elias Pipping <pipping@lavabit.com>
906
907 * doc-view.el: Add support for mupdf converter (bug#13164).
908 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
909 (doc-view-ps->png-converter-function): New config vars.
910 (doc-view-pdf->png-converter-ghostscript)
911 (doc-view-ps->png-converter-ghostscript)
912 (doc-view-pdf->png-converter-mupdf): New functions.
913 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
914
915 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
916
917 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
918 first in session cache: When `tramp-own-remote-path' is in
919 `tramp-remote-path', the remote path is only set in the session
920 cache.
921
922 2013-01-09 Glenn Morris <rgm@gnu.org>
923
924 * emacs-lisp/trace.el (trace-function-foreground)
925 (trace-function-background): Doc fix.
926
927 2013-01-09 Juri Linkov <juri@jurta.org>
928
929 * international/mule-cmds.el (read-char-by-name): Move let-binding
930 of completion-ignore-case around completing-read to fix regression
931 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
932 `string-match-p' using the nil value of `case-fold-search' and
933 `completion-ignore-case' in `completion-pcm--all-completions'.
934 (Bug#12615).
935
936 2013-01-09 Glenn Morris <rgm@gnu.org>
937
938 * progmodes/compile.el (compilation-parse-errors):
939 Fix typo. (Bug#13369)
940
941 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
942
943 * comint.el (comint-send-input): Check size of buffer before
944 waiting for process output, in case already accepted. (Bug#13290)
945
946 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
947
948 Spelling fixes.
949 * net/tramp-adb.el (tramp-adb-get-toolbox):
950 Fix misspelling of 'unknown'.
951
952 2013-01-08 Juri Linkov <juri@jurta.org>
953
954 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
955 * progmodes/flymake.el (flymake-errline, flymake-warnline):
956 Use underline style wave on terminals that support it. (Bug#13000)
957
958 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
959
960 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
961 the predicate returns nil.
962
963 * simple.el: Use lexical-binding.
964 (primitive-undo): Use pcase.
965 (minibuffer-history-isearch-push-state): Use a closure.
966
967 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
968
969 * simple.el (primitive-undo): Move from undo.c.
970
971 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
972
973 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
974 (cvs-mode-remove-handled): Use it (bug#13380).
975
976 * emacs-lisp/nadvice.el (advice--tweak): New function.
977 (advice--remove-function, advice--subst-main): Use it.
978
979 * emacs-lisp/advice.el: Update commentary.
980
981 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
982
983 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
984 Remove spurious entry.
985
986 2013-01-08 Glenn Morris <rgm@gnu.org>
987
988 * net/tramp.el (tramp-default-host-alist): Add :version.
989
990 2013-01-08 Juri Linkov <juri@jurta.org>
991
992 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
993 single completion. (Bug#12456)
994 (info--manual-names): Expand node completions into an explicit list
995 before appending it to another list. Filter out internal buffers
996 with the leading space in the buffer name. (Bug#10771)
997
998 2013-01-08 Juri Linkov <juri@jurta.org>
999
1000 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
1001 that defaults to the Top node.
1002 (Info-goto-node, Info-read-node-name): Doc fix to mention that
1003 the short format (FILENAME) goes to the Top node.
1004 (Info-build-node-completions): Rename arg `file' to `filename'.
1005 (Bug#13365)
1006
1007 2013-01-07 Bastien Guerry <bzg@gnu.org>
1008
1009 * menu-bar.el (menu-bar-search-documentation-menu):
1010 Use `apropos-user-option' and fix the help message.
1011
1012 2013-01-07 Bastien Guerry <bzg@gnu.org>
1013
1014 * apropos.el (apropos-do-all): Update docstring.
1015 (apropos-user-option-button): New face.
1016 (apropos-user-option): Rename from `apropos-variable' and update
1017 docstring.
1018 (apropos-variable): Rewrite, now show all variables by default.
1019 (apropos-print): Mention "User option" instead of "Variable" when
1020 printing doc for user options. (Bug#13276)
1021
1022 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
1023
1024 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1025 Handle filename correctly, when parsing "source -> target" symlink
1026 output.
1027 (tramp-adb-handle-set-file-times): New defun.
1028
1029 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
1030
1031 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
1032 advice list when the interactive-spec of ad-Advice-* changes.
1033
1034 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
1035
1036 * wid-edit.el (widget-default-get): Work for inlined elements.
1037 (Bug#12670)
1038
1039 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
1040
1041 * net/tramp.el (tramp-default-host-alist): New defcustom.
1042 (tramp-find-host): Use it.
1043 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
1044 `eshell-directory-change-hook'.
1045
1046 * net/tramp-adb.el (top): Add adb specific entry in
1047 `tramp-default-host-alist'.
1048 (tramp-adb-file-name-host): Remove function.
1049 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1050 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
1051
1052 * net/tramp-sh.el: Move eshell integration code to tramp.el.
1053
1054 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
1055
1056 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
1057
1058 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
1059
1060 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
1061 consist of more than one digit.
1062 (tramp-adb-file-name-handler-alist):
1063 Use `tramp-handle-file-exists-p' consistently.
1064 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
1065 (tramp-adb-handle-file-exists-p): Remove function.
1066 (tramp-adb-file-name-host): New defun.
1067 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1068 Use it.
1069 (tramp-adb-maybe-open-connection): Set "remote-path" property.
1070
1071 2013-01-06 Chong Yidong <cyd@gnu.org>
1072
1073 * vc/vc.el (vc-next-action): Detect buffer modifications
1074 conflicting with locking VCS operation (Bug#11490).
1075
1076 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
1077
1078 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
1079
1080 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1081 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
1082
1083 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
1084
1085 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
1086 parsing of ls output using regular expression (handle filenames
1087 with spaces). Use virtual device number.
1088 (tramp-do-parse-file-attributes-with-ls): New defun (Code
1089 cleanup).
1090
1091 2013-01-04 Daiki Ueno <ueno@gnu.org>
1092
1093 * epg.el: Silence byte-compiler warnings.
1094 (epg--start): Use delete-char instead of delete-backward-char.
1095 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
1096
1097 2013-01-04 Daiki Ueno <ueno@gnu.org>
1098
1099 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
1100 Suggested by Eli Zaretskii <eliz@gnu.org>.
1101
1102 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
1103
1104 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
1105 non-negative integers. Otherwise, the default values are used.
1106 (tramp-convert-file-attributes): Convert uid and gid to integers.
1107
1108 2013-01-04 Glenn Morris <rgm@gnu.org>
1109
1110 * term.el (term-handle-colors-array): Ensure face attributes
1111 are fully specified, not nil. (Bug#13337)
1112
1113 * term.el (term-default-fg-color, term-default-bg-color):
1114 Fix custom type.
1115
1116 * progmodes/etags.el (tags-compression-info-list): Doc fix.
1117 (tag-find-file-of-tag-noselect): Check auto-compression-mode
1118 rather than 'jka-compr being loaded. (Bug#13338)
1119
1120 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
1121
1122 * icomplete.el (icomplete-completions):
1123 Honor icomplete-prospects-height once more following
1124 2012-11-29 changes. (Bug#13224)
1125
1126 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1127
1128 * subr.el (internal--called-interactively-p--get-frame): Find aliases
1129 of called-interactively-p as well (bug#13237).
1130
1131 * view.el (view--enable, view--disable): Rename from view-mode-enable
1132 and view-mode-disable and assume it's called from view-mode.
1133 (view-mode-enable, view-mode-disable): Redefine as obsolete
1134 compatibility layer above view-mode.
1135 (view-mode-enter): Call `view-mode'.
1136
1137 * files.el (after-find-file): Call `view-mode'.
1138
1139 * doc-view.el (doc-view-scale-internally): New var.
1140 (doc-view-enlarge, doc-view-insert-image): Obey it.
1141
1142 2013-01-03 Daiki Ueno <ueno@gnu.org>
1143
1144 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
1145 exist. (Bug#13344)
1146
1147 2013-01-03 Glenn Morris <rgm@gnu.org>
1148
1149 * mail/rmail.el (rmail-set-header-1): Ignore case.
1150 Handle multi-line headers. (Bug#13330)
1151
1152 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
1153 Handle paragraph starting at beginning of buffer.
1154
1155 * subr.el (eval-after-load): Don't purecopy the form, so that it
1156 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
1157
1158 * emacs-lisp/byte-run.el (defun): Place cl declarations
1159 after any interactive spec. (Bug#13265)
1160
1161 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1162
1163 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
1164 defun. Don't check for DECL if DOCSTRING isn't a string.
1165 (defun): Likewise.
1166
1167 2013-01-02 Glenn Morris <rgm@gnu.org>
1168
1169 * eshell/em-cmpl.el (eshell-pcomplete):
1170 More thoroughly imitate pcomplete. (Bug#13293)
1171
1172 * files.el (parse-colon-path): Doc fix. (Bug#12351)
1173 Return nil for empty path elements. (Bug#13296)
1174
1175 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
1176
1177 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
1178 order to improve efficiency (Based on Daniel Colascione's
1179 <dancol@dancol.org> patch). (Bug#13182)
1180
1181 2013-01-02 Glenn Morris <rgm@gnu.org>
1182
1183 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
1184
1185 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1186
1187 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
1188 neither DOCSTRING nor DECL was given. (Bug#13316)
1189
1190 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
1191
1192 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
1193 `error' call.
1194 (tramp-do-copy-or-rename-file): Ignore errors when calling
1195 `set-file-extended-attributes'.
1196
1197 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1198 Add handler for `file-acl'.
1199 (tramp-smb-handle-file-acl): New defun.
1200
1201 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
1202
1203 * calc/README: Mention ISO 8601 week-numbering dates.
1204
1205 2013-01-01 Martin Rudalics <rudalics@gmx.at>
1206
1207 * view.el (view-mode-enable): New argument run-view-mode-hook.
1208 Run view-mode-hook only when it's non-nil (Bug#13315).
1209 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
1210 argument t.
1211
1212 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
1213
1214 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
1215 (No device connected, invalid device name). (Bug #13299)
1216
1217 2012-12-31 Martin Rudalics <rudalics@gmx.at>
1218
1219 * window.el (window-resizable--p): Rename to window-resizable-p.
1220 (window-resize-no-error): New function.
1221
1222 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
1223 broken in fix from 2012-12-28.
1224
1225 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
1226
1227 * subr.el (special-form-p): Don't signal errors on undef aliases.
1228
1229 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
1230
1231 * calc/calc-forms.el (math-parse-date): Try using
1232 `math-parse-iso-date' when it looks like it might be needed.
1233 Allow times of 24:00.
1234 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
1235 of 24:00.
1236
1237 2012-12-30 Glenn Morris <rgm@gnu.org>
1238
1239 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
1240 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
1241 (rmail-summary-displayed, rmail-summary): Declare.
1242 (mairix-rmail-display): Just require rmail.
1243
1244 2012-12-30 Chong Yidong <cyd@gnu.org>
1245
1246 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
1247 check for the tarball contents.
1248
1249 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
1250
1251 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
1252 tarfile content listings (Bug#13136).
1253
1254 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
1255
1256 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1257 Insert the undecoded text of the message being forwarded. (Bug#9521)
1258
1259 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
1260
1261 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
1262 integers, if they are real numbers. (Bug#13282)
1263
1264 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
1265 Return `t' on success.
1266
1267 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1268 Add handler for `set-file-selinux-context'.
1269
1270 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
1271
1272 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
1273 (tramp-sh-handle-set-file-acl): Return `t' on success.
1274
1275 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1276
1277 * files.el (backup-buffer-copy, basic-save-buffer-2):
1278 If set-file-extended-attributes fails, fall back on set-file-modes
1279 instead of signaling an error. (Bug#13298)
1280 (basic-save-buffer): Likewise.
1281
1282 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1283
1284 * progmodes/python.el: Support other commands triggering
1285 python-indent-line so indentation cycling continues to work.
1286 (python-indent-trigger-commands): New defcustom.
1287 (python-indent-line): Use it.
1288
1289 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1290
1291 * progmodes/python.el (python-shell-send-region): Add blank lines
1292 for non sent code so backtraces remain correct.
1293
1294 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1295
1296 * progmodes/python.el: Remove cl dependency.
1297 (python-syntax-count-quotes): Replace incf call.
1298 (python-fill-string): Replace setf call.
1299
1300 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
1301
1302 * info.el (info-other-window): New arg, for consistency with info.
1303
1304 2012-12-28 Martin Rudalics <rudalics@gmx.at>
1305
1306 * mail/rmail.el (rmail-maybe-display-summary):
1307 Rewrite (Bug#13066).
1308
1309 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
1310
1311 * epg.el (epg--start): Modify process-environment locally.
1312
1313 2012-12-28 Daiki Ueno <ueno@gnu.org>
1314
1315 * epg.el: Support pinentry-curses.
1316 Suggested by Werner Koch in
1317 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
1318 (epg-agent-file, epg-agent-mtime): New variable.
1319 (epg--start): Record the modified time of gpg-agent socket file,
1320 to restore Emacs frame after pinentry-curses termination.
1321 (epg-wait-for-completion): Restore Emacs frame here.
1322
1323 2012-12-27 Juri Linkov <juri@jurta.org>
1324
1325 * info.el (Info-file-completions): New variable.
1326 (Info-read-node-name-1): Complete node names in the Info file
1327 when a file name is given. Call `Info-build-node-completions'
1328 with a file name.
1329 (Info-build-node-completions): Add new arg `file'. When it is
1330 non-nil, visit it in a temporary buffer and cache its completions in
1331 `Info-current-file-completions'. Move most of the function body to
1332 `Info-build-node-completions-1'.
1333 (Info-build-node-completions-1): New function with the body from
1334 `Info-build-node-completions'. (Bug#12456)
1335
1336 2012-12-27 Juri Linkov <juri@jurta.org>
1337
1338 * frame.el (frame-maximization-style): Remove user option.
1339 (cycle-frame-maximized): Remove function.
1340 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
1341 (toggle-frame-fullscreen): New command bound to <f11> instead of
1342 `toggle-frame-maximized'.
1343 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
1344
1345 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
1346
1347 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
1348
1349 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1350 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1351 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
1352 for `file-accessible-directory-p'. (Bug#13275)
1353
1354 2012-12-27 Sam Steingold <sds@gnu.org>
1355
1356 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
1357 continuations, see <http://stackoverflow.com/questions/3582436>.
1358
1359 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
1360
1361 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
1362 "module" and "def" to have indentation before them.
1363 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
1364
1365 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
1366
1367 2012-12-27 Alan Mackenzie <acm@muc.de>
1368
1369 Speed up fontification where there's large brace blocks.
1370 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
1371 to a call of c-beginning-of-decl-1.
1372
1373 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1374
1375 * comint.el (comint-adjust-window-point): New function.
1376 (comint-postoutput-scroll-to-bottom):
1377 Call comint-adjust-window-point (Bug#13248).
1378
1379 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
1380
1381 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
1382 Rakefile regexp.
1383 (auto-mode-alist): Associate .gemspec files with ruby-mode
1384 (https://bugs.ruby-lang.org/issues/5453).
1385
1386 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
1387
1388 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
1389 Suppress coloring, if possible (required for BusyBox based systems like
1390 CyanogenMod).
1391 (tramp-adb-handle-file-attributes)
1392 (tramp-adb-handle-insert-directory)
1393 (tramp-adb-handle-file-name-all-completions): Use it.
1394 (tramp-adb-get-toolbox): New defun. Check for remote shell
1395 implementation (BusyBox or Toolbox).
1396
1397 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
1398
1399 * startup.el (initial-buffer-choice): Allow function as value
1400 (Bug#13251).
1401 (command-line-1): Handle case where initial-buffer-choice
1402 specifies a function.
1403 * server.el (server-execute): Handle case where
1404 initial-buffer-choice specifies a function.
1405
1406 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
1407
1408 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
1409 its own function.
1410 (smtpmail-try-auth-methods): Forget the user name/password if the
1411 login is unsuccessful (bug#12424).
1412
1413 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
1414
1415 * notifications.el (notifications-notify): Protect body with
1416 `with-demoted-errors'.
1417
1418 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1419 Check properties of remote device. Restart connection, if there is a
1420 change.
1421
1422 2012-12-21 Chong Yidong <cyd@gnu.org>
1423
1424 * sort.el (sort-subr): Doc fix (Bug#13056).
1425
1426 2012-12-21 Bastien Guerry <bzg@gnu.org>
1427
1428 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
1429
1430 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
1431
1432 * simple.el (process-file): Overwrite stderr file, if exists.
1433
1434 2012-12-21 Daiki Ueno <ueno@gnu.org>
1435
1436 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
1437 (epg-error): Set `error-message' property.
1438
1439 2012-12-21 Chong Yidong <cyd@gnu.org>
1440
1441 * international/mule-cmds.el (read-char-by-name): Signal an error
1442 if the user does not supply a valid character (Bug#13177).
1443
1444 * simple.el (transpose-subr-1): Preserve marker positions by
1445 changing the insertion sequence (Bug#13122).
1446
1447 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1448
1449 * simple.el (kill-region): Deactivate mark even for empty regions
1450 (Bug#13169).
1451
1452 2012-12-21 Chong Yidong <cyd@gnu.org>
1453
1454 * help-fns.el (describe-variable): Make sure we get the right
1455 buffer name (Bug#13105). Suggested by Kelly Dean.
1456
1457 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
1458
1459 * comint.el (comint-redirect-previous-input-string): New variable.
1460 (comint-redirect-setup, comint-redirect-cleanup)
1461 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
1462 (comint-redirect-preoutput-filter): Fix verbose message.
1463
1464 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
1465
1466 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
1467 is too long for Tramp. See discussion in
1468 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
1469
1470 * progmodes/compile.el (compilation-start): Remove line escape
1471 template.
1472
1473 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1474
1475 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
1476 Adjust comment.
1477
1478 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
1479
1480 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
1481 following non-comment text (bug#13207).
1482 (lm-header-multiline): Continuation lines need to be indented more than
1483 the first line.
1484 (lm-homepage): New function.
1485 (lm-with-file): Don't be confused if narrowing is in effect.
1486
1487 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
1488
1489 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
1490 very beginning of a hunk (e.g. killing the first line).
1491
1492 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
1493
1494 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
1495 and text properties from returned ACL string.
1496 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
1497 for "setfacl" command.
1498
1499 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
1500
1501 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
1502 `tramp-cleanup-this-connection', when the process has died.
1503 (Bug#13151)
1504
1505 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1506
1507 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
1508
1509 2012-12-17 Kevin Ryde <user42@zip.com.au>
1510
1511 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
1512
1513 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
1514
1515 Add support for preserving ACL entries of files.
1516
1517 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
1518 `set-file-acl' handlers.
1519
1520 * net/tramp-adb.el (tramp-adb-handle-copy-file):
1521 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1522
1523 * net/tramp-compat.el (tramp-compat-copy-file):
1524 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1525
1526 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1527 Add `file-acl' and `set-file-acl' handlers.
1528 (tramp-gvfs-handle-copy-file):
1529 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1530 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
1531 New defuns.
1532
1533 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1534 Add `file-acl' and `set-file-acl' handlers.
1535 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
1536 (tramp-sh-handle-set-file-acl): New defuns.
1537 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
1538 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1539
1540 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1541 Add `file-acl' and `set-file-acl' handlers.
1542 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
1543
1544 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1545
1546 * help-macro.el (make-help-screen): Instead of switch-to-buffer
1547 use pop-to-buffer with NORECORD argument t. As buffer name, use
1548 *Metahelp* with a leading space (Bug#13190).
1549
1550 2012-12-16 Romain Francoise <romain@orebokech.com>
1551
1552 * files.el (file-extended-attributes)
1553 (set-file-extended-attributes): New functions.
1554 (backup-buffer): Use them to handle both SELinux context and ACL
1555 entries.
1556 (backup-buffer-copy): Work with an alist of extended attributes,
1557 rather than an SELinux context.
1558 (basic-save-buffer-2): Ditto.
1559
1560 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
1561
1562 * battery.el (battery-bsd-apm): New function.
1563
1564 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
1565
1566 * calc/calc.el (calc-standard-date-formats): Adjust one of the
1567 standard date formats.
1568
1569 2012-12-15 Juri Linkov <juri@jurta.org>
1570
1571 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
1572 `isearch-insert-char-by-name'.
1573 (with-isearch-suspended): New defmacro with body mostly from
1574 `isearch-edit-string' except the part that sets
1575 `isearch-new-string' and `isearch-new-message'.
1576 (isearch-edit-string): Use new macro `with-isearch-suspended' with
1577 body that sets `isearch-new-string' and `isearch-new-message'.
1578 (isearch-insert-char-by-name): New command.
1579 * international/mule-cmds.el (read-char-by-name): Let-bind
1580 `enable-recursive-minibuffers' to t.
1581 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
1582
1583 2012-12-15 Juri Linkov <juri@jurta.org>
1584
1585 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
1586 (Bug#13175)
1587
1588 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
1589
1590 * dired-x.el (dired-guess-shell-command): Put colon at the end of
1591 the prompt. (Bug#13045)
1592
1593 2012-12-14 Glenn Morris <rgm@gnu.org>
1594
1595 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
1596 Try to include filename in non-bytecomp warning. (Bug#13132)
1597
1598 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1599
1600 Fix permissions bugs with setgid directories etc. (Bug#13125)
1601 * files.el (backup-buffer): Don't rely on 9th output of
1602 file-attributes, as it's now a placeholder. Instead, use the new
1603 optional arg of file-ownership-preserved-p.
1604 (file-ownership-preserved-p): New optional arg GROUP.
1605 Fix mishandling of setuid directories that would cause this
1606 function to return t when it should have returned nil.
1607 Document what happens if the file does not exist, and when
1608 it's not known whether the ownership will be preserved.
1609 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
1610 Likewise.
1611 (tramp-get-local-gid): Use group-gid for integer, as that's
1612 faster and more reliable.
1613
1614 2012-12-14 Julien Danjou <julien@danjou.info>
1615
1616 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
1617 Update keywords list, data type and PL/pgSQL.
1618
1619 2012-12-14 Dave Abrahams <dave@boostpro.com>
1620
1621 * vc/ediff-util.el (ediff-buffer-type): New function.
1622 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
1623 rather than taking it as as argument.
1624 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
1625
1626 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
1627
1628 * json.el: Add pretty-print option (bug#12634).
1629 (json-encoding-separator, json-encoding-default-indentation)
1630 (json--encoding-current-indentation, json-encoding-pretty-print)
1631 (json-encoding-lisp-style-closings): New vars.
1632 (json--with-indentation): New macro.
1633 (json-encode-hash-table, json-encode-alist, json-encode-plist)
1634 (json-encode-array): Use it to obey json-encoding-pretty-print.
1635 (json-pretty-print-buffer, json-pretty-print): New commands.
1636
1637 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
1638
1639 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1640 Extract `ruby-syntax-propertize-expansions'.
1641 (ruby-syntax-propertize-expansions): Only change syntax on
1642 certain string delimiters, to punctuation. This way the common
1643 functions like forward-word and thing-at-point still work.
1644 (ruby-match-expression-expansion): Improve readability.
1645 (ruby-block-contains-point): New function.
1646 (ruby-add-log-current-method): Handle several edge cases.
1647
1648 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
1649
1650 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
1651 unload-feature finishes even when aborting an ongoing edebug session.
1652 Also, do not worry about edebug-mode, unload-feature takes care of it.
1653
1654 2012-12-13 Andreas Schwab <schwab@suse.de>
1655
1656 * net/tls.el (tls-program): Update customize type.
1657
1658 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
1659
1660 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
1661 (edebug-setup-hook, cl-read-load-hooks): Use it.
1662 (edebug-unload-function): New function. (Bug#13163)
1663
1664 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
1665
1666 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
1667 Otherwise, there could be errors in autoloading. (Bug#13151)
1668
1669 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
1670
1671 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
1672 sequences.
1673
1674 2012-12-13 Alan Mackenzie <acm@muc.de>
1675
1676 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
1677 * progmodes/cc-engine.el (c-backward-comments): Add code to work
1678 around `forward-comment' not recognizing ^M as whitespace.
1679
1680 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
1681
1682 * progmodes/python.el (python-skeleton-class)
1683 (python-skeleton-def): Do not add space after defun name.
1684
1685 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
1686
1687 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
1688 (cl--symbol-function): Remove (now that funbound is like nil).
1689
1690 2012-12-12 Glenn Morris <rgm@gnu.org>
1691
1692 * button.el (button--area-button-p): Fix typo.
1693
1694 2012-12-12 Sam Steingold <sds@gnu.org>
1695
1696 * frame.el (frame-maximization-style): New user option.
1697 (toggle-frame-maximized): Toggle frame maximization according to
1698 `frame-maximization-style', bound to <f11>.
1699 (cycle-frame-maximized): Cycle between all maximization styles and
1700 non-maximized frame, bound to shift-<f11>.
1701
1702 2012-12-12 David Cadé <codename68@gmail.com>
1703
1704 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
1705
1706 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
1707
1708 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
1709 (eieio-override-prin1): Don't quote kewords and booleans.
1710 (object-write) <eieio-default-superclass>: Don't put closing parens
1711 on new line, avoid needless empty lines, align values that are objects
1712 with the slot keyword (instead of beginning on the same line).
1713 (eieio-list-prin1): Align value with slot keyword; increase
1714 eieio-print-depth before printing members of the list.
1715
1716 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
1717
1718 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
1719 a display text-property.
1720 (report-emacs-bug-hook): Don't bother deleting it any more.
1721
1722 * hilit-chg.el (highlight-save-buffer-state): Delete.
1723 Use with-silent-modifications instead.
1724 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
1725
1726 * button.el: Handle buttons in display text-properties.
1727 (button--area-button-p, button--area-button-string):
1728 Use (STRING . STRING-POS) representation instead of just STRING.
1729
1730 2012-12-11 Eli Zaretskii <eliz@gnu.org>
1731
1732 * makefile.w32-in (compile4-SH): Fix a typo that caused term
1733 subdirectory be skipped.
1734
1735 2012-12-11 Glenn Morris <rgm@gnu.org>
1736
1737 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
1738
1739 * progmodes/f90.el (f90-line-continued, f90-indent-region):
1740 Treat preprocessor lines embedded in continuations like comments.
1741 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
1742
1743 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
1744
1745 * calc/calc.el (calc-standard-date-formats): Add more date
1746 formats.
1747 * calc/calc-forms.el (math-parse-iso-date): New function.
1748 (math-parse-date): Use `math-parse-iso-date' when appropriate.
1749 (math-parse-iso-date-validate): Add extra error checking.
1750 (calc-date-notation): Add ability to access new date formats.
1751
1752 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1753
1754 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
1755 font-lock as well as when there's no text-property.
1756
1757 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
1758
1759 * hi-lock.el: Refine the choice of default face.
1760 (hi-lock-keyword->face): New function. Use it wherever we used
1761 cadadadr instead.
1762 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
1763 (hi-lock--last-face): Remove var.
1764 (hi-lock--unused-faces): New var to replace it.
1765 (hi-lock-read-face-name): Use/maintain it.
1766 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
1767 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
1768 if it has another face.
1769
1770 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1771
1772 * subr.el (w32notify-handle-event): New function.
1773 (inotify-handle-event): Doc fix.
1774
1775 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1776
1777 * subr.el (inotify-event-p, inotify-handle-event): New functions.
1778
1779 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
1780
1781 * simple.el (just-one-space): Doc fix.
1782
1783 2012-12-10 Eli Zaretskii <eliz@gnu.org>
1784
1785 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
1786
1787 2012-12-10 Le Wang <l26wang@gmail.com>
1788
1789 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
1790 narrowed buffer (bug#12361).
1791
1792 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
1793
1794 * vc/vc-hooks.el (vc-state): Doc fix.
1795
1796 2012-12-10 Glenn Morris <rgm@gnu.org>
1797
1798 * mail/rmail.el (rmail-maybe-display-summary):
1799 Preserve buffer, in case select-window changes it. (Bug#13066)
1800
1801 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1802
1803 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
1804 cl-load-hook where they belong.
1805
1806 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
1807
1808 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
1809
1810 2012-12-09 Eli Zaretskii <eliz@gnu.org>
1811
1812 Parallelize byte compilation on MS-Windows.
1813 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
1814 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
1815 (WINS_BASIC): Define as concatenation of the above.
1816 (compile): Subdivide into 4 separate and independent jobs that can
1817 be run in parallel.
1818 (compile0-CMD, compile0-SH): New targets for compiling
1819 COMPILE_FIRST files, which are prerequisites for the rest of the
1820 byte-compilation.
1821 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
1822 New targets for parallel compilation with cmd.exe.
1823 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
1824 compiling under a Unixy shell.
1825
1826 2012-12-09 Chong Yidong <cyd@gnu.org>
1827
1828 * simple.el (set-mark-default-inactive): Delete this
1829 accidentally-introduced option.
1830 (set-mark-command, exchange-point-and-mark): Remove calls.
1831
1832 2012-12-09 Glenn Morris <rgm@gnu.org>
1833
1834 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
1835 Respect a defcustom's :set function, if appropriate. (Bug#109)
1836 (eval-defun): Doc fix.
1837
1838 2012-12-08 Juri Linkov <juri@jurta.org>
1839
1840 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
1841 (Info-fontify-node, Info-bookmark-make-record): Remove the
1842 file extension from Info-current-file (Bug#13016).
1843
1844 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1845
1846 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
1847 point, still provide some default.
1848 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
1849 names, since we don't use it right now. Actually return the list.
1850 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
1851
1852 2012-12-07 Chong Yidong <cyd@gnu.org>
1853
1854 * novice.el (disabled-command-function): Remove a spurious help
1855 xref (Bug#13043). Suggested by Kelly Dean.
1856
1857 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
1858 syntax is specified (Bug#13025).
1859
1860 * info.el (Info-set-mode-line): Remove the file extension from
1861 Info-current-file if there is one (Bug#13016).
1862
1863 2012-12-07 Glenn Morris <rgm@gnu.org>
1864
1865 * mail/rmail.el (rmail-mime-decoded): New permanent local.
1866 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
1867 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
1868 and rmail-mime-decoded. (Bug#9841)
1869
1870 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
1871 (batch-unrmail, unrmail): Doc fixes.
1872 (unrmail): Respect unrmail-mbox-format.
1873 * mail/rmail.el (rmail-mbox-format): New option.
1874 (rmail-show-message-1): Respect rmail-mbox-format.
1875
1876 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1877
1878 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
1879
1880 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1881
1882 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
1883 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
1884 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
1885 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
1886 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
1887 (cl-progv): Don't rely on dynamic scoping to find the body.
1888 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
1889 (cl--proclaims-deferred): Rename from the "cl-" prefix.
1890 (cl-declaim): Use backquotes.
1891 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
1892 Use "cl--" prefix for the object's tag.
1893
1894 * ses.el: Use advice-add/remove.
1895 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
1896 (copy-region-as-kill, yank): Use advice-add.
1897 (ses-unload-function): Use advice-remove.
1898
1899 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
1900
1901 * button.el: Make them work in header-lines (bug#12817).
1902 (button-map): Add bindings for header-line and mode-line use.
1903 (button-get, button-put, button-label): `button' may now be a string.
1904 (button-activate): Don't make it a defsubst.
1905 (button--area-button-p, button--area-button-string): New functions.
1906 (make-text-button): Fix the return value when `beg' was a string.
1907 (push-button): Handle the mode-line case.
1908
1909 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1910
1911 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
1912 (sql-signum): Remove. Use `cl-signum' instead.
1913 (sql-read-passwd): Remove; use read-passwd instread.
1914 (sql-get-login-ext): Use read-string.
1915 (sql-get-login): Use dolist and pcase.
1916 (sql--completion-table): Rename from sql-try-completion.
1917 Use complete-with-action.
1918 (sql-mode): Don't change abbrev-all-caps globally.
1919 (sql-connect): Don't rely on dynamic scoping for `new-name'.
1920 (sql-postgres-completion-object): Initialize vars in their `let'.
1921 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
1922 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
1923 (sql-comint-interbase): Use a single append, without setq.
1924 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
1925
1926 * hi-lock.el: Rework the default face and the serialize regexp code.
1927 (hi-lock--auto-select-face-defaults): Remove.
1928 (hi-lock-string-serialize-serial): Remove.
1929 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
1930 make weak.
1931 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
1932 equal string.
1933 (hi-lock-set-pattern): Adjust accordingly.
1934 (hi-lock--regexps-at-point): Simplify accordingly.
1935 (hi-lock--auto-select-face-defaults): Remove.
1936 (hi-lock--last-face): New var to replace it.
1937 (hi-lock-read-face-name): Rewrite (bug#11095).
1938 (hi-lock-unface-buffer): Arrange for the face to be the next default.
1939
1940 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
1941
1942 * net/tramp.el (tramp-replace-environment-variables):
1943 Hide compiler warning.
1944 (tramp-file-name-for-operation): Remove `executable-find',
1945 `start-process', `call-process' and `call-process-region'.
1946
1947 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
1948
1949 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
1950 compatibility.
1951
1952 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
1953
1954 2012-12-06 Chong Yidong <cyd@gnu.org>
1955
1956 * ffap.el (ffap-replace-file-component): Fix typo.
1957
1958 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1959
1960 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
1961 fix open-paren-like token test (bug#12785).
1962
1963 2012-12-06 Glenn Morris <rgm@gnu.org>
1964
1965 * mail/rmailsum.el (rmail-new-summary): Tweak for
1966 rmail-maybe-display-summary changing buffer. (Bug#13066)
1967
1968 2012-12-06 Juri Linkov <juri@jurta.org>
1969
1970 * info.el (Info-fontify-node): Don't hide the last newline.
1971 (Bug#12272)
1972
1973 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
1974
1975 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
1976 so as to enable message-read-from-minibuffer to expand mail aliases.
1977
1978 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1979
1980 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
1981 the `intangible' property.
1982 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
1983
1984 2012-12-05 Deniz Dogan <deniz@dogan.se>
1985
1986 * net/rcirc.el (rcirc-urls): Update documentation.
1987 (rcirc-condition-filter): New function.
1988 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
1989 and exclude consecutive duplicate URLs (Bug#6082).
1990
1991 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
1992
1993 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
1994 Check return code of copy command.
1995
1996 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
1997 Use group `tramp'. Add version.
1998
1999 2012-12-05 Chong Yidong <cyd@gnu.org>
2000
2001 * ffap.el (ffap-url-regexp): Don't require matching at front of
2002 string (Bug#4952).
2003 (ffap-url-p): If only a substring matches, return that.
2004 (ffap-url-at-point): Use the return value of ffap-url-p.
2005 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
2006 (find-file-at-point, dired-at-point, dired-at-point-prompter)
2007 (ffap-guess-file-name-at-point): Likewise.
2008 (ffap-replace-file-component): Fix typo.
2009
2010 * info.el (info-display-manual): Add existing Info buffers, whose
2011 files may not be in Info-directory-list, to the completion.
2012 (info--manual-names): New helper function.
2013
2014 2012-12-05 Glenn Morris <rgm@gnu.org>
2015
2016 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
2017 New functions, for detecting and resolving conflicts. (Bug#10709)
2018
2019 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
2020
2021 * hi-lock.el (hi-lock-auto-select-face): New user variable.
2022 (hi-lock-auto-select-face-defaults): New buffer local variable.
2023 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
2024 (hi-lock-unface-buffer): Prompt user with useful defaults.
2025 With prefix arg, unhighlight all hi-lock patterns in buffer.
2026
2027 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2028
2029 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
2030
2031 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
2032
2033 * Makefile.in (TRAMP_SRC):
2034 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
2035
2036 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
2037
2038 * net/tramp-adb.el: New package.
2039
2040 2012-12-04 Chong Yidong <cyd@gnu.org>
2041
2042 * terminal.el: Move to obsolete/.
2043
2044 * longlines.el: Move to obsolete/.
2045
2046 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2047 Remove code referring to longlines mode.
2048
2049 2012-12-03 Juri Linkov <juri@jurta.org>
2050
2051 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
2052
2053 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2054
2055 * textmodes/ispell.el (ispell-init-process)
2056 (ispell-start-process, ispell-internal-change-dictionary):
2057 Make sure personal dictionary name is expanded after initial
2058 `default-directory' value. Use expanded strings for
2059 keep/restart checks and for value (Bug#13019).
2060
2061 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2062
2063 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
2064
2065 2012-12-03 Leo Liu <sdl.web@gmail.com>
2066
2067 * files.el (dir-locals-read-from-file): Check file non-empty
2068 before reading. (Bug#13038)
2069
2070 2012-12-03 Glenn Morris <rgm@gnu.org>
2071
2072 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2073 Remove any version extension before checking filename. (Bug#13006)
2074 (jka-compr-compression-info-list): Belated :version bump.
2075
2076 2012-12-03 Chong Yidong <cyd@gnu.org>
2077
2078 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
2079
2080 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
2081 (buffer-menu): Doc fix (Bug#12294).
2082
2083 2012-12-03 Roland Winkler <winkler@gnu.org>
2084
2085 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
2086 of diary-show-all-entries in the diary buffer (Bug#12994).
2087
2088 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
2089
2090 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
2091 "<STDIN>". This is binary safe.
2092
2093 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2094
2095 * calc/calc-forms.el (math-absolute-from-iso-dt)
2096 (math-date-to-iso-dt, math-parse-iso-date-validate)
2097 (math-iso-dt-to-date): New functions.
2098 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
2099 (math-fd-isoweekday): New variables.
2100 (calc-date-notation, math-parse-standard-date, math-format-date)
2101 (math-format-date-part): Add support for more formatting codes.
2102
2103 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
2104
2105 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
2106 current buffer's file name when called interactively (Bug#12488).
2107
2108 2012-12-02 Juri Linkov <juri@jurta.org>
2109
2110 * info.el (info-display-manual): Don't clobber an existing Info
2111 buffer (Bug#10770). Add completion (Bug#10771).
2112
2113 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
2114
2115 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
2116 before using it for comparison (Bug#5297).
2117
2118 2012-12-01 Jari Aalto <jari.aalto@cante.net>
2119
2120 * textmodes/css-mode.el (css-current-defun-name): New function.
2121 (css-mode): Use it.
2122
2123 * textmodes/sgml-mode.el (html-current-defun-name): New function.
2124 (html-mode): Use it.
2125
2126 2012-12-01 Chong Yidong <cyd@gnu.org>
2127
2128 Modularize add-log-current-defun (Bug#2224).
2129 Suggested by Jari Aalto.
2130
2131 * vc/add-log.el (add-log-current-defun-function): Doc fix.
2132 (add-log-current-defun): Move mode-specific code to other files.
2133 (add-log-lisp-like-modes, add-log-c-like-modes)
2134 (add-log-tex-like-modes): Variables deleted.
2135
2136 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
2137 (lisp-mode-variables): Use it.
2138
2139 * progmodes/cc-mode.el (c-common-init):
2140 * progmodes/cperl-mode.el (cperl-mode): Set a value for
2141 add-log-current-defun-function.
2142
2143 * progmodes/m4-mode.el (m4-current-defun-name): New function.
2144 (m4-mode): Use it.
2145
2146 * progmodes/perl-mode.el (perl-current-defun-name): New.
2147 (perl-mode): Use it.
2148
2149 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
2150 Use lisp-current-defun-name.
2151
2152 * textmodes/tex-mode.el (tex-current-defun-name): New.
2153 (tex-common-initialization): Use it.
2154
2155 * textmodes/texinfo.el (texinfo-current-defun-name): New.
2156 (texinfo-mode): Use it.
2157
2158 2012-12-01 Chong Yidong <cyd@gnu.org>
2159
2160 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
2161 * progmodes/autoconf.el (autoconf-mode):
2162 * progmodes/js.el (js-mode):
2163 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
2164 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
2165 * progmodes/perl-mode.el (perl-mode):
2166 * progmodes/sh-script.el (sh-mode, sh-set-shell):
2167 * textmodes/css-mode.el (css-mode):
2168 * textmodes/sgml-mode.el (html-mode, sgml-mode)
2169 (sgml-tags-invisible, sgml-guess-indent):
2170 * textmodes/tex-mode.el (tex-common-initialization)
2171 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
2172 (doctex-mode, plain-tex-mode, latex-mode):
2173 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
2174
2175 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
2176
2177 * vc/vc-hg.el (vc-hg-next-revision):
2178 Ensure use of default "tip" output format. (Bug#6968)
2179
2180 2012-12-01 Kim F. Storm <storm@cua.dk>
2181
2182 * startup.el (fancy-startup-tail): Add a clickable link
2183 (Bug#2176).
2184
2185 2012-12-01 Chong Yidong <cyd@gnu.org>
2186
2187 * startup.el (fancy-startup-tail): Improve the message about
2188 auto-save files (Bug#2176).
2189
2190 * files.el (recover-session): Improve the descriptive message, and
2191 use substitute-command-keys.
2192
2193 2012-12-01 Glenn Morris <rgm@gnu.org>
2194
2195 * ido.el (ido-file-internal):
2196 Handle other-window, other-frame for dired. (Bug#13036)
2197
2198 2012-11-30 Glenn Morris <rgm@gnu.org>
2199
2200 * icomplete.el (icomplete-separator): Fix :version.
2201
2202 2012-11-30 Chong Yidong <cyd@gnu.org>
2203
2204 * shell.el (shell): For C-u M-x shell, use an inactive shell
2205 buffer as the default (Bug#1975).
2206 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
2207 (shell-mode): Use them to reapply ansi colorization if Shell mode
2208 is re-enabled.
2209
2210 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
2211
2212 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
2213
2214 2012-11-30 Samuel Bronson <naesten@gmail.com>
2215
2216 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
2217 flag to xargs, for compatibility with BSD xargs (Bug#11703).
2218
2219 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2220
2221 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
2222 by move-to-column (Bug#3234).
2223
2224 2012-11-30 Chong Yidong <cyd@gnu.org>
2225
2226 * longlines.el (longlines-wrap-line, longlines-encode-region):
2227 Preserve text properties (Bug#1425).
2228
2229 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2230
2231 * vc/vc.el (vc-register): Allow registering a file which is
2232 already registered with a different backend (Bug#10589).
2233
2234 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
2235 Stefan Monnier <monnier@iro.umontreal.ca>
2236
2237 * icomplete.el: Change separator; add ido-style commands.
2238 (icomplete-show-key-bindings): Remove custom var.
2239 (icomplete-get-keys): Remove function.
2240 (icomplete-forward-completions, icomplete-backward-completions):
2241 New commands.
2242 (icomplete-minibuffer-map): New var.
2243 (icomplete-minibuffer-setup): Use it.
2244 (icomplete-exhibit): Don't delay if the list of completions is known.
2245 (icomplete-separator): New custom.
2246 (icomplete-completions): Use it.
2247 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
2248 (minibuffer-force-complete-and-exit): New command.
2249 (minibuffer--complete-and-exit): New function extracted from
2250 minibuffer-complete-and-exit.
2251 (minibuffer-complete-and-exit): Use it.
2252
2253 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
2254 error message when the file doesn't exist (bug#12974).
2255
2256 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2257
2258 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
2259
2260 2012-11-29 Glenn Morris <rgm@gnu.org>
2261
2262 * files.el (hack-dir-local-variables): Warn if try to set
2263 coding via dir-locals, since it doesn't work. (Bug#7169)
2264
2265 Add desktop support for restoring vc-dir buffers. (Bug#10606)
2266 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
2267 Set buffer-local value of desktop-save-buffer.
2268 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
2269 New functions.
2270 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
2271 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
2272
2273 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
2274 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
2275 Doc fix.
2276 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
2277 Doc fixes.
2278
2279 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
2280
2281 * calc/calc-forms.el (calc-date-notation): Fix regexp
2282 used to find time codes. Fix symbol for seconds.
2283
2284 2012-11-27 Glenn Morris <rgm@gnu.org>
2285
2286 * emacs-lisp/derived.el (derived-mode-make-docstring):
2287 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
2288
2289 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2290
2291 * textmodes/table.el (table-insert): Don't use `symbol-name' on
2292 lexically scoped variables (bug#13005).
2293
2294 2012-11-27 Glenn Morris <rgm@gnu.org>
2295
2296 * vc/vc-hooks.el (vc-mistrust-permissions):
2297 Default to t, to avoid data-loss. (Bug#11490)
2298
2299 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
2300
2301 * progmodes/python.el (python-indent-guess-indent-offset):
2302 If indentation is guessed make python-indent-offset buffer-local.
2303
2304 Fix Imenu regression.
2305 * progmodes/python.el (python-nav-beginning-of-defun):
2306 Fix forward movement when statement(s) separates point from defun.
2307 (python-imenu-prev-index-position): New function.
2308
2309 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2310
2311 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
2312
2313 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
2314 Don't set buffer-file-type. Return nil. (Bug#12989)
2315
2316 2012-11-27 Glenn Morris <rgm@gnu.org>
2317
2318 * hippie-exp.el (hippie-expand-try-functions-list):
2319 Re-autoload it. (Bug#12982)
2320
2321 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2322
2323 * descr-text.el (describe-char-padded-string):
2324 Call internal-char-font only on GUI frames. (Bug#11964)
2325
2326 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
2327
2328 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
2329 and obsoletion message.
2330
2331 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2332
2333 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
2334 the constructs to keep outside of the `cl-block' (bug#12977).
2335
2336 2012-11-27 Chong Yidong <cyd@gnu.org>
2337
2338 * mouse.el (mouse-drag-line): Even if the line is not draggable,
2339 keep reading until we get the up-event anyway, in order to process
2340 the up-event for mouse-1-click-follows-link (Bug#12971).
2341
2342 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
2343
2344 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
2345 base function is not yet defined (bug#12965).
2346 (ad-activate-advised-definition): Use ad-compile-function.
2347 (ad-activate): Use cond.
2348
2349 2012-11-25 Leo Liu <sdl.web@gmail.com>
2350
2351 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
2352 (Bug#12979)
2353
2354 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2355
2356 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
2357 reftex-section-info-function in order to be compatible with
2358 Texinfo integration.
2359
2360 * textmodes/reftex.el (reftex-section-pre-regexp)
2361 (reftex-section-post-regexp, reftex-section-info-function):
2362 New variable.
2363 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
2364 reftex-section-post-regexp, and reftex-section-info-function in order
2365 to be compatible with Texinfo integration.
2366
2367 * textmodes/reftex-toc.el (reftex-toc-promote-action):
2368 use reftex-section-pre-regexp variable in order to be compatible with
2369 Texinfo integration.
2370
2371 2012-11-25 Chong Yidong <cyd@gnu.org>
2372
2373 * faces.el: Make face-spec-set more analogous to setq.
2374 (face-spec-set): Change the third arg to specify whether this
2375 function is being called via defface, customize, or a third party.
2376 Set the appropriate symbol properties. Clear the override spec if
2377 setting via Custom. Initialize face if necessary. (Bug#4988)
2378 (face-spec-recalc): Allow theme faces to completely replace the
2379 defface spec, in the same way as custom faces (Bug#8454).
2380
2381 * cus-face.el (custom-declare-face): Move face initialization to
2382 face-spec-set.
2383 (custom-theme-set-faces): Don't initialize the face name here, as
2384 that is now done in face-spec-set.
2385
2386 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
2387 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
2388 Simplify by using the new arg to face-spec-set.
2389
2390 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
2391 reset face-override-spec too, and use custom-declare-face.
2392
2393 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
2394
2395 * term/ns-win.el (ns-initialize-window-system): Move creation of
2396 fontsets here (Bug#11964).
2397
2398 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2399
2400 * ses.el (ses-rename-cell): Correct bug on mode-line update after
2401 cell renaming.
2402
2403 2012-11-24 Chong Yidong <cyd@gnu.org>
2404
2405 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
2406 obsolete.
2407
2408 * custom.el (custom-theme-set-variables): Use a topological sort
2409 for ordering by custom dependencies (Bug#12952).
2410 (custom--sort-vars, custom--sort-vars-1): New functions.
2411
2412 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2413
2414 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
2415 lexical-binding (bug#12938).
2416
2417 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
2418
2419 * image-mode.el (image-transform-check-size): Use assertions only
2420 for images of type imagemagick.
2421
2422 Otherwise no error, image-transform-fit-to-{width,height} is
2423 silently ignored, as before. Doc fix.
2424
2425 2012-11-24 Chong Yidong <cyd@gnu.org>
2426
2427 * faces.el (color-defined-p): Doc fix (Bug#12853).
2428
2429 2012-11-24 Juri Linkov <juri@jurta.org>
2430
2431 * dired.el (dired-mark): Add optional arg `interactive'.
2432 Check for `use-region-p' if `interactive' is non-nil.
2433 (dired-unmark, dired-flag-file-deletion): Add optional arg
2434 `interactive'. Call `dired-mark' with the arg `interactive'.
2435 (Bug#10624)
2436
2437 * wdired.el: Revert 2012-10-17 change partly and replace it with
2438 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
2439 (wdired-finish-edit): Add marks for new file names to
2440 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
2441 after `revert-buffer'.
2442 (wdired-do-renames): Remove calls to `dired-remove-file',
2443 `dired-add-file', `dired-add-entry'. (Bug#11795)
2444
2445 2012-11-24 Alan Mackenzie <acm@muc.de>
2446
2447 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
2448
2449 Fix bugs in the state cache. Enhance a debugging mechanism.
2450 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
2451 "brace at column zero" strategy for C++.
2452 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
2453 (c-parse-state-point): New variable.
2454 (c-record-parse-state-state): Record old parse state with
2455 `copy-tree'. Record previous value of point.
2456 (c-debug-parse-state-double-cons): New debugging function.
2457 (c-debug-parse-state): Call the above new function.
2458 (c-toggle-parse-state-debug): Output a confirmatory message.
2459
2460 * progmodes/cc-mode.el (c-before-change, c-after-change):
2461 Call c-invalidate-state-cache from `c-before-change' instead of
2462 `c-after-change'.
2463
2464 2012-11-23 Chong Yidong <cyd@gnu.org>
2465
2466 * find-cmd.el (find-constituents): Add executable, ipath,
2467 readable, samefile, writable, daystart, regextype (Bug#12856).
2468
2469 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2470
2471 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
2472
2473 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
2474
2475 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
2476 definition. This fixes a bootstrap failure.
2477 (calc-gregorian-switch): In menu, put dates before regions.
2478 This is easier to follow, lines up better in the menu, and lets us
2479 coalesce regions that switch at the same time. Give country
2480 names, not "Vatican", as that's better for non-expert users.
2481 Use names that are stable between the date of switch and now, e.g.,
2482 Bohemia and Moravia (which existed then and now) and not
2483 Czechoslovakia (which didn't exist then and doesn't exist now).
2484 What is now the U.S. mostly did not switch at the same time as
2485 Britain, so omit the U.S. Correct spelling of "Britain".
2486 Catholic Switzerland was too much of a mess, so omit it.
2487
2488 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
2489
2490 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
2491 after the variable is changed.
2492
2493 2012-11-21 Daniel Colascione <dancol@dancol.org>
2494
2495 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
2496 in SQL declarations for font-lock.
2497 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
2498
2499 2012-11-21 Glenn Morris <rgm@gnu.org>
2500
2501 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
2502 (face-italic-p): Add optional argument "inherit".
2503
2504 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
2505 Remove -p suffix from names, for consistency with other set-face-*.
2506 (set-face-inverse-video): Fix interactive spec.
2507 * play/gamegrid.el (gamegrid-make-mono-tty-face):
2508 * textmodes/table.el (table--update-cell-face):
2509 Use set-face-inverse-video rather than now obsolete alias.
2510
2511 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2512
2513 * simple.el (line-move): Don't call line-move-partial if
2514 scroll-conservatively is in effect. (Bug#12927)
2515
2516 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2517
2518 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
2519 Fallback on completion-at-point rather than
2520 pcomplete-expand-and-complete, and only if pcomplete actually failed.
2521 (eshell-cmpl-initialize): Setup completion-at-point.
2522
2523 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
2524
2525 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
2526
2527 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
2528
2529 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
2530 are remote, check out-of-band property for both.
2531
2532 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2533
2534 * window.el (switch-to-buffer): Re-add the warning that was lost in the
2535 code rewrite.
2536
2537 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2538
2539 More minor time fixes.
2540 * calendar/time-date.el: Commentary fix.
2541 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
2542 too much other code depends on (0 0) time stamps.
2543 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
2544 Add a couple of FIXME comments.
2545
2546 Minor cleanup for times as lists of four integers.
2547 * files.el (dir-locals-directory-cache):
2548 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
2549 Doc fixes.
2550 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
2551 * ps-bdf.el (bdf-file-newer-than-time):
2552 Process four-integers time stamps, not two. Doc fixes.
2553
2554 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * uniquify.el (uniquify-managed): Use defvar-local.
2557 (rename-buffer, create-file-buffer): Advise with advice-add.
2558 (uniquify-unload-function): Unadvise accordingly.
2559
2560 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
2561 (trace-buffer): Don't purecopy.
2562 (trace-entry-message, trace-exit-message): Add `context' arg.
2563 (trace--timer): New var.
2564 (trace-make-advice): Adjust for use in nadvice.
2565 Add `context' argument. Delay `display-buffer' via a timer.
2566 (trace-function-internal): Use advice-add.
2567 (trace--read-args): New function.
2568 (trace-function-foreground, trace-function-background): Use it.
2569 (trace-function): Rename to trace-function-foreground and redefine as
2570 an alias to that new name.
2571 (untrace-function, untrace-all): Adjust to the use of nadvice.
2572
2573 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
2574
2575 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
2576
2577 * subr.el (called-interactively-p-functions): New var.
2578 (internal--called-interactively-p--get-frame): New macro.
2579 (called-interactively-p, interactive-p): Rewrite in Lisp.
2580 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
2581 (called-interactively-p-functions): Use it.
2582 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
2583 (called-interactively-p-functions): Use it.
2584 * allout.el (allout-called-interactively-p): Don't assume
2585 called-interactively-p is a subr.
2586
2587 2012-11-20 Glenn Morris <rgm@gnu.org>
2588
2589 * profiler.el (profiler-report-mode-map): Add a menu.
2590 No need to bind `q' because we derive from special-mode.
2591 (profiler-report-find-entry): Handle calls from the menu-bar.
2592
2593 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2594
2595 * emacs-lisp/byte-run.el (defun-declarations-alist):
2596 Allow a compiler-macro to be a lambda expression.
2597
2598 * progmodes/python.el: Use cl-lib. Move var declarations outside of
2599 eval-when-compile.
2600 (python-syntax-context): Add compiler-macro.
2601 (python-font-lock-keywords): Simplify with De Morgan.
2602
2603 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
2604
2605 * files.el (load-file): Require match in minibuffer selection, as was
2606 the case in Emacs-20 before we changed the spec to allow .elc files
2607 (bug#12935).
2608
2609 * json.el: Don't require cl since we don't use it.
2610 * color.el: Don't require cl.
2611 (color-complement): `caddr' -> `nth 2'.
2612
2613 * calendar/time-date.el (time-to-seconds): De-obsolete.
2614
2615 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2616
2617 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
2618 year numbers.
2619 (math-date-to-julian-dt): Adjust the initial approximation for the
2620 year to deal with the new definition of the DATE.
2621
2622 2012-11-19 Daniel Colascione <dancol@dancol.org>
2623
2624 * term/w32-win.el (cygwin-convert-path-from-windows):
2625 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
2626
2627 2012-11-18 Chong Yidong <cyd@gnu.org>
2628
2629 * filecache.el (file-cache--read-list): New function.
2630 (file-cache-add-directory-list, file-cache-add-file-list)
2631 (file-cache-delete-file-list, file-cache-delete-directory-list):
2632 Use it to read a list of files or directories (Bug#12846).
2633 (file-cache-add-file, file-cache-add-directory)
2634 (file-cache-delete-file-list, file-cache-delete-file-regexp)
2635 (file-cache-delete-directory): Print an message.
2636
2637 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
2638
2639 * calc/calc-forms.el (math-date-to-dt): Use integer date when
2640 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
2641
2642 2012-11-18 Glenn Morris <rgm@gnu.org>
2643
2644 * image.el (insert-image, insert-sliced-image): Doc fix.
2645
2646 2012-11-18 Chong Yidong <cyd@gnu.org>
2647
2648 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
2649 (Bug#12810).
2650
2651 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2652
2653 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
2654 response when the target file is in a subdirectory (Bug#12757).
2655
2656 2012-11-18 Chong Yidong <cyd@gnu.org>
2657
2658 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
2659
2660 2012-11-18 Glenn Morris <rgm@gnu.org>
2661
2662 * emacs-lisp/cl-lib.el (face-underline-p):
2663 Use set-face-underline rather than the alias set-face-underline-p.
2664
2665 * window.el (with-temp-buffer-window): Doc fix.
2666 * subr.el (with-output-to-temp-buffer):
2667 Add doc xref to with-temp-buffer-window.
2668
2669 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2670
2671 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
2672 * calc/calc.el (math-format-date-cache): Declare.
2673
2674 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2675
2676 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
2677 It also uses January 1, 1 AD as its day number 1.
2678 * calc/calc-forms.el (math-julian-date-beginning)
2679 (math-julian-date-beginning-int): Implement this.
2680
2681 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2682
2683 * descr-text.el (quail-find-key):
2684 * dired.el (desktop-file-name):
2685 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
2686 * generic-x.el (comint-mode, comint-exec):
2687 * image-dired.el (widget-forward):
2688 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
2689 (speedbar-change-expand-button-char)
2690 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
2691 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
2692 * printing.el (easy-menu-add-item, easy-menu-remove-item)
2693 (widget-field-action, widget-value-set):
2694 * speedbar.el (imenu--make-index-alist):
2695 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
2696 (ring-length, ring-insert):
2697 * vcursor.el (compare-windows-skip-whitespace):
2698 * woman.el (dired-get-filename):
2699 Declare functions.
2700
2701 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
2702
2703 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
2704
2705 * calc/calc.el (calc-gregorian-switch): New variable.
2706
2707 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
2708 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
2709 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
2710 (math-leap-year-p): Add option to distinguish between Julian
2711 and Gregorian calendars.
2712 (math-day-number): Use `math-day-in-year' to do the computations.
2713 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
2714 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
2715 to do the computations.
2716 (math-date-to-dt): Use `math-date-to-julian-dt' and
2717 `math-date-to-gregorian-dt' to do the computations.
2718 (calcFunc-weekday, math-format-date-part): Use the new version of
2719 the DATE to determine the weekday.
2720 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
2721 when necessary.
2722
2723 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2724
2725 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
2726 Cygwin; otherwise use 'file:'. (Bug#12914)
2727 (cygwin-convert-path-from-windows): Declare, to avoid
2728 byte-compiler warnings.
2729
2730 2012-11-17 Andreas Politz <politza@fh-trier.de>
2731
2732 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
2733 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
2734 prefix and negative numeric prefix args (Bug#12795).
2735
2736 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
2737
2738 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
2739 Don't signal an error with a score that is too low to add to the
2740 list of top scores. (Bug#12779)
2741
2742 2012-11-17 Chong Yidong <cyd@gnu.org>
2743
2744 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
2745
2746 * filecache.el (file-cache-add-file): Handle relative file name in
2747 the argument (Bug#12694).
2748
2749 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
2750
2751 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
2752
2753 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2754
2755 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
2756
2757 * emacs-lisp/cl-lib.el: Set more meaningful version number.
2758
2759 2012-11-16 Martin Rudalics <rudalics@gmx.at>
2760
2761 * window.el (enlarge-window, shrink-window): Don't mention return
2762 value in doc-string (Bug#12896).
2763 (window--display-buffer): Don't resize frames - it won't work
2764 with all window managers and defeat pop-up-frame-alist.
2765 (display-buffer-alist): In doc-string explain that CONDITION can
2766 be a function and which arguments are passed to it (Bug#12854).
2767 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
2768 expressions (Bug#12854).
2769 (display-buffer): Pass ACTION argument to
2770 display-buffer-assq-regexp.
2771
2772 2012-11-16 Glenn Morris <rgm@gnu.org>
2773
2774 * window.el (fit-frame-to-buffer-bottom-margin)
2775 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
2776
2777 * faces.el (face-underline-p): Use face-attribute-specified-or.
2778
2779 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
2780
2781 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
2782
2783 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2784
2785 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
2786
2787 2012-11-16 Glenn Morris <rgm@gnu.org>
2788
2789 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
2790 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
2791
2792 * faces.el (face-underline-p): Doc fix. Handle :underline being
2793 things other than `t' (a string, a list).
2794 (face-inverse-video-p): Doc fix.
2795 (set-face-underline): Rename it back from set-face-underline-p.
2796 Doc fix. Allow interactive input of values other than t.
2797 (read-face-attribute): Apply formatting to :underline,
2798 since like :box and :stipple it can take list values.
2799
2800 * term.el (ansi-term): Don't let C-x escape-char binding
2801 clobber the more standard C-c binding. (Bug#12842)
2802
2803 * subr.el (set-temporary-overlay-map): Doc fix.
2804
2805 2012-11-16 Martin Rudalics <rudalics@gmx.at>
2806
2807 * window.el (record-window-buffer)
2808 (display-buffer-record-window): When copying the markers to
2809 window-point preserve window-point-insertion-type. (Bug#12588)
2810
2811 2012-11-16 Glenn Morris <rgm@gnu.org>
2812
2813 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
2814 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
2815 Use new names for hooks rather than obsolete aliases.
2816
2817 2012-11-15 Daniel Colascione <dancol@dancol.org>
2818
2819 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
2820 prefix instead of "file:" so that when FILE-NAME begins with "//",
2821 as it does when the target file is on a network share, url-handler
2822 isn't confused.
2823
2824 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2825
2826 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
2827 a preactivated advice from an old advice.el; they're not compatible!
2828
2829 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
2830
2831 * emacs-lisp/nadvice.el (advice--make-interactive-form):
2832 Fix string-spec case.
2833
2834 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
2835
2836 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2837
2838 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
2839 (advice--buffer-local-function-sample): New var.
2840 (advice--set-buffer-local, advice--buffer-local): New functions.
2841 (add-function, remove-function): Use them.
2842
2843 2012-11-15 Drew Adams <drew.adams@oracle.com>
2844
2845 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
2846
2847 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2848
2849 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
2850 potential binding of print-gensym to t, and prettify (back)quotes in
2851 case they appear in args's default values (bug#12884).
2852
2853 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2854
2855 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
2856 (advice-eval-interactive-spec): New function.
2857 (advice--make-interactive-form): Support around advice (bug#12844).
2858
2859 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
2860
2861 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
2862 more strict. Add docstring.
2863 (ruby-expression-expansion-re): Extract from
2864 `ruby-match-expression-expansion'.
2865 (ruby-syntax-propertize-function): After everything else, search
2866 for expansions in string literals, mark their insides as
2867 whitespace syntax and save match data for font-lock.
2868 (ruby-font-lock-keywords): Use the 2nd group from expression
2869 expansion matches.
2870 (ruby-match-expression-expansion): Use the match data saved to the
2871 text property in ruby-syntax-propertize-function.
2872
2873 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
2874
2875 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
2876 (bug#12879).
2877
2878 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
2879
2880 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
2881 start/end keyword a bit harder. Works with different values of N.
2882 Add more comments.
2883 (ruby-end-of-block): Update accordingly.
2884
2885 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2886
2887 * woman.el (woman-file-name): Don't mess with unread-command-events
2888 (bug#12861).
2889
2890 * emacs-lisp/advice.el: Layer on top of nadvice.el.
2891 Remove out of date self-require hack.
2892 (ad-do-advised-functions): Use simple `dolist'.
2893 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
2894 (ad-advice-definition): Redefine as functions.
2895 (ad-advice-classes): Move before first use.
2896 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
2897 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
2898 (ad--defalias-fset): Remove functions.
2899 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
2900 (ad-get-orig-definition): Rewrite.
2901 (ad-make-advised-definition-docstring): Change base docstring.
2902 (ad-real-orig-definition): Rewrite.
2903 (ad-map-arglists): Change name of called function.
2904 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
2905 (ad-make-advised-definition): Simplify.
2906 (ad-assemble-advised-definition): Tweak for new calling context.
2907 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
2908 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
2909 function and call ad-activate if needed.
2910 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
2911 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
2912 (ad-compile-function): Compile ad-Advice-*.
2913 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
2914 (ad-start-advice, ad-stop-advice): Remove.
2915
2916 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
2917
2918 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
2919 period before class method names, not after. Remove handling of
2920 one impossible case. Add comments.
2921
2922 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2923
2924 * emacs-lisp/advice.el: Remove support for freezing.
2925 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
2926 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
2927 Remove support for `freeze'.
2928
2929 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
2930 override the default.
2931 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
2932 cl--dotimes/dolist.
2933 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
2934 `cl' is loaded.
2935
2936 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
2937 from add-advice.
2938 (advice--strip-macro): New function.
2939 (advice--defalias-fset): Use them to handle macros.
2940 (advice-add): Use them.
2941 (advice-member-p): Correctly handle macros.
2942
2943 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
2944
2945 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2946 Never font-lock the beginning of singleton class as heredoc.
2947
2948 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
2949
2950 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
2951
2952 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
2953
2954 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
2955 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
2956 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
2957
2958 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
2959
2960 Fix end-of-defun misbehavior.
2961 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
2962 python-beginning-of-defun-function. Handle nested defuns
2963 correctly.
2964 (python-nav-end-of-defun): Rename from
2965 python-end-of-defun-function. Ensure forward movement.
2966 (python-info-current-defun): Reimplement to work as intended
2967 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
2968 parent defuns as soon as possible.
2969
2970 2012-11-13 Glenn Morris <rgm@gnu.org>
2971
2972 * progmodes/flymake.el (flymake-error-bitmap)
2973 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
2974 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
2975
2976 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
2977
2978 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
2979 backward, always stop at indentation. Reverts the change from
2980 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
2981
2982 2012-11-13 Glenn Morris <rgm@gnu.org>
2983
2984 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
2985 Add ibuffer-filter-by-derived-mode.
2986
2987 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
2988 the same name shadowing each other.
2989
2990 * window.el (with-temp-buffer-window): Doc tweak.
2991
2992 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
2993
2994 * help.el (temp-buffer-max-height):
2995 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
2996 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
2997
2998 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2999
3000 * emacs-lisp/nadvice.el: New package.
3001 * subr.el (special-form-p): New function.
3002 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
3003 (elp-all-instrumented-list): Remove var.
3004 (elp-not-profilable): Remove elp-wrapper.
3005 (elp-profilable-p): Use autoloadp and special-form-p.
3006 (elp--advice-name): New const.
3007 (elp-instrument-function): Use advice-add.
3008 (elp--instrumented-p): New predicate.
3009 (elp-restore-function): Use advice-remove.
3010 (elp-restore-all, elp-reset-all): Use mapatoms.
3011 (elp-set-master): Use elp--instrumented-p.
3012 (elp--make-wrapper): Rename from elp-wrapper, return a function
3013 suitable for advice-add. Use cl-inf.
3014 (elp-results): Use mapatoms+elp--instrumented-p.
3015 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
3016 (debug-function-list): Remove var.
3017 (debug): Rename arg, and then let-bind it explicitly inside.
3018 (debugger-setup-buffer): Rename arg.
3019 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
3020 (debugger-frame-number): Adjust to new debug-on-entry setup.
3021 (debug--implement-debug-on-entry): Rename from
3022 implement-debug-on-entry, add argument.
3023 (debugger-special-form-p): Remove, use special-form-p instead.
3024 (debug-on-entry): Use advice-add.
3025 (debug--function-list): New function.
3026 (cancel-debug-on-entry): Use it, along with advice-remove.
3027 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
3028 (debugger-list-functions): Use debug--function-list instead of
3029 debug-function-list.
3030 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
3031 (ad-special-form-p): Remove, use special-form-p instead.
3032 (ad-set-advice-info): Use add-function and remove-function.
3033 (ad--defalias-fset): Adjust accordingly.
3034
3035 2012-11-10 Glenn Morris <rgm@gnu.org>
3036
3037 * mail/emacsbug.el (report-emacs-bug-tracker-url)
3038 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
3039 (report-emacs-bug-create-existing-bugs-buffer)
3040 (report-emacs-bug-parse-query-results)
3041 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
3042
3043 * term.el (term-default-fg-color, term-default-bg-color):
3044 Make obsolete, rather than just saying "deprecated" in the doc.
3045
3046 * term.el (term): Rename from `term-face'.
3047 (term-current-face, ansi-term-color-vector)
3048 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
3049 Update all users.
3050
3051 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
3052
3053 * server.el (server-create-window-system-frame): Handle Nextstep
3054 specially (Bug#12780).
3055
3056 2012-11-10 Glenn Morris <rgm@gnu.org>
3057
3058 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
3059 Unautoload, and make obsolete. (Bug#7449)
3060
3061 2012-11-10 Chong Yidong <cyd@gnu.org>
3062
3063 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
3064 rename from diff-remove-trailing-whitespace (Bug#12831).
3065
3066 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3067
3068 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
3069 miscompilation of trace.el.
3070
3071 2012-11-10 Glenn Morris <rgm@gnu.org>
3072
3073 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
3074
3075 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
3078 (bug#12812).
3079
3080 2012-11-10 Chong Yidong <cyd@gnu.org>
3081
3082 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
3083 a defcustom with an appropriate :set function.
3084 (minibuffer-default--in-prompt-regexps): New function.
3085
3086 2012-11-10 Glenn Morris <rgm@gnu.org>
3087
3088 * emacs-lisp/cl.el (define-setf-expander, defsetf)
3089 (define-modify-macro): Doc fixes.
3090
3091 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
3092 (gv-define-simple-setter): Update doc of `fix-return'.
3093
3094 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3095
3096 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
3097 twice when `fix-return' is set (bug#12813).
3098
3099 * emacs-lisp/cl.el (defsetf): Pass the third arg to
3100 gv-define-simple-setter (bug#12812).
3101
3102 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
3103 (bug#12756).
3104
3105 2012-11-10 Glenn Morris <rgm@gnu.org>
3106
3107 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
3108
3109 * emacs-lisp/cl-extra.el (cl-prettyexpand):
3110 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
3111 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
3112 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
3113
3114 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
3115
3116 2012-11-10 Leo Liu <sdl.web@gmail.com>
3117
3118 * ido.el (ido-set-matches-1): Improve flex matching performance by
3119 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
3120
3121 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3122
3123 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
3124 (ad--defalias-fset): New function.
3125 (ad-safe-fset): Remove.
3126 (ad-make-freeze-definition): Use cl-letf*.
3127
3128 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3129
3130 * subr.el (dolist): Don't bind VAR in RESULT.
3131
3132 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
3133 (fset, documentation): Don't save real def since we don't advise.
3134 (ad-do-advised-functions): Remove problematic `result-form'.
3135 (ad-safe-fset): `ad-real-fset' => `fset'.
3136 (ad-read-advised-function): Don't assume that ad-do-advised-functions
3137 uses CL's dolist internally.
3138 (ad-arglist): Remove unused arg `name'.
3139 (ad-docstring, ad-make-advised-docstring):
3140 `ad-real-documentation' => `documentation'.
3141 (warning-suppress-types): Declare.
3142 (ad-set-arguments): Simple CSE.
3143 (ad-recover-normality): Sanity check.
3144
3145 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
3146 (funcall '(lambda ..) ..) into ((lambda ..) ..).
3147
3148 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
3149
3150 * ses.el: symbol to coordinate mapping is made by symbol property
3151 `ses-cell'. This means that the same mapping is done for all SES
3152 sheets. That is good enough for cells with standard A1 names, but
3153 not for named cell. So a hash map is added for the latter.
3154 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
3155 (ses-sym-rowcol): Use hashmap for named cell.
3156 (ses-is-cell-sym-p): New defun.
3157 (ses-decode-cell-symbol): New defun.
3158 (ses-create-cell-variable): Add cell to hashmap when name is not
3159 A1-like.
3160 (ses-rename-cell): Check that cell new name is not already in
3161 spreadsheet with the use of ses-is-cell-sym-p
3162 (ses-rename-cell): Use hash map for named cells, but accept also
3163 renaming back to A1-like.
3164
3165 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3166
3167 * emacs-lisp/advice.el: Use new dynamic docstrings.
3168 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3169 Use dynamic-docstring-function instead of ad-advice-info.
3170 (ad--make-advised-docstring): New function extracted from
3171 ad-make-advised-docstring.
3172 (ad-make-advised-docstring): Use it.
3173 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
3174 from sql-help.
3175 (sql-help): Use it with dynamic-docstring-function.
3176
3177 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
3178
3179 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3180
3181 * files.el (hack-one-local-variable--obsolete): New function.
3182 (hack-one-local-variable): Use it for obsolete settings.
3183
3184 * subr.el (locate-user-emacs-file): If both old and new name exist, use
3185 the new name.
3186
3187 * progmodes/js.el (js--filling-paragraph): New var.
3188 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
3189 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
3190 less sneaky.
3191
3192 2012-11-08 Julien Danjou <julien@danjou.info>
3193
3194 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
3195 `auto-mode-alist' (Bug#12835).
3196
3197 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3198
3199 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
3200 (perl--prettify-symbols-alist): New const.
3201 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
3202 New functions.
3203 (perl-font-lock-keywords-2): Use them.
3204 (perl-electric-noindent-p): New function.
3205 (perl-mode): Use it to set up electric-indent-mode.
3206 (perl-electric-terminator, perl-indent-command): Mark obsolete.
3207 (perl-mode-map): Remove bindings for them.
3208 (perl-imenu-generic-expression, perl-outline-level):
3209 Match functions&packages in column>0.
3210
3211 * env.el (env--substitute-vars-regexp): New const.
3212 (substitute-env-vars): Use it. Add `only-defined' arg.
3213 * net/tramp.el (tramp-replace-environment-variables): Use it.
3214
3215 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3216 Byte-compile *before* eval in eval-and-compile.
3217 (byte-compile-log-warning): Remove redundant inhibit-read-only.
3218 (byte-compile-file-form-autoload): Don't hide actual definition.
3219 (byte-compile-maybe-guarded): Accept `functionp' as well.
3220
3221 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
3222
3223 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
3224
3225 * notifications.el (notifications-get-server-information-method):
3226 New defconst.
3227 (notifications-get-capabilities): Fix docstring.
3228 (notifications-get-server-information): New defun.
3229
3230 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3231
3232 * textmodes/ispell.el (ispell-region): Standard re-indent for better
3233 readability.
3234
3235 * textmodes/ispell.el: Experimental support for support debugging.
3236 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
3237 buffer for ispell.
3238 (ispell-print-if-debug): New function to print stuff to
3239 `ispell-debug-buffer' if debugging is enabled.
3240 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
3241 show some debugging info.
3242 (ispell-buffer-with-debug): New function that creates a debugging
3243 buffer and calls `ispell-buffer' with debugging enabled.
3244
3245 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
3246 comment in autoconf mode. (Bug#12768)
3247
3248 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3249
3250 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
3251 frame-first-window, frame-root-window, frame-selected-window,
3252 minibuffer-selected-window, minibuffer-window,
3253 window-absolute-pixel-edges, window-at, window-body-height,
3254 window-body-width, window-display-table, window-combination-limit,
3255 window-frame, window-fringes, window-inside-absolute-pixel-edges,
3256 window-inside-edges, window-inside-pixel-edges, window-left-child,
3257 window-left-column, window-margins, window-next-buffers,
3258 window-next-sibling, window-new-normal, window-new-total,
3259 window-normal-size, window-parameter, window-parameters, window-parent,
3260 window-pixel-edges, window-point, window-prev-buffers,
3261 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
3262 window-start, window-text-height, window-top-child, window-top-line,
3263 window-total-height, window-total-width and window-use-time to the list
3264 of functions without side-effects.
3265 (toplevel): Add window-valid-p to the list of error-free functions
3266 without side-effects.
3267
3268 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3269
3270 * textmodes/ispell.el (ispell-program-name):
3271 Update spellchecker parameters when customized.
3272
3273 2012-11-04 Glenn Morris <rgm@gnu.org>
3274
3275 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
3276
3277 2012-11-04 Chong Yidong <cyd@gnu.org>
3278
3279 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
3280 same-window-* variables.
3281
3282 2012-11-04 Juri Linkov <juri@jurta.org>
3283
3284 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
3285 (isearch-describe-key, isearch-describe-mode): Use a display
3286 action instead of binding same-window-* variables (Bug#10040).
3287
3288 2012-11-03 Glenn Morris <rgm@gnu.org>
3289
3290 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
3291 Rename handler properties back from cl-- to cl-. (Bug#12788)
3292
3293 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
3294
3295 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3296
3297 * term/pc-win.el: Don't load term/internal from here.
3298
3299 * loadup.el: Load term/internal from here.
3300
3301 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
3302
3303 * progmodes/python.el (inferior-python-mode): Fix hang in
3304 jit-lock (Bug#12645).
3305
3306 2012-11-03 Martin Rudalics <rudalics@gmx.at>
3307
3308 * window.el (switch-to-visible-buffer)
3309 (switch-to-buffer-preserve-window-point): Fix doc-strings.
3310
3311 2012-11-03 Glenn Morris <rgm@gnu.org>
3312
3313 * emacs-lisp/cl-lib.el (cl--random-time):
3314 Rename from cl-random-time. (Bug#12773)
3315 (cl--gensym-counter, cl--random-state): Update callers.
3316 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
3317
3318 2012-11-03 Chong Yidong <cyd@gnu.org>
3319
3320 * cus-start.el: Make cursor-type customizable (Bug#11633).
3321
3322 2012-11-02 Glenn Morris <rgm@gnu.org>
3323
3324 * filecache.el: No need to load find-lisp when compiling.
3325 (find-lisp-find-files): Autoload it.
3326 (file-cache-add-directory-recursively): Don't require find-lisp.
3327
3328 * image.el (image-type-from-file-name): Trivial simplification.
3329
3330 * emacs-lisp/bytecomp.el (byte-compile-eval):
3331 Decouple "noruntime" and "cl-functions" warnings.
3332
3333 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
3334
3335 * play/gomoku.el (gomoku-display-statistics): Update mode line
3336 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
3337
3338 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3339
3340 * window.el (quit-restore-window): If the window has been
3341 created on an existing frame and ended up as the sole window on
3342 that frame, do not delete it (Bug#12764).
3343
3344 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
3345
3346 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3347 Rename from sh--inside-arithmetic-expression, handle more cases
3348 (bug#11263).
3349
3350 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
3351 (sh-font-lock-open-heredoc): Use it (bug#12770).
3352
3353 2012-10-30 Glenn Morris <rgm@gnu.org>
3354
3355 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
3356
3357 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
3358
3359 2012-10-29 Chong Yidong <cyd@gnu.org>
3360
3361 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
3362 function key is stored in a keyboard macro (Bug#4894).
3363
3364 * thingatpt.el (number-at-point): Apply a thing-at-point property.
3365
3366 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3367
3368 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
3369 header comments".
3370 (diff-unified->context, diff-context->unified)
3371 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
3372
3373 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
3374
3375 * files.el (find-alternate-file): Only ask one question (bug#12487).
3376
3377 2012-10-29 Chong Yidong <cyd@gnu.org>
3378
3379 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
3380 Suggested by Dan Nicolaescu (Bug#6326).
3381
3382 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
3383
3384 * startup.el (fancy-about-screen): Don't message (Bug#12680).
3385
3386 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
3387
3388 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
3389
3390 * face-remap.el (face-remap-add-relative): Handle the case where a
3391 face-remapping-alist entry is a cons cell (Bug#12762).
3392
3393 2012-10-29 Kevin Ryde <user42@zip.com.au>
3394
3395 * woman.el (woman-parse-numeric-value): Handle picas correctly
3396 (Bug#12639).
3397
3398 2012-10-29 Glenn Morris <rgm@gnu.org>
3399
3400 * emacs-lisp/cl.el (defsetf): Doc fix.
3401
3402 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3403
3404 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
3405 syntax to the matching opener, if any (bug#12547).
3406 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
3407 matching open as a "case-(".
3408 (sh-smie-rc-grammar): Add a corresponding rule for it.
3409
3410 2012-10-28 Daniel Hackney <dan@haxney.org>
3411
3412 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
3413 "PKGNAME-autoloads.el" in case we created it.
3414
3415 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3416
3417 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
3418 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
3419 (completion--twq-all): Disable too-strict assertions.
3420
3421 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
3422
3423 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3424
3425 * profiler.el (profiler-report-make-entry-part): Fix help-echo
3426 text to match the real keybindings.
3427
3428 2012-10-27 Juri Linkov <juri@jurta.org>
3429
3430 * wdired.el (wdired-keep-marker-rename): New defcustom.
3431 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
3432 (Bug#11795)
3433
3434 * dired.el (dired-keep-marker-rename): Add reference to
3435 `wdired-keep-marker-rename' in the docstring.
3436 Add default character value ?R to display initially in
3437 Customization UI instead of ?@.
3438
3439 2012-10-27 Martin Rudalics <rudalics@gmx.at>
3440
3441 * window.el (display-buffer): In doc-string describe
3442 window-height and window-width alist entries.
3443
3444 * time.el (display-time-world): Restore fit-window-to-buffer
3445 behavior.
3446
3447 2012-10-27 Chong Yidong <cyd@gnu.org>
3448
3449 * subr.el (insert-buffer-substring-as-yank): Doc fix.
3450
3451 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
3452
3453 * minibuffer.el (completion-category-overrides): New completion
3454 category `bookmark' (bug#11131).
3455
3456 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
3457
3458 * emacs-lisp/advice.el (ad-assemble-advised-definition):
3459 Silence bogus compiler warnings for ad-do-it.
3460
3461 * bookmark.el (bookmark-completing-read): Set the completion category
3462 to `bookmark' (bug#11131).
3463
3464 2012-10-26 Bastien <bzg@altern.org>
3465 Stefan Monnier <monnier@iro.umontreal.ca>
3466
3467 * face-remap.el: Use lexical-binding.
3468 (text-scale-adjust): Improve docstring. Use itself for the temporary
3469 overlay-map bindings, so as to repeat the "Use..." message each time.
3470
3471 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
3472
3473 * emacs-lisp/macroexp.el (macroexp--expand-all):
3474 Obey byte-compile-warning-enabled-p (bug#12486).
3475
3476 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
3477 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
3478
3479 2012-10-26 Martin Rudalics <rudalics@gmx.at>
3480
3481 * mouse.el (mouse-drag-line): Move last form into preceding when
3482 clause (Bug#12731).
3483
3484 * help.el (resize-temp-buffer-window): Fix doc-string.
3485
3486 2012-10-25 David Engster <deng@randomsample.de>
3487
3488 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
3489 Remove. This feature is already integrated in imenu.
3490
3491 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
3492 always loaded. Require `speedbar' unconditionally.
3493
3494 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3495
3496 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
3497
3498 * minibuffer.el (minibuffer-force-complete): Fix thinko.
3499
3500 * net/ldap.el (ldap-search-internal): The official ldif format starts
3501 with a "version: 1" header (bug#12724).
3502
3503 * emacs-lisp/package.el (package-installed-p): Warn if not ready
3504 (bug#12721).
3505
3506 2012-10-25 Glenn Morris <rgm@gnu.org>
3507
3508 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
3509
3510 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3511
3512 * minibuffer.el (minibuffer-force-complete): Use one more marker
3513 for the temporary-overlay-map command (bug#12619).
3514
3515 2012-10-24 Chong Yidong <cyd@gnu.org>
3516
3517 * time.el (display-time-world-mode): Derive from special-mode.
3518 (display-time-world): Use display-buffer (Bug#12708).
3519 (display-time-world-mode-map): Variable deleted.
3520 (display-time-world-display): Wrap the final delete-char inside
3521 inhibit-read-only.
3522
3523 2012-10-24 Chong Yidong <cyd@gnu.org>
3524
3525 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
3526 Doc fix.
3527
3528 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
3529
3530 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3531
3532 * minibuffer.el (completion--all-sorted-completions-location): New var.
3533 (completion--cache-all-sorted-completions)
3534 (completion--flush-all-sorted-completions): Use it.
3535 (completion-in-region, completion-in-region--postch)
3536 (completion-at-point, completion-help-at-point): Use markers in
3537 completion-in-region--data (bug#12619).
3538
3539 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3540
3541 * progmodes/compile.el (compilation-start): Try to handle common
3542 quoting of `cd' argument (bug#12640).
3543
3544 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
3545 (bug#12671).
3546
3547 2012-10-23 Glenn Morris <rgm@gnu.org>
3548
3549 * progmodes/gud.el (gud-menu-map):
3550 Check gdb-active-process is bound. (Bug#12358)
3551
3552 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3553
3554 * repeat.el (repeat): Set real-this-command (bug#12232).
3555
3556 * htmlfontify.el (hfy-post-html-hook):
3557 * filesets.el (filesets-cache-fill-content-hook):
3558 * arc-mode.el (archive-extract-hook):
3559 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
3560 * net/rcirc.el (rcirc-sentinel-functions)
3561 (rcirc-receive-message-functions, rcirc-activity-functions)
3562 (rcirc-print-functions):
3563 * net/dbus.el (dbus-event-error-functions):
3564 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
3565 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
3566 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
3567 * term/sun.el (sun-raw-prefix-hooks):
3568 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
3569
3570 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
3571
3572 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
3573 Set `tramp-chunksize' to 1. This improves the performance.
3574 (tramp-smb-wait-for-output): Add timeout to
3575 `tramp-accept-process-output' calls.
3576
3577 2012-10-23 Chong Yidong <cyd@gnu.org>
3578
3579 * faces.el (font-list-limit): Define as an obsolete variable.
3580
3581 * startup.el (command-line):
3582 * cus-start.el: Don't refer to font-list-limit.
3583
3584 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
3585
3586 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3587
3588 * subr.el (internal-temp-output-buffer-show): Rename from
3589 temp-output-buffer-show, since previously compiled files expect this name.
3590
3591 2012-10-23 Glenn Morris <rgm@gnu.org>
3592
3593 * image.el (image-type-from-file-name): If multiple types match,
3594 return the first one that is supported. (Bug#9045)
3595
3596 2012-10-22 Glenn Morris <rgm@gnu.org>
3597
3598 * image.el (imagemagick-enabled-types): Doc fix.
3599
3600 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
3601
3602 * progmodes/which-func.el (which-func-current): The hash-table may have
3603 an explicit nil (bug#12338).
3604
3605 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3606
3607 * electric.el (electric-pair-delete-selection-self-insert-function):
3608 Rename to electric-pair-will-use-region, return a boolean.
3609 (electric-pair-mode): Adjust accordingly. Don't require delsel.
3610
3611 * delsel.el (delete-selection-helper): Use a function instead of a hook.
3612 (delete-selection-pre-hook): Use use-region-p.
3613 (delete-selection-self-insert-function): Remove.
3614 (self-insert-command): Obey self-insert-uses-region-functions.
3615 (self-insert-iso): Revert to previous setting, since we don't actually
3616 know what that command does.
3617 (delete-selection-self-insert-hooks): Remove.
3618
3619 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
3620
3621 * delsel.el (delete-selection-helper): New function, extracted from
3622 delete-selection-pre-hook.
3623 (delete-selection-pre-hook): Use it.
3624 (delete-selection-self-insert-function): New function.
3625 (delete-selection-self-insert-hooks): New hook.
3626 (self-insert-command, self-insert-iso): Use it.
3627 * electric.el (electric-pair-syntax): New function, extracted from
3628 electric-pair-post-self-insert-function.
3629 (electric-pair-post-self-insert-function): Use it.
3630 (electric-pair-delete-selection-self-insert-function): New function.
3631 (electric-pair-mode): Require delsel and setup
3632 delete-selection-self-insert-hooks (bug#11520).
3633
3634 2012-10-20 Chong Yidong <cyd@gnu.org>
3635
3636 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
3637 no changes to show (Bug#12586).
3638
3639 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
3640 list explicitly (Bug#12571).
3641
3642 2012-10-20 Arne Jørgensen <arne@arnested.dk>
3643
3644 * progmodes/flymake.el (flymake-create-temp-inplace):
3645 Use file-truename.
3646
3647 2012-10-20 Eli Zaretskii <eliz@gnu.org>
3648
3649 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
3650
3651 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
3652
3653 * calc/calc-units.el (math-extract-units): Properly extract powers
3654 of units.
3655
3656 2012-10-20 Daniel Colascione <dancol@dancol.org>
3657
3658 * frame.el (make-frame): Set x-display-name as we used to in order
3659 to unbreak creating an X11 frame from an Emacs daemon started
3660 without a display.
3661
3662 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3663
3664 * minibuffer.el (minibuffer-force-complete): Make the next completion use
3665 the same completion-field (bug#12221).
3666
3667 2012-10-19 Martin Rudalics <rudalics@gmx.at>
3668
3669 * emacs-lisp/debug.el (debug): Record height of debugger window
3670 also when debugger will be back (Bug#8789).
3671
3672 2012-10-18 Chong Yidong <cyd@gnu.org>
3673
3674 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3675 Convert to defcustom.
3676 (gdb-get-source-file): Don't bind pop-up-windows.
3677
3678 * progmodes/gud.el (gud-display-line): Don't specially re-use
3679 other frames for the gdb-mi case (Bug#12648).
3680
3681 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3682
3683 * emacs-lisp/advice.el: Clean up commentary a bit.
3684 (ad-do-advised-functions, ad-with-originals): Use `declare'.
3685 (byte-code-function-p): Never redefine.
3686
3687 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
3688
3689 2012-10-18 Glenn Morris <rgm@gnu.org>
3690
3691 * dired.el (dired-sort-toggle): Some ls implementations only allow
3692 a single option string. (Bug#12666)
3693
3694 * minibuffer.el (completion-cycle-threshold): Doc fix.
3695
3696 2012-10-17 Kenichi Handa <handa@gnu.org>
3697
3698 * international/mule.el (set-keyboard-coding-system):
3699 Recover input meta mode when the new coding system doesn not use 8-bit.
3700 Supply TERMINAL arg to set-input-meta-mode.
3701
3702 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
3703
3704 * wdired.el (wdired-old-marks): New variable.
3705 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
3706 (wdired-do-renames): Move point with renamed file and don't lose
3707 mark status (Bug#11795).
3708
3709 2012-10-16 Juri Linkov <juri@jurta.org>
3710
3711 * replace.el (query-replace-help): Mention multi-buffer replacement
3712 keys in the Help message. (Bug#12655)
3713
3714 2012-10-15 Chong Yidong <cyd@gnu.org>
3715
3716 * emacs-lisp/byte-run.el (defsubst): Doc fix.
3717
3718 2012-10-14 Eli Zaretskii <eliz@gnu.org>
3719
3720 * window.el (display-buffer): Doc fix.
3721
3722 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3723 Adjust the msft regexp to the output of Studio 2010, and move msft
3724 before edg-1. See the discussion on emacs-devel,
3725 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
3726 for the details.
3727
3728 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
3729
3730 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
3731 (oset): Move uses of object-class-fast macro after its definition.
3732
3733 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
3734
3735 2012-10-13 Chong Yidong <cyd@gnu.org>
3736
3737 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
3738 enabled, re-enable it (Bug#11963).
3739
3740 2012-10-13 Martin Rudalics <rudalics@gmx.at>
3741
3742 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
3743 non-nil, restore window configuration (Bug#12623).
3744
3745 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3746
3747 * help-fns.el (describe-variable, describe-function-1):
3748 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
3749
3750 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
3751
3752 2012-10-12 Glenn Morris <rgm@gnu.org>
3753
3754 * mail/rmailsum.el (rmail-header-summary):
3755 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
3756
3757 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
3758
3759 * progmodes/python.el (python-mode-map):
3760 Replace subtitute-key-definition with proper command remapping.
3761 (python-nav--up-list): Fix behavior for blocks on the same level.
3762
3763 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3764
3765 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
3766
3767 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
3768 changes to the format of load-history.
3769
3770 * international/mule-cmds.el (read-char-by-name): Move let-binding of
3771 completion-ignore-case in case that var is buffer-local (bug#12615).
3772
3773 2012-10-11 Kenichi Handa <handa@gnu.org>
3774
3775 * international/eucjp-ms.el: Re-generated.
3776
3777 2012-10-10 Kenichi Handa <handa@gnu.org>
3778
3779 * select.el (xselect--encode-string): If a coding is specified for
3780 selection, and that is compatible with COMPOUND_TEXT, use it.
3781
3782 2012-10-10 Martin Rudalics <rudalics@gmx.at>
3783
3784 * window.el (switch-to-buffer-preserve-window-point): New option.
3785 (switch-to-buffer):
3786 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
3787
3788 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
3789
3790 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
3791 Don't document nil as a useful value (bug#12583).
3792
3793 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
3794
3795 * net/tramp.el (tramp-debug-message):
3796 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
3797 (with-tramp-progress-reporter): Rename from
3798 `tramp-with-progress-reporter'.
3799 (with-tramp-file-property, with-tramp-connection-property):
3800 Move from tramp-cache.el, rename from `with-file-property' and
3801 `with-connection-property', respectively.
3802
3803 * net/tramp-cache.el: Remove `with-file-property' and
3804 `with-connection-property'.
3805
3806 * net/tramp.el:
3807 * net/tramp-gvfs.el:
3808 * net/tramp-sh.el:
3809 * net/tramp-smb.el: Adapt callees.
3810
3811 * net/trampver.el: Update release number.
3812
3813 2012-10-09 Glenn Morris <rgm@gnu.org>
3814
3815 * w32-fns.el (set-message-beep):
3816 * term/w32-win.el (set-message-beep): Update declarations.
3817
3818 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
3819
3820 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
3821 (mode-line-widen, mode-line-input-method-map)
3822 (mode-line-coding-system-map, mode-line-remote)
3823 (mode-line-unbury-buffer, mode-line-bury-buffer)
3824 (mode-line-next-buffer, mode-line-previous-buffer):
3825 Replace save-selected-window+select-window => with-selected-window.
3826
3827 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
3828 * progmodes/cc-vars.el (bq-process): Remove, unused.
3829
3830 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
3831
3832 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
3833
3834 Implemented `backward-up-list'-like navigation.
3835 * progmodes/python.el (python-nav-up-list)
3836 (python-nav-backward-up-list): New functions.
3837 (python-mode-map): Define substitute key for backward-up-list to
3838 python-nav-backward-up-list.
3839
3840 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
3841
3842 * progmodes/python.el (python-fill-paragraph): Rename from
3843 python-fill-paragraph-function. Fixed fill-paragraph for
3844 decorators (Bug#12605).
3845
3846 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
3847
3848 * progmodes/python.el (python-shell-output-filter): Handle extra
3849 carriage return in OSX (Bug#12409).
3850
3851 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
3852
3853 Fix shell handling of unbalanced quotes and parens in output.
3854 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
3855 (python-syntax-propertize-function): Use it.
3856 (python-shell-output-syntax-table): New var.
3857 (inferior-python-mode): Prevent unbalanced parens/quotes from
3858 previous output mess with current input context.
3859
3860 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
3861
3862 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
3863 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
3864
3865 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
3866
3867 * ffap.el (ffap-replace-file-component): Support Tramp file name
3868 syntax, not only ange-ftp's one.
3869
3870 2012-10-08 Glenn Morris <rgm@gnu.org>
3871
3872 * cus-start.el (message-log-max): Set :version.
3873
3874 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
3875
3876 2012-10-08 Martin Rudalics <rudalics@gmx.at>
3877
3878 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
3879 the minibuffer window (Bug#10851).
3880
3881 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
3882
3883 Enhancements on forward-sexp movement.
3884 * progmodes/python.el (python-nav-beginning-of-statement)
3885 (python-nav-end-of-statement): Return point-marker.
3886 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
3887 (python-info-current-symbol)
3888 (python-info-statement-starts-block-p): Rename from
3889 python-info-beginning-of-block-p.
3890 (python-info-statement-ends-block-p): Rename from
3891 python-info-end-of-block-p.
3892 (python-info-beginning-of-statement-p)
3893 (python-info-end-of-statement-p)
3894 (python-info-beginning-of-block-p, python-info-end-of-block-p):
3895 New functions.
3896
3897 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
3898
3899 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
3900 frame-selected-windows.
3901
3902 2012-10-08 Daniel Colascione <dancol@dancol.org>
3903
3904 * battery.el (battery-status-function): Check for
3905 w32-battery-status itself, not system-time windows-nt.
3906
3907 * frame.el: Require cl-lib.
3908 (display-format-alist): New variable mapping frame types to
3909 functions that initialize them.
3910 (window-system-for-display): New function: interprets
3911 display-format-alist.
3912 (make-frame-on-display): Remove existing display-selection logic
3913 and just forward to make-frame, which will now DTRT.
3914 (make-frame): Restructure to use window-system-for-display to
3915 figure out how to create a frame on a given display.
3916 (display-mouse-p): Look for frame-type w32, not a particular
3917 system-type.
3918
3919 * loadup.el: Load w32 lisp code when we have the w32 feature.
3920
3921 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
3922 system-type windows-nt.
3923
3924 * server.el (server-create-window-system-frame): Look for window
3925 type.
3926 (server-proces-filter): Only force a window system when windows-nt
3927 _and_ w32. Explain why.
3928
3929 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
3930 of window systems we configure for the mode.
3931
3932 * startup.el (command-line): Mark window system is initialized
3933 after we've done it.
3934
3935 * common-win.el (x-select-text): Look for w32, not windows-nt.
3936
3937 * ns-win.el: Require cl-lib. Add ourselves to
3938 display-format-alist.
3939 (ns-initialize-window-system): Assert we're not initialized twice.
3940
3941 * w32-win.el: Enable lexical binding; require cl-lib; add
3942 ourselves to display-format-alist.
3943 (w32-handle-dropped-file): Convert incoming dropped files from
3944 Windows paths to Cygwin ones before passing them on to the rest of
3945 Emacs.
3946 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
3947 (w32-initialize-window-system): Assert we're not initialized twice.
3948
3949 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
3950 (x-initialize-window-system): Assert we're not initialized twice.
3951
3952 * w32-common-fns.el: New File.
3953 (w32-version, w32-using-nt, w32-get-clipboard-data)
3954 (w32-set-clipboard-data, x-set-selection, x-get-selection)
3955 (w32-charset-info-alist, x-last-selected, text)
3956 (x-get-selection-value, x-selection-value): Move here.
3957
3958 * w32-fns.el: Require w32-common-fns.
3959 (w32-version, w32-using-nt, w32-get-clipboard-data)
3960 (w32-set-clipboard-data, x-set-selection, x-get-selection)
3961 (w32-charset-info-alist, x-last-selected, text)
3962 (x-get-selection-value, x-selection-value): Move to
3963 w32-common-fns.
3964
3965 * w32-vars.el:
3966 (w32-allow-system-shell, w32-system-shells): Define only in
3967 non-cygwin case.
3968
3969 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3970
3971 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
3972 (read-passwd): Remove a few more potential sources of leaks.
3973
3974 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
3975
3976 * progmodes/python.el (inferior-python-mode)
3977 (python-shell-make-comint): Fix initialization of local
3978 variables copied from parent buffer.
3979
3980 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
3981
3982 * term/ns-win.el (ns-read-file-name): Update declaration to match
3983 nsfns.m.
3984 (ns-respond-to-change-font): Change fontsize separatly so we are sure
3985 it is set when font is acted upon.
3986
3987 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
3988
3989 Enhancements to indentation.
3990 * progmodes/python.el (python-indent-context): Give priority to
3991 inside-string context. Make comments indentation markers.
3992 (python-indent-region): Do not mess with strings, unless it's the
3993 enclosing set of quotes.
3994
3995 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
3996
3997 * window.el (internal--before-save-selected-window)
3998 (internal--after-save-selected-window): New functions extracted from
3999 save-selected-window. Make sure we return the `alist' we construct.
4000 (save-selected-window): Use them.
4001
4002 * textmodes/tex-mode.el (tex-recenter-output-buffer):
4003 Use with-selected-window.
4004
4005 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
4006 forms that define macros (bug#12593).
4007
4008 2012-10-07 Kenichi Handa <handa@gnu.org>
4009
4010 * international/mule-conf.el (compound-text-with-extensions):
4011 Add :mime-charset property as x-ctext.
4012
4013 2012-10-07 Stefan Merten <smerten@oekonux.de>
4014
4015 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4016 (rst-indent-literal-normal, rst-indent-literal-minimized)
4017 (rst-indent-comment): Correct :version tag.
4018 (rst-official-cvs-rev): Correct version string.
4019
4020 2012-10-07 Glenn Morris <rgm@gnu.org>
4021
4022 * mail/rmailmm.el (rmail-mime-process-multipart):
4023 Do not confuse a multipart message with an epilogue
4024 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
4025
4026 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4027
4028 Fix shell output retrieval and comint-prompt-regexp init.
4029 * progmodes/python.el (inferior-python-mode):
4030 (python-shell-make-comint): Fix initialization of
4031 comint-prompt-regexp from copied file local variables.
4032 (python-shell-fetched-lines): Remove var.
4033 (python-shell-output-filter-in-progress): Rename from
4034 python-shell-fetch-lines-in-progress.
4035 (python-shell-output-filter-buffer): Rename from
4036 python-shell-fetch-lines-string.
4037 (python-shell-fetch-lines-filter): Delete function.
4038 (python-shell-output-filter): New function.
4039 (python-shell-send-string-no-output): Use them.
4040
4041 2012-10-07 Glenn Morris <rgm@gnu.org>
4042
4043 * hi-lock.el (hi-lock-process-phrase):
4044 Try to make it less fragile. (Bug#7161)
4045
4046 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
4047
4048 2012-10-06 Glenn Morris <rgm@gnu.org>
4049
4050 * ehelp.el (electric-help-mode): Use help-mode rather than
4051 non-existent mode `help'.
4052 (electric-help-map): Use button-buffer-map. (Bug#10917)
4053
4054 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
4055 (reftex-create-bibtex-footer): Fix custom types.
4056
4057 * progmodes/sh-script.el (sh-indent-after-continuation):
4058 Add explicit :group.
4059
4060 * textmodes/rst.el (rst-preferred-decorations)
4061 (rst-shift-basic-offset): Clarify obsolescence versions.
4062
4063 * profiler.el (profiler): Add missing group :version tag.
4064 * avoid.el (mouse-avoidance-banish-position):
4065 * proced.el (proced-renice-command):
4066 * calc/calc.el (calc-ensure-consistent-units):
4067 * calendar/icalendar.el (icalendar-import-format-uid):
4068 * net/tramp.el (tramp-save-ad-hoc-proxies):
4069 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4070 * progmodes/flymake.el (flymake-error-bitmap)
4071 (flymake-warning-bitmap, flymake-fringe-indicator-position):
4072 * progmodes/sh-script.el (sh-indent-after-continuation):
4073 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
4074 (verilog-before-save-font-hook, verilog-after-save-font-hook):
4075 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
4076 (vhdl-array-index-record-field-in-sensitivity-list)
4077 (vhdl-indent-comment-like-next-code-line):
4078 * textmodes/reftex-vars.el (reftex-ref-style-alist)
4079 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
4080 (reftex-cite-key-separator, reftex-create-bibtex-header)
4081 (reftex-create-bibtex-footer):
4082 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4083 (rst-indent-literal-normal, rst-indent-literal-minimized)
4084 (rst-indent-comment): Add missing custom :version tags.
4085
4086 * calendar/timeclock.el (timeclock-modeline-display):
4087 Add missing obsolete alias for renamed user option.
4088
4089 * strokes.el (strokes-modeline-string):
4090 * emulation/crisp.el (crisp-mode-modeline-string):
4091 * eshell/esh-mode.el (eshell-status-in-modeline):
4092 Aliases to defcustoms must come before the defcustom.
4093
4094 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
4095 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
4096 (cal-tex-cursor-week-monday): Doc fixes.
4097 (cal-tex-cursor-week2-summary): Doc fix.
4098 Rename from cal-tex-cursor-week-at-a-glance.
4099
4100 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
4101 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
4102
4103 * calendar/calendar.el (calendar-mode-map):
4104 Add cal-tex-cursor-week2-summary.
4105
4106 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4107
4108 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
4109
4110 * subr.el (read-passwd-map): New var.
4111 (read-passwd): Use `read-string' again.
4112 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
4113
4114 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
4115
4116 * register.el (append-to-register, prepend-to-register):
4117 Deactivate mark, as does `copy-to-register' (bug#12389).
4118
4119 2012-10-06 Chong Yidong <cyd@gnu.org>
4120
4121 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
4122
4123 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4124
4125 * international/characters.el: Fix simple mistake ((car chars) ->
4126 elt), delete duplicated code.
4127
4128 2012-10-06 Glenn Morris <rgm@gnu.org>
4129
4130 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
4131
4132 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
4133
4134 * color.el (color-hsl-to-rgb): Fix incorrect results for
4135 small and large hue values. (Bug#12559)
4136
4137 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
4138
4139 Enhancements to docstring formatting when filling paragraphs.
4140 * progmodes/python.el (python-fill-docstring-style): Rename from
4141 python-fill-string-style. Added new style.
4142 (python-fill-string): Use new style. Better checks for
4143 docstrings.
4144
4145 2012-10-05 Glenn Morris <rgm@gnu.org>
4146
4147 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
4148
4149 * color.el (color-name-to-rgb, color-rgb-to-hex)
4150 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
4151 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
4152 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4153 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
4154
4155 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
4156
4157 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
4158
4159 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
4160 to get the correct size across symlinks.
4161
4162 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
4163
4164 2012-10-04 Juri Linkov <juri@jurta.org>
4165
4166 * replace.el (query-replace-interactive): Declare obsolete.
4167 (query-replace-read-from): Add the last incremental search string
4168 to the list of default values accessible via M-n.
4169 (map-query-replace-regexp): Use `read-regexp'.
4170 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4171 (map-query-replace-regexp, replace-string, replace-regexp):
4172 Fix docstrings to replace mentions of `query-replace-interactive'
4173 with alternatives. (Bug#12526)
4174
4175 2012-10-04 Juri Linkov <juri@jurta.org>
4176
4177 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
4178 (dired-pop-to-buffer): Declare obsolete.
4179 (dired-mark-pop-up): Doc fix.
4180
4181 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
4182
4183 Allow user to set docstring style for fill-paragraph.
4184 * progmodes/python.el
4185 (python-fill-comment-function, python-fill-string-function)
4186 (python-fill-decorator-function, python-fill-paren-function):
4187 Remove :safe for defcustoms.
4188 (python-fill-string-style): New defcustom
4189 (python-fill-paragraph-function): Enhance context detection.
4190 (python-fill-string): Honor python-fill-string-style settings.
4191
4192 2012-10-04 Martin Rudalics <rudalics@gmx.at>
4193
4194 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
4195 after setting its buffer (Bug#10805).
4196
4197 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
4198
4199 Fix cornercase for string syntax.
4200 * progmodes/python.el (python-syntax-propertize-function):
4201 Simplify and enhance the regexp for unescaped quotes. Now it also
4202 matches quotes in weird situations like the single quote in
4203 "something\"'".
4204 (python-syntax-stringify): Simplify num-quotes detecting code.
4205
4206 2012-10-03 Glenn Morris <rgm@gnu.org>
4207
4208 * help-macro.el (three-step-help):
4209 Revert 2012-09-29 change. (Bug#12567)
4210
4211 2012-10-03 Martin Rudalics <rudalics@gmx.at>
4212
4213 * menu-bar.el (kill-this-buffer): Don't do anything when
4214 `menu-frame' is not alive or visible (Bug#8184).
4215
4216 * emacs-lisp/debug.el (debug): When quitting the debugger window
4217 restore current buffer (Bug#12502).
4218
4219 2012-10-02 Chong Yidong <cyd@gnu.org>
4220
4221 * progmodes/hideif.el (hif-lookup, hif-defined):
4222 Handle semantic-c-takeover-hideif.
4223
4224 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4225
4226 Change sampling interval units from ms to ns.
4227 * profiler.el (profiler-sampling-interval): Change units
4228 from ms to ns, multiplying the default by 1000000 so that
4229 it remains 1 ms.
4230 (profiler-report-cpu-line-format): Give enough room for
4231 the maximum counters on 64-bit hosts.
4232 (profiler-report-render-calltree-1): Call them "CPU samples",
4233 not "Time (ms)", since they are not milliseconds now (and
4234 never really were).
4235
4236 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4237
4238 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
4239 Fix querying BBDB for entries without a last name (Bug#11580).
4240
4241 2012-10-02 Chong Yidong <cyd@gnu.org>
4242
4243 * emacs-lisp/eieio.el: Restore Version header.
4244
4245 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * vc/diff-mode.el (diff--auto-refine-data): New var.
4248 (diff-hunk): Use it to delay refinement.
4249 (diff-mode): Remove overlays when we turn off font-lock.
4250
4251 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
4252 (table-initialize-table-fixed-width-mode)
4253 (table-set-table-fixed-width-mode): Remove functions.
4254 (table-command-list): Move initialization into declaration.
4255 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
4256 (table-with-cache-buffer): Use `declare'.
4257 (table-span-cell): Simplify via CSE.
4258 (table-fixed-width-mode): Use define-minor-mode.
4259 (table-call-interactively, table-funcall, table-apply): Remove.
4260 (table-function): New function, to replace them.
4261
4262 * bookmark.el (bookmark-search-pattern): Remove var.
4263 (bookmark-read-search-input): Remove function.
4264 (bookmark-bmenu-search): Reimplement using a minibuffer.
4265
4266 * faces.el (modeline): Remove obsolete face name.
4267
4268 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
4269 and give a non-nil default value.
4270 (add-change-log-entry): Simplify accordingly.
4271
4272 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
4273
4274 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
4275 (vc-git-log-edit-toggle-amend): New function.
4276 (vc-git-log-edit-toggle-signoff): New function.
4277 (vc-git-log-edit-mode): New major mode.
4278 (vc-git-log-edit-mode-map): Keymap for it.
4279 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
4280
4281 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
4282 header names.
4283 (log-edit-toggle-header): New function.
4284 (log-edit-extract-headers): Accept function values in HEADERS alist.
4285
4286 2012-10-01 David Engster <deng@randomsample.de>
4287
4288 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
4289 from symbol property and change message to be more consistent with
4290 Emacs proper.
4291 (eieio-describe-generic): Add filename for each implementation.
4292 Fix indices for generic and normal methods.
4293 (eieio-method-def, eieio-class-def): New buttons.
4294 (eieio-help-find-method-definition)
4295 (eieio-help-find-class-definition): New functions.
4296 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
4297 class, constructor and method definitions.
4298
4299 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
4300 information in symbol property.
4301 (scoped-class): Remove.
4302 (eieio-slot-name-index, call-next-method): Check if it is bound.
4303
4304 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
4305
4306 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
4307 (eieio-custom-mode): New major mode.
4308 (eieio-customize-object): Use it.
4309
4310 2012-10-01 Eric Ludlam <zappo@gnu.org>
4311
4312 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
4313 specifying the expected class, and whether subclassing is allowed.
4314 (eieio-persistent-convert-list-to-object):
4315 (eieio-persistent-validate/fix-slot-value)
4316 (eieio-persistent-slot-type-is-class-p): New functions.
4317 (eieio-named::slot-missing): Doc fix.
4318
4319 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
4320 Stop using unused publd variable.
4321
4322 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
4323 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
4324 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
4325 (eieio-speedbar-handle-click): Do not specify a class for the
4326 method. Fixes method invocation order problems with EDE.
4327
4328 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4329
4330 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
4331 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
4332
4333 2012-10-01 Karl Fogel <kfogel@red-bean.com>
4334
4335 * bookmark.el (bookmark-version-control): Give tags in the
4336 :type choices (Bug#12309), and improve doc string.
4337 (bookmark-write-file): Bind `print-circle' to `t' to allow
4338 circular custom bookmark types. (Bug#12503)
4339
4340 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4341
4342 Revert the FOLLOW-SYMLINKS change for file-attributes.
4343 * files.el (remote-file-name-inhibit-cache, after-find-file):
4344 * time.el (display-time-file-nonempty-p): Undo last change.
4345
4346 * profiler.el (profiler-sampling-interval): Change default back to 1.
4347 See Stefan Monnier in
4348 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
4349
4350 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
4351
4352 Shell output catching a la gud-gdb.
4353 * progmodes/python.el (python-shell-fetch-lines-in-progress)
4354 (python-shell-fetch-lines-string, python-shell-fetched-lines):
4355 New Vars.
4356 (python-shell-fetch-lines-filter): New function.
4357 (python-shell-send-string-no-output): Use them.
4358
4359 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
4360
4361 * profiler.el (profiler-sampling-interval): Rename from
4362 profiler-sample-interval.
4363 (profiler-sampling-interval): Default to 10.
4364 (profiler-find-profile): New command (was profiler-find-log).
4365 (profiler-find-profile-other-window): New command.
4366 (profiler-find-profile-other-frame): New command.
4367 (profiler-profile): Introduce API-level data structure.
4368
4369 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4370
4371 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4372 * files.el (remote-file-name-inhibit-cache):
4373 * time.el (display-time-file-nonempty-p): Use it.
4374 * files.el (after-find-file): Don't chase links before calling
4375 file-exists-p, as file-exists-p already does the right thing.
4376
4377 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
4378
4379 Merge from standalone RefTeX repository.
4380
4381 The following ChangeLog entries are shortened versions of the
4382 original ones with file paths adapted. A not so strongly edited
4383 version of the original ChangeLog can be found in the commit log.
4384
4385 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
4386 (reftex-arg-cite): Use `reftex-cite-key-separator'.
4387 Correctly handle new value type returned by `reftex-citation'.
4388
4389 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
4390 that entries with whitespace at various places are found.
4391 Doc fix. Include entries that are cross-referenced from cited entries.
4392 Include @String definitions in the resulting bib file. Add header
4393 and footer defined in `reftex-create-bibtex-header' and
4394 `reftex-create-bibtex-footer'.
4395 (reftex-do-citation): Make it possible again to insert
4396 non-existent entries. Save match data when asking for optional
4397 arguments. Return all keys, not just the first one.
4398 (reftex-all-used-citation-keys): Fix regexp to correctly extract
4399 all citations in the same line.
4400 (reftex-parse-bibtex-entry): Accept additional optional argument
4401 `raw' and keep quotes or braces if it is non-nil. Match fields
4402 containing hyphens besides word constituents.
4403 (reftex-get-string-refs): New function.
4404 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
4405 and ask if it should be reread in case it did.
4406 (reftex-pop-to-bibtex-entry)
4407 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
4408 entries with spaces or tabs in front of arguments.
4409 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4410 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
4411 Match entries containing numbers and symbol constituents.
4412 (reftex-do-citation, reftex-figure-out-cite-format):
4413 Use `reftex-cite-key-separator'.
4414
4415 * textmodes/reftex-dcr.el: Move provide statement to end of file.
4416 (reftex-mouse-view-crossref): Explain why point is set.
4417
4418 * textmodes/reftex-global.el: Whitespace changes.
4419
4420 * textmodes/reftex-index.el: Move provide statement to end of
4421 file.
4422 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
4423 (reftex-index-visit-phrases-buffer): Set marker when visiting
4424 buffer. This allows for returning from the phrases file to the
4425 file one was just editing instead of the file where the last
4426 phrases was added from.
4427 (reftex-index-phrases-syntax-table): New variable. Give ?\"
4428 punctuation syntax as it usually is not used as string quote in
4429 TeX-related modes and may occur unmatched. The change also
4430 prevents fontification of quoted content.
4431 (reftex-index-phrases-mode): Use it.
4432
4433 * textmodes/reftex-parse.el (reftex-parse-from-file):
4434 Move backward one char if a `\' was matched after a section macro.
4435 (reftex-parse-from-file): Use beginning of match instead of end as
4436 bound.
4437
4438 * textmodes/reftex-ref.el: Adapt creation of
4439 `reftex-<package>-<macro>' functions to new structure of
4440 `reftex-ref-style-alist'.
4441 (reftex-reference): Use `reftex-ref-style-list' function.
4442 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
4443 reference macro if `reftex-ref-macro-prompt' is non-nil.
4444 (reftex-reference): Pass refstyle to `reftex-format-special'.
4445 Determine reference macro by looking at
4446 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
4447 Use only one special format function.
4448 (reftex-varioref-vref, reftex-fancyref-fref)
4449 (reftex-fancyref-Fref): Remove definitions. The functions are now
4450 generated from `reftex-ref-style-alist'.
4451 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
4452 Remove.
4453 (reftex-format-special): New function.
4454
4455 * textmodes/reftex-sel.el
4456 (reftex-select-cycle-ref-style-internal): Adapt to new structure
4457 of `reftex-ref-style-alist'. Remove code for testing macro type.
4458 (reftex-select-toggle-varioref)
4459 (reftex-select-toggle-fancyref): Remove.
4460 (reftex-select-cycle-ref-style-internal)
4461 (reftex-select-cycle-ref-style-forward)
4462 (reftex-select-cycle-ref-style-backward): New functions.
4463 (reftex-select-label-map): Use `v' and `V' for general cycling
4464 through reference styles. Add `p' for switching between number
4465 and page reference types.
4466
4467 * textmodes/reftex-toc.el (reftex-re-enlarge):
4468 Call `enlarge-window' only if there is something to do because in Emacs
4469 the horizontal version throws an error even if the parameter is 0.
4470
4471 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
4472 (reftex-plug-into-AUCTeX): Doc fix.
4473 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
4474 string. Adapt to new name.
4475 (reftex-ref-style-alist): Change structure so that it is not
4476 possible to use multiple different package names within a style.
4477 Remove the symbols for symbols for macro type distinction.
4478 Add characters for macro selection.
4479 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
4480 (reftex-create-bibtex-footer): New variables.
4481 (reftex-format-ref-function): Mention third argument of special
4482 format function.
4483 (reftex-ref-style-alist, reftex-ref-style-default-list):
4484 New variables.
4485 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
4486 to new implementation. Mark as obsolete. Add compatibility code
4487 for honoring the variable values in case they are set.
4488 (reftex-cite-format-builtin, reftex-bibliography-commands):
4489 Add support for ConTeXt.
4490 (reftex-format-ref-function, reftex-format-cite-function):
4491 Fix custom type.
4492 (reftex-cite-key-separator): New variable.
4493
4494 * textmodes/reftex.el (reftex-syntax-table-for-bib)
4495 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
4496 `reftex-syntax-table' because parens have to retain their paren
4497 syntax in order for parsing of BibTeX entries like @book(...) to
4498 work.
4499 (reftex-in-comment): Do not error out if `comment-start-skip' is
4500 not set. Deal correctly with escaped comment characters.
4501 (reftex-tie-multifile-symbols): Add doc string.
4502 Initialize `reftex-ref-style-list'.
4503 (reftex-untie-multifile-symbols): Add doc string.
4504 (reftex-add-index-macros): Doc fix.
4505 (reftex-ref-style-activate, reftex-ref-style-toggle)
4506 (reftex-ref-style-list): New functions.
4507 (reftex-mode-menu): Use them. Adapt to new structure of
4508 `reftex-ref-style-alist'.
4509 (reftex-select-with-char): Kill the RefTeX Select buffer when
4510 done.
4511 (reftex-remove-if): New function.
4512 (reftex-erase-all-selection-and-index-buffers)
4513 (reftex-mode-menu): Reference styles are now computed from
4514 `reftex-ref-style-alist'. Fix typo.
4515 (reftex-report-bug): New function.
4516 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
4517 algorithms with O(n log n). Introduce optional argument SORT (not
4518 yet used).
4519
4520 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
4521
4522 Enhancements for triple-quote string syntax.
4523 * progmodes/python.el (python-syntax-propertize-function):
4524 Match both quote cases in one regexp.
4525 (python-syntax-stringify): Handle matches properly.
4526
4527 2012-09-30 Juri Linkov <juri@jurta.org>
4528
4529 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
4530 to nil around the call to `insert' to prevent
4531 directory time modification by lock_file. (Bug#2295)
4532 * tar-mode.el (tar-summarize-buffer): Idem.
4533
4534 2012-09-30 Juri Linkov <juri@jurta.org>
4535
4536 * facemenu.el (list-colors-sort): Add option "Luminance".
4537 (list-colors-sort-key): Implement it.
4538
4539 * vc/diff-mode.el (diff-refine-removed):
4540 * vc/ediff-init.el (ediff-fine-diff-A):
4541 * vc/smerge-mode.el (smerge-refined-removed):
4542 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
4543
4544 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4545
4546 * term/ns-win.el (x-file-dialog): New function.
4547
4548 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4549
4550 * ido.el (ido-max-directory-size): Default to nil; the current
4551 default is small for POSIX systems, and impractical on Windows 7
4552 now that lstat returns directory sizes for NTFS.
4553
4554 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4555
4556 In buffer display functions handle window-height/window-width
4557 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
4558 * window.el (window--display-buffer): New argument ALIST.
4559 Obey window-height and window-width alist entries.
4560 (window--try-to-split-window): New argument ALIST.
4561 Bind window-combination-limit to t when the window's size shall be
4562 changed and window-combination-limit equals `window-size'.
4563 (display-buffer-in-atom-window)
4564 (display-buffer-in-major-side-window)
4565 (display-buffer-in-side-window, display-buffer-same-window)
4566 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4567 (display-buffer-pop-up-window, display-buffer-below-selected)
4568 (display-buffer-at-bottom, display-buffer-in-previous-window)
4569 (display-buffer-use-some-window): Adjust all callers of
4570 window--display-buffer and window--try-to-split-window.
4571 (fit-frame-to-buffer): New option.
4572 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
4573 is non-nil.
4574 (display-buffer-in-major-side-window): Evaluate window-height /
4575 window-width alist entries.
4576
4577 * help.el (temp-buffer-resize-frames)
4578 (temp-buffer-resize-regexps): Remove options.
4579 (temp-buffer-resize-mode): Adjust doc-string.
4580 (resize-temp-buffer-window): Don't consult
4581 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
4582 temp-buffer-resize-frames.
4583
4584 * dired.el (dired-mark-pop-up):
4585 Call display-buffer-below-selected with a fit-window-to-buffer alist
4586 entry.
4587
4588 2012-09-30 Chong Yidong <cyd@gnu.org>
4589
4590 * server.el (server-host): Document the security implications.
4591 (server-auth-key): Doc fix.
4592
4593 * startup.el (initial-buffer-choice): Doc fix.
4594
4595 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
4596
4597 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
4598 restriction change.
4599
4600 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
4601
4602 * help-fns.el (help-fns--obsolete): Fix last change.
4603
4604 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4605
4606 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
4607 (minor-mode-map-alist): Remove redundant code.
4608
4609 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
4610 visited in a buffer.
4611 (cvs-insert-visited-file): New function.
4612 (find-file-hook): Use it.
4613
4614 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
4615
4616 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
4617 chose face.
4618 (log-edit-empty-buffer-p): Don't require a space after a header.
4619
4620 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
4621
4622 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
4623
4624 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
4625 a proper minor-mode.
4626
4627 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
4628
4629 2012-09-29 Glenn Morris <rgm@gnu.org>
4630
4631 * winner.el (winner-mode): Remove variable (let define-minor-mode
4632 handle it).
4633 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
4634 Doc fixes.
4635 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
4636 (winner-mode): Use define-minor-mode.
4637
4638 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
4639 the full definition in loaddefs, rather than duplicating it.
4640
4641 * help-macro.el (three-step-help): No need to autoload defcustom.
4642
4643 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4644 (inferior-lisp-program, inferior-lisp-load-command)
4645 (inferior-lisp-prompt, inferior-lisp-mode-hook):
4646 No need to autoload defcustoms.
4647
4648 * hippie-exp.el (hippie-expand-try-functions-list)
4649 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
4650 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
4651 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
4652 (hippie-expand-only-buffers): No need to autoload defcustoms.
4653 * progmodes/vhdl-mode.el (vhdl-line-expand):
4654 Explicitly load hippie-exp, so it does not get autoloaded
4655 while hippie-expand-try-functions-list is let-bound.
4656
4657 2012-09-28 Glenn Morris <rgm@gnu.org>
4658
4659 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
4660
4661 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
4662 Only "cl.el" counts as cl these days.
4663
4664 2012-09-28 Juri Linkov <juri@jurta.org>
4665
4666 Display archive errors in the echo area instead of inserting
4667 to the file buffer.
4668
4669 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
4670 to STDERR-TEST that can be a regexp matching a successful output.
4671 Create a temporary file and redirect stderr to it. Search for
4672 STDERR-TEST in the stderr output and display it in the echo area
4673 if no match is found.
4674 (archive-extract-by-file): New function like
4675 `archive-extract-by-stdout' but extracting archives to files
4676 and looking for successful matches in stdout. Function body is
4677 mostly copied from `archive-rar-extract'.
4678 (archive-rar-extract): Use `archive-extract-by-file'.
4679 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
4680
4681 2012-09-28 Leo Liu <sdl.web@gmail.com>
4682
4683 * pcomplete.el (pcomplete-show-completions):
4684 Use minibuffer-message to make pcomplete usable in minibuffer.
4685
4686 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
4687
4688 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4689
4690 * type-break.el: Use lexical-binding.
4691 (type-break-mode): Use define-minor-mode.
4692
4693 * emacs-lisp/pcase.el (pcase--mark-used): New.
4694 (pcase--u1): Use it (bug#12512).
4695
4696 * custom.el (load-theme): Set buffer-file-name so the load is recorded
4697 in load-history with the right file name.
4698
4699 2012-09-28 Tassilo Horn <tsdh@gnu.org>
4700
4701 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
4702 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
4703 (doc-view-get-bounding-box): Make bounding box slicing work for
4704 ODF and DVI documents.
4705
4706 2012-09-28 Glenn Morris <rgm@gnu.org>
4707
4708 * type-break.el (type-break-mode, type-break-interval)
4709 (type-break-good-rest-interval, type-break-keystroke-threshold):
4710 No need to autoload.
4711 (type-break-good-rest-interval, type-break-keystroke-threshold):
4712 Add :set-after.
4713
4714 2012-09-28 Chong Yidong <cyd@gnu.org>
4715
4716 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
4717 Add :version tag.
4718
4719 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4720
4721 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
4722
4723 2012-09-27 Glenn Morris <rgm@gnu.org>
4724
4725 * faces.el (x-display-name): Declare (for without-x builds).
4726
4727 * linum.el (linum-format): Don't autoload it. Improve :type.
4728
4729 * progmodes/tcl.el: Don't require outline when compiling.
4730 (outline-regexp, outline-level): Declare.
4731 * textmodes/sgml-mode.el: Don't require outline when compiling.
4732 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
4733
4734 * term.el (term-ansi-reset):
4735 Try setting term-ansi-face-already-done to nil. (Bug#11785)
4736
4737 * vc/vc.el (vc-next-action): Only gripe about committing read-only
4738 files for RCS and SCCS. (Bug#9781)
4739
4740 2012-09-27 Chong Yidong <cyd@gnu.org>
4741
4742 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
4743 change; value should be t.
4744
4745 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
4746
4747 * image-mode.el: Use lexical-binding.
4748 (image-mode-winprops): Use t to stand for the window of
4749 a buffer that's not displayed.
4750 * doc-view.el (doc-view-new-window-function): Handle the new
4751 t in winprops.
4752 (doc-view-enlarge): Make it a real nop if the size is not changed.
4753 (doc-view-display): Handle the case where the buffer is not (yet?)
4754 displayed in any window.
4755 (doc-view-saved-settings): New var.
4756 (doc-view-mode): Use it.
4757 (doc-view-fallback-mode): Set it.
4758
4759 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
4760 Set lexical-binding.
4761 (minibuffer-eldef-shorten-default): New var.
4762 (minibuffer-default-in-prompt-regexps): Use it for new default.
4763 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
4764
4765 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4766
4767 * international/uni-bidi.el:
4768 * international/uni-category.el:
4769 * international/uni-name.el:
4770 * international/uni-numeric.el: Regenerate.
4771
4772 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
4773 Stefan Monnier <monnier@iro.umontreal.ca>
4774
4775 * profiler.el: New file.
4776
4777 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
4778
4779 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
4780 (testcover-reinstrument): Simplify with CSE.
4781
4782 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
4783
4784 * window.el (temp-buffer-window-setup): Fix typo in docstring.
4785
4786 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
4787
4788 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
4789 (verilog-auto-input, verilog-auto-insert-lisp)
4790 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
4791 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
4792 (verilog-auto-unused, verilog-auto-wire)
4793 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
4794 newline. Reported by Andrew Jones.
4795 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
4796 Reported by Brad Dobbie.
4797 (verilog-batch-delete-trailing-whitespace):
4798 Create verilog-batch-delete-trailing-whitespace.
4799 Reported by Brad Dobbie.
4800 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
4801 parameters from another module. Reported by Dan Katz.
4802 (verilog-auto, verilog-auto-assign-modport)
4803 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
4804 AUTOINOUTMODPORT for UVM interface module shell generation.
4805 Reported by Brad Dobbie.
4806 (verilog-auto-inst-interfaced-ports): Make default nil, as more
4807 standard behavior.
4808 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
4809 Reported by Matt Martin.
4810
4811 2012-09-25 Martin Rudalics <rudalics@gmx.at>
4812
4813 * window.el (window--resize-child-windows): When resizing child
4814 windows proportionally, process them in reverse order to
4815 preserve the "when splitting a window the new one gets the odd
4816 line" behavior.
4817 (window--resize-root-window-vertically): When resizing the
4818 minibuffer window try to affect only windows at the bottom of the
4819 frame. (Bug#12419)
4820
4821 2012-09-25 Chong Yidong <cyd@gnu.org>
4822
4823 * subr.el (declare): Doc fix.
4824
4825 * help-fns.el (help-fns--obsolete): Handle macros properly.
4826
4827 2012-09-25 Chong Yidong <cyd@gnu.org>
4828
4829 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
4830 this function obsolete.
4831
4832 * calendar/cal-x.el (calendar-two-frame-setup)
4833 (calendar-only-one-frame-setup, calendar-one-frame-setup):
4834 * calendar/calendar.el (american-calendar, european-calendar)
4835 (calendar-for-loop):
4836 * comint.el (comint-dynamic-simple-complete)
4837 (comint-dynamic-complete-as-filename, comint-unquote-filename):
4838 * desktop.el (desktop-load-default):
4839 * dired-x.el (dired-omit-here-always)
4840 (dired-hack-local-variables, dired-default-directory):
4841 * emacs-lisp/derived.el (derived-mode-class):
4842 * emacs-lisp/timer.el (timer-set-time-with-usecs):
4843 * emacs-lock.el (toggle-emacs-lock):
4844 * epa.el (epa-display-verify-result):
4845 * epg.el (epg-sign-keys, epg-start-sign-keys)
4846 (epg-passphrase-callback-function):
4847 * eshell/esh-util.el (eshell-for):
4848 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
4849 (eshell-add-to-window-buffer-names):
4850 * files.el (locate-file-completion):
4851 * imenu.el (imenu-example--create-c-index)
4852 (imenu-example--create-lisp-index)
4853 (imenu-example--lisp-extract-index-name)
4854 (imenu-example--name-and-position):
4855 * international/mule-cmds.el (princ-list):
4856 * international/mule-diag.el (decode-codepage-char):
4857 * international/mule-util.el (detect-coding-with-priority):
4858 * iswitchb.el (iswitchb-read-buffer):
4859 * mail/mailalias.el (mail-complete):
4860 * mail/sendmail.el (mail-sent-via):
4861 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
4862 (mouse-major-mode-menu):
4863 * password-cache.el (password-read-and-add):
4864 * pcomplete.el (pcomplete-parse-comint-arguments):
4865 * progmodes/sh-script.el (sh-maybe-here-document):
4866 * replace.el (query-replace-regexp-eval):
4867 * savehist.el (savehist-load):
4868 * simple.el (choose-completion-delete-max-match):
4869 * term.el (term-dynamic-simple-complete):
4870 * vc/ediff-init.el (ediff-check-version):
4871 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
4872 * vc/vc.el (vc-diff-switches-list):
4873 * view.el (view-return-to-alist-update): Likewise.
4874
4875 * subr.el (eval-next-after-load, makehash, insert-string)
4876 (assoc-ignore-representation, assoc-ignore-case): Use declare to
4877 mark obsolete.
4878 (mode-line-inverse-video): Variable deleted.
4879
4880 * international/mule-util.el (string-to-sequence): Remove.
4881
4882 * calendar/calendar.el (calendar-version):
4883 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
4884 (icalendar-convert-diary-to-ical):
4885 * cus-edit.el (custom-mode):
4886 * ansi-color.el (ansi-color-unfontify-region):
4887 * international/latin1-disp.el (latin1-char-displayable-p):
4888 * progmodes/cwarn.el (turn-on-cwarn-mode):
4889 * progmodes/which-func.el (which-func-update-1):
4890 Use define-obsolete-function-alias.
4891
4892 * net/newst-backend.el (newsticker-cache-filename):
4893 * net/newst-treeview.el (newsticker-groups-filename):
4894 Fix incorrect obsolescence declaration.
4895
4896 * allout.el (allout-passphrase-hint-string): Likewise.
4897 (allout-init): Use a declare form to mark obsolete.
4898
4899 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
4900 this applies to functions.
4901
4902 * iswitchb.el (iswitchb-read-buffer): Move code of
4903 iswitchb-define-mode-map here, and delete that obsolete function.
4904
4905 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
4906 font-lock-reference-face.
4907
4908 2012-09-25 Glenn Morris <rgm@gnu.org>
4909
4910 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
4911 Doc fixes.
4912
4913 * eshell/em-term.el (eshell-term-name):
4914 Default to term-term-name. (Bug#12485)
4915
4916 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
4917
4918 * progmodes/python.el (python-shell-send-buffer): Better handling
4919 of "if __name__ == '__main__':" conditionals when sending the buffer.
4920
4921 2012-09-24 Glenn Morris <rgm@gnu.org>
4922
4923 * eshell/esh-cmd.el (eshell-find-alias-function):
4924 Tighten up file-name regexp. (Bug#12499)
4925
4926 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
4927
4928 Enhancements for triple-quote string syntax.
4929 * progmodes/python.el (python-quote-syntax): Remove.
4930 (python-syntax-propertize-function): New value.
4931 (python-syntax-count-quotes, python-syntax-stringify):
4932 New functions.
4933
4934 2012-09-24 Chong Yidong <cyd@gnu.org>
4935
4936 * mail/supercite.el (sc-version): Remove obsolete function.
4937 (sc-describe): Don't mark as obsolete, since it is bound.
4938 (sc-submit-bug-report): Remove.
4939
4940 * vc/log-edit.el (cvs-changelog-full-paragraphs)
4941 (cvs-commit-buffer-require-final-newline): Remove.
4942 (log-edit-require-final-newline)
4943 (log-edit-changelog-full-paragraphs): Default to t.
4944
4945 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
4946 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
4947 * vc/vc.el (vc-checkout-carefully): Likewise.
4948
4949 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
4950 (emerge-version): Remove.
4951
4952 * progmodes/compile.el (compile-internal): Remove.
4953 (compilation-parse-errors-function): Fix typo.
4954
4955 * international/mule.el (set-char-table-default): Remove.
4956 (set-coding-priority, make-coding-system, generic-char-p)
4957 (charset-list, charset-bytes, charset-id): Use declare to mark
4958 functions as obsolete.
4959
4960 * vc/pcvs-defs.el (cvs-buffer-name-alist)
4961 (cvs-invert-ignore-marks): Remove references to obsolete vars.
4962 * vc/vc-hooks.el (vc-default-registered): Don't use
4963 vc-master-templates.
4964
4965 * font-lock.el (font-lock-reference-face):
4966 Use define-obsolete-variable-alias.
4967
4968 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
4969 * calendar/calendar.el (calendar-font-lock-keywords):
4970 * calendar/diary-lib.el (diary-font-lock-keywords)
4971 (diary-fancy-font-lock-keywords):
4972 * textmodes/reftex-sel.el (reftex-insert-docstruct):
4973 * textmodes/reftex-index.el (reftex-insert-index):
4974 * textmodes/reftex-cite.el (reftex-format-bib-entry):
4975 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4976 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
4977 * progmodes/prolog.el (prolog-font-lock-keywords):
4978 * progmodes/idlwave.el (idlwave-idl-keywords):
4979 * progmodes/ada-mode.el (ada-font-lock-keywords):
4980 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
4981
4982 2012-09-24 Glenn Morris <rgm@gnu.org>
4983
4984 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
4985
4986 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
4987
4988 * progmodes/python.el (python-indent-line): More consistent cursor
4989 movement behavior.
4990
4991 2012-09-23 Stefan Merten <smerten@oekonux.de>
4992
4993 * textmodes/rst.el: Fix compiler warning.
4994
4995 2012-09-23 Roland Winkler <winkler@gnu.org>
4996
4997 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
4998 Transcribe also LaTeX hyphenation.
4999 (bibtex-reformat): Bug fix. Do not quote twice the elements of
5000 bibtex-reformat-previous-options.
5001
5002 2012-09-23 Roland Winkler <winkler@gnu.org>
5003
5004 * proced.el (proced-renice-command): New variable.
5005 (proced-marked-processes): New function.
5006 (proced-with-processes-buffer): New macro.
5007 (proced-send-signal): Use them.
5008 (proced-renice): New command bound to r.
5009
5010 2012-09-23 Roland Winkler <winkler@gnu.org>
5011
5012 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
5013 ibuffer-saved-filter-groups has one element, shortcut the call of
5014 completing-read. (Bug#12331)
5015
5016 2012-09-23 Chong Yidong <cyd@gnu.org>
5017
5018 * bindings.el (mode-line-toggle-read-only):
5019 * bs.el (bs-toggle-readonly):
5020 * buff-menu.el (Buffer-menu-toggle-read-only):
5021 * dired.el (dired-toggle-read-only):
5022 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
5023
5024 2012-09-23 Chong Yidong <cyd@gnu.org>
5025
5026 * image.el (image-type-available-p): Adapt to init-image-library
5027 argument changes.
5028
5029 2012-09-22 Juri Linkov <juri@jurta.org>
5030
5031 * dired.el (dired-mode-map): Add [remap read-only-mode] for
5032 `dired-toggle-read-only'. (Bug#12462)
5033
5034 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5035
5036 * subr.el (temp-output-buffer-show): New function.
5037 (with-output-to-temp-buffer): Call temp-output-buffer-show
5038 instead of internal-temp-output-buffer-show.
5039
5040 2012-09-22 Chong Yidong <cyd@gnu.org>
5041
5042 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
5043 (Bug#12462).
5044
5045 * repeat.el (repeat): Doc fix (Bug#12348).
5046
5047 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
5048 (Bug#10909).
5049
5050 * simple.el (shell-command-on-region): Doc fix.
5051 (read-only-mode): Doc fix.
5052
5053 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5054
5055 * emacs-lisp/timer.el (run-with-idle-timer)
5056 (timer-activate-when-idle): Warn against reinvoking an idle timer
5057 from within its own timer action. (Bug#12447)
5058
5059 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5060
5061 * cus-start.el (window-combination-limit): Add new optional
5062 values.
5063 * window.el (temp-buffer-window-show)
5064 (window--try-to-split-window): Handle new values of
5065 window-combination-limit (Bug#1806).
5066 (split-window): Test window-combination-limit for t instead of
5067 non-nil.
5068 (display-buffer-at-bottom): New buffer display action function.
5069 * help.el (temp-buffer-resize-regexps): New option.
5070 (temp-buffer-resize-mode): Rewrite doc-string.
5071 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
5072 Don't resize reused window. Suggested by Glenn Morris.
5073
5074 2012-09-22 Stefan Merten <smerten@oekonux.de>
5075
5076 * textmodes/rst.el: Revamp section title faces.
5077 (rst-official-version)
5078 (rst-package-emacs-version-alist): Sync with official version
5079 V1.4.0.
5080 (rst-faces-defaults, rst-set-level-default)
5081 (rst-level-face-max, rst-level-face-base-color)
5082 (rst-level-face-base-light, rst-level-face-format-light)
5083 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
5084 (rst-adornment-faces-alist): Match new setup.
5085 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
5086 (rst-level-5, rst-level-6): New faces.
5087
5088 2012-09-22 Chong Yidong <cyd@gnu.org>
5089
5090 * simple.el (undo): Handle indirect buffers (Bug#8207).
5091
5092 2012-09-21 Leo Liu <sdl.web@gmail.com>
5093
5094 IDO: Disable match re-ordering for buffer switching.
5095 * ido.el (ido-buffer-disable-smart-matches): New variable.
5096 (ido-set-matches-1): Use it. (Bug#2042)
5097
5098 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
5099
5100 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5101 Fix 2011-05-17 change. (Bug#12418)
5102
5103 2012-09-21 Leo Liu <sdl.web@gmail.com>
5104
5105 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
5106
5107 2012-09-21 Glenn Morris <rgm@gnu.org>
5108
5109 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
5110 Be more robust about locating simple.el.
5111
5112 2012-09-21 Glenn Morris <rgm@gnu.org>
5113
5114 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
5115
5116 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
5117
5118 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
5119
5120 2012-09-20 Juri Linkov <juri@jurta.org>
5121
5122 * replace.el (query-replace-read-from): Use `read-regexp' instead
5123 of `read-from-minibuffer' when `regexp-flag' is non-nil.
5124 (occur-read-primary-args): Use `read-regexp' instead of
5125 `read-string'.
5126 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
5127 `read-from-minibuffer'.
5128 * isearch.el (isearch-occur): Use `read-regexp' instead of
5129 `read-string'.
5130 * dired.el (dired-read-regexp): Use `read-regexp' instead of
5131 `read-from-minibuffer'.
5132 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
5133 of `read-string'. (Bug#7567)
5134
5135 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
5136 and allow accepting a list of strings prepended to a list of
5137 standard default values. Doc fix. (Bug#12321)
5138
5139 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
5140
5141 * replace.el (read-regexp): Don't add ": " when PROMPT already
5142 ends with a colon and space. (Bug#12321)
5143
5144 2012-09-20 Tassilo Horn <tsdh@gnu.org>
5145
5146 * doc-view.el (doc-view-display): Better fix for the cl-assertion
5147 error.
5148
5149 2012-09-20 Stefan Merten <smerten@oekonux.de>
5150
5151 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
5152 Fixes feature request bug#11711.
5153 (rst-mode): Create `imenu-create-index-function'.
5154 (rst-get-stripped-line): Delete after refactoring.
5155 (rst-section-tree, rst-section-tree-rec)
5156 (rst-section-tree-point): Refactor and document properly.
5157 (rst-imenu-find-adornments-for-position)
5158 (rst-imenu-convert-cell, rst-imenu-create-index):
5159 New function.
5160
5161 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5162
5163 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
5164 (macroexp--expand-all): Use it.
5165 (macroexp--funcall-and-return): Remove by folding it into its sole
5166 caller (macroexp--warn-and-return).
5167 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
5168 Use macroexp--obsolete-warning.
5169
5170 * calc/calc.el: Fix last change by removing the whole chunk, since it
5171 was only needed back when Calc was not bundled.
5172
5173 2012-09-20 Martin Rudalics <rudalics@gmx.at>
5174
5175 * emacs-lisp/debug.el (debug): Restore assignment to
5176 debugger-old-buffer removed on 2012-09-08.
5177
5178 2012-09-20 Juri Linkov <juri@jurta.org>
5179
5180 * dired-aux.el (dired-diff): Remove (require 'diff) since
5181 `diff-latest-backup-file' is now autoloaded.
5182
5183 2012-09-20 Chong Yidong <cyd@gnu.org>
5184
5185 * vc/diff.el (diff-latest-backup-file): Autoload.
5186
5187 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5188
5189 * calc/calc.el: Remove redundant autoload shape check.
5190 (sel-mode): Don't defvar.
5191 (calc-get-stack-element): Add `sel-mode' arg instead.
5192 (calc-top, calc-top-list): Pass it this additional argument.
5193 * calc/calc-store.el (calc-store-map):
5194 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
5195 (calc-map-equation, calc-outer-product, calc-inner-product):
5196 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
5197
5198 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
5199
5200 2012-09-19 Juri Linkov <juri@jurta.org>
5201
5202 * dired-aux.el (dired-diff): Add (require 'diff) because
5203 `diff-latest-backup-file' is not autoloaded.
5204 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
5205 of `dired-get-filename' to t to not report error when there is
5206 no default file on the current line.
5207
5208 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5209
5210 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
5211 macroexp--eval-if-compile.
5212 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
5213 (macroexp--expand-all): Use them (bug#12371).
5214
5215 * doc-view.el (doc-view-guess-paper-size)
5216 (doc-view-scale-bounding-box): Fix unbound `caddr'.
5217
5218 2012-09-19 Tassilo Horn <tsdh@gnu.org>
5219
5220 New feature: set optimal slice from BoundingBox information.
5221 * doc-view.el (doc-view-mode-map): Add keybinding.
5222 (doc-view-menu): Add menu entry.
5223 (doc-view-set-slice): Adapt docstring.
5224 (doc-view-get-bounding-box, doc-view-guess-paper-size)
5225 (doc-view-scale-bounding-box)
5226 (doc-view-set-slice-from-bounding-box): New functions.
5227 (doc-view-paper-sizes): New defvar.
5228
5229 2012-09-19 Glenn Morris <rgm@gnu.org>
5230
5231 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
5232 (byte-compile-log-warning): Autoload. (Bug#12371)
5233
5234 * calendar/calendar.el (calendar-american-month-header)
5235 (calendar-european-month-header, calendar-iso-month-header)
5236 (calendar-month-header): New options.
5237 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
5238 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
5239
5240 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5241
5242 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
5243
5244 2012-09-18 Juri Linkov <juri@jurta.org>
5245
5246 * dired-aux.el (dired-diff): Restore original functionality of
5247 getting the default value, but keep new feature of using the
5248 latest existing backup file (`diff-latest-backup-file').
5249
5250 2012-09-18 Juri Linkov <juri@jurta.org>
5251
5252 * dired.el (dired-mark): If the region is active in Transient Mark
5253 mode, mark all files in the active region. Doc fix.
5254 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
5255 Doc fix. (Bug#10624)
5256
5257 2012-09-18 Juri Linkov <juri@jurta.org>
5258
5259 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
5260 attributes for M-n are pulled from the file at point.
5261 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
5262 Suggested by Drew Adams. (Bug#10624)
5263
5264 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
5265
5266 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
5267 whitespace after "end".
5268 (ruby-do-end-to-brace): Collapse block to one line if it fits
5269 within fill-column.
5270
5271 2012-09-18 Martin Rudalics <rudalics@gmx.at>
5272
5273 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
5274 value.
5275 (debug): Don't remove debugger window when debugger is expected
5276 to be back.
5277
5278 2012-09-18 Chong Yidong <cyd@gnu.org>
5279
5280 * custom.el (defface): Doc fix.
5281
5282 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
5283
5284 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
5285
5286 * progmodes/compile.el (compilation-start): Use compilation-always-kill
5287 to initialize query-on-exit; then test that instead (bug#12288).
5288
5289 2012-09-17 Stefan Merten <smerten@oekonux.de>
5290
5291 * textmodes/rst.el: Add support for `testcover'.
5292 (rst-defcustom-testcover, rst-testcover-add-compose)
5293 (rst-testcover-add-1value): New functions.
5294 (rst-portable-mark-active-p): Replace by `use-region-p'.
5295 (rst-update-section, rst-classify-adornment)
5296 (rst-find-title-line): Mark `1value' forms.
5297 (rst-classify-adornment): Remove superfluous form.
5298 (rst-update-section, rst-get-adornments-around)
5299 (rst-adornment-complete-p, rst-get-next-adornment)
5300 (rst-adjust, rst-promote-region)
5301 (rst-display-adornments-hierarchy, rst-straighten-adornments)
5302 (rst-find-pfx-in-region, rst-section-tree-rec)
5303 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
5304 (rst-toc-node, rst-toc, rst-forward-section)
5305 (rst-iterate-leftmost-paragraphs)
5306 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
5307 (rst-bullet-list-region)
5308 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
5309 (rst-compile-find-conf, rst-compile)
5310 (rst-repeat-last-character): Fix style.
5311
5312 2012-09-17 Chong Yidong <cyd@gnu.org>
5313
5314 * comint.el (comint--complete-file-name-data): Don't add a space
5315 if the status is `sole'; that adds a gratuitous space in the
5316 completion-cycling case (Bug#12092).
5317
5318 * pcomplete.el (pcomplete-completions-at-point): Likewise.
5319
5320 2012-09-17 Richard Stallman <rms@gnu.org>
5321
5322 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
5323 only in the mime-shown mode, not in raw mode.
5324 (rmail-mime): Toggle off mime by displaying the message without
5325 mime processing. (Bug#12305)
5326
5327 * mail/rmail.el (rmail-retry-failure):
5328 Turn off mime processing first. (Bug#12037)
5329
5330 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
5331
5332 2012-09-17 Chong Yidong <cyd@gnu.org>
5333
5334 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
5335 (shell-dynamic-complete-functions): Convert to defcustom.
5336 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
5337
5338 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
5339 * comint.el (comint-prompt-read-only):
5340 * custom.el (defcustom):
5341 * hi-lock.el (hi-lock-mode):
5342 * ibuffer.el (ibuffer-formats):
5343 * ielm.el (ielm-prompt-read-only):
5344 * novice.el (disable-command):
5345 * saveplace.el (toggle-save-place):
5346 * speedbar.el (speedbar-supported-extension-expressions):
5347 * startup.el (auto-save-list-file-prefix, init-file-user)
5348 (after-init-hook, inhibit-startup-echo-area-message):
5349 * strokes.el (strokes-help):
5350 * time-stamp.el (time-stamp):
5351 * calendar/calendar.el (calendar, diary-file):
5352 * calendar/diary-lib.el (diary-mail-entries, diary)
5353 (diary-list-entries-hook):
5354 * calendar/holidays.el (holidays, calendar-holidays):
5355 * calendar/lunar.el (lunar-phases):
5356 * calendar/solar.el (sunrise-sunset):
5357 * emulation/edt.el (edt-load-keys):
5358 * emulation/viper.el (viper-mode):
5359 * eshell/em-alias.el (eshell-command-aliases-list):
5360 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5361 * international/ogonek.el (ogonek-information):
5362 * net/tramp-cmds.el (tramp-bug):
5363 * net/quickurl.el (quickurl-reread-hook-postfix):
5364 * play/decipher.el (decipher-font-lock-keywords):
5365 * progmodes/cc-styles.el (c-set-style):
5366 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
5367 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5368 * progmodes/octave-mod.el (octave-mode):
5369 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
5370 * progmodes/verilog-mode.el (verilog-read-defines):
5371 * textmodes/two-column.el (2C-mode): Likewise.
5372
5373 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
5374
5375 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
5376 that holds many addresses.
5377
5378 2012-09-16 Chong Yidong <cyd@gnu.org>
5379
5380 * align.el (align-areas): Call the indication function with
5381 positions instead of markers for arguments (Bug#12343).
5382
5383 * files.el (parse-colon-path): Use split-string (Bug#12351).
5384
5385 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
5386 (display-buffer-function): Mark as obsolete.
5387
5388 * progmodes/compile.el (compilation-parse-errors): Accept list
5389 values similar to font-lock-keywords (Bug#12136).
5390 Suggested by Oleksandr Manzyuk.
5391 (compilation-error-regexp-alist): Doc fix.
5392
5393 2012-09-15 Glenn Morris <rgm@gnu.org>
5394
5395 * version.el (emacs-bzr-version-bzr): New function.
5396 (emacs-bzr-get-version): Add optional EXTERNAL argument.
5397
5398 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
5399 checkouts, check the parent dirstate matches the branch.
5400 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
5401 empty string.
5402
5403 * version.el (emacs-bzr-version): Doc fix.
5404 (emacs-bzr-version-dirstate): New function.
5405 (emacs-bzr-get-version): For lightweight checkouts, if the parent
5406 is local try and check that it matches the branch. If not, just
5407 use dirstate information. (Bug#12441)
5408
5409 2012-09-14 Juri Linkov <juri@jurta.org>
5410
5411 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
5412 (Bug#12399)
5413
5414 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5415
5416 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
5417
5418 * emacs-lisp/edebug.el: Miscellaneous cleanup.
5419 Remove obsolete byte-compiler hack that tried to silence some warnings.
5420 (edebug-submit-bug-report): Remove.
5421 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
5422 Remove aliases, use the un-prefixed name instead.
5423 (edebug-pop-to-buffer): Consider other frames.
5424 (edebug-original-read):: Make it more obvious that it's always defined.
5425 (edebug--make-form-data-entry, edebug--form-data-name)
5426 (edebug--form-data-begin, edebug--form-data-end): Rename from the
5427 single-dashed name, and implement with cl-defstruct.
5428 (edebug-set-form-data-entry): Use the standard accessors.
5429 (edebug-make-top-form-data-entry): Use push.
5430 (edebug-no-match): Drop useless `funcall'.
5431 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
5432 to functions.
5433 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
5434 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
5435 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
5436 (easy-menu-define, with-custom-print): Remove redundant specs.
5437 (edebug-outside-overriding-local-map)
5438 (edebug-outside-overriding-terminal-local-map): Remove, unused.
5439 (edebug--display): Bind unread-command-events directly to nil rather
5440 than binding it to unread-command-events and later setting it to nil.
5441 (edebug--display): Kill edebug-eval-buffer here...
5442 (edebug--recursive-edit): ...rather than here.
5443 Bind standard-output and standard-input.
5444 (edebug-eval): Check cl-macroexpand-all is fboundp.
5445 (edebug-temp-display-freq-count): Fix last change.
5446
5447 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
5448 * subr.el (noreturn, 1value): Add `debug' spec.
5449 * emacs-lisp/advice.el: Require cl-lib.
5450 (ad-copy-tree): Remove, use copy-tree instead.
5451 (ad-dolist): Remove use dolist or cl-dolist instead.
5452 (ad-do-return): Remove, use cl-return instead.
5453 (defadvice): Add `debug' spec.
5454
5455 2012-09-13 Juri Linkov <juri@jurta.org>
5456
5457 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
5458 (Bug#12399)
5459
5460 2012-09-13 Glenn Morris <rgm@gnu.org>
5461
5462 * calc/calc.el (math-compose-expr):
5463 * calc/calc-ext.el (math-compose-expr):
5464 * progmodes/cc-defs.el (cl-macroexpand-all):
5465 * progmodes/cc-langs.el (delete-duplicates, mapcan)
5466 (cl-macroexpand-all): Update declarations.
5467
5468 * vc/vc.el: No need to require ediff.
5469 (ediff-load-version-control): Declare.
5470 (ediff-vc-internal): Fix declaration.
5471 (vc-version-ediff): Require ediff.
5472
5473 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5474
5475 Use a more backwards-compatible timer format (Bug#12430).
5476 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
5477 being right after USECS, as that better supports old code that
5478 inadvisedly looked directly at the timer vector.
5479
5480 2012-09-13 Kenichi Handa <handa@gnu.org>
5481
5482 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
5483 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
5484 `coding-priority' property of these language environment.
5485
5486 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5487
5488 Fix glitches caused by addition of psec to timers (Bug#12430).
5489 * image.el (image-animate-timer):
5490 * time.el (display-time-world-timer):
5491 Use timer--function and timer--args rather than raw access to
5492 timer vector.
5493
5494 2012-09-13 Glenn Morris <rgm@gnu.org>
5495
5496 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
5497 If not compiling a file, try using load-file-name.
5498
5499 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
5500
5501 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
5502 Fix last change.
5503 (edebug-update-eval-list): Use `push'.
5504
5505 * emacs-lisp/edebug.el: Use lexical-binding.
5506 Remove the "edebug-" prefix from non-dynamically-scoped variables.
5507 Mark unused args with underscore.
5508 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
5509 (edebug-form-data): Use defvar-local.
5510 (edebug-make-before-and-after-form, edebug-make-after-form):
5511 Use backquote.
5512 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
5513 Not dynamically scoped any more.
5514 (edebug--enter-trace): Add arguments `function' and `args'.
5515 Rename from edebug-enter-trace.
5516 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
5517 (edebug--update-coverage): Add `after-index' and `value' args.
5518 Rename from edebug-update-coverage.
5519 (edebug-slow-after): Call it accordingly.
5520 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
5521 edebug-recursive-edit.
5522 (edebug--display): Call it accordingly. Add args `value',
5523 `offset-index', and `arg-mode'. Rename from edebug-display.
5524 (edebug-debugger, edebug): Call it accordingly.
5525 (edebug-eval-display-list): Use dolist.
5526
5527 2012-09-12 Juri Linkov <juri@jurta.org>
5528
5529 * info.el (Info-search): Don't check for isearch-mode and
5530 isearch-regexp before let-binding search-spaces-regexp to
5531 Info-search-whitespace-regexp.
5532 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
5533 search-whitespace-regexp if isearch-lax-whitespace or
5534 isearch-regexp-lax-whitespace is non-nil.
5535 (Info-mode): Don't set local variable search-whitespace-regexp.
5536 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
5537
5538 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5539
5540 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
5541 (debugger-env-macro): Remove support for unread-command-char.
5542
5543 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
5544 the temporary map re-appearing on emulation-mode-map-alists.
5545
5546 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
5547 since 22.1.
5548
5549 * ehelp.el (with-electric-help): Accept functions in
5550 electric-help-form-to-execute.
5551 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
5552 And replace unread-command-char -> unread-command-events.
5553
5554 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
5555
5556 Sync with Tramp 2.2.6.
5557
5558 * net/tramp.el (tramp-accept-process-output): Don't use
5559 JUST-THIS-ONE in the XEmacs case.
5560
5561 * net/trampver.el: Update release number.
5562
5563 2012-09-12 Martin Rudalics <rudalics@gmx.at>
5564
5565 * emacs-lisp/debug.el (debugger-previous-window-height):
5566 New variable.
5567 (debug): When debugger-jumping-flag is non-nil try to restore
5568 height of debugger window. (Bug#8789)
5569
5570 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5571
5572 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
5573 overriding-local-map and pre/post-command-hook here.
5574 (edebug-recursive-edit): Do it here instead (bug#12345).
5575 (edebug-outside-unread-command-char): Remove all uses of
5576 unread-command-char.
5577
5578 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
5579 inhibit-debugger is bound instead.
5580
5581 2012-09-11 Bastien Guerry <bzg@gnu.org>
5582
5583 * subr.el (set-temporary-overlay-map): Add a docstring.
5584 (Bug#12346)
5585
5586 2012-09-11 Bastien Guerry <bzg@gnu.org>
5587
5588 * minibuffer.el (completion-table-subvert): Fix docstring.
5589 (Bug#12347)
5590
5591 2012-09-11 Bastien Guerry <bzg@gnu.org>
5592
5593 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
5594
5595 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
5596
5597 * progmodes/sql.el: Version 3.1
5598 (sql-db2-escape-newlines): New variable.
5599 (sql-escape-newlines-filter): Use it.
5600
5601 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
5602
5603 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
5604
5605 2012-09-10 Dan Nicolaescu <dann@gnu.org>
5606
5607 * vc/diff-mode.el (diff-mode-menu):
5608 Bind diff-remove-trailing-whitespace.
5609
5610 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5611
5612 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
5613 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
5614 (emacs-lisp-byte-code-mode): New functions.
5615 (eval-sexp-add-defvars): Don't skip defvars in column >0.
5616 (eval-defun-2): Remove bogus interactive spec.
5617 (lisp-indent-line): Remove redundant whole-exp code, now done in
5618 indent-according-to-mode.
5619 (save-match-data): Remove redundant indent data.
5620
5621 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
5622 Use `declare'.
5623
5624 2012-09-09 Juri Linkov <juri@jurta.org>
5625
5626 * replace.el (replace-regexp-lax-whitespace): New defcustom.
5627 (replace-lax-whitespace, query-replace-regexp)
5628 (query-replace-regexp-eval, replace-regexp): Doc fix.
5629 (perform-replace, replace-highlight): Let-bind
5630 isearch-lax-whitespace to replace-lax-whitespace and
5631 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
5632
5633 * isearch.el (isearch-query-replace): Let-bind
5634 replace-lax-whitespace to isearch-lax-whitespace and
5635 replace-regexp-lax-whitespace to
5636 isearch-regexp-lax-whitespace. (Bug#10885)
5637
5638 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5639
5640 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
5641
5642 2012-09-09 Alan Mackenzie <acm@muc.de>
5643
5644 * progmodes/cc-engine.el (c-state-cache-init):
5645 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
5646 (c-record-parse-state-state):
5647 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
5648
5649 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
5650
5651 * register.el (register-separator): Rename from
5652 separator-register. All uses changed. Doc fix.
5653 (register): Fix version.
5654
5655 2012-09-09 Chong Yidong <cyd@gnu.org>
5656
5657 * replace.el (query-replace-map): Bind four new symbols for
5658 requesting window scrolling.
5659
5660 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
5661 query-replace-map (Bug#8948).
5662
5663 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
5664
5665 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
5666 since they are now in query-replace-map.
5667
5668 * window.el (scroll-other-window-down): Make the arg optional.
5669
5670 2012-09-09 Chong Yidong <cyd@gnu.org>
5671
5672 * files.el (hack-local-variables-confirm): Use quit-window to kill
5673 the *Local Variables* buffer.
5674
5675 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
5676
5677 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
5678 not just expect to be at its beginning. Adjust callees.
5679 Succeed when do-end block has no space before the pipe character.
5680 (ruby-brace-to-do-end): When the original block is one-liner,
5681 convert to multiline. Reindent the result.
5682
5683 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
5684
5685 * register.el (register): New group.
5686 (separator-register): New user option.
5687 (increment-register): Route it to `append-to-register', if
5688 register contains text. Implication is that `C-x r +' can now be
5689 used for appending to a text register (bug#12217).
5690 (append-to-register, prepend-to-register): Add separator based on
5691 `separator-register'.
5692
5693 2012-09-08 Alan Mackenzie <acm@muc.de>
5694
5695 AWK Mode: make auto-newline work when there's "==" in the pattern.
5696 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
5697 correctly.
5698 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
5699 Test more rigorously for "=" token.
5700
5701 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
5702
5703 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
5704 Only fail when reached LIMIT.
5705
5706 2012-09-08 Chong Yidong <cyd@gnu.org>
5707
5708 * dired.el (dired-mode-map): Don't bind M-=.
5709
5710 * dired-aux.el (dired-diff): Use backup file as default.
5711
5712 2012-09-08 Drew Adams <drew.adams@oracle.com>
5713
5714 * subr.el (add-to-history): Fix delete usage (Bug#12314).
5715
5716 2012-09-08 Chong Yidong <cyd@gnu.org>
5717
5718 * subr.el (syntax-after, syntax-class): Doc fix.
5719
5720 2012-09-08 Martin Rudalics <rudalics@gmx.at>
5721
5722 * window.el (display-buffer-in-previous-window): New buffer
5723 display action function.
5724
5725 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
5726 (debugger-previous-window): New variable.
5727 (debug): Rewrite using display-buffer-in-previous-window,
5728 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
5729
5730 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
5731
5732 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
5733
5734 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
5735
5736 * progmodes/python.el (python-shell-send-string):
5737 When default-directory is remote, create temp file on remote
5738 filesystem.
5739 (python-shell-send-file): When file is remote, pass local view of
5740 file paths to remote Python interpreter. (Bug#12340)
5741
5742 2012-09-07 Chong Yidong <cyd@gnu.org>
5743
5744 * window.el (switch-to-buffer): Doc fix (Bug#12181).
5745
5746 * files.el (after-find-file): Don't fail on a read-only buffer if
5747 require-final-newline is `visit' or `visit-save' (Bug#11156).
5748
5749 * subr.el (read-char-choice): Allow quitting via ESC ESC.
5750
5751 * userlock.el (ask-user-about-supersession-threat):
5752 Use read-char-choice (Bug#12093).
5753
5754 2012-09-07 Chong Yidong <cyd@gnu.org>
5755
5756 * subr.el (buffer-narrowed-p): New function.
5757
5758 * ses.el (ses-widen):
5759 * simple.el (count-words--buffer-message):
5760 * net/browse-url.el (browse-url-of-buffer): Use it.
5761
5762 * simple.el (count-words-region): Don't signal an error if there
5763 is a non-nil prefix arg and the mark is not set.
5764
5765 * help.el (describe-key-briefly): Allow the message to be seen
5766 when invoked from the minibuffer (Bug#7014).
5767
5768 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
5769
5770 * progmodes/ruby-mode.el (ruby-end-of-defun)
5771 (ruby-beginning-of-defun): Simplify, allow indentation before
5772 block beginning and end keywords.
5773 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
5774 (ruby-end-of-defun): Expect that the point is at the beginning of
5775 the defun.
5776
5777 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
5780 (bug#12367).
5781 (cl--make-usage-args): Strip _ from argument names.
5782
5783 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5784
5785 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
5786 obsolete alias speedbar-key-map.
5787 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
5788 (vhdl-index-menu-init): Don't use obsolete variable
5789 font-lock-maximum-size.
5790
5791 2012-09-06 Chong Yidong <cyd@gnu.org>
5792
5793 * frame.el (window-system-version): Mark as obsolete.
5794
5795 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
5796 of obsolete variable speedbar-key-map.
5797
5798 2012-09-06 Juri Linkov <juri@jurta.org>
5799
5800 * replace.el (replace-lax-whitespace): New defcustom.
5801 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5802 (replace-string, replace-regexp): Mention it in docstrings.
5803 (perform-replace, replace-highlight): Let-bind
5804 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
5805 to the values of replace-lax-whitespace and regexp-flag.
5806 Don't let-bind search-whitespace-regexp. (Bug#10885)
5807
5808 * isearch.el (isearch-query-replace): Let-bind
5809 replace-lax-whitespace instead of let-binding
5810 replace-search-function and replace-re-search-function.
5811 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
5812 and isearch-regexp-lax-whitespace to lazy-highlight variables.
5813 (isearch-toggle-symbol): Set isearch-regexp to nil
5814 in isearch-word mode (like in isearch-toggle-word).
5815
5816 2012-09-06 Juri Linkov <juri@jurta.org>
5817
5818 * replace.el (replace-search-function)
5819 (replace-re-search-function): Set default values to nil.
5820 (perform-replace): Let-bind isearch-related variables based on
5821 replace-related values, call `isearch-search-fun' and let-bind
5822 the result to `search-function'. Remove code that sets
5823 `search-function' and `search-string' separately for
5824 `delimited-flag'.
5825 (replace-highlight): Add new argument `delimited-flag' and
5826 rename other arguments to the names used in `perform-replace'.
5827 Let-bind `isearch-word' to the argument `delimited-flag'.
5828 (Bug#10885, bug#10887)
5829
5830 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
5831
5832 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
5833 ruby-beginning-of-indent, simplify, allow all keywords to have
5834 indentation before them.
5835 (ruby-beginning-of-indent): Adjust for above. Search until the
5836 found point is not inside a string or comment.
5837 (ruby-font-lock-keywords): Allow symbols to start with "@"
5838 character, give them higher priority than variables.
5839 (ruby-syntax-propertize-function)
5840 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
5841 matchers. Expression expansions are not comments when inside a
5842 string, and there comment syntax status is irrelevant.
5843 (ruby-match-expression-expansion): New function. Check that
5844 expression expansion is inside a string, and it's not escaped.
5845 (ruby-font-lock-keywords): Use it.
5846
5847 2012-09-05 Martin Rudalics <rudalics@gmx.at>
5848
5849 * help.el (temp-buffer-max-height): New default value.
5850 (temp-buffer-resize-frames): New option.
5851 (resize-temp-buffer-window): Optionally resize frame.
5852
5853 * window.el (fit-frame-to-buffer-bottom-margin): New option.
5854 (fit-frame-to-buffer): New function.
5855
5856 2012-09-05 Glenn Morris <rgm@gnu.org>
5857
5858 * emulation/cua-rect.el (cua--init-rectangles):
5859 * textmodes/picture.el (picture-mode-map):
5860 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
5861 like forward-char and backward-char. (Bug#12317)
5862
5863 2012-09-05 Leo Liu <sdl.web@gmail.com>
5864
5865 * progmodes/flymake.el (flymake-warning-re): New variable.
5866 (flymake-parse-line): Use it.
5867
5868 2012-09-05 Glenn Morris <rgm@gnu.org>
5869
5870 * calendar/holidays.el (holiday-christian-holidays):
5871 Rename an entry. (Bug#12289)
5872
5873 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
5874
5875 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
5876 (bug#12222).
5877
5878 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
5879
5880 * loadup.el: Load macroexp. Remove hack.
5881 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
5882 (macroexp--expand-all): Use it to get better warnings.
5883 (macroexp--backtrace, macroexp--trim-backtrace-frame)
5884 (internal-macroexpand-for-load): New functions.
5885 (macroexp--pending-eager-loads): New var.
5886 (emacs-startup-hook): New hack to replace one in loadup.el.
5887 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
5888 (cl--compiler-macro-cXXr): Move to top, before they can be used.
5889 (cl-psetf): Simplify.
5890 (cl-defstruct): Add indent rule.
5891
5892 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
5893
5894 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
5895 over `user-mail-address' for the SMTP MAIL FROM envelope.
5896 (smtpmail-via-smtp): Ditto.
5897
5898 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
5899
5900 * progmodes/ruby-mode.el: Clean up keybindings.
5901 (ruby-mode-map): Don't bind ruby-electric-brace,
5902 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
5903 backward-kill-word, reindent-then-newline-and-indent.
5904 (ruby-mark-defun): Remove.
5905 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
5906 (ruby-mode): Set local beginning-of-defun-function and
5907 end-of-defun-function values.
5908
5909 2012-09-03 Martin Rudalics <rudalics@gmx.at>
5910
5911 * window.el (temp-buffer-window-setup-hook)
5912 (temp-buffer-window-show-hook): New hooks.
5913 (temp-buffer-window-setup, temp-buffer-window-show)
5914 (with-temp-buffer-window): New functions.
5915 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
5916 (special-display-popup-frame): Make sure the window used shows BUFFER.
5917
5918 * help.el (temp-buffer-resize-mode): Fix doc-string.
5919 (resize-temp-buffer-window): New optional argument WINDOW.
5920
5921 * files.el (recover-file, save-buffers-kill-emacs):
5922 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
5923
5924 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
5925
5926 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
5927 remote definition of `default-directory', ensure we can connect.
5928
5929 2012-09-02 Juri Linkov <juri@jurta.org>
5930
5931 Toggle whitespace matching mode with M-s SPC.
5932 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
5933
5934 * isearch.el (search-whitespace-regexp): Doc fix.
5935 Remove cons cell customization.
5936 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
5937 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
5938 New variables.
5939 (isearch-forward, isearch-forward-regexp): Doc fix.
5940 (isearch-toggle-lax-whitespace): New command.
5941 (search-forward-lax-whitespace, search-backward-lax-whitespace)
5942 (re-search-forward-lax-whitespace)
5943 (re-search-backward-lax-whitespace): New functions.
5944 (isearch-whitespace-regexp): Remove function.
5945 (isearch-query-replace): Let-bind replace-search-function and
5946 replace-re-search-function.
5947 (isearch-occur): Let-bind search-spaces-regexp according to the
5948 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
5949 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
5950 condition for C-q SPC.
5951 (isearch-search-fun-default): Use new functions mentioned above.
5952 (isearch-search-forward, isearch-search-backward): Remove functions.
5953 (isearch-search): Don't let-bind search-spaces-regexp.
5954 (isearch-lazy-highlight-space-regexp): Remove variable.
5955 (isearch-lazy-highlight-lax-whitespace)
5956 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
5957 (isearch-lazy-highlight-new-loop): Use them.
5958 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
5959
5960 2012-09-02 Chong Yidong <cyd@gnu.org>
5961
5962 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
5963
5964 2012-09-02 Glenn Morris <rgm@gnu.org>
5965
5966 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
5967
5968 2012-09-01 Glenn Morris <rgm@gnu.org>
5969
5970 * term.el: Tidy up menu definitions.
5971 (term-mode-map): Use easymenu for In/Out, Complete menus.
5972 (term-pager-break-map): Initialize in the defvar.
5973 (term-terminal-menu, term-signals-menu): Define with easymenu.
5974 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
5975 (term-pager-menu): New, extracted from term-process-pager.
5976 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
5977 (term-update-mode-line): Propertize line/char and page items.
5978 (term-process-pager): Move keymap initialization elsewhere.
5979
5980 2012-09-01 Martin Rudalics <rudalics@gmx.at>
5981
5982 * window.el (switch-to-prev-buffer): Handle additional values of
5983 BURY-OR-KILL argument. Don't switch in minibuffer window.
5984 (switch-to-next-buffer): Don't switch in minibuffer window.
5985 (quit-restore-window): New function based on quit-window.
5986 Handle additional values of former KILL argument.
5987 (quit-window): Call quit-restore-window with appropriate
5988 interpretation of KILL argument.
5989 (display-buffer-below-selected): New buffer display action
5990 function.
5991
5992 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5993
5994 * minibuffer.el (completion-at-point-functions): Complete docstring
5995 (bug#12254).
5996
5997 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
5998
5999 Better seed support for (random).
6000 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
6001 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
6002 * play/mpuz.el, play/tetris.el, play/zone.el:
6003 * calc/calc-comb.el (math-init-random-base):
6004 * play/blackbox.el (bb-init-board):
6005 * play/life.el (life):
6006 * server.el (server-use-tcp):
6007 * type-break.el (type-break):
6008 Remove unnecessary call to (random t).
6009 * net/sasl.el (sasl-unique-id-function):
6010 Change (random t) to (random), now that the latter is more random.
6011 * play/life.el (life-initialized): Remove no-longer-needed var.
6012
6013 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
6014
6015 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
6016 Consider frame's buffer predicate when choosing the buffer.
6017 (Bug#12081)
6018
6019 2012-08-30 Richard Stallman <rms@gnu.org>
6020
6021 * simple.el (special-mode-map): Delete binding for `z'.
6022
6023 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
6024
6025 * progmodes/compile.el (compilation-always-kill): Doc fix.
6026
6027 2012-08-30 Chong Yidong <cyd@gnu.org>
6028
6029 * window.el (display-buffer-reuse-frames): Make the obsolescence
6030 message more informative.
6031
6032 2012-08-30 Glenn Morris <rgm@gnu.org>
6033
6034 * paren.el (show-paren-delay):
6035 Add a :set function. Doc fix. (Bug#12297)
6036
6037 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
6038
6039 * progmodes/compile.el (compilation-always-kill): New var.
6040 (compilation-start): Use it.
6041
6042 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6043
6044 * simple.el (read-only-mode): Move from files.el for bootstrapping.
6045 * files.el (read-only-mode): Move to simple.el.
6046
6047 * files.el (read-only-mode): New minor mode.
6048 (toggle-read-only): Use it and mark obsolete.
6049 (find-file--read-only):
6050 * vc/vc.el (vc-next-action, vc-checkout):
6051 * vc/vc-cvs.el (vc-cvs-checkout):
6052 * obsolete/vc-mcvs.el (vc-mcvs-update):
6053 * ffap.el (ffap--toggle-read-only): Update callers.
6054
6055 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
6056
6057 * eshell/esh-ext.el (eshell-external-command): Do not examine
6058 remote shell scripts.
6059 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
6060
6061 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
6062 "/usr/local/sbin".
6063
6064 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6065
6066 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
6067
6068 2012-08-28 Leo Liu <sdl.web@gmail.com>
6069
6070 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
6071 completion-at-point. (Bug#12220)
6072
6073 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
6074
6075 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
6076
6077 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6078
6079 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
6080 be buffer-local; add delete-trailing-whitespace (bug#12259).
6081
6082 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
6083
6084 * progmodes/hideif.el (hif-compress-define-list):
6085 Fix typo. (Bug#11951)
6086
6087 2012-08-28 Dan Nicolaescu <dann@gnu.org>
6088
6089 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
6090 buffer local setting.
6091
6092 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
6093 rcirc-encode-coding-system.
6094
6095 2012-08-28 Leo Liu <sdl.web@gmail.com>
6096
6097 * net/rcirc.el (rcirc-split-message): New function.
6098 (rcirc-send-message): Use it. (Bug#12051)
6099
6100 2012-08-28 Juri Linkov <juri@jurta.org>
6101
6102 * info.el (Info-fontify-node): Hide empty lines at the end of
6103 the node. (Bug#12272)
6104
6105 2012-08-27 Drew Adams <drew.adams@oracle.com>
6106
6107 * dired.el (dired-pop-to-buffer): Make window start at beginning
6108 of buffer (Bug#12281).
6109
6110 2012-08-26 Chong Yidong <cyd@gnu.org>
6111
6112 * window.el (special-display-regexps, special-display-frame-alist)
6113 (special-display-buffer-names, special-display-function)
6114 (display-buffer-reuse-frames): Mark as obsolete.
6115
6116 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
6117
6118 * help.el (help-print-return-message): Don't treat
6119 display-buffer-reuse-frames specially.
6120
6121 2012-08-26 Chong Yidong <cyd@gnu.org>
6122
6123 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
6124 New variable, replacing gdb-frame-parameters.
6125 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
6126 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
6127 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
6128 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
6129 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
6130 the functions directly with gdb-display-buffer-other-frame-action.
6131 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
6132 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
6133 (gdb-display-stack-buffer, gdb-display-locals-buffer)
6134 (gdb-display-registers-buffer): Define directly.
6135 (def-gdb-display-buffer): Macro deleted.
6136 (gdb-display-buffer): Remove second and third args, callers don't
6137 use them. Defer to the default display-buffer behavior, apart
6138 from making windows dedicated.
6139 (gdb-setup-windows): Don't call display-buffer unnecessarily.
6140
6141 * progmodes/gud.el (gud-display-line): Just use display-buffer.
6142
6143 * window.el (display-buffer-pop-up-frame): Handle a
6144 pop-up-frame-parameters alist entry.
6145 (display-buffer): Document it.
6146
6147 2012-08-26 Chong Yidong <cyd@gnu.org>
6148
6149 * isearch.el (search-whitespace-regexp): Make string and nil
6150 values apply to both ordinary and regexp search. Allow a cons
6151 cell value to distinguish between the two.
6152 (isearch-whitespace-regexp, isearch-search-forward)
6153 (isearch-search-backward): New functions.
6154 (isearch-occur, isearch-search-fun-default, isearch-search)
6155 (isearch-lazy-highlight-new-loop): Use them.
6156 (isearch-forward, isearch-forward-regexp): Doc fix.
6157
6158 2012-08-26 Chong Yidong <cyd@gnu.org>
6159
6160 * faces.el (help-argument-name): Always inherit from italic
6161 (Bug#12213).
6162
6163 2012-08-25 Martin Rudalics <rudalics@gmx.at>
6164
6165 * window.el (window--even-window-heights): Even heights when
6166 WINDOW and the selected window form a vertical combination.
6167 (display-buffer-use-some-window): Provide that window used gets
6168 sized back by quit-window. (Bug#11880) and (Bug#12091)
6169
6170 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6171
6172 Fix file time stamp problem with bzr and CVS (Bug#12001).
6173 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
6174 in the file's time stamp, since the version control system loses
6175 that information.
6176
6177 2012-08-22 Juri Linkov <juri@jurta.org>
6178
6179 * info.el (Info-fontify-node): Hide the suffix of the
6180 Info file name in the header line. (Bug#12187)
6181
6182 2012-08-22 Glenn Morris <rgm@gnu.org>
6183
6184 * calendar/cal-tex.el (cal-tex-weekly-common):
6185 Restore leading blank page.
6186
6187 2012-08-22 Le Wang <l26wang@gmail.com>
6188
6189 * misc.el (forward-to-word, backward-to-word): Activate or extend
6190 the region under `shift-select-mode'. (Bug#12231)
6191
6192 2012-08-22 Bastien Guerry <bzg@gnu.org>
6193
6194 * progmodes/executable.el (executable-prefix): Set to "#!" instead
6195 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
6196 gives details on why the space is never needed.
6197
6198 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6199
6200 * window.el (walk-window-tree, window-with-parameter):
6201 New optional argument MINIBUF to control whether these functions
6202 should run on the minibuffer window.
6203 (window-at-side-list): Don't operate on minibuffer window.
6204 (window-in-direction): Simplify and rewrite doc-string.
6205 (window--size-ignore): Rename to window--size-ignore-p.
6206 Update callers.
6207 (display-buffer-in-atom-window, window--major-non-side-window)
6208 (window--major-side-window, display-buffer-in-major-side-window)
6209 (delete-side-window, display-buffer-in-side-window):
6210 New functions.
6211 (window--side-check, window-deletable-p, delete-window)
6212 (delete-other-windows, split-window): Handle side windows and
6213 atomic windows appropriately.
6214 (window--display-buffer): Call display-buffer-record-window also
6215 when the window buffer did not change.
6216
6217 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
6218
6219 * help-fns.el (help-fns--key-bindings):
6220 Abbreviate non-symbol remap targets. (Bug#12174)
6221
6222 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6223
6224 * dired.el (dired-mark-remembered): Don't clobber point.
6225 (Bug#11795)
6226
6227 2012-08-22 Glenn Morris <rgm@gnu.org>
6228
6229 * progmodes/bug-reference.el (bug-reference): New custom group.
6230 (bug-reference-bug-regexp): Make it a defcustom.
6231
6232 2012-08-22 Daiki Ueno <ueno@unixuser.org>
6233
6234 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
6235 (js-paren-indent-offset, js-square-indent-offset)
6236 (js-curly-indent-offset): Add :safe (Bug#12257).
6237
6238 2012-08-22 Edward O'Connor <hober0@gmail.com>
6239
6240 * json.el (json-key-format): Add error properties.
6241 (json-encode-key): New function.
6242 (json-encode-hash-table, json-encode-alist, json-encode-plist):
6243 Use json-encode-key.
6244
6245 2012-08-22 Glenn Morris <rgm@gnu.org>
6246
6247 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
6248 (cal-tex-leftday, cal-tex-rightday): Remove functions.
6249 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
6250 Update for above change.
6251
6252 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
6253
6254 * cus-face.el (custom-face-attributes): Fix customize type for the
6255 :underline attribute. (Bug#11805)
6256
6257 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6258
6259 * window.el (window-point-1, set-window-point-1): Remove.
6260 (window-in-direction, record-window-buffer)
6261 (set-window-buffer-start-and-point, split-window-below)
6262 (window--state-get-1, display-buffer-record-window):
6263 Replace calls to window-point-1 and set-window-point-1 by calls to
6264 window-point and set-window-point respectively.
6265
6266 2012-08-21 Glenn Morris <rgm@gnu.org>
6267
6268 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
6269 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
6270 Use it.
6271
6272 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
6273 (cal-tex-shortday): New function.
6274 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
6275 (cal-tex-cursor-filofax-daily): Use the above.
6276
6277 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
6278 New functions.
6279 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6280 (cal-tex-cursor-filofax-week): Use them.
6281
6282 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
6283 New constants.
6284 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6285 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
6286
6287 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
6288 (cal-tex-end-document): Don't rely on buffer name.
6289
6290 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
6291 Use cal-tex-vspace.
6292 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
6293 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
6294 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
6295 Use cal-tex-arg.
6296
6297 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
6298 (cal-tex-cursor-week, cal-tex-cursor-week2)
6299 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
6300 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6301 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
6302 (cal-tex-insert-preamble, cal-tex-b-document)
6303 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
6304 Improve cal-tex-cmd usage.
6305
6306 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
6307 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
6308 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
6309 (cal-tex-weekly-paper): New function.
6310 (cal-tex-cursor-week, cal-tex-cursor-week2)
6311 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
6312 (cal-tex-cursor-day): Use it.
6313
6314 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
6315 (cal-tex-cursor-filofax-week): Remove leading blank page.
6316
6317 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6318 Add autoload cookie. For now at least, don't use color, since
6319 no other cal-tex function does.
6320
6321 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
6322 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6323 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
6324
6325 2012-08-21 Juri Linkov <juri@jurta.org>
6326
6327 * info.el (Info-file-attributes): New variable.
6328 (info-insert-file-contents): Add file attributes to
6329 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
6330 `Info-toc-nodes' when previous modtime of the Info file is less
6331 than new modtime.
6332 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
6333 of info.el. (Bug#12230)
6334
6335 2012-08-20 Glenn Morris <rgm@gnu.org>
6336
6337 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
6338 * calendar/holidays.el (calendar-holiday-list):
6339 Report errors with display-warning rather than beep'n'sleep.
6340
6341 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
6342
6343 * net/tramp.el (tramp-accept-process-output): Accept only output
6344 from PROC. Otherwise, process filters and sentinels might be
6345 confused. (Bug#12145)
6346
6347 2012-08-20 Chong Yidong <cyd@gnu.org>
6348
6349 * descr-text.el (describe-text-properties-1): Use overlays-in to
6350 report on empty overlays (Bug#3322).
6351
6352 2012-08-20 Glenn Morris <rgm@gnu.org>
6353
6354 * mail/rmailout.el (rmail-output-read-file-name):
6355 Trap and report errors in rmail-output-file-alist elements.
6356
6357 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
6358 since most non-font-lock faces are not also variables).
6359
6360 2012-08-20 Edward Reingold <reingold@iit.edu>
6361
6362 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6363 New function. (Bug12160)
6364
6365 2012-08-19 Glenn Morris <rgm@gnu.org>
6366
6367 * mail/rmailout.el (rmail-output-read-file-name):
6368 Fix previous change (when the alist is nil or does not match).
6369
6370 2012-08-19 Chong Yidong <cyd@gnu.org>
6371
6372 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
6373 (Bug#12228).
6374
6375 2012-08-18 Chong Yidong <cyd@gnu.org>
6376
6377 * simple.el (yank-handled-properties): New defcustom.
6378 (yank-excluded-properties): Add font-lock-face and category.
6379 (yank): Doc fix.
6380
6381 * subr.el (remove-yank-excluded-properties):
6382 Obey yank-handled-properties. The special handling of font-lock-face
6383 and category is now done this way, instead of being hard-coded.
6384 (insert-for-yank-1): Remove font-lock-face handling.
6385 (yank-handle-font-lock-face-property)
6386 (yank-handle-category-property): New function.
6387
6388 2012-08-17 Glenn Morris <rgm@gnu.org>
6389
6390 * mail/rmailout.el (rmail-output-read-file-name):
6391 Check rmail-output-file-alist against the full message body
6392 in the correct rmail buffer. (Bug#12214)
6393
6394 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
6395
6396 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6397 Eliminate superfluous prompt. (Bug#12203)
6398
6399 2012-08-17 Chong Yidong <cyd@gnu.org>
6400
6401 * mouse.el (mouse-appearance-menu): If x-select-font returns a
6402 font spec, set the font directly (Bug#3228).
6403
6404 2012-08-17 Martin Rudalics <rudalics@gmx.at>
6405
6406 * window.el (delete-window): Fix last fix.
6407
6408 2012-08-16 Martin Rudalics <rudalics@gmx.at>
6409
6410 * window.el (window-valid-p): Move to window.c.
6411 (window-child, window-child-count, window-last-child)
6412 (window-normalize-window, window-combined-p)
6413 (window-combinations, window-atom-root, window-min-size)
6414 (window-sizable, window-sizable-p, window-size-fixed-p)
6415 (window-min-delta, window-max-delta, window--resizable)
6416 (window--resizable-p, window-resizable, window-total-size)
6417 (window-full-height-p, window-full-width-p, window-body-size)
6418 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
6419 (minimize-window, window-deletable-p, delete-window)
6420 (delete-other-windows, set-window-buffer-start-and-point)
6421 (next-buffer, previous-buffer, split-window, balance-windows-2)
6422 (set-window-text-height, window-buffer-height)
6423 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
6424 (truncated-partial-width-window-p): Minor code adjustments.
6425 In doc-strings state whether the argument window has to denote a
6426 live, valid or any window.
6427
6428 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
6429
6430 * progmodes/subword.el (subword-forward-function)
6431 (subword-backward-function, subword-forward-regexp)
6432 (subword-backward-regexp): New variables.
6433 (subword-forward, subword-forward-internal, subword-backward-internal):
6434 Use new variables, eg so that different "word" definitions
6435 can be easily used. (Bug#11411)
6436
6437 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6438
6439 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
6440 for composite selectors.
6441 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
6442 operation just because we can't find a previous revision.
6443
6444 2012-08-15 Chong Yidong <cyd@gnu.org>
6445
6446 * frame.el (set-frame-font): Accept font objects.
6447
6448 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6449
6450 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
6451
6452 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
6453
6454 * man.el (Man-overstrike-face, Man-underline-face)
6455 (Man-reverse-face): Remove variables.
6456 (Man-overstrike, Man-underline, Man-reverse): New faces.
6457 (Man-fontify-manpage): Use them instead of the variables.
6458 (Man-cleanup-manpage): Comment change.
6459 (Man-ansi-color-map): New variable.
6460 (Man-fontify-manpage): Use it.
6461 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
6462
6463 Implement ANSI SGR parameters 22-27 (bug#12146).
6464 * ansi-color.el (ansi-colors): Doc fix.
6465 (ansi-color-context, ansi-color-context-region): Doc fix.
6466 (ansi-color--find-face): New function.
6467 (ansi-color-apply, ansi-color-apply-on-region): Use it.
6468 Rename the local variable `face' to `codes' since it is now a list of
6469 ansi codes. Doc fix.
6470 (ansi-color-get-face): Remove.
6471 (ansi-color-parse-sequence): New function, derived from
6472 ansi-color-get-face.
6473 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
6474 codes 22-27.
6475
6476 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
6477
6478 * subr.el (read-passwd): Allow use from a minibuffer.
6479
6480 2012-08-14 Eli Zaretskii <eliz@gnu.org>
6481
6482 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
6483 inside comments and strings as identifiers.
6484
6485 * progmodes/gud.el (gud-tooltip-print-command): Quote the
6486 expression to evaluate. This allows to evaluate expressions with
6487 embedded whitespace.
6488 (gud-tooltip-tips): Add a blank before the newline in the
6489 message-box text, for the benefit of message-box emulation on
6490 MS-Windows.
6491
6492 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
6493 messages from GDB, pop them up in a tooltip to give feedback to
6494 user.
6495 (gdb-tooltip-print-1): Quote the expression to evaluate.
6496 This allows to evaluate expressions with embedded whitespace.
6497 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
6498 if the TTY name is nil or empty (which happens when communicating
6499 with the inferior via pipes, e.g. on MS-Windows).
6500 (gdb-internals): If GDB sends a "&\n" empty debugging message,
6501 don't send that to the GUD buffer.
6502
6503 2012-08-14 Glenn Morris <rgm@gnu.org>
6504
6505 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
6506 Optimize away setq-default with no args, as for setq. (Bug#12195)
6507
6508 2012-08-14 Chong Yidong <cyd@gnu.org>
6509
6510 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
6511
6512 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
6513 (Bug#12085).
6514
6515 2012-08-14 Glenn Morris <rgm@gnu.org>
6516
6517 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
6518
6519 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
6520
6521 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
6522 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6523 Use cached shell name.
6524
6525 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
6526
6527 * progmodes/python.el (python-shell-send-string):
6528 (python-shell-send-setup-code): Do not use `format' with `message'.
6529
6530 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
6531
6532 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
6533 (ruby-percent-literal-beg-re): New constant.
6534 (ruby-syntax-general-delimiters-goto-beg): Rename to
6535 `ruby-syntax-enclosing-percent-literal', improve literal type check.
6536 (ruby-syntax-propertize-general-delimiters): Rename to
6537 `ruby-syntax-propertize-percent-literal', it's a shorter and more
6538 popular term. Adjust comments everywhere.
6539 (ruby-syntax-propertize-percent-literal): Only propertize when not
6540 inside a simple string or comment. When the literal is unclosed,
6541 leave the text after it unpropertized.
6542 (ruby-syntax-methods-before-regexp): New constant.
6543 (ruby-syntax-propertize-function): Use it to recognize regexps.
6544 Don't look at the text after regexp, just use the whitelist.
6545
6546 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
6547
6548 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
6549 non-nil always load the compiled file if it exists. (Bug#12197)
6550
6551 2012-08-14 Chong Yidong <cyd@gnu.org>
6552
6553 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
6554 (hi-lock-set-pattern): When deciding whether to use font lock or
6555 overlays, look at font-lock-mode instead of font-lock-fontified
6556 (Bug#12168).
6557 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
6558 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
6559
6560 2012-08-14 Daiki Ueno <ueno@unixuser.org>
6561
6562 * subr.el (internal--after-with-selected-window): Fix typo
6563 (Bug#12193).
6564
6565 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
6566
6567 Use `completion-table-dynamic' for completion functions.
6568 * progmodes/python.el
6569 (python-shell-completion--do-completion-at-point)
6570 (python-shell-completion--get-completions):
6571 Remove functions.
6572 (python-shell-completion-complete-at-point): New function.
6573 (python-completion-complete-at-point): Use it.
6574
6575 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
6576
6577 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
6578 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
6579
6580 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
6581
6582 * subr.el (function-get): Refine `autoload' arg so it can also
6583 autoload functions for gv.el (bug#12191).
6584 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
6585 autoloads macros.
6586
6587 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
6588 Prefer pcase-let over destructuring-bind.
6589 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
6590 Also, remove whitespace as we go, rather than after accumulating the
6591 various places.
6592
6593 * subr.el (internal--before-with-selected-window)
6594 (internal--after-with-selected-window): Fix typo seleted->selected.
6595 (with-selected-window): Adjust callers.
6596 Reported by Dmitry Gutov <dgutov@yandex.ru>.
6597
6598 2012-08-13 Bastien Guerry <bzg@gnu.org>
6599
6600 * window.el (special-display-popup-frame): Minor docstring
6601 enhancement. (Bug#12172)
6602
6603 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
6604
6605 * tar-mode.el (tar-header-data-end): Only ignore size for files of
6606 type 1-6.
6607 (tar-header-block-summarize, tar-get-descriptor): Handle pax
6608 extended headers.
6609
6610 * files.el (hack-local-variables-filter): Remove useless eval.
6611
6612 2012-08-13 Martin Rudalics <rudalics@gmx.at>
6613
6614 * subr.el (with-selected-window): Fix last change.
6615
6616 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6617
6618 * subr.el (internal--before-with-seleted-window)
6619 (internal--after-with-seleted-window): New functions.
6620 (with-selected-window): Use them, to replace dependency on
6621 tty-top-frame.
6622
6623 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
6624
6625 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
6626 binding for `newline'.
6627 (ruby-move-to-block): When moving backward, stop at block opening,
6628 not indentation.
6629 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
6630 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
6631 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
6632 `ruby-toggle-block'.
6633
6634 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6635
6636 * ibuffer.el (ibuffer-do-toggle-read-only):
6637 * dired.el (dired-toggle-read-only):
6638 * buff-menu.el (Buffer-menu-toggle-read-only):
6639 * bindings.el (mode-line-toggle-read-only):
6640 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
6641
6642 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
6643
6644 * descr-text.el (describe-char): Put the overlays over the
6645 "displayed as" character.
6646
6647 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
6648
6649 * calc/calc-units.el (math-default-units-table): Give an
6650 initial value.
6651 (math-put-default-units): Add options to put composite units and
6652 unit systems in the default units table.
6653 (calc-convert-units): Send composite units to
6654 `math-put-default-units' when appropriate.
6655
6656 2012-08-11 Glenn Morris <rgm@gnu.org>
6657
6658 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
6659
6660 * tutorial.el (help-with-tutorial):
6661 * emacs-lisp/copyright.el (copyright-update-directory):
6662 * emacs-lisp/autoload.el (autoload-find-generated-file)
6663 (autoload-find-file): Disable local eval: (for insurance).
6664
6665 * files.el (hack-local-variables-filter): If an eval: form is not
6666 known to be safe, and enable-local-variables is :safe, then ignore
6667 the form totally, as is done for non-eval forms. (Bug#12155)
6668 This is CVE-2012-3479.
6669
6670 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6671
6672 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
6673 (rx-form): Simplify.
6674
6675 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
6676
6677 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
6678 ?, _, and : are symbol constituents, ! is not (but kinda should be).
6679 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
6680 (ruby-syntax-propertize-function): Adjust for changes in
6681 `ruby-syntax-propertize-heredoc'.
6682
6683 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
6684
6685 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
6686 binding (use `M-;' instead).
6687 (ruby-singleton-class-p): New function.
6688 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
6689
6690 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6691
6692 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
6693
6694 2012-08-10 Chong Yidong <cyd@gnu.org>
6695
6696 * progmodes/python.el (python-shell-get-process-name): Don't mess
6697 with same-window-buffer-names.
6698
6699 * eshell/eshell.el (eshell-add-to-window-buffer-names)
6700 (eshell-remove-from-window-buffer-names): Make obsolete.
6701 (eshell-buffer-name, eshell-unload-hook): Don't use them.
6702 (eshell): Just use pop-to-buffer-same-window instead.
6703
6704 2012-08-10 Chong Yidong <cyd@gnu.org>
6705
6706 * bindings.el: Bind M-= back to count-words-region.
6707
6708 * simple.el (count-words-region): Accept a prefix arg for acting
6709 on the entire buffer.
6710 (count-words--buffer-message): New helper function.
6711
6712 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6713
6714 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
6715 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
6716 (event-start, event-end): Use posn-at-point to return a more
6717 informative posn.
6718 (posnp): New function.
6719 * mouse.el (popup-menu-normalize-position): Use it.
6720
6721 2012-08-10 Masatake YAMATO <yamato@redhat.com>
6722
6723 * mouse.el (popup-menu-normalize-position): New function.
6724 (popup-menu): Use `popup-menu-normalize-position' to normalize
6725 the form for POSITION argument.
6726
6727 * term/x-win.el (x-menu-bar-open):
6728 Use the value returend from (posn-at-point) as position
6729 passed to `popup-menu'.
6730
6731 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
6732
6733 * calc/calccomp.el (math-compose-expr): Add extra argument
6734 indicating that parentheses should be put around products in
6735 denominators. Give multiplication precedence over division during
6736 composition.
6737
6738 2012-08-09 Chong Yidong <cyd@gnu.org>
6739
6740 * man.el (Man-switches, Man-sed-command, Man-awk-command)
6741 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
6742 (Man-untabify-command, manual-program): Convert to defcustom
6743 (Bug#10429).
6744
6745 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
6746
6747 * descr-text.el (describe-char): Don't insert extra newlines
6748 (Bug#10127).
6749
6750 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
6751 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
6752
6753 * align.el (align-region): Delete temporary markers (Bug#10047).
6754 Plus some code cleanups.
6755
6756 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
6757
6758 * progmodes/python.el (python-pdbtrack-tracked-buffer)
6759 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
6760 (python-shell-internal-last-output): Use make-local-variable
6761 instead of make-variable-buffer-local.
6762
6763 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
6764
6765 * progmodes/python.el: Enhancements to forward-sexp.
6766 (python-nav-forward-sexp): Rename from
6767 python-nav-forward-sexp-function.
6768 (python-nav--forward-sexp, python-nav--backward-sexp):
6769 New functions.
6770
6771 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
6772
6773 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
6774 modes and simplification modes.
6775
6776 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
6777
6778 * delsel.el (delete-selection-pre-hook): Don't propagate the
6779 file-supersession signals (bug#12161).
6780
6781 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
6782
6783 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
6784 (cl-map-extents): Add compatibility aliases (bug#12135).
6785
6786 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
6787
6788 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
6789 tests by `ignore-error'.
6790 (tramp-find-shell): Open also a new shell, when cache is already
6791 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
6792
6793 2012-08-08 Juri Linkov <juri@jurta.org>
6794
6795 * bookmark.el: Add `defaults' property to the bookmark record.
6796 (bookmark-current-buffer): Doc fix.
6797 (bookmark-make-record): Add `defaults' property with default values
6798 to the bookmark record.
6799 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
6800 with `bookmark-insert-current-bookmark'.
6801 (bookmark-set): Get `defaults' property from the bookmark record
6802 and use it in `read-from-minibuffer'.
6803 (bookmark-insert-current-bookmark): Remove function.
6804
6805 * info.el (Info-bookmark-make-record): Add `defaults' property
6806 with values of canonical Info node name, the current Info file
6807 name and the current Info node name. (Bug#12107)
6808
6809 2012-08-08 Juri Linkov <juri@jurta.org>
6810
6811 * files.el (basic-save-buffer): Use `buffer-name' as the default
6812 of `read-file-name' when buffer is not visiting a file (bug#12128).
6813
6814 2012-08-08 Juri Linkov <juri@jurta.org>
6815
6816 * info.el (Info-isearch-search): Doc fix.
6817 (Info-search): Change search-failed message from "initial node" to
6818 "end of node" (bug#12078).
6819 (Info-isearch-search): Change `isearch-string-state' to
6820 `isearch--state-string'.
6821
6822 2012-08-08 Glenn Morris <rgm@gnu.org>
6823
6824 * language/persian.el: Remove file.
6825 * language/misc-lang.el: Move unique part of persian.el here.
6826 * loadup.el: Remove language/persian.
6827
6828 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
6829
6830 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
6831
6832 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
6833
6834 * progmodes/python.el: Fix defsubst warning.
6835 (python-syntax-context) Rename from python-info-ppss-context.
6836 (python-syntax-context-type): Rename from
6837 python-info-ppss-context-type.
6838 (python-syntax-comment-or-string-p): Rename from
6839 python-info-ppss-comment-or-string-p.
6840
6841 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
6842
6843 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
6844
6845 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
6846
6847 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
6848 a defcustom that is quoted with backquote.
6849
6850 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
6851 Fix handling of interactive spec when the body uses return.
6852 (math-do-arg-check, math-define-function-body): Use backquote forms.
6853 * calc/calc-ext.el (math-defcache): Likewise.
6854 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
6855 * allout.el (allout-new-exposure): Likewise.
6856 * calc/calcalg2.el (math-tracing-integral): Likewise.
6857 * info.el (Info-last-menu-item): Likewise.
6858 * emulation/vip.el (vip-loop): Likewise.
6859 * textmodes/artist.el (artist-funcall): Likewise.
6860 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
6861 Construct menu-item directly.
6862
6863 * progmodes/autoconf.el (font-lock-syntactic-keywords):
6864 Don't declare.
6865
6866 2012-08-07 Chong Yidong <cyd@gnu.org>
6867
6868 * simple.el (deactivate-mark): Preserve text properties when
6869 saving the primary selection (Bug#8384).
6870
6871 2012-08-07 Kevin Ryde <user42@zip.com.au>
6872
6873 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
6874 (woman-parse-numeric-value): On a bad .IP line, issue a warning
6875 and continue processing (Bug#12110).
6876
6877 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
6878
6879 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
6880 syntax-propertize-function (bug#10095).
6881
6882 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
6883
6884 * help-fns.el (help-fns--key-bindings, help-fns--signature)
6885 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
6886 describe-function-1.
6887 (describe-function-1): Use them. Move compiler macro after sig.
6888 (help-fns--compiler-macro): Use function-get. Assume we're already in
6889 standard-output. Adjust layout to new call order.
6890
6891 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
6892 re-binding a symbol that has a symbol-macro (bug#12119).
6893
6894 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
6895
6896 * language/persian.el: New file. (Bug#11812)
6897 * loadup.el: Add language/persian.el.
6898
6899 2012-08-06 Chong Yidong <cyd@gnu.org>
6900
6901 * window.el (window--maybe-raise-frame): New function.
6902 (window--display-buffer): Split off from here.
6903 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6904 (display-buffer-pop-up-window, display-buffer-use-some-window):
6905 Obey an inhibit-switch-frame action alist entry.
6906 (display-buffer): Update doc.
6907
6908 * replace.el (occur-after-change-function): Avoid losing focus by
6909 using the inhibit-switch-frame display parameter (Bug#12139).
6910
6911 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
6912
6913 Make internal shell process buffer names start with space.
6914 * progmodes/python.el (python-shell-make-comint): Add optional
6915 argument INTERNAL.
6916 (run-python-internal): Use it.
6917 (python-shell-internal-get-or-create-process): Check for new
6918 internal buffer names.
6919
6920 2012-08-06 Glenn Morris <rgm@gnu.org>
6921
6922 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
6923 Do less getting and setting of environment variables.
6924
6925 2012-08-05 Chong Yidong <cyd@gnu.org>
6926
6927 * proced.el (proced): Add substitution string to docstring to
6928 trigger autoloading of the proced library on C-h f (Bug#1768).
6929
6930 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
6931 Don't show defvars which have no second argument (Bug#8638).
6932
6933 * imenu.el (imenu-generic-expression): Move documentation here
6934 from imenu--generic-function.
6935 (imenu--generic-function): Refer to imenu-generic-expression.
6936
6937 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
6938
6939 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
6940 indentation declaration.
6941 (viper-loop): Add indentation declaration (Bug#7025).
6942
6943 2012-08-05 Chong Yidong <cyd@gnu.org>
6944
6945 * help-fns.el (describe-variable): Add hyperlink for
6946 directory-local variables files. Improve buffer-local and
6947 permanent-local reporting; suggested by MON KEY (Bug#6644).
6948
6949 * help-mode.el (help-dir-local-var-def): New button type.
6950
6951 * files.el (kill-buffer-hook): Provide a defvar.
6952
6953 2012-08-05 Glenn Morris <rgm@gnu.org>
6954
6955 * eshell/esh-ext.el (eshell/addpath):
6956 Also update eshell-path-env. (Bug#12013)
6957
6958 2012-08-05 Chong Yidong <cyd@gnu.org>
6959
6960 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
6961
6962 * fringe.el (fringe-styles): Add docstring.
6963 (fringe--check-mode): New function.
6964 (set-fringe-mode, set-fringe-style): Use it.
6965 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
6966
6967 * files.el (set-auto-mode): Fix invalid setq call.
6968
6969 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
6970
6971 * isearch.el: Misc simplification; use defstruct.
6972 (isearch-mode-map): Dense maps now work like sparse ones.
6973 (isearch--state): New defstruct.
6974 (isearch-string-state, isearch-message-state, isearch-point-state)
6975 (isearch-success-state, isearch-forward-state)
6976 (isearch-other-end-state, isearch-word-state, isearch-error-state)
6977 (isearch-wrapped-state, isearch-barrier-state)
6978 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
6979 replaced by defstruct's accessors.
6980 (isearch--set-state): Rename from isearch-top-state and change
6981 calling convention.
6982 (isearch-push-state): Use new isearch--get-state.
6983 (isearch-toggle-word): Disable regexp when enabling word.
6984 (isearch-message-prefix): Remove unused arg _c-q-hack.
6985 (isearch-message-suffix): Remove unused arg _ellipsis.
6986
6987 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
6988
6989 * simple.el (list-processes--refresh): For a server use :host or
6990 :local as the address.
6991 (list-processes): Doc fix.
6992
6993 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
6994
6995 * lisp/mpc.el: Support password in host argument.
6996 (mpc--proc-connect): Parse and use new password element.
6997 Set mpc-proc variable instead of returning process.
6998 (mpc-proc): Adjust accordingly.
6999
7000 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7001
7002 * whitespace.el (whitespace-display-mappings): Use Unicode
7003 codepoints, instead of emacs-mule codepoints. See
7004 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
7005 for the details.
7006
7007 * files.el (file-truename): Don't skip symlink-chasing part on
7008 windows-nt. Incorporate the resolution of 8+3 short aliases on
7009 Windows into the loop that recursively chases symlinks.
7010 Compare directory and its parent case-insensitively on MS-Windows and
7011 MS-DOS.
7012
7013 2012-08-03 Chong Yidong <cyd@gnu.org>
7014
7015 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
7016
7017 * sort.el (sort-regexp-fields): Doc fix.
7018
7019 2012-08-03 Tassilo Horn <tsdh@gnu.org>
7020
7021 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
7022 labels regex position point at the expected place.
7023
7024 2012-08-03 MON KEY <monkey@sandpframing.com>
7025
7026 * net/imap.el (imap-interactive-login, imap-authenticate)
7027 (imap-mailbox-lsub, imap-mailbox-list)
7028 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
7029 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
7030 (imap-parse-response): Doc fix.
7031
7032 2012-08-03 João Távora <joaotavora@gmail.com>
7033
7034 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
7035 if sexp scanning does not move point (Bug#5734).
7036
7037 2012-08-02 Tassilo Horn <tsdh@gnu.org>
7038
7039 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
7040 Add listings, minted, and ctable packages.
7041 (reftex-label-alist-builtin): Move listings, minted, and ctable
7042 entries before LaTeX.
7043 (reftex-label-alist): Docfix.
7044
7045 2012-08-02 Bastien Guerry <bzg@gnu.org>
7046
7047 * replace.el (occur): Fix docstring (bug#12122).
7048
7049 2012-08-02 Glenn Morris <rgm@gnu.org>
7050
7051 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
7052
7053 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7054
7055 Obsolete alias inactivate-current-input-method-function (Bug#10150).
7056 * international/mule-cmds.el: Create
7057 inactivate-current-input-method-function as an obsolete alias for
7058 deactivate-current-input-method-function. See Katsumi Yamaoka in
7059 <http://bugs.gnu.org/10150#46>.
7060
7061 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
7062
7063 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
7064 of nested `if's.
7065
7066 2012-08-01 Glenn Morris <rgm@gnu.org>
7067
7068 * progmodes/autoconf.el (autoconf-definition-regexp):
7069 Add AH_TEMPLATE, adjust submatch numbering.
7070 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
7071 (autoconf-current-defun-function): Update for above change.
7072 (autoconf-current-defun-function): First skip to end of current word.
7073
7074 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
7075
7076 * calendar/cal-html.el (cal-html-insert-agenda-days):
7077 Fix typo. (Bug#12018)
7078
7079 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7080
7081 Shell processes: enhancements to startup and CEDET compatibility.
7082 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
7083 (python-shell-make-comint): accept-process-output at startup.
7084 (run-python-internal): Set inferior-python-mode-hook to nil.
7085 (python-shell-internal-get-or-create-process): call sit-for.
7086 (python-preoutput-result): Add obsolete alias.
7087 (python-shell-internal-send-string): Use it.
7088 (python-shell-send-setup-code): Remove call to
7089 accept-process-output.
7090
7091 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
7092
7093 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
7094 (Bug#12108)
7095
7096 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
7097
7098 * calc-mode.el (calc-basic-simplification-mode): Rename from
7099 `calc-limited-simplification-mode'.
7100 (calc-alg-simplification-mode): New function.
7101 (calc-set-simplify-mode): Adjust message.
7102
7103 * calc.el (calc-set-mode-line): Adjust mode line display for
7104 basic simplification mode.
7105
7106 * calc-help.el (calc-m-prefix-help): Update help message.
7107
7108 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
7109 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
7110
7111 2012-07-31 Bastien Guerry <bzg@gnu.org>
7112
7113 * man.el (man): Fix comment. (bug#12101)
7114
7115 2012-07-31 Martin Rudalics <rudalics@gmx.at>
7116
7117 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7118 Don't return a non-nil value when no suitable buffer was found.
7119
7120 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7121
7122 * progmodes/python.el (run-python-internal): Disable font lock for
7123 internal shells.
7124
7125 2012-07-30 Stefan Merten <smerten@oekonux.de>
7126
7127 * textmodes/rst.el: Silence `checkdoc-ispell'.
7128 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7129 (rst-official-version, rst-official-cvs-rev)
7130 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
7131 (rst-mode-map): New key binding.
7132
7133 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7134
7135 Update .PHONY listings in makefiles.
7136 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
7137 autoloads, update-subdirs, updates, bzr-update, update-authors,
7138 compile-onefile, compile-calc, backup-compiled-files,
7139 compile-after-backup, compile-one-process, mh-autoloads,
7140 bootstrap-clean, distclean, maintainer-clean.
7141
7142 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
7143
7144 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
7145 (calc-set-mode-line): Don't display "AlgSimp ".
7146
7147 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7148 (calc-lim-simplify-mode): New function.
7149 (calc-set-simplify-mode): Default to 'alg.
7150 (calc-default-simplify-mode): Make algebraic simplifications
7151 the default.
7152
7153 * calc/calc-ext.el (calc-init-extensions): Remove binding for
7154 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
7155
7156 * calc/calc-help.el (calc-m-prefix-help): Change messages to
7157 indicate new simplification modes.
7158
7159 * calc/README: Mention new default simplification mode.
7160
7161 * calc/calc.el (math-normalize-error): New variable.
7162 (math-normalize): Set `math-normalize-error' to t
7163 when there's an error.
7164
7165 * calc/calc-alg.el (math-simplify): Don't simplify when
7166 `math-normalize' returns an error.
7167
7168 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7169
7170 * international/mule-cmds.el (set-locale-environment): Revert last
7171 change, since display-graphic-p returns nil when this function is
7172 called during startup. Instead...
7173
7174 * term/w32console.el (terminal-init-w32console): ...setup the
7175 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
7176
7177 2012-07-29 Juri Linkov <juri@jurta.org>
7178
7179 * simple.el (goto-line): Don't display default line number in the
7180 prompt because it should be displayed by `read-number' (bug#9952).
7181 Add the current line number to the defaults of `goto-line' to
7182 allow its easier modification by users with `M-n' (bug#9201).
7183
7184 * subr.el (read-number): Support multiple default values like in
7185 other minibuffer reading functions. Replace `read' with
7186 `string-to-number' for consistency with `number-to-string'.
7187
7188 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7189
7190 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
7191 * emulation/viper-init.el (viper-deactivate-input-method-action):
7192 Rename from viper-inactivate-input-method-action.
7193 (viper-deactivate-input-method):
7194 Rename from viper-inactivate-input-method.
7195 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
7196 * international/mule-cmds.el (deactivate-input-method):
7197 Rename from inactivate-input-method.
7198 Also run input-method-deactivate-hook.
7199 (deactivate-current-input-method-function):
7200 Rename from inactivate-current-input-method-function.
7201 (input-method-deactivate-hook): New hook.
7202 (input-method-inactivate-hook): Mark obsolete.
7203 (inactivate-input-method): Mark obsolete.
7204
7205 * international/quail.el (quail-activate):
7206 Also run quail-deactivate-hook.
7207 (quail-deactivate): Rename from quail-inactivate.
7208 * international/robin.el (robin-activate):
7209 Also run robin-deactivate-hook.
7210 (robin-deactivate): Rename from robin-inactivate.
7211
7212 2012-07-29 Chong Yidong <cyd@gnu.org>
7213
7214 * simple.el (indicate-copied-region): New function.
7215 (kill-ring-save): Split off from here.
7216
7217 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
7218 (kill-rectangle): Set deactivate-mark to t on read-only error.
7219
7220 * register.el (copy-to-register, copy-rectangle-to-register):
7221 Deactivate the mark, and use indicate-copied-region (Bug#10056).
7222 (append-to-register, prepend-to-register): Call indicate-copied-region.
7223
7224 2012-07-29 Juri Linkov <juri@jurta.org>
7225
7226 * simple.el (async-shell-command-buffer): New defcustom.
7227 (shell-command): Use it. (Bug#4719)
7228
7229 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7230
7231 * international/mule-cmds.el (set-locale-environment): In a
7232 console session on MS-Windows, set up keyboard and terminal
7233 encoding from the OEM codepage, not the ANSI codepage.
7234 (Bug#12055)
7235
7236 2012-07-28 Chong Yidong <cyd@gnu.org>
7237
7238 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
7239 gdb-get-location.
7240
7241 2012-07-28 Leo Liu <sdl.web@gmail.com>
7242
7243 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
7244 the alist (bug#12029).
7245
7246 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7247
7248 * makefile.w32-in (custom-deps, finder-data, updates, compile)
7249 (compile-always, compile-first)
7250 ($(lisp)/calendar/cal-loaddefs.el)
7251 ($(lisp)/calendar/diary-loaddefs.el)
7252 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7253 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
7254 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
7255 instead of on update-subdirs.
7256 (bootstrap-clean): Delete $(lisp)/subdirs.el.
7257
7258 2012-07-28 Chong Yidong <cyd@gnu.org>
7259
7260 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
7261 directory if vc-deduce-backend returns nil (Bug#7350).
7262
7263 * simple.el (delete-trailing-lines): New option.
7264 (delete-trailing-whitespace): Obey it (Bug#11879).
7265
7266 2012-07-28 David Engster <deng@randomsample.de>
7267
7268 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
7269 Explanation of new 'symbol-qnames feature in doc-strings.
7270 (xml-maybe-do-ns): Return expanded names as plain symbols if
7271 'symbol-qnames was provided in XML-NS argument (Bug#11916).
7272 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
7273
7274 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7275
7276 Consistent completion in inferior python with emacs -nw.
7277 * progmodes/python.el (inferior-python-mode): replace "<tab>"
7278 binding in inferior-python-mode-map with "\t".
7279 (python-shell-completion-complete-at-point)
7280 (python-completion-complete-at-point): Remove interactive spec.
7281
7282 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7283
7284 * calc/calccomp.el (math-compose-expr): Undo previous change.
7285
7286 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7287
7288 * progmodes/python.el (python-mode-map): Add keybinding for
7289 run-python.
7290 (python-shell-make-comint): Fix pop-to-buffer call.
7291 (run-python): Autoload. New arg SHOW.
7292 (python-shell-get-or-create-process): Do not pop python process
7293 buffer.
7294
7295 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
7296
7297 * notifications.el (notifications-on-action-signal)
7298 (notifications-on-closed-signal): Use also the bus address for the map.
7299 (notifications-notify, notifications-close-notification)
7300 (notifications-get-capabilities): Add optional argument BUS.
7301
7302 2012-07-27 Tassilo Horn <tsdh@gnu.org>
7303
7304 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
7305 Add support for the lstlisting and minted environments, and for the
7306 ctable macro.
7307 * textmodes/reftex.el (reftex-compile-variables): Also recognize
7308 labels written in keyvals syntax.
7309
7310 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7311
7312 * calc/calccomp.el (math-compose-expr): Use parentheses when
7313 there is a product in the denominator of a fraction.
7314
7315 2012-07-26 Eli Zaretskii <eliz@gnu.org>
7316
7317 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7318 ($(lisp)/calendar/diary-loaddefs.el)
7319 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7320 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
7321 Fixes failures in parallel bootstrap because subdirs.el is being
7322 rewritten while the autoload files are built at the same time,
7323 which needs to load subdirs.el.
7324
7325 2012-07-26 Martin Rudalics <rudalics@gmx.at>
7326
7327 * mouse.el (popup-menu): Fix doc-string and re-indent code.
7328 (mouse-drag-line): Don't exit tracking when a switch-frame or
7329 switch-window event occurs (Bug#12006).
7330
7331 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7332
7333 * mouse.el (popup-menu): Fix last change.
7334
7335 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7336
7337 Autoload from Lisp with more care. Follow aliases when looking for
7338 function properties.
7339 * subr.el (autoloadp): New function.
7340 (symbol-file): Use it.
7341 (function-get): New function.
7342 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
7343 autoload-do-load.
7344 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
7345 (lisp-indent-function):
7346 * emacs-lisp/gv.el (gv-get):
7347 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
7348 * emacs-lisp/byte-opt.el (byte-optimize-form):
7349 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7350 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
7351 Use function-get.
7352 * emacs-lisp/cl.el: Don't propagate function properties any more.
7353
7354 * speedbar.el (speedbar-add-localized-speedbar-support):
7355 * emacs-lisp/disass.el (disassemble-internal):
7356 * desktop.el (desktop-load-file):
7357 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
7358 (describe-function-1):
7359 * emacs-lisp/find-func.el (find-function-noselect):
7360 * emacs-lisp/elp.el (elp-instrument-function):
7361 * emacs-lisp/advice.el (ad-has-proper-definition):
7362 * apropos.el (apropos-safe-documentation, apropos-macrop):
7363 * emacs-lisp/debug.el (debug-on-entry):
7364 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
7365 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
7366 * calc/calc.el (name): Use autoloadp & autoload-do-load.
7367
7368 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
7369
7370 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
7371 function, not an obsolete variable (Bug#12046).
7372
7373 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
7374
7375 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
7376
7377 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
7378
7379 * emacs-lisp/pp.el (pp-display-expression): Select old selected
7380 window only if it is still live (Bug#12034).
7381
7382 2012-07-25 Martin Rudalics <rudalics@gmx.at>
7383
7384 * subr.el (redirect-frame-focus): Add advertised calling
7385 convention (Bug#12030).
7386
7387 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7388
7389 Prefer typical American spelling for "acknowledgment".
7390 * vc/add-log.el (change-log-acknowledgment): Rename from
7391 change-log-acknowledgement, with an alias for the old name.
7392
7393 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
7394
7395 * calc-alg.el (math-simplify-divide): Don't cross multiply
7396 in an equation when the lhs is a variable.
7397
7398 2012-07-24 Julien Danjou <julien@danjou.info>
7399
7400 * net/netrc.el (netrc-find-service-number, netrc-store-data):
7401 Remove, unused.
7402
7403 2012-07-23 Eli Zaretskii <eliz@gnu.org>
7404
7405 * startup.el (command-line): Don't display an empty user name in
7406 the error message about non-existent home directory, when
7407 init-file-user was set to an empty string. See
7408 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
7409 for the details and context.
7410
7411 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
7412
7413 * ses.el (ses-cell-formula-aset): New macro.
7414 (ses-cell-references-aset): New macro.
7415 (ses-cell-p): New function.
7416 (ses-rename-cell): Do no longer rely on complex operations like
7417 ses-cell-set-formula or ses-set-cell to change the cell and handle
7418 the undo at the same time, but rather use lower level new macros
7419 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
7420 the undo directly. Refresh the mode line.
7421
7422 2012-07-21 Leo Liu <sdl.web@gmail.com>
7423
7424 * progmodes/cc-cmds.el (c-defun-name):
7425 Use match-string-no-properties instead for consistency.
7426
7427 2012-07-20 Leo Liu <sdl.web@gmail.com>
7428
7429 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
7430 (Bug#7879)
7431
7432 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
7433
7434 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
7435
7436 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
7437 * progmodes/bug-reference.el, misearch.el: Provide themselves
7438 (bug#11915).
7439
7440 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
7441 of narrowed buffer (bug#11966).
7442
7443 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
7444
7445 * ses.el (ses-rename-cell): Set new name also in reference list of
7446 cells of which the renamed cell depends.
7447
7448 2012-07-20 Masatake YAMATO <yamato@redhat.com>
7449
7450 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
7451 to check whether menu-bar is shown or not. If not shown,
7452 show the menu-bar as a popup menu instead of using tmm.
7453 * mouse.el (popup-menu): Accept `point' as `position' argument.
7454
7455 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
7456
7457 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
7458 up inside string symbol literal (bug#11923).
7459
7460 2012-07-20 Eli Zaretskii <eliz@gnu.org>
7461
7462 * startup.el (fancy-startup-text): Read the whole tutorial, not
7463 just its first 256 bytes. Prevents gibberish in display of the
7464 tutorial title.
7465
7466 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7467
7468 Drop idle buffer compaction due to an absence of the
7469 proved efficiency.
7470 * compact.el: Remove.
7471
7472 2012-07-19 Sam Steingold <sds@gnu.org>
7473
7474 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
7475 vc-bzr-pull & vc-bzr-merge-branch.
7476 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
7477 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
7478 for consistency with compilation-error-regexp-alist.
7479 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
7480 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
7481 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
7482 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
7483
7484 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
7485
7486 * emacs-lisp/chart.el: Use lexical-binding.
7487 (chart-emacs-storage): Don't hardcode the list of entries.
7488
7489 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7490
7491 Next round of tweaks caused by Fgarbage_collect changes.
7492 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
7493
7494 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7495
7496 Compact buffers when idle.
7497 * compact.el: New file.
7498
7499 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
7500
7501 * subr.el (eventp): Presume that if it looks vaguely like an event,
7502 it's an event (bug#10190).
7503
7504 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
7505
7506 Enhancements to ppss related code (thanks Stefan).
7507 * progmodes/python.el (python-indent-context)
7508 (python-indent-calculate-indentation, python-indent-dedent-line)
7509 (python-indent-electric-colon, python-nav-forward-block)
7510 (python-mode-abbrev-table)
7511 (python-info-assignment-continuation-line-p): Simplify checks
7512 for ppss context.
7513 (python-info-continuation-line-p): Cleanup.
7514 (python-info-ppss-context): Do not catch 'quote.
7515 (python-info-ppss-context-type)
7516 (python-info-ppss-comment-or-string-p): Simplify.
7517
7518 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
7519
7520 * progmodes/python.el: Enhancements to eldoc support.
7521 (python-info-current-symbol): New function.
7522 (python-eldoc-at-point): Use python-info-current-symbol.
7523 (python-info-current-defun): Fix cornercase on first defun scan.
7524 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
7525 and signal error when no inferior python process is available.
7526
7527 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
7528
7529 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
7530 assume it's always t.
7531 (vc-git-registered): Remove caching, the function is only called
7532 once.
7533 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
7534
7535 2012-07-18 Chong Yidong <cyd@gnu.org>
7536
7537 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
7538
7539 * simple.el (count-words): Report on narrowing (Bug#9959).
7540
7541 * bindings.el: Bind M-= to count-words.
7542
7543 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
7544
7545 2012-07-18 Masatake YAMATO <yamato@redhat.com>
7546
7547 * progmodes/sh-script.el (sh-imenu-generic-expression):
7548 Capture a function with `function' keyword and without parentheses
7549 like "function FOO" (bug#11856).
7550
7551 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
7552
7553 * window.el (split-window-sensibly): Make WINDOW argument
7554 optional.
7555
7556 2012-07-18 Chong Yidong <cyd@gnu.org>
7557
7558 * subr.el (keyboard-translate): Doc fix (Bug#7261).
7559
7560 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
7561 and make C-x 8 RET exit isearch (Bug#11439).
7562
7563 * international/iso-transl.el: Move isearch-mode-map key
7564 definitions to isearch.el.
7565
7566 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
7567
7568 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
7569 (eieio-defclass): Use gv-define-setter when possible.
7570
7571 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
7572
7573 Reflect recent changes in Fgarbage_collect.
7574 * emacs-lisp/chart.el (chart-emacs-storage): Change to
7575 reflect new format of data returned by Fgarbage_collect.
7576
7577 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7578
7579 New utility functions + python-info-ppss-context fix (Bug#11910).
7580 * progmodes/python.el (python-info-beginning-of-block-statement-p)
7581 (python-info-ppss-comment-or-string-p): New functions.
7582 (python-info-ppss-context): Small fix for string check.
7583
7584 2012-07-17 Juri Linkov <juri@jurta.org>
7585
7586 * dired-aux.el (dired-do-async-shell-command): Doc fix.
7587 (dired-do-async-shell-command): Don't add `*' at the end of the
7588 command (Bug#11815).
7589 (dired-do-shell-command): Doc fix.
7590 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
7591 Join the individual commands using either "&" or ";" as the
7592 separator depending on the values of these trailing characters.
7593 At the end re-add the trailing "&". (Bug#10598)
7594
7595 * simple.el (async-shell-command): Sync the interactive spec with
7596 `shell-command'. Doc fix.
7597 (shell-command): Doc fix.
7598
7599 2012-07-17 Juri Linkov <juri@jurta.org>
7600
7601 * descr-text.el (describe-char): Fix format args. (Bug#10129)
7602
7603 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7604
7605 Final renames and doc fixes for movement commands (bug#11899).
7606 * progmodes/python.el (python-nav-beginning-of-statement):
7607 Rename from python-nav-statement-start.
7608 (python-nav-end-of-statement): Rename from
7609 python-nav-statement-end.
7610 (python-nav-beginning-of-block): Rename from
7611 python-nav-block-start.
7612 (python-nav-end-of-block): Rename from python-nav-block-end.
7613
7614 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7615
7616 * progmodes/python.el (python-shell-send-string-no-output):
7617 Allow accept-process-output to quit, keeping shell process ready for
7618 future interactions (Bug#11868).
7619
7620 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
7621
7622 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
7623
7624 * emacs-lisp/elint.el (elint-find-args-in-code):
7625 Use help-function-arglist, so as to handle lexical byte-code.
7626
7627 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
7628 change (bug#11826).
7629
7630 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
7631
7632 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
7633 Avoid spuriously marking the buffer as modified because of c-is-sws.
7634
7635 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
7636 as not-a-comment (bug#11946).
7637
7638 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
7639 for uninterned vars.
7640
7641 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
7642 Use read-event since we don't really want to read chars but bytes.
7643
7644 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
7645 $$..$$ but also $..$ using regexps (bug#11953).
7646 Use tex-verbatim for \url and \path.
7647 (tex-font-lock-keywords): Define as defconst like the others.
7648 (tex-common-initialization): Don't use font-lock-syntax-table any more.
7649
7650 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
7651
7652 * international/mule-cmds.el (ucs-insert): Make it an obsolete
7653 alias for insert-char.
7654
7655 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
7656
7657 * progmodes/python.el: Simplified imenu implementation.
7658 (python-nav-jump-to-defun): Remove command.
7659 (python-mode-map): Use `imenu' instead.
7660 (python-nav-list-defun-positions-cache)
7661 (python-imenu-include-defun-type, python-imenu-make-tree)
7662 (python-imenu-subtree-root-label, python-imenu-index-alist):
7663 Remove vars.
7664 (python-nav-list-defun-positions, python-nav-read-defun)
7665 (python-imenu-tree-assoc, python-imenu-make-element-tree)
7666 (python-imenu-make-tree, python-imenu-create-index):
7667 Remove functions.
7668 (python-mode): Update to interact with imenu by setting
7669 `imenu-extract-index-name-function' only.
7670
7671 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
7672
7673 * progmodes/python.el: Enhancements to navigation commands.
7674 (python-nav-backward-sentence)
7675 (python-nav-forward-sentence): Remove.
7676 (python-nav-backward-statement, python-nav-forward-statement)
7677 (python-nav-statement-start, python-nav-statement-end)
7678 (python-nav-backward-block, python-nav-forward-block)
7679 (python-nav-block-start, python-nav-block-end)
7680 (python-nav-forward-sexp-function)
7681 (python-info-current-line-comment-p)
7682 (python-info-current-line-empty-p): New functions.
7683 (python-indent-context): Use `python-nav-statement-start'.
7684
7685 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
7686
7687 * eshell/em-ls.el (eshell/ls): Use `apply'.
7688
7689 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
7690 multi-hops, instead of Tramp internals.
7691
7692 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
7693
7694 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
7695 when F1 and F2 are located on different hosts.
7696
7697 2012-07-14 Chong Yidong <cyd@gnu.org>
7698
7699 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
7700 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
7701 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
7702 (xterm-mouse--read-event-sequence-1000)
7703 (xterm-mouse--read-event-sequence-1006): New functions. For old
7704 mouse protocol, handle M-mouse-X events correctly.
7705 (xterm-mouse-event): New arg specifying mouse protocol.
7706 (turn-on-xterm-mouse-tracking-on-terminal)
7707 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
7708 sequence to toggle extended coordinates on newer XTerms.
7709 This appears to be harmless on terminals which do not support this.
7710
7711 2012-07-14 Leo Liu <sdl.web@gmail.com>
7712
7713 Add fringe bitmap indicators for flymake. (Bug#11253)
7714 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
7715 (flymake-make-overlay): New arg BITMAP.
7716 (flymake-error-bitmap, flymake-warning-bitmap)
7717 (flymake-fringe-indicator-position): New user variables.
7718
7719 * fringe.el: New bitmap exclamation-mark.
7720
7721 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
7722
7723 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
7724 also (Bug#7879).
7725
7726 2012-07-14 Chong Yidong <cyd@gnu.org>
7727
7728 * electric.el (electric-pair-post-self-insert-function): Fix pair
7729 insertion in empty-region case (Bug#11520).
7730
7731 2012-07-14 Chong Yidong <cyd@gnu.org>
7732
7733 * bindings.el: Consolidate ctl-x-r-map bindings.
7734 Bind copy-rectangle-as-kill to C-x r w.
7735
7736 * rect.el, register.el: Move bindings to bindings.el.
7737
7738 2012-07-14 Reuben Thomas <rrt@sc3d.org>
7739
7740 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
7741
7742 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
7743
7744 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
7745
7746 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
7747
7748 * bindings.el (top): Use `mapc' instead of `mapcar'.
7749
7750 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
7751
7752 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
7753
7754 * progmodes/sql.el (sql-comint): Suppress the check for program on
7755 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
7756 (Bug#11908)
7757
7758 2012-07-13 Chong Yidong <cyd@gnu.org>
7759
7760 * bindings.el: Assign a non-nil permanent-local property to
7761 per-buffer variables which lack a default value (Bug#11930).
7762
7763 * help-fns.el (describe-variable): In the "automatically becomes
7764 local" notice, take note of permanent-local variables.
7765
7766 2012-07-13 Chong Yidong <cyd@gnu.org>
7767
7768 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
7769 to allow printing the message when called from Lisp.
7770
7771 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7772 Remove toggle-read-only.
7773
7774 * bs.el (bs-toggle-readonly):
7775 * buff-menu.el (Buffer-menu-toggle-read-only):
7776 Remove with-no-warnings around toggle-read-only.
7777
7778 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
7779 Remove with-no-warnings around toggle-read-only.
7780 (ffap-read-only, ffap-read-only-other-window)
7781 (ffap-read-only-other-frame): Callers changed.
7782
7783 * help-mode.el: Don't require view package.
7784 (help-mode-finish): Set buffer-read-only instead of calling
7785 toggle-read-only.
7786
7787 * bindings.el (mode-line-toggle-read-only):
7788 * dired.el (dired-toggle-read-only):
7789 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
7790 with non-nil second arg.
7791
7792 * emacs-lisp/eieio-custom.el (eieio-customize-object):
7793 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
7794 directly.
7795
7796 2012-07-12 Eli Zaretskii <eliz@gnu.org>
7797
7798 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
7799 not incf.
7800
7801 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
7802
7803 More CL cleanups and reduction of use of cl.el.
7804 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
7805 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
7806 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
7807 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
7808 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
7809 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
7810 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
7811 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
7812 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
7813 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
7814 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
7815 * eshell/em-cmpl.el, eshell/em-banner.el:
7816 * calendar/parse-time.el: Use cl-lib.
7817 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
7818 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
7819 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
7820 * term/ns-win.el, term.el, shell.el, ps-samp.el:
7821 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
7822 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
7823 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
7824 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
7825 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
7826 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
7827 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
7828 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
7829 `lambda' rather than with `quote'.
7830 (eshell-do-opt): Adjust accordingly.
7831 (eshell-process-option): Simplify.
7832 * eshell/esh-var.el:
7833 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
7834 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
7835 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
7836 to `pcase--dontcare'.
7837 * emacs-lisp/cl.el (labels): Mark obsolete.
7838 (cl--letf, letf): Move to cl-lib.
7839 (cl--letf*, letf*): Remove.
7840 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
7841 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
7842 (cl-progv): Rewrite.
7843 (cl--letf, cl-letf): Move from cl.el.
7844 (cl-letf*): New macro.
7845 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
7846
7847 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
7848
7849 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
7850
7851 2012-07-11 Chong Yidong <cyd@gnu.org>
7852
7853 * vc/log-edit.el (log-edit-vc-backend): New variable.
7854 (log-edit): Doc fix.
7855
7856 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
7857 argument of log-edit to set up all local variables.
7858 (vc-start-logentry): New optional arg specifying VC backend.
7859
7860 * vc/vc.el (vc-checkin): Use it.
7861 (vc-deduce-fileset): Handle Log Edit buffers.
7862 (vc-diff): Make first argument optional too.
7863
7864 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
7865
7866 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
7867
7868 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
7869 command, just in case. The function is not needed anymore.
7870 (eshell-external-command): Do not call `eshell-remote-command'.
7871
7872 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
7873
7874 Reduce use of (require 'cl).
7875 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
7876 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
7877 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
7878 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
7879 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
7880 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
7881 * battery.el, avoid.el, abbrev.el: Use cl-lib.
7882 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
7883 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
7884 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
7885 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
7886 * calculator.el, autorevert.el, apropos.el: Don't require CL.
7887 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
7888 (byte-compile-unfold-bcf, byte-compile-check-variable):
7889 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
7890 (byte-compile-nilconstp):
7891 * emacs-lisp/autoload.el (make-autoload): Use pcase.
7892 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
7893
7894 * emacs-lisp/gv.el (cond): Make it a valid place.
7895 (if): Simplify slightly.
7896
7897 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
7898 (pcase--self-quoting-p): New function.
7899 (pcase--u1): Use it.
7900
7901 2012-07-10 Glenn Morris <rgm@gnu.org>
7902
7903 * emacs-lisp/authors.el (authors-fixed-entries):
7904 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
7905
7906 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
7907
7908 Rename configure.in to configure.ac (Bug#11603).
7909 * emacs-lisp/authors.el (authors-canonical-file-name):
7910 * progmodes/autoconf.el (autoconf-mode):
7911 Prefer configure.ac to configure.in.
7912
7913 2012-07-08 Chong Yidong <cyd@gnu.org>
7914
7915 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
7916 Implement the mouse-1-click-follows-link handling properly.
7917
7918 * info.el (Info-link-keymap): Use follow-link mechanism for
7919 header-line links (Bug#374).
7920
7921 * simple.el (deactivate-mark): Do not set the primary selection
7922 if another program has acquired it (Bug#11772).
7923
7924 2012-07-07 Kevin Ryde <user42@zip.com.au>
7925
7926 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
7927 (woman-decode-region): Replace escaped-escapes without destroying
7928 bold or underline (Bug#11552).
7929 (woman2-process-escapes): Handle nofill regions (Bug#11591).
7930
7931 2012-07-07 Chong Yidong <cyd@gnu.org>
7932
7933 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
7934 (interprogram-cut-function, interprogram-paste-function):
7935 Mention that we typically mean the clipboard.
7936
7937 2012-07-06 Glenn Morris <rgm@gnu.org>
7938
7939 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
7940
7941 * files.el (toggle-read-only): Restrict message to interactive use.
7942
7943 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
7944
7945 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
7946
7947 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
7948
7949 2012-07-06 Glenn Morris <rgm@gnu.org>
7950
7951 * Makefile.in (compile-one-process): Rename from "recompile".
7952
7953 * Makefile.in (bzr-update): "compile" is the same as "recompile
7954 autoloads", but parallelizable, so use that instead.
7955
7956 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
7957
7958 * window.el (quit-window): Always restore window height when
7959 it's saved in quit-restore parameter (Bug#11810).
7960
7961 2012-07-06 Glenn Morris <rgm@gnu.org>
7962
7963 * simple.el (kill-whole-line): Doc tweak.
7964
7965 2012-07-06 Eli Zaretskii <eliz@gnu.org>
7966
7967 * files.el (file-relative-name): Compare file names
7968 case-insensitively if on MS-Windows or MS-DOS, or if
7969 read-file-name-completion-ignore-case is non-nil. Don't use
7970 case-fold-search for this purpose. (Bug#11827)
7971
7972 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
7973
7974 * calendar/cal-dst.el (calendar-current-time-zone):
7975 Return calendar-current-time-zone-cache if non-nil.
7976
7977 2012-07-17 Masatake YAMATO <yamato@redhat.com>
7978 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
7979
7980 * calendar/cal-dst.el (calendar-current-time-zone):
7981 Return calendar-current-time-zone-cache if non-nil.
7982
7983 2012-07-06 Glenn Morris <rgm@gnu.org>
7984
7985 * Makefile.in (cvs-update): Remove old alias.
7986
7987 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
7988
7989 Sync with Tramp 2.2.6-pre.
7990
7991 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
7992 compatible declaration.
7993
7994 * net/tramp-cmds.el (tramp-append-tramp-buffers):
7995 Protect `list-load-path-shadows' call.
7996
7997 * net/tramp-compat.el (top): Require packages, which aren't
7998 autoloaded anymore for XEmacs. Protect call of
7999 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
8000 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
8001 it hurts at least for SXEmacs.
8002 (tramp-compat-temporary-file-directory): In XEmacs, there is no
8003 standard-value for `temporary-file-directory'.
8004
8005 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
8006 Redirect stderr to /dev/null.
8007 (tramp-sh-handle-write-region): uid and gid can be floats.
8008 Reported by Russell Sim <russell.sim@gmail.com>.
8009 (tramp-sh-handle-vc-registered): Hide errors.
8010 (tramp-vc-file-name-handler): Use dummy results for `process-file'
8011 and `start-file-process'.
8012 (tramp-maybe-open-connection): Check also whether `non-essential'
8013 is bound.
8014
8015 2012-07-04 Chong Yidong <cyd@gnu.org>
8016
8017 * xml.el (xml--parse-buffer): Use xml-syntax-table.
8018 (xml-parse-tag): Likewise, and avoid changing entity tables.
8019 (xml-syntax-table): Define from scratch, making sure not to give
8020 x2000 and other Unicode spaces whitespace syntax, since those are
8021 not spaces in XML.
8022 (xml-parse-fragment): Delete unused function.
8023 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
8024 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
8025 (xml-entity-ref, xml-pe-reference-re)
8026 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
8027 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
8028 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
8029 (xml-entity-value-re): Use syntax references in regexps where
8030 possible; no need to define inside a let-binding.
8031 (xml-parse-dtd): Use xml-pe-reference-re.
8032 (xml-entity-or-char-ref-re): New defconst.
8033 (xml-parse-string, xml-substitute-special): Use it.
8034
8035 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8036
8037 * files.el (locate-dominating-file): Allow `name' to be a predicate.
8038 (find-file--read-only): New function.
8039 (find-file-read-only, find-file-read-only-other-window)
8040 (find-file-read-only-other-frame): Use it.
8041 (insert-file-contents-literally): Don't `fset'.
8042 (get-free-disk-space): Use locate-dominating-file.
8043
8044 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
8045 function is already compiled.
8046
8047 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
8048
8049 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
8050
8051 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
8052 files on the same host.
8053
8054 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8055
8056 * help-fns.el (describe-function-1): Only call
8057 help-fns--autoloaded-p when we have a file name. (Bug#11848)
8058
8059 2012-07-03 Chong Yidong <cyd@gnu.org>
8060
8061 * xml.el: Protect parser against XML bombs.
8062 (xml-entity-expansion-limit): New variable.
8063 (xml-parse-string, xml-substitute-special): Use it.
8064 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
8065
8066 2012-07-03 Glenn Morris <rgm@gnu.org>
8067
8068 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8069 Allow linking to specific messages in debbugs reports (eg 123#5).
8070
8071 2012-07-02 Chong Yidong <cyd@gnu.org>
8072
8073 * xml.el: Fix entity and character reference expansion, allowing
8074 them to expand into markup as per XML spec.
8075 (xml-default-ns): New variable.
8076 (xml-entity-alist): Use XML spec definitions for lt and amp.
8077 (xml-parse-region): Make first two arguments optional.
8078 Discard text properties.
8079 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
8080 All callers changed.
8081 (xml-parse-tag): Call xml-parse-tag-1. For backward
8082 compatibility, this function should not modify buffer contents.
8083 (xml-parse-tag-1): Fix opening-tag regexp.
8084 (xml-parse-string): Rewrite, handling entity and character
8085 references properly.
8086 (xml--entity-replacement-text): Signal an error if a parameter
8087 entity is undefined.
8088
8089 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8090
8091 * comint.el (comint-output-filter): Filter out repeated prompts.
8092
8093 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
8094 and file-name-absolute-p.
8095 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
8096 internal calls.
8097
8098 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8099
8100 Spelling fixes.
8101 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
8102 Rename from byte-compile--refiy-function. All uses changed.
8103
8104 2012-07-01 Chong Yidong <cyd@gnu.org>
8105
8106 * xml.el (xml--parse-buffer): New function. Move most of
8107 xml-parse-region here.
8108 (xml-parse-region): Copy region into a temporary buffer, since
8109 parameter entity substitution requires changing buffer contents.
8110 Use xml--parse-buffer.
8111 (xml-parse-file): Use xml--parse-buffer.
8112 (xml-parse-dtd): Make parameter entity substitution work right.
8113 Use proper regexps for ELEMENT declarations (Bug#7172).
8114
8115 2012-06-30 Glenn Morris <rgm@gnu.org>
8116
8117 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
8118
8119 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
8120 Remove outdated and unnecessary dbus declarations.
8121
8122 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8123
8124 * emacs-lisp/timer.el (timer-until): Subtract results of
8125 float-time, instead of taking float-time of the result of
8126 time-subtract, since float-time signals an error for negative time
8127 arguments.
8128
8129 2012-06-30 Chong Yidong <cyd@gnu.org>
8130
8131 * xml.el (xml-*-re): Convert defvars into defconsts, and
8132 eval-and-compile them so eval-and-compile works on derivatives.
8133 (xml--entity-replacement-text): Use eval-and-comple.
8134
8135 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
8136
8137 * vc/vc-git.el (vc-git-registered): Use cache property
8138 `git-registered'.
8139 (vc-git-mode-line-string): Call `vc-working-revision' instead of
8140 `vc-git-working-revision' in order to benefit from the cache.
8141 (vc-git-root): Use cache property `git-root'. (Bug#11757)
8142
8143 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
8144
8145 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
8146 removed (likely outside Emacs). (Bug#11757)
8147
8148 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8149
8150 * emacs-lisp/cl-lib.el: Require macroexp.
8151
8152 2012-06-30 Chong Yidong <cyd@gnu.org>
8153
8154 * xml.el: Implement XML parameter entities.
8155 (xml-parameter-entity-alist): New variable.
8156 (xml-parse-region, xml-parse-fragment): Preserve previous values
8157 of xml-entity-alist and xml-parameter-entity-alist, so that
8158 repeated calls on different documents do not change them.
8159 (xml-parse-tag): Fix doctype regexp.
8160 (xml--entity-replacement-text): New function.
8161 (xml-parse-dtd): Use it. Don't handle system entities; doing that
8162 properly requires url retrieval which is unimplemented.
8163 (xml-escape-string): Doc fix.
8164
8165 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8166
8167 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
8168
8169 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8170
8171 * fringe.el (fringe-mode): Doc fix.
8172
8173 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
8174
8175 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
8176 is non-nil.
8177 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
8178 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
8179
8180 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8181
8182 * calendar/cal-dst.el (calendar-current-time-zone):
8183 Return calendar-current-time-zone-cache if non-nil.
8184
8185 2012-06-29 Masatake YAMATO <yamato@redhat.com>
8186
8187 * progmodes/which-func.el (which-func-format):
8188 Add mouse-face. (Bug#11698)
8189
8190 2012-06-29 Leo Liu <sdl.web@gmail.com>
8191
8192 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
8193
8194 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8195
8196 * minibuffer.el (minibuffer-confirm-exit-commands):
8197 Add completion-at-point (bug#11725).
8198
8199 2012-06-29 Glenn Morris <rgm@gnu.org>
8200
8201 * progmodes/f90.el (f90-font-lock-keywords-2):
8202 Add some preprocessor elements. (Bug#10499)
8203
8204 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8205
8206 * progmodes/cperl-mode.el (cperl-update-syntaxification):
8207 Use syntax-propertize (bug#11739).
8208
8209 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8210
8211 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
8212
8213 2012-06-28 Julien Danjou <julien@danjou.info>
8214
8215 * term.el (term-handle-colors-array): Use a set of new faces to
8216 color the terminal. Also uses :inverse-video property.
8217 (term-default-fg-color): Set to nil by default, deprecate in favor
8218 of `term-face'.
8219 (term-default-bg-color): Set to nil by default, deprecate in favor
8220 of `term-face'.
8221 (term-current-face): Use `term-face' by default.
8222 (term-bold-attribute): Variable deleted.
8223
8224 2012-06-28 Glenn Morris <rgm@gnu.org>
8225
8226 * simple.el (completion-list-mode-finish):
8227 Don't use toggle-read-only. (Since completion-list-mode has
8228 a special mode-class, it wasn't doing anything extra anyway.)
8229
8230 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8231
8232 Make inlining of other-mode interpreted functions work (bug#11799).
8233 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
8234 (byte-compile): Use it to fix compilation of lexical-binding closures.
8235 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
8236 function, if needed.
8237
8238 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8239
8240 * help-mode.el (help-make-xrefs): Don't just withstand
8241 cyclic-variable-indirection but any error in documentation-property.
8242
8243 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
8244 memory use.
8245 * bindings.el (bindings--define-key): New function.
8246 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
8247 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
8248 * bindings.el: Use it to purecopy define-key bindings.
8249
8250 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
8251
8252 * emacs-lisp/cl.el (flet): Mark obsolete.
8253 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
8254 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
8255 * progmodes/js.el (js-c-fill-paragraph):
8256 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
8257 (ebrowse-switch-member-buffer-to-derived-class):
8258 * play/5x5.el (5x5-solver): Use cl-flet.
8259
8260 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
8261 (cl--symbol-function): New macro.
8262 (cl--letf, cl--letf*): Use it.
8263
8264 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8265 Strip "toggle-" if any.
8266
8267 2012-06-27 Glenn Morris <rgm@gnu.org>
8268
8269 * info.el (Info-default-directory-list): Move here from paths.el.
8270 * paths.el: Remove file, which is now empty.
8271 * loadup.el: No longer load "paths".
8272
8273 * custom.el (custom-initialize-delay): Doc fix.
8274
8275 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
8276 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
8277 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
8278 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
8279 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
8280 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
8281 * eshell/eshell.el (eshell-defgroup): Remove alias.
8282
8283 2012-06-27 Chong Yidong <cyd@gnu.org>
8284
8285 * help.el (help-enable-auto-load): New variable.
8286
8287 * help-fns.el (help-fns--autoloaded-p): New function.
8288 (describe-function-1): Refer to a function as "autoloaded" if it
8289 was autoloaded at any time in the past. Perform autoloading if
8290 help-enable-auto-load is non-nil.
8291
8292 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8293
8294 * makefile.w32-in (compile, compile-always): Depend on
8295 update-subdirs, not on subdirs.el. Otherwise, several different
8296 sub-targets of 'bootstrap' running in parallel could
8297 simultaneously write to subdirs.el, producing a garbled file.
8298
8299 2012-06-26 Sam Steingold <sds@gnu.org>
8300
8301 * files.el (file-name-base): New convenience function.
8302 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
8303 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
8304 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
8305 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
8306 * textmodes/ispell.el, textmodes/reftex-ref.el:
8307 * textmodes/tex-mode.el: Use it.
8308 Did not touch cedet and org because they are maintained elsewhere.
8309
8310 2012-06-26 Martin Rudalics <rudalics@gmx.at>
8311
8312 * calendar/calendar.el (calendar-exit): Don't try to delete or
8313 iconify last frame. See:
8314 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
8315
8316 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
8317
8318 * server.el (server-process-filter): Remember dir in the
8319 process's `server-client-directory' properties.
8320
8321 2012-06-24 Chong Yidong <cyd@gnu.org>
8322
8323 * xml.el (xml-parse-tag): Correctly handle comment embedded in
8324 non-tag text.
8325
8326 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8327
8328 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
8329
8330 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8331
8332 * help-fns.el (describe-variable): Don't croak when doc is not found.
8333 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
8334 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
8335 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
8336 * emacs-lisp/smie.el (smie-next-sexp): CSE.
8337 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
8338 ((lambda ..) ..).
8339 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
8340
8341 2012-06-23 Chong Yidong <cyd@gnu.org>
8342
8343 * info.el (Info-mouse-follow-link): Accept symbol values of
8344 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
8345 (Info-fontify-node): Use Info-link-keymap for all navigation
8346 buttons, with link-args property to perform the desired action.
8347 (Info-link-keymap): Doc fix.
8348 (Info-next-link-keymap, Info-prev-link-keymap)
8349 (Info-up-link-keymap): Delete now-unused keymaps.
8350
8351 2012-06-23 Chong Yidong <cyd@gnu.org>
8352
8353 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
8354
8355 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
8356 system abbrevs.
8357
8358 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
8359
8360 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8361
8362 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
8363 (bug#11719).
8364
8365 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
8366 the requote function doesn't work properly (bug#11714).
8367
8368 2012-06-23 Glenn Morris <rgm@gnu.org>
8369
8370 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
8371
8372 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8373
8374 Further GV/CL cleanups.
8375 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
8376 gv-expander.
8377 (gv--defun-declaration): New function.
8378 (defun-declarations-alist): Use it.
8379 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
8380 (gv-place): Autoload.
8381 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
8382 original definition of dotimes and dolist.
8383 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
8384 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
8385 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
8386 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
8387 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
8388 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
8389 to the function's definition.
8390 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
8391 * window.el:
8392 * files.el:
8393 * faces.el:
8394 * env.el: Don't use CL.
8395
8396 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8397
8398 Support higher-resolution time stamps (Bug#9000).
8399
8400 * calendar/time-date.el (with-decoded-time-value): New arg
8401 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
8402 (encode-time-value): New optional arg PICO. New type 3.
8403 (time-to-seconds) [!float-time]: Support the new picoseconds
8404 component if it's used.
8405 (seconds-to-time, time-subtract, time-add):
8406 Support ps-resolution time stamps as well.
8407
8408 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
8409 (timerp): Timer vectors now have length 9, not 8.
8410 (timer--time): Support new-style (4-part) time stamps.
8411 (timer-next-integral-multiple-of-time): Time stamps now have
8412 picosecond resolution, so take a bit more care about rounding.
8413 (timer-relative-time, timer-inc-time): New optional arg psecs.
8414 (timer-set-time-with-usecs): Set psecs to 0.
8415 (timer--activate): Check psecs component, too.
8416
8417 * proced.el (proced-time-lessp): Support ps-resolution stamps.
8418
8419 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8420
8421 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
8422 Move the non-essential binding to the post/pre-command-hook where it is
8423 more obviously correct.
8424
8425 * subr.el (read-passwd): Don't use a history at all.
8426 * savehist.el (savehist-save): Remove password saved accidentally
8427 because of the above bug.
8428
8429 2012-06-22 Bastien Guerry <bzg@gnu.org>
8430
8431 * files.el (toggle-read-only): Display a message telling whether
8432 the buffer is read-only or not (bug#11726).
8433
8434 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8435
8436 * emacs-lisp/gv.el: New file.
8437 * subr.el (push, pop): Extend to generalized variables.
8438 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
8439 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
8440 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
8441 gv-define-simple-setter, and gv-define-expander.
8442 Remove setf-methods defined in gv. Rename cl-setf -> setf.
8443 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
8444 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
8445 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
8446 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
8447 gv-letplace.
8448 (cl-defstruct): Don't define setf-method any more.
8449 * emacs-lisp/cl.el (flet): Don't autoload.
8450 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
8451 (define-setf-expander, defsetf, define-modify-macro)
8452 (cl-struct-setf-expander): Move from cl-lib.el.
8453 * emacs-lisp/syntax.el:
8454 * emacs-lisp/ewoc.el:
8455 * emacs-lisp/smie.el:
8456 * emacs-lisp/cconv.el:
8457 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
8458 (timer--time): Use gv-define-simple-setter.
8459 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
8460 to avoid coding-system problems in subr.el. Adjust all users.
8461 (macroexp--maxsize, macroexp-small-p): New functions.
8462 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
8463 * scroll-bar.el (scroll-bar-mode):
8464 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
8465 (normal-erase-is-backspace-mode): Don't use the `eq' place.
8466 * winner.el (winner-configuration, winner-make-point-alist)
8467 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
8468 * files.el (locate-file-completion-table): Avoid list*.
8469
8470 2012-06-22 Chong Yidong <cyd@gnu.org>
8471
8472 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
8473 (dired-create-files): Doc fix (Bug#11329).
8474 (dired-do-copy): Doc fix (Bug#11334).
8475 (dired-mark-read-string): Doc fix (Bug#11553).
8476
8477 * dired.el (dired-recursive-copies, dired-recursive-deletes):
8478 Doc fix (Bug#11326).
8479 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
8480 (dired-dwim-target): Doc fix.
8481
8482 * wdired.el (wdired-mode): Doc fix.
8483
8484 2012-06-22 Glenn Morris <rgm@gnu.org>
8485
8486 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
8487 (pcmpl-rpm-cache-stamp-file): New constant.
8488 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
8489 (pcmpl-rpm-packages): Optionally cache list of packages.
8490
8491 * pcmpl-rpm.el (pcmpl-rpm): New group.
8492 (pcmpl-rpm-query-options): New option.
8493 (pcmpl-rpm-packages): No need to inline it.
8494 Use pcmpl-rpm-query-options.
8495
8496 * calendar/calendar.el (calendar-in-read-only-buffer):
8497 Avoid some needless mode changes.
8498
8499 2012-06-21 Chong Yidong <cyd@gnu.org>
8500
8501 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
8502 (desktop-path): Remove . from the default value (Bug#10977).
8503 (desktop-read): Use user-emacs-directory if desktop-path is nil.
8504
8505 2012-06-20 Chong Yidong <cyd@gnu.org>
8506
8507 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
8508
8509 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
8510
8511 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
8512 (bug#11201).
8513
8514 2012-06-20 Chong Yidong <cyd@gnu.org>
8515
8516 * term.el (term-window-width): Handle the case of a missing right
8517 fringe (Bug#8837).
8518 (term-check-size): Use window-text-height (Bug#5445).
8519 (term-mode): Use define-derived-mode. Minor cleanups.
8520 Set font-lock-defaults (Bug#7692).
8521 (term-move-columns, term-insert-char, term-emulate-terminal)
8522 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
8523
8524 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
8525
8526 * net/ange-ftp.el (ange-ftp-get-passwd):
8527 Bind `enable-recursive-minibuffers'.
8528 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
8529
8530 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
8531
8532 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
8533
8534 2012-06-19 Glenn Morris <rgm@gnu.org>
8535
8536 * progmodes/python.el (python-mode): Derive from prog-mode.
8537
8538 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
8539
8540 * emulation/edt.el (edt-default-menu-bar-update-buffers)
8541 (edt-user-menu-bar-update-buffers): New functions.
8542 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
8543
8544 2012-06-19 Chong Yidong <cyd@gnu.org>
8545
8546 * subr.el (with-selected-window): Preserve the selected window's
8547 terminal's top-frame (Bug#4702).
8548
8549 * window.el (save-selected-window): Likewise.
8550
8551 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8552
8553 * progmodes/python.el (python-rx-constituents): Move backquote.
8554 (python-skeleton-define, python-define-auxiliary-skeleton):
8555 Use `declare'.
8556
8557 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
8558
8559 * minibuffer.el (read-file-name-default): Revert the patch from
8560 2012-06-17.
8561
8562 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8563
8564 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
8565 (pcase--u1, pcase--q1): Don't use apply-partially.
8566
8567 2012-06-18 Glenn Morris <rgm@gnu.org>
8568
8569 * progmodes/python.el (python-proc, python-buffer)
8570 (python-send-receive, python-send-string): Fix obsolete versions.
8571
8572 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8573
8574 * window.el (special-display-p): Completely remove stringp
8575 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
8576
8577 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
8578
8579 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
8580
8581 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
8582
8583 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
8584 * net/tramp-sh.el (tramp-maybe-open-connection):
8585 Throw if `non-essential' is non-nil.
8586
8587 2012-06-17 Martin Rudalics <rudalics@gmx.at>
8588
8589 * window.el (special-display-p): Signal an error if BUFFER-NAME
8590 is not a string (Bug#11713).
8591
8592 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8593
8594 * progmodes/python.el (python-info-beginning-of-backslash):
8595 Rename from python-info-beginning-of-backlash, as a spelling fix.
8596
8597 2012-06-17 Chong Yidong <cyd@gnu.org>
8598
8599 * term.el (term-emulate-terminal): If term-check-size is called,
8600 move point to the process mark without resetting point (Bug#4635).
8601
8602 2012-06-17 Glenn Morris <rgm@gnu.org>
8603
8604 * international/mule-cmds.el (mule-menu-keymap)
8605 (set-language-environment, set-locale-environment): Doc tweaks.
8606
8607 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
8608
8609 * cus-face.el (custom-face-attributes): Add wave-style underline
8610 attribute.
8611 * faces.el (set-face-attribute): Update docstring to describe
8612 wave-style underline attribute.
8613
8614 2012-06-16 Chong Yidong <cyd@gnu.org>
8615
8616 * term/xterm.el (terminal-init-xterm): Discard input before
8617 querying background mode (Bug#10959).
8618
8619 2012-06-16 Stefan Merten <smerten@oekonux.de>
8620
8621 * textmodes/rst.el: Added and corrected some comments.
8622 (rst-re-alist-def): Improve symbol syntax.
8623 (rst-mode-syntax-table): Correct syntax entries.
8624 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8625 (rst-official-version, rst-official-cvs-rev): Update version
8626 information.
8627
8628 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
8629
8630 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
8631 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
8632
8633 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
8634
8635 * progmodes/python.el: New python.el merge.
8636 (python-guess-indent): Obsolete var.
8637 (python-indent-guess-indent-offset): New defcustom.
8638 (python-indent): Obsolete var.
8639 (python-indent-offset): New defcustom.
8640 (python-python-command, python-jython-command): Delete var.
8641 (python-shell-interpreter): New defcustom.
8642 (python-pdbtrack-do-tracking-p): Delete var.
8643 (python-pdbtrack-activate): New defcustom.
8644 (python-use-skeletons): Obsolete var.
8645 (python-skeleton-autoinsert): New defcustom.
8646 (inferior-python-filter-regexp, python-continuation-offset)
8647 (python-honour-comment-indentation, python-indent-string-contents)
8648 (python-jython-packages, python-mode-hook)
8649 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
8650 (python-shell-prompt-alist)
8651 (python-source-modes): Delete defcustoms.
8652 (python-check-buffer-name, python-eldoc-setup-code)
8653 (python-eldoc-string-code, python-ffap-setup-code)
8654 (python-ffap-string-code, python-fill-comment-function)
8655 (python-fill-decorator-function, python-fill-paren-function)
8656 (python-fill-string-function, python-imenu-include-defun-type)
8657 (python-imenu-make-tree, python-imenu-subtree-root-label)
8658 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
8659 (python-shell-compilation-regexp-alist)
8660 (python-shell-completion-module-string-code)
8661 (python-shell-completion-pdb-string-code)
8662 (python-shell-completion-setup-code)
8663 (python-shell-completion-string-code)
8664 (python-shell-enable-font-lock, python-shell-exec-path)
8665 (python-shell-extra-pythonpaths)
8666 (python-shell-internal-buffer-name, python-shell-interpreter-args)
8667 (python-shell-process-environment)
8668 (python-shell-prompt-block-regexp)
8669 (python-shell-prompt-output-regexp)
8670 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
8671 (python-shell-send-setup-max-wait, python-shell-setup-codes)
8672 (python-shell-virtualenv-path): New defcustoms.
8673 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
8674 (inferior-python-mode-syntax-table, python--prompt-regexp)
8675 (python-buffer, python-command python-python-command)
8676 (python-default-template, python-imports, python-indent-index)
8677 (python-indent-list, python-indent-list-length)
8678 (python-mode-running, python-pdbtrack-is-tracking-p)
8679 (python-preoutput-continuation, python-preoutput-leftover)
8680 (python-preoutput-result, python-preoutput-skip-next-prompt)
8681 (python-prev-dir/file, python-recursing)
8682 (python-saved-check-command, python-version-checked)
8683 (python-which-func-length-limit)
8684 (view-return-to-alist): Delete vars.
8685 (python-check-custom-command, python-dotty-syntax-table)
8686 (python-imenu-index-alist, python-indent-current-level)
8687 (python-indent-dedenters, python-indent-levels)
8688 (python-nav-beginning-of-defun-regexp)
8689 (python-nav-list-defun-positions-cache)
8690 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
8691 (python-shell-internal-buffer)
8692 (python-skeleton-available): New vars.
8693 (def-python-skeleton): Delete macro.
8694 (python-skeleton-define): New macro.
8695 (python-define-auxiliary-skeleton, python-rx): New macros.
8696 (python-insert-class): Delete command.
8697 (python-skeleton-class): New command.
8698 (python-insert-def): Delete command.
8699 (python-skeleton-def): New command.
8700 (python-insert-for): Delete command.
8701 (python-skeleton-for): New command.
8702 (python-insert-if): Delete command.
8703 (python-skeleton-if): New command.
8704 (python-insert-try/except, python-insert-try/finally): Delete commands.
8705 (python-skeleton-try): New command.
8706 (python-insert-while): Delete command.
8707 (python-skeleton-while): New command.
8708 (python-backspace): Delete command.
8709 (python-indent-dedent-line-backspace): New command.
8710 (python-electric-colon): Delete command.
8711 (python-indent-electric-colon): New command.
8712 (python-guess-indent): Delete command.
8713 (python-indent-guess-indent-offset): New command.
8714 (python-shift-left): Delete command.
8715 (python-indent-shift-left): New command.
8716 (python-shift-right): Delete command.
8717 (python-indent-shift-right): New command.
8718 (python-find-function): Delete command.
8719 (python-nav-jump-to-defun): New command.
8720 (python-next-statement): Delete command.
8721 (python-nav-forward-sentence): New command.
8722 (python-previous-statement): Delete command.
8723 (python-nav-backward-sentence): New command.
8724 (python-fill-paragraph): Delete command.
8725 (python-fill-paragraph-function): New command.
8726 (python-send-buffer): Delete command.
8727 (python-shell-send-buffer): New command.
8728 (python-send-defun): Delete command.
8729 (python-shell-send-defun): New command.
8730 (python-send-region, python-send-region-and-go): Delete commands.
8731 (python-shell-send-region)
8732 (python-shell-switch-to-shell): New commands.
8733 (python-send-string): Delete command.
8734 (python-shell-send-string): New command.
8735 (python-switch-to-python): Delete command.
8736 (python-shell-switch-to-shell): New command.
8737 (python-describe-symbol): Delete command.
8738 (python-eldoc-at-point): New command.
8739 (python--set-prompt-regexp, python-args-to-list)
8740 (python-after-info-look, python-check-version)
8741 (python-check-comint-prompt, python-find-imports)
8742 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
8743 (python-unload-function, python-expand-template)
8744 (python-maybe-jython, python-preoutput-filter)
8745 (python-pdbtrack-get-source-buffer)
8746 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
8747 (python-pdbtrack-toggle-stack-tracking)
8748 (python-pdbtrack-track-stack-file, python-initial-text)
8749 (python-first-word, python-comment-line-p, python-send-command)
8750 (python-setup-brm, python-sentinel, python-set-proc)
8751 (python-skip-out, python-input-filter, python-outdent-p)
8752 (python-outline-level, python-backslash-continuation-line-p)
8753 (python-end-of-block, python-end-of-statement, python-mark-block)
8754 (python-beginning-of-block, python-beginning-of-statement)
8755 (python-blank-line-p, python-beginning-of-string)
8756 (python-open-block-statement-p): Delete functions.
8757 (python-indent-line, python-indent-line-1): Delete functions.
8758 (python-indent-line): New function.
8759 (python-indentation-levels): Delete function.
8760 (python-indent-calculate-levels): New function.
8761 (python-proc): Delete function.
8762 (python-shell-get-process): New function.
8763 (python-send-receive): Delete function.
8764 (python-shell-send-string-no-output): New function.
8765 (python-module-path): Delete function.
8766 (python-ffap-module-path): New function.
8767 (python-completion-at-point)
8768 (python-symbol-completions): Delete functions.
8769 (python-completion-complete-at-point): New function.
8770 (python-load-file): Delete function.
8771 (python-shell-send-file): New function.
8772 (python-calculate-indentation): Delete function.
8773 (python-indent-calculate-indentation): New function.
8774 (python-skip-comments/blanks): Delete function.
8775 (python-util-forward-comment): New function.
8776 (python-continuation-line-p): Delete function.
8777 (python-info-continuation-line-p): New function.
8778 (python-which-func, python-current-defun): Delete function.
8779 (python-info-current-defun): New function.
8780 (python-beginning-of-defun): Delete function.
8781 (python-nav-beginning-of-defun): New function.
8782 (python-close-block-statement-p)
8783 (python-block-end-p): Delete function.
8784 (python-info-closing-block): New function.
8785 (python-comint-output-filter-function)
8786 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
8787 (python-fill-comment, python-fill-decorator, python-fill-paren)
8788 (python-fill-string, python-imenu-make-element-tree)
8789 (python-imenu-make-tree, python-imenu-tree-assoc)
8790 (python-indent-context, python-indent-dedent-line)
8791 (python-indent-line-function)
8792 (python-indent-post-self-insert-function)
8793 (python-indent-toggle-levels)
8794 (python-info-assignment-continuation-line-p)
8795 (python-info-beginning-of-backlash)
8796 (python-info-block-continuation-line-p)
8797 (python-info-closing-block-message)
8798 (python-info-line-ends-backslash-p)
8799 (python-info-looking-at-beginning-of-defun)
8800 (python-info-ppss-context, python-info-ppss-context-type)
8801 (python-nav-list-defun-positions, python-nav-read-defun)
8802 (python-nav-sentence-end, python-nav-sentence-start)
8803 (python-pdbtrack-comint-output-filter-function)
8804 (python-pdbtrack-set-tracked-buffer)
8805 (python-shell-calculate-exec-path)
8806 (python-shell-calculate-process-environment)
8807 (python-shell-completion--do-completion-at-point)
8808 (python-shell-completion--get-completions)
8809 (python-shell-completion-complete-at-point)
8810 (python-shell-completion-complete-or-indent)
8811 (python-shell-get-or-create-process)
8812 (python-shell-get-process-name)
8813 (python-shell-internal-get-or-create-process)
8814 (python-shell-internal-get-process-name)
8815 (python-shell-internal-send-string, python-shell-make-comint)
8816 (python-shell-parse-command, python-shell-send-setup-code)
8817 (python-skeleton-add-menu-items)
8818 (python-util-clone-local-variables, python-util-position)
8819 (run-python-internal, python-indentation-levels)
8820 (python-nav-beginning-of-defun)
8821 (python-completion-complete-at-point): New functions.
8822 (run-python): Change arguments. New API requirements.
8823
8824 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
8825
8826 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
8827 (bug#11649).
8828
8829 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
8830 (macroexp--expand-all): Use it.
8831
8832 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
8833 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
8834 Use `cl-function' instead.
8835
8836 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
8837
8838 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
8839 Suggested by Stefan Monnier while discussing bug#11657.
8840
8841 2012-06-14 Sam Steingold <sds@gnu.org>
8842
8843 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
8844
8845 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
8846
8847 * play/doctor.el (doctor-doc): Remove parameter and use
8848 doctor-sent instead of sent.
8849 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
8850
8851 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8852
8853 * files.el: Require cl-lib.
8854 (file-name-non-special): Replace case -> cl-case.
8855
8856 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
8857
8858 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
8859 mapping from #' to function*.
8860
8861 2012-06-13 Chong Yidong <cyd@gnu.org>
8862
8863 * mouse.el (mouse-drag-track): Do not set the mark if the user
8864 releases the mouse without selecting anything (Bug#11588).
8865
8866 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8867
8868 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
8869 as well (bug#11646).
8870
8871 * loadup.el: Count byte-code functions as well.
8872
8873 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
8874 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
8875
8876 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
8877 (bug#11649). Add cl-defun and cl-defmacro.
8878
8879 2012-06-13 Drew Adams <drew.adams@oracle.com>
8880
8881 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
8882 Fix last change.
8883
8884 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
8885
8886 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
8887 Otherwise, it blocks in batch mode.
8888
8889 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
8890
8891 * help-mode.el (bookmark-make-record-default): Declare.
8892
8893 2012-06-13 Chong Yidong <cyd@gnu.org>
8894
8895 * emacs-lisp/package.el (list-packages): Compute a list of
8896 packages that are newly-available since the last list-packages
8897 invocation.
8898 (package-menu--new-package-list): New var.
8899 (package-menu--generate, package-menu--print-info)
8900 (package-menu--status-predicate, package-menu-mark-install):
8901 Handle new status label "new".
8902
8903 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
8904
8905 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
8906 conversion to backquotes.
8907
8908 2012-06-12 Chong Yidong <cyd@gnu.org>
8909
8910 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
8911 Rename from gud-inhibit-global-bindings.
8912
8913 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
8914
8915 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
8916 hook from nxml-glyph-set-hook.
8917
8918 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
8919 declaration.
8920
8921 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
8922
8923 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
8924 Convert to defcustom.
8925
8926 2012-06-12 Drew Adams <drew.adams@oracle.com>
8927
8928 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
8929 New functions.
8930 (help-mode): Use them.
8931
8932 2012-06-11 Glenn Morris <rgm@gnu.org>
8933
8934 * progmodes/fortran.el (fortran-font-lock-keywords-3):
8935 Use preprocessor face for directives.
8936 (fortran-directive-re): Doc fix.
8937
8938 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8939
8940 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
8941 conversion to backquotes (bug#11652).
8942
8943 Fix compiler-expansion of CL's cXXr functions (bug#11673).
8944 * emacs-lisp/cl-lib.el (cl--defalias): New function.
8945 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
8946 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
8947 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
8948 (cl-ninth, cl-tenth): Mark them as inlinable.
8949 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
8950 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
8951 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
8952 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
8953 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
8954 (cl-list*, cl-adjoin): Don't put an autoload manually.
8955 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
8956 (cl--compiler-macro-list*): Add autoload cookie.
8957 (cl--compiler-macro-cXXr): New function.
8958
8959 * help-fns.el (help-fns--compiler-macro): New function extracted from
8960 describe-function-1; follow aliases and use `compiler-macro' property.
8961 (describe-function-1): Use it.
8962
8963 2012-06-11 Chong Yidong <cyd@gnu.org>
8964
8965 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
8966 is uninstalled, if imagemagick is installed.
8967
8968 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
8969
8970 * emacs-lisp/cl-lib.el: Use lexical-binding.
8971 (cl-map-extents, cl-maclisp-member): Remove.
8972 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
8973 (cl--set-substring, cl--block-wrapper, cl--block-throw)
8974 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
8975 * emacs-lisp/cl-extra.el: Use lexical-binding.
8976 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
8977 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
8978 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
8979 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
8980 * emacs-lisp/cl-seq.el: Use lexical-binding.
8981 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
8982 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
8983 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
8984 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
8985 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
8986 CL's internals.
8987
8988 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
8989
8990 Sync with Tramp 2.2.6-pre.
8991
8992 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
8993 `print-length' and `print-level' to nil, in order to avoid
8994 truncation. Reported by Christopher Schmidt
8995 <christopher@ristopher.com>.
8996
8997 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
8998
8999 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
9000 New defmacro.
9001 (tramp-compat-copy-directory): Add optional argument
9002 COPY-CONTENTS. It is not handled yet.
9003
9004 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
9005 (tramp-ftp-file-name-p): Simplify.
9006
9007 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
9008 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
9009 connection vector.
9010
9011 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
9012 (tramp-methods): Do not use `tramp-password-end-of-line'.
9013 (tramp-completion-function-alist-putty): Handle UNIX case.
9014 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
9015 (tramp-do-file-attributes-with-stat)
9016 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
9017 gid as real numbers. They could run out of integer range on cygwin.
9018 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
9019 (tramp-sh-handle-expand-file-name): Handle hops.
9020 (tramp-open-connection-setup-interactive-shell):
9021 Use `tramp-cleanup'. Move check for busyboxes ...
9022 (tramp-find-shell): ... here. Simplify implementation.
9023 Set "remote-shell" property also for alternative shells.
9024 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
9025 If failing, a regular file would be written otherwise.
9026 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
9027 (tramp-find-inline-encoding): Cache the coding commands in the
9028 process cache. Apply test command on the remote side, if defined.
9029 (tramp-find-inline-compress): Cache the compress commands in the
9030 process cache.
9031 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
9032 when requested. Handle hops.
9033 (tramp-current-connection): New defvar.
9034 (tramp-maybe-open-connection): Use `tramp-cleanup'.
9035 Throw `suppress', if there was a failed connection shortly before.
9036 Handle user interrupt. (Bug#10187)
9037 (tramp-get-inline-compress, tramp-get-inline-coding):
9038 Read connection properties from the process cache.
9039
9040 * net/tramp-smb.el (tramp-smb-server-version)
9041 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
9042 New defconsts.
9043 (tramp-smb-prompt): Extend for powershell prompt.
9044 (tramp-smb-file-name-handler-alist): Add handlers for
9045 `process-file', `shell-command' and `start-file-process'.
9046 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
9047 (tramp-smb-winexe-shell-command-switch): New defcustoms.
9048 (tramp-smb-file-name-p): Simplify.
9049 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
9050 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
9051 (tramp-smb-shell-quote-argument): New defuns.
9052 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
9053 Implement using "tar". By this, time-stamps are preserved.
9054 (tramp-smb-handle-copy-file): Handle also the case of directories.
9055 (tramp-smb-do-file-attributes-with-stat)
9056 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
9057 Use `tramp-get-connection-buffer').
9058 (tramp-smb-handle-rename-file): Use "rename", when source and
9059 target are on the same share.
9060 (tramp-smb-maybe-open-connection): Handle wrong passwords.
9061 Use `tramp-smb-server-version'.
9062 (tramp-smb-wait-for-output): Remove prompt.
9063
9064 * net/tramp.el (top): Require 'cl.
9065 (tramp-methods, tramp-rsh-end-of-line):
9066 Remove `tramp-password-end-of-line' from docstring.
9067 (tramp-save-ad-hoc-proxies): New defcustom.
9068 (tramp-completion-function-alist): Adapt docstring.
9069 (tramp-default-password-end-of-line): Remove defcustom.
9070 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
9071 (tramp-user-regexp, tramp-file-name-regexp-unified)
9072 (tramp-file-name-regexp-url): Extend regexp by hop separator.
9073 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
9074 (tramp-remote-file-name-spec-regexp): New defconst.
9075 (tramp-file-name-structure): Extend structure for hops.
9076 (tramp-get-method-parameter): Move up.
9077 (tramp-file-name-p, tramp-dissect-file-name)
9078 (with-parsed-tramp-file-name): Handle hops.
9079 (tramp-file-name-hop): New defun.
9080 (tramp-make-tramp-file-name): New optional arg HOP.
9081 (tramp-message-show-progress-reporter-message): New defvar.
9082 (tramp-with-progress-reporter): Use it. We cannot use
9083 `tramp-message-show-message' here, because this suppresses also
9084 error buffers.
9085 (tramp-error-with-buffer): Suppress buffer view, if
9086 `tramp-message-show-message' is nil.
9087 Use `tramp-get-connection-buffer'.
9088 (tramp-cleanup): New defun.
9089 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
9090 (tramp-file-name-handler): If `debug-on-error' is set, propagate
9091 an error unchanged.
9092 (tramp-completion-handle-file-name-all-completions): Handle hops.
9093 Fix an error when called from ido.
9094 (tramp-completion-dissect-file-name): Use better local variable
9095 name. Add hop to the vector.
9096 (tramp-handle-insert-file-contents): Use progress-reporter for the
9097 whole scenario.
9098 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
9099 to `t'.
9100 (tramp-check-for-regexp): Simplify search.
9101 (tramp-enter-password): Remove it. Move implementation ...
9102 (tramp-action-password): ... here.
9103 (tramp-mode-string-to-int, tramp-local-host-p)
9104 (tramp-make-tramp-temp-file, tramp-read-passwd)
9105 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
9106 Set tramp-autoload cookie.
9107
9108 * net/trampver.el: Update release number.
9109
9110 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9111 Michael Albinus <michael.albinus@gmx.de>
9112
9113 * net/tramp.el (tramp-set-completion-function): Fix docstring.
9114 (tramp-parse-group, tramp-parse-file)
9115 (tramp-parse-shostkeys-sknownhosts): New defuns.
9116 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
9117 (tramp-parse-shosts-group, tramp-parse-sconfig)
9118 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
9119 (tramp-parse-sknownhosts, tramp-parse-hosts)
9120 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
9121 Use them.
9122 (tramp-parse-passwd-group, tramp-parse-netrc-group)
9123 (tramp-parse-putty-group): Don't narrow.
9124 (tramp-parse-putty): Make a loop.
9125 (tramp-file-name-handler): Catch the `suppress' signal.
9126
9127 2012-06-11 Chong Yidong <cyd@gnu.org>
9128
9129 * image.el (imagemagick-register-types): Put the ImageMagick entry
9130 at the end of image-type-file-name-regexps.
9131
9132 2012-06-11 Johan Bockgård <bojohan@gnu.org>
9133
9134 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
9135 (pcase, pcase-let*, pcase-dolist): Use them.
9136
9137 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9138
9139 * emacs-lisp/pcase.el (pcase--let*): New function.
9140 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
9141 (pcase--expand): Use macroexp-let².
9142
9143 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9144
9145 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
9146 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
9147 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
9148 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
9149 * emacs-lisp/derived.el: Use pcase instead of `cl'.
9150 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
9151
9152 2012-06-10 Glenn Morris <rgm@gnu.org>
9153
9154 * mail/rmail.el (rmail-yank-current-message): Leave point at
9155 correct position. (Bug#11660)
9156
9157 2012-06-10 Chong Yidong <cyd@gnu.org>
9158
9159 * allout-widgets.el: Fix code header.
9160
9161 2012-06-10 Chong Yidong <cyd@gnu.org>
9162
9163 * cus-edit.el (customize-changed-options-previous-release):
9164 Bump to 24.1.
9165
9166 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
9167
9168 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
9169
9170 2012-06-09 Chong Yidong <cyd@gnu.org>
9171
9172 * ebuff-menu.el (electric-buffer-list): Preserve header line.
9173
9174 2012-06-09 Martin Rudalics <rudalics@gmx.at>
9175
9176 * window.el (special-display-popup-frame): Don't use
9177 window--display-buffer (Bug#11651).
9178
9179 2012-06-09 Eli Zaretskii <eliz@gnu.org>
9180
9181 Fix parallel builds: make sure loaddefs.el is not being written
9182 while Lisp files are compiled.
9183 (compile): Don't depend on 'mh-autoloads'.
9184 (compile-CMD, compile-SH): Depend on 'autoloads'.
9185 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
9186
9187 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
9188
9189 2012-06-09 Chong Yidong <cyd@gnu.org>
9190
9191 * face-remap.el (face-remap-add-relative, face-remap-set-base)
9192 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
9193 Doc fixes (Bug#11225).
9194
9195 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9196
9197 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
9198 a function if there's a clear indication that it has a compiler-macro.
9199 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
9200 (macro-declarations-alist): Add arglist to declaration functions.
9201 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
9202 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
9203 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
9204 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
9205 Also add autoload to find the compiler macro.
9206 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
9207 (cl--compiler-macro-member, cl--compiler-macro-assoc)
9208 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
9209 (cl--compiler-macro-get): New functions, replacing calls to
9210 cl-define-compiler-macro.
9211 (cl-typep) [compiler-macro]: Use macroexp-let².
9212
9213 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
9214
9215 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
9216 string properly, fixes Bug#11473.
9217
9218 2012-06-08 Chong Yidong <cyd@gnu.org>
9219
9220 * faces.el (set-face-attribute): Doc fix.
9221 (modify-face): Don't use :bold and :italic.
9222 (error, warning, success): Tweak definitions.
9223
9224 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
9225 (custom-modified, custom-set, custom-changed, custom-themed)
9226 (custom-saved, custom-button, custom-button-mouse)
9227 (custom-button-pressed, custom-state, custom-comment-tag)
9228 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
9229 (custom-group-subtitle): Use new-style face specs.
9230 (custom-invalid-face, custom-rogue-face, custom-modified-face)
9231 (custom-set-face, custom-changed-face, custom-saved-face)
9232 (custom-button-face, custom-button-pressed-face)
9233 (custom-documentation-face, custom-state-face)
9234 (custom-comment-face, custom-comment-tag-face)
9235 (custom-variable-tag-face, custom-variable-button-face)
9236 (custom-face-tag-face, custom-group-tag-face-1)
9237 (custom-group-tag-face): Remove obsolete face alias.
9238
9239 * epa.el (epa-validity-high, epa-validity-medium)
9240 (epa-validity-low, epa-mark, epa-field-name, epa-string)
9241 (epa-field-name, epa-field-body):
9242 * font-lock.el (font-lock-comment-face, font-lock-string-face)
9243 (font-lock-keyword-face, font-lock-builtin-face)
9244 (font-lock-function-name-face, font-lock-variable-name-face)
9245 (font-lock-type-face, font-lock-constant-face):
9246 * ido.el (ido-first-match, ido-only-match, ido-subdir)
9247 (ido-virtual, ido-indicator, ido-incomplete-regexp):
9248 * speedbar.el (speedbar-button-face, speedbar-file-face)
9249 (speedbar-directory-face, speedbar-tag-face)
9250 (speedbar-selected-face, speedbar-highlight-face)
9251 (speedbar-separator-face):
9252 * whitespace.el (whitespace-newline, whitespace-space)
9253 (whitespace-hspace, whitespace-tab, whitespace-trailing)
9254 (whitespace-line, whitespace-space-before-tab)
9255 (whitespace-space-after-tab, whitespace-indentation)
9256 (whitespace-empty):
9257 * emulation/cua-base.el (cua-global-mark):
9258 * eshell/em-prompt.el (eshell-prompt):
9259 * net/newst-plainview.el (newsticker-new-item-face)
9260 (newsticker-old-item-face, newsticker-immortal-item-face)
9261 (newsticker-obsolete-item-face, newsticker-date-face)
9262 (newsticker-statistics-face, newsticker-default-face):
9263 * net/newst-reader.el (newsticker-feed-face)
9264 (newsticker-extra-face, newsticker-enclosure-face):
9265 * net/newst-treeview.el (newsticker-treeview-face)
9266 (newsticker-treeview-new-face, newsticker-treeview-old-face)
9267 (newsticker-treeview-immortal-face)
9268 (newsticker-treeview-obsolete-face)
9269 (newsticker-treeview-selection-face):
9270 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
9271 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
9272 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
9273 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
9274 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
9275 (nxml-outline-active-indicator, nxml-outline-ellipsis):
9276 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
9277 (mpuz-text):
9278 * progmodes/vera-mode.el (vera-font-lock-number)
9279 (vera-font-lock-function, vera-font-lock-interface):
9280 * textmodes/table.el (table-cell): Use new-style face specs, and
9281 don't use the old :bold and :italic attributes.
9282
9283 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
9284 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
9285 (ebrowse-member-class, ebrowse-progress): Likewise.
9286 (ebrowse-tree-mark-face, ebrowse-root-class-face)
9287 (ebrowse-file-name-face, ebrowse-default-face)
9288 (ebrowse-member-attribute-face, ebrowse-member-class-face)
9289 (ebrowse-progress-face): Remove obsolete faces.
9290
9291 * progmodes/flymake.el (flymake-errline, flymake-warnline):
9292 Inherit from error and warning faces respectively.
9293
9294 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
9295 Likewise.
9296 (flyspell-incorrect-face, flyspell-duplicate-face):
9297 Remove obsolete aliases.
9298
9299 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
9300
9301 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9302 Avoid infloop.
9303
9304 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9305
9306 * startup.el (argv, argi): Make lexically scoped.
9307 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
9308 * emacs-lisp/cl-macs.el: Use lexical-binding.
9309 Rename cl-bind-* to cl--bind-*.
9310 * files.el: Don't require `cl' since it doesn't use it.
9311 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
9312
9313 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9314
9315 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
9316 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
9317 instead of calling external sort utility.
9318 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
9319
9320 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9321
9322 * descr-text.el (describe-char): Mention how to insert the
9323 character, if the current input method doesn't support it.
9324 See the discussion in this thread for the details:
9325 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
9326
9327 2012-06-08 Sam Steingold <sds@gnu.org>
9328
9329 * bindings.el (global-map): Bind XF86Forward to next-buffer and
9330 XF86Back to previous-buffer.
9331 (minibuffer-local-map): Bind them to next-history-element and
9332 previous-history-element respectively.
9333 * help-mode.el (help-mode-map): Bind them to help-go-forward and
9334 help-go-back respectively.
9335 * info.el (Info-mode-map): Bind them to Info-history-forward and
9336 Info-history-back respectively.
9337 These are the keys next to Up on the ThinkPad keyboard.
9338
9339 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9340
9341 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
9342 * emacs-lisp/cl-macs.el: Provide itself.
9343 (cl--labels-convert-cache): New var.
9344 (cl--labels-convert): New function.
9345 (cl-flet, cl-labels): New implementation with new semantics, relying on
9346 lexical-binding.
9347 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
9348 (cl-closure-vars, cl--function-convert-cache)
9349 (cl--function-convert): Move from cl-macs.el.
9350 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
9351 rename by removing the "cl-" prefix.
9352 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
9353
9354 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9355
9356 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
9357 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
9358 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
9359 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
9360 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
9361 (cl-hash-table-count): Add old compatibility aliases.
9362
9363 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
9364 Use macroexpand-all-environment instead.
9365 (cl--old-macroexpand): New var.
9366 (cl--sm-macroexpand): New function.
9367 (cl-symbol-macrolet): Use it during macro expansion.
9368 (cl--function-convert-cache): New var.
9369 (cl--function-convert): New function, extracted from
9370 cl-macroexpand-all.
9371 (cl-lexical-let): Use it.
9372
9373 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
9374 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
9375 (cl-member): Remove old alias.
9376
9377 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
9378 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
9379 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
9380 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
9381 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
9382 (cl-macroexpand-cmacs): Remove var.
9383 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
9384 Use macroexpand-all instead.
9385
9386 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9387
9388 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
9389 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
9390 (macroexp-copyable-p): New functions and macros.
9391 * emacs-lisp/edebug.el (edebug-unwrap):
9392 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
9393 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
9394 (pcase--let*): Remove.
9395 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
9396 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
9397 macroexp-const-p instead.
9398 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
9399
9400 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
9401 instead of "cl-" for internal definitions. Use macroexp-const-p.
9402 (cl-old-bc-file-form): Remove var.
9403 (cl-const-exprs-p): Remove fun.
9404 (cl-labels, cl-macrolet): Use backquote.
9405 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
9406 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
9407 (cl-define-setf-expander): Rename from cl-define-setf-method.
9408 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
9409
9410 * international/mule-cmds.el: Don't require CL.
9411 (view-hello-file): Don't use `letf'.
9412
9413 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9414
9415 * tmm.el (tmm-prompt): Use string-prefix-p.
9416 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
9417 (tmm-add-prompt): Use minibuffer-completion-help.
9418 (tmm-delete-map): Remove.
9419
9420 * subr.el (kbd): Make it its own function.
9421
9422 2012-06-07 Stefan Merten <smerten@oekonux.de>
9423
9424 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
9425 Silence compiler warnings. Fix versions.
9426 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
9427 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
9428 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
9429 (rst-package-emacs-version-alist): Correct Emacs version to
9430 represent major merge with upstream.
9431 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
9432
9433 2012-06-06 Glenn Morris <rgm@gnu.org>
9434
9435 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
9436 Only print environment variables if set.
9437
9438 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9439
9440 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
9441 (macroexp--cons): Rename from maybe-cons.
9442 (macroexp--accumulate): Rename from macroexp-accumulate.
9443 (macroexp--all-forms): Rename from macroexpand-all-forms.
9444 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
9445 (macroexp--expand-all): Rename from macroexpand-all-1.
9446
9447 2012-06-06 Sam Steingold <sds@gnu.org>
9448
9449 * calendar/calendar.el (calendar-in-read-only-buffer):
9450 Call `special-mode' to enable the standard read-only keybindings.
9451
9452 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9453
9454 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
9455 with "loading" messages (bug#11635).
9456
9457 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
9458
9459 * files.el (enable-remote-dir-locals): New option.
9460 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
9461
9462 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9463 Ensure, that the temp directory is local.
9464
9465 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
9466 `temporary-file-directory'.
9467
9468 * progmodes/python.el (python-send-region): Ensure, that the
9469 temporary file is created also in the remote case.
9470
9471 2012-06-06 Glenn Morris <rgm@gnu.org>
9472
9473 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
9474 (vc-rcs-update-changelog): Use it.
9475
9476 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
9477
9478 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
9479 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
9480 (vc-sccs-diff): Replace use of the external vcdiff script.
9481
9482 2012-06-05 Glenn Morris <rgm@gnu.org>
9483
9484 * ledit.el: Move to obsolete/.
9485
9486 2012-06-05 Sam Steingold <sds@gnu.org>
9487
9488 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
9489 patch (Bug#11140).
9490
9491 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9492
9493 * emacs-lisp/cust-print.el: Move to obsolete.
9494
9495 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
9496 compiler-macro expansion.
9497
9498 Add native compiler-macro support.
9499 * emacs-lisp/macroexp.el (macroexpand-all-1):
9500 Support compiler-macros directly. Properly follow aliases and apply
9501 the compiler macros more thoroughly.
9502 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
9503 macroexpand now properly follows aliases.
9504 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
9505 (cl-compiler-macroexpand): Use new prop.
9506 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
9507
9508 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
9509
9510 2012-06-05 Martin Rudalics <rudalics@gmx.at>
9511
9512 * window.el (get-lru-window, get-mru-window, get-largest-window):
9513 New argument NOT-SELECTED to avoid picking the selected window.
9514 (window--display-buffer-1, window--display-buffer-2): Replace by
9515 new function window--display-buffer
9516 (display-buffer-same-window, display-buffer-reuse-window)
9517 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9518 Use window--display-buffer.
9519 (display-buffer-use-some-window): Remove temporary dedication
9520 hack by calling get-lru-window and get-largest-window with
9521 NOT-SELECTED argument non-nil. Call window--display-buffer.
9522
9523 2012-06-05 Glenn Morris <rgm@gnu.org>
9524
9525 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
9526 Replace external vcdiff script.
9527
9528 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
9529
9530 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
9531
9532 2012-06-04 Chong Yidong <cyd@gnu.org>
9533
9534 * image.el (imagemagick-types-inhibit): Revert last change.
9535 Add INFO and M.
9536 (imagemagick-enabled-types): Remove CIN and EPS*.
9537
9538 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
9539
9540 * emacs-lisp/cl-lib.el: Rename from cl.el.
9541 * emacs-lisp/cl.el: New compatibility file.
9542 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
9543 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
9544 to obey the "cl-" prefix.
9545 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
9546
9547 2012-06-03 Glenn Morris <rgm@gnu.org>
9548
9549 * emacs-lisp/authors.el (authors-aliases): Addition.
9550
9551 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
9552 Fix :version.
9553
9554 2012-06-03 Stefan Merten <smerten@oekonux.de>
9555
9556 * textmodes/rst.el: Add comments.
9557 (rst-transition, rst-adornment): New faces.
9558 (rst-adornment-faces-alist): Make default safe to reevaluate.
9559 Fixes
9560 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
9561 Improve customization tags.
9562 (rst-define-level-faces): Clarify meaning.
9563
9564 2012-06-03 Chong Yidong <cyd@gnu.org>
9565
9566 * progmodes/compile.el (compilation-mode-line-fail)
9567 (compilation-mode-line-run, compilation-mode-line-exit):
9568 New faces.
9569 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
9570
9571 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
9572
9573 * progmodes/which-func.el (which-func-update-ediff-windows):
9574 New function. Use it in ediff-select-hook (Bug#11478).
9575
9576 2012-06-03 Chong Yidong <cyd@gnu.org>
9577
9578 * bindings.el: Remove explicit help text from format-mode-line.
9579 It is now supplied by mode-line-default-help-echo.
9580 (mode-line-front-space, mode-line-end-spaces)
9581 (mode-line-misc-info): New variables.
9582 (mode-line-modes, mode-line-position): Move the default value to
9583 the variable definition.
9584 (mode-line-default-help-echo): New defcustom.
9585 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
9586 (mode-line-modified-help-echo): New functions.
9587 (mode-line-mule-info, mode-line-modified): Use them.
9588 (mode-line-eol-desc, propertized-buffer-identification):
9589 Consistency fixes for help text.
9590 (mode-line-coding-system-map): Allow using mouse-3 to invoke
9591 set-buffer-file-coding-system (Bug#289).
9592 (mode-line-mule-info-help-echo): Update help text.
9593
9594 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9595
9596 * simple.el (execute-extended-command): Set real-this-command
9597 (bug#11506).
9598
9599 2012-06-02 Chong Yidong <cyd@gnu.org>
9600
9601 Remove incorrect uses of "modeline" in comments, docstrings, and
9602 function/variable names (Bug#10329).
9603
9604 * cus-edit.el (mode-line):
9605 * dframe.el (dframe-mouse-hscroll):
9606 * emacs-lisp/re-builder.el:
9607 * emacs-lisp/easy-mmode.el (define-minor-mode):
9608 * frame.el (set-frame-name):
9609 * help.el (lookup-minor-mode-from-indicator):
9610 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
9611 * progmodes/cc-cmds.el (c-toggle-auto-newline)
9612 (c-toggle-hungry-state):
9613 * progmodes/antlr-mode.el (antlr-language-alist):
9614 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
9615 * progmodes/vhdl-mode.el (vhdl-mode):
9616 * progmodes/which-func.el (which-func, which-func-cleanup-function):
9617 * term/ns-win.el (ns-face-at-pos):
9618 * term/sup-mouse.el (sup-mouse-report):
9619 * textmodes/flyspell.el (flyspell-mode-line-string):
9620 * textmodes/ispell.el (ispell-highlight-face):
9621 * textmodes/reftex-global.el:
9622 * vc/vc-arch.el (vc-arch-mode-line-string):
9623 * vc/vc-cvs.el (vc-cvs-mode-line-string):
9624 * vc/vc-git.el (vc-git-mode-line-string):
9625 * vc/vc-hooks.el (vc-display-status)
9626 (vc-default-mode-line-string):
9627 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
9628
9629 * ansi-color.el (ansi-color-faces-vector): Change default faces.
9630
9631 * dired.el (dired-sort-set-mode-line): Rename from
9632 dired-sort-set-modeline. All callers changed.
9633
9634 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
9635 eshell-status-in-modeline.
9636
9637 * foldout.el (foldout-mode-line-string): Rename from
9638 foldout-modeline-string. All callers changed.
9639 (foldout-update-mode-line): Rename from foldout-update-modeline.
9640
9641 * subr.el (redraw-modeline): Make into obsolete alias.
9642
9643 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
9644 timeclock-modeline-display. Make old name an alias.
9645 (timeclock-update-mode-line): Likewise. All callers changed.
9646 (timeclock-mode-line-display): No need to check before using
9647 add-hook.
9648 (timeclock-relative, timeclock-day-over-hook)
9649 (timeclock-use-elapsed, timeclock-mode-string)
9650 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
9651
9652 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
9653 crisp-mode-modeline-string.
9654
9655 * play/solitaire.el (solitaire-build-mode-line): Rename from
9656 solitaire-build-modeline. All callers changed.
9657
9658 * play/zone.el (zone-hiding-mode-line): Rename from
9659 zone-hiding-modeline. All callers changed.
9660 (zone): Remove unusued `modeline-hidden-level' property.
9661
9662 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
9663 xscheme-modeline-initialize. All callers changed.
9664
9665 * strokes.el (strokes-lighter): Rename from
9666 strokes-modeline-string.
9667
9668 * textmodes/sgml-mode.el (html-face-tag-alist)
9669 (html-tag-face-alist): Use mode-line face instead of obsolete
9670 alias modeline.
9671
9672 2012-06-02 Stefan Merten <smerten@oekonux.de>
9673
9674 * textmodes/rst.el: Always require `cl'.
9675 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
9676
9677 2012-06-02 Chong Yidong <cyd@gnu.org>
9678
9679 * image.el (imagemagick-enabled-types): Rename from
9680 imagemagick-types-enable. Add many more types.
9681 (imagemagick-types-inhibit): Change default to nil.
9682 (imagemagick-filter-types): Caller changed.
9683
9684 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
9685
9686 * emacs-lisp/cl-macs.el: Use backquotes.
9687 (cl-transform-function-property): Use eval-and-compile rather than
9688 abusing `require'.
9689 (defstruct): Use declare-function instead of with-no-warnings.
9690
9691 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
9692 (byte-compile-output-docform): Re-add the print-circle bindings.
9693 (byte-compile-fix-header): Use #$ just because it's shorter.
9694 (byte-compile-output-file-form): Remove defun/defmacro.
9695
9696 2012-06-01 Martin Rudalics <rudalics@gmx.at>
9697
9698 * simple.el (choose-completion): Remove now obsolete binding for
9699 owindow.
9700
9701 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
9702
9703 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
9704 in order to avoid "Stack overflow in regexp matcher".
9705
9706 2012-05-31 Glenn Morris <rgm@gnu.org>
9707
9708 * image.el: For clarity, call imagemagick-register-types at
9709 top-level, rather than relying on a custom :initialize.
9710 (imagemagick-types-enable): New option. (Bug#11557)
9711 (imagemagick-filter-types): New function. (Bug#7406)
9712 (imagemagick-register-types): Use imagemagick-filter-types.
9713 If disabling support, remove elements altogether rather
9714 than using an impossible regexp.
9715 (imagemagick-types-inhibit): Give it the default init function.
9716
9717 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
9718
9719 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
9720 Handle arbitrary file name lengths (Bug#11585).
9721
9722 2012-05-31 Martin Rudalics <rudalics@gmx.at>
9723
9724 * desktop.el (desktop-read): Clear previous and next buffers for
9725 all windows and bury *Messages* buffer (bug#11556).
9726
9727 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
9728
9729 Add `declare' for `defun'. Align `defmacro's with it.
9730 * emacs-lisp/easy-mmode.el (define-minor-mode)
9731 (define-globalized-minor-mode): Don't autoload the var definitions.
9732 * emacs-lisp/byte-run.el: Use lexical-binding.
9733 (defun-declarations-alist, macro-declarations-alist): New vars.
9734 (defmacro, defun): Use them.
9735 (make-obsolete, define-obsolete-function-alias)
9736 (make-obsolete-variable, define-obsolete-variable-alias):
9737 Use `declare'.
9738 (macro-declaration-function): Mark obsolete.
9739 * emacs-lisp/autoload.el: Use lexical-binding.
9740 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
9741
9742 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9743
9744 * textmodes/ispell.el (ispell-with-no-warnings):
9745 Define as a macro.
9746 (ispell-kill-ispell, ispell-change-dictionary):
9747 Use `called-interactively-p' for Emacs instead of obsolete
9748 `interactive-p'.
9749
9750 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9751
9752 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
9753 (macro-declaration-function): Move var from C code.
9754 (macro-declaration-function): Define function with defalias.
9755 * emacs-lisp/macroexp.el (macroexpand-all-1):
9756 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
9757 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
9758 defun/defmacro any more.
9759 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
9760 Provide fallback for unknown arglist.
9761 (byte-compile-arglist-warn): Change calling convention.
9762 (byte-compile-output-file-form): Move print-vars binding.
9763 (byte-compile-output-docform): Simplify accordingly.
9764 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
9765 (byte-compile-defmacro-declaration): Remove.
9766 (byte-compile-file-form-defmumble): Generalize to defalias.
9767 (byte-compile-output-as-comment): Return byte-positions.
9768 Simplify callers accordingly.
9769 (byte-compile-lambda): Use `assert'.
9770 (byte-compile-defun, byte-compile-defmacro): Remove.
9771 (byte-compile-file-form-defalias):
9772 Use byte-compile-file-form-defmumble.
9773 (byte-compile-defalias-warn): Remove.
9774
9775 2012-05-29 Stefan Merten <smerten@oekonux.de>
9776
9777 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
9778 possible. Fix authors. Improve comments. Improve loading of `cl'.
9779
9780 (rst-mode-abbrev-table): Merge definition.
9781 (rst-mode): Make sure `font-lock-defaults' is buffer local.
9782 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
9783
9784 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
9785
9786 * calendar/icalendar.el
9787 (icalendar-export-region): Export UID properly.
9788
9789 2012-05-29 Leo Liu <sdl.web@gmail.com>
9790 * calendar/icalendar.el (icalendar-import-format):
9791 Add `icalendar-import-format-uid' (Bug#11525).
9792 (icalendar-import-format-uid): New.
9793 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
9794 Export UID.
9795
9796 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
9797
9798 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
9799 different alternative patterns.
9800 (pcase-codegen): Be more careful to preserve identity.
9801 (pcase--u1): Don't forget to mark vars as used.
9802
9803 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
9804 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
9805 (byte-compile-from-buffer): ...rather than here.
9806
9807 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
9808 functions from byte-compile-function-environment.
9809
9810 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
9811
9812 * window.el (window-deletable-p): Avoid deleting the root window
9813 of a frame with an active minibuffer.
9814
9815 2012-05-29 Martin Rudalics <rudalics@gmx.at>
9816
9817 * simple.el (choose-completion): Use quit-window (Bug#11567).
9818
9819 2012-05-29 Chong Yidong <cyd@gnu.org>
9820
9821 * whitespace.el (whitespace-cleanup): Fix usage of
9822 whitespace-empty-at-bob-regexp (Bug#11492).
9823
9824 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
9825
9826 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
9827 revert (Bug#11488).
9828
9829 2012-05-29 Juri Linkov <juri@jurta.org>
9830
9831 * isearch.el (isearch-mode-map): Bind `M-s _' to
9832 `isearch-toggle-symbol'. Bind `M-s c' to
9833 `isearch-toggle-case-fold'.
9834 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
9835 (isearch-forward): Add `M-s _' to the docstring.
9836 (isearch-forward-symbol, isearch-toggle-case-fold)
9837 (isearch-symbol-regexp): New functions. (Bug#11381)
9838
9839 2012-05-29 Juri Linkov <juri@jurta.org>
9840
9841 * isearch.el (isearch-word): Add docstring. (Bug#11381)
9842 (isearch-occur, isearch-search-and-update): If `isearch-word' is
9843 a function, call it to get the regexp.
9844 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
9845 property `isearch-message-prefix' instead of the string "word ".
9846 (isearch-search-fun-default): For the case of `isearch-word',
9847 return a lambda that calls re-search-forward/re-search-backward
9848 with a regexp returned by `word-search-regexp' or by the function
9849 in `isearch-word'.
9850
9851 2012-05-29 Juri Linkov <juri@jurta.org>
9852
9853 * isearch.el (isearch-search-fun-default): New function.
9854 (isearch-search-fun): Move default part to the new function
9855 `isearch-search-fun-default'.
9856 (isearch-search-fun-function): Set the default value to
9857 `isearch-search-fun-default'. (Bug#11381)
9858
9859 * comint.el (comint-history-isearch-end):
9860 Use `isearch-search-fun-default'.
9861 (comint-history-isearch-search): Use `isearch-search-fun-default'
9862 and remove spacial case for `isearch-word'.
9863 (comint-history-isearch-wrap): Remove spacial case for
9864 `isearch-word'.
9865
9866 * hexl.el (hexl-isearch-search-function):
9867 Use `isearch-search-fun-default'.
9868
9869 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
9870 Use `word-search-regexp' for `isearch-word'.
9871
9872 * misearch.el (multi-isearch-search-fun):
9873 Use `isearch-search-fun-default'.
9874
9875 * simple.el (minibuffer-history-isearch-search):
9876 Use `isearch-search-fun-default' and remove spacial case for
9877 `isearch-word'.
9878 (minibuffer-history-isearch-wrap): Remove spacial case for
9879 `isearch-word'.
9880
9881 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
9882 Remove spacial case for `isearch-word'.
9883 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
9884
9885 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9886
9887 Decrease XEmacs incompatibilities.
9888 * textmodes/flyspell.el (flyspell-check-pre-word-p):
9889 Use `string-match'.
9890 (flyspell-delete-region-overlays): Use alternative definition for
9891 XEmacs.
9892 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
9893 (flyspell-word): Use `process-kill-without-query' if XEmacs.
9894 (flyspell-mode-on): Use `interactive-p' if XEmacs.
9895 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
9896 `define-obsolete-face-alias' under XEmacs, but old method.
9897
9898 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
9899 `with-no-warnings' definition or Emacs alias.
9900 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
9901 (ispell-word): Do not use `region-p' if XEmacs.
9902
9903 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9904
9905 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
9906 Check for `ispell-dictionary-base-alist' instead of full
9907 `ispell-dictionary-alist'.
9908 (ispell-init-process): Show spellchecker when starting new Ispell
9909 process.
9910
9911 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
9912
9913 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
9914 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
9915
9916 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
9917
9918 * version.el (motif-version-string, gtk-version-string)
9919 (ns-version-string): Declare.
9920
9921 2012-05-27 Juri Linkov <juri@jurta.org>
9922
9923 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
9924 after the `eval-defun-1' specialcaseing
9925 like in `edebug-eval-defun' (bug#10181).
9926
9927 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
9928 like in `eval-defun-1'.
9929
9930 2012-05-27 Eli Zaretskii <eliz@gnu.org>
9931
9932 * mail/sendmail.el (mail-yank-region):
9933 Recognize rmail-yank-current-message in addition to insert-buffer.
9934 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
9935 a *mail* buffer created through rmail-start-mail with sendmail as
9936 mail-user-agent.
9937
9938 2012-05-27 Chong Yidong <cyd@gnu.org>
9939
9940 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
9941 Default to 256 (Bug#11267).
9942
9943 * help.el (describe-mode): Doc fix.
9944
9945 2012-05-26 Glenn Morris <rgm@gnu.org>
9946
9947 * w32-fns.el (w32-init-info): Remove.
9948 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
9949
9950 * info.el (info-initialize): For self-contained NS builds, put the
9951 included info/ directory at the front. (Bug#2791)
9952
9953 * paths.el (Info-default-directory-list): Make it a defcustom,
9954 mainly so that we can use custom-initialize-delay.
9955
9956 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
9957
9958 * subr.el (buffer-has-markers-at): Mark obsolete.
9959
9960 * subr.el (lambda): Use declare.
9961
9962 * emacs-lisp/lisp-mode.el (lambda):
9963 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
9964
9965 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
9966
9967 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
9968
9969 2012-05-26 Glenn Morris <rgm@gnu.org>
9970
9971 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
9972
9973 2012-05-25 Glenn Morris <rgm@gnu.org>
9974
9975 * paths.el: Remove no-byte-compile.
9976 * loadup.el: No need to load paths.el uncompiled.
9977
9978 * image.el (imagemagick-types-inhibit): Doc fix.
9979
9980 * version.el: Remove no-byte-compile and associated formatting.
9981 * loadup.el: No need to load version.el uncompiled. AFAICS, this
9982 is ancient code from when there was an "inc-vers.el".
9983
9984 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9985
9986 * progmodes/gdb-mi.el: Minor style changes.
9987 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
9988 Turn into minor modes.
9989 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
9990 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
9991 (gdb-shell): Remove unneeded let-binding.
9992 (gdb-get-many-fields): Eliminate O(n²) behavior.
9993
9994 2012-05-25 Eli Zaretskii <eliz@gnu.org>
9995
9996 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
9997 platforms that don't link in fontset.c.
9998
9999 2012-05-25 Juri Linkov <juri@jurta.org>
10000
10001 Use the same diff color scheme as in modern VCSes (bug#10181).
10002
10003 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
10004 to avoid confusion with `diff-added' that now uses green colors.
10005 (diff-removed): Use shades of red.
10006 (diff-added): Use shades of green.
10007 (diff-changed): Leave just the yellow color.
10008 (diff-use-changed-face): New variable.
10009 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
10010 how to highlight context diff changes.
10011 (diff-refine-change): Use shades of yellow.
10012 (diff-refine-removed): New face that uses shades of red.
10013 (diff-refine-added): New face that uses shades of green.
10014 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
10015 `diff-refine-removed' in the call to `smerge-refine-subst'
10016 depending on the value of `diff-use-changed-face'.
10017
10018 * vc/smerge-mode.el (smerge-mine): Use shades of red.
10019 (smerge-other): Use shades of green.
10020 (smerge-base): Use shades of yellow.
10021 (smerge-refined-change): Empty face.
10022 (smerge-refined-removed): New face that uses shades of red.
10023 (smerge-refined-added): New face that uses shades of green.
10024 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
10025 args `props-r' and `props-a', and use them. Doc fix.
10026 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
10027 on its value use different faces `smerge-refined-change',
10028 `smerge-refined-removed', `smerge-refined-added' in the call to
10029 `smerge-refine-subst'.
10030
10031 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
10032 Add face condition `min-colors 88' with shades of red.
10033 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
10034 `min-colors 88' with shades of green.
10035 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
10036 `min-colors 88' with shades of yellow.
10037
10038 2012-05-24 Glenn Morris <rgm@gnu.org>
10039
10040 * paths.el (prune-directory-list, remote-shell-program): Move to...
10041 * files.el (prune-directory-list, remote-shell-program): ...here.
10042 For the latter, delay initialization, prefer ssh, just search PATH.
10043
10044 * paths.el (term-file-prefix): Move to faces.el (the only user).
10045 * faces.el (term-file-prefix): Move here, make it a defcustom.
10046
10047 * paths.el (news-directory, news-path, news-inews-program):
10048 Move to gnus/nnspool.el.
10049
10050 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
10051
10052 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
10053 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
10054 Make the latter a defcustom, with a delayed initialization.
10055
10056 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
10057 These were deleted from Gnus itself late 2010.
10058
10059 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10060
10061 * progmodes/which-func.el (which-func-ff-hook):
10062 Check against user-error, not error.
10063
10064 * emacs-lisp/edebug.el (top): Do not load or set up loading of
10065 cl-specs.el, which no longer exists.
10066
10067 2012-05-22 Glenn Morris <rgm@gnu.org>
10068
10069 * info.el (info-emacs-bug): New command.
10070 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
10071 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
10072
10073 2012-05-21 Glenn Morris <rgm@gnu.org>
10074
10075 * makefile.w32-in (update-subdirs-SH):
10076 * Makefile.in (update-subdirs): Update for moved update-subdirs.
10077
10078 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10079
10080 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
10081
10082 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10083 Simplify Maven regexp, and make sure the file can't start with a space
10084 (bug#11517).
10085
10086 2012-05-21 Glenn Morris <rgm@gnu.org>
10087
10088 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10089 Scrap superfluous subshells.
10090
10091 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10092
10093 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
10094 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
10095
10096 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
10097
10098 * calc/calc.el (calc-ensure-consistent-units): New variable.
10099
10100 * calc/calc-units.el (math-consistent-units-p)
10101 (math-check-unit-consistency): New functions.
10102 (calc-quick-units, calc-convert-units):
10103 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
10104 is non-nil.
10105 (calc-extract-units): Fix typo.
10106
10107 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10108
10109 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
10110
10111 * textmodes/flyspell.el: Commenting style, plus code simplifications.
10112 (flyspell-default-deplacement-commands): Don't spell check after
10113 repeated window/frame switches (e.g. triggered by mouse-movement).
10114 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
10115 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
10116 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
10117 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
10118 Remove unused vars.
10119 (flyspell-get-casechars, flyspell-get-not-casechars):
10120 Simplify; Don't bother removing a ] just to add it back.
10121 * textmodes/ispell.el (ispell-program-name): Use executable-find.
10122
10123 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10124
10125 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
10126 New functions.
10127 (math-function-table): Add support for more C functions.
10128
10129 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10130
10131 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10132 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10133 Protect delay handling for otherchars against empty otherchars.
10134
10135 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10136
10137 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
10138 their respective macro declarations.
10139 * skeleton.el (define-skeleton):
10140 * progmodes/compile.el (define-compilation-mode):
10141 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
10142 (define-ibuffer-filter):
10143 * emacs-lisp/generic.el (define-generic-mode):
10144 * emacs-lisp/easy-mmode.el (define-minor-mode)
10145 (define-globalized-minor-mode):
10146 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
10147 * emacs-lisp/byte-run.el (defsubst):
10148 * custom.el (deftheme): Add doc-string metadata.
10149
10150 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10151
10152 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
10153
10154 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10155
10156 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
10157
10158 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
10159 * emacs-lisp/cl-macs.el: Idem.
10160 * emacs-lisp/cl-specs.el: Remove.
10161
10162 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10163
10164 Minor renaming of internal CL functions and variables.
10165 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
10166 (cl--position): Rename from cl-position.
10167 (cl--delete-duplicates): Rename from cl-delete-duplicates.
10168 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
10169 (cl--random-state): Rename from *random-state*.
10170
10171 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10172
10173 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
10174 parens around the arg list (bug#11499).
10175
10176 2012-05-17 Juri Linkov <juri@jurta.org>
10177
10178 * isearch.el (word-search-regexp, word-search-backward)
10179 (word-search-forward, word-search-backward-lax)
10180 (word-search-forward-lax): Move functions from search.c
10181 (bug#10145, bug#11381).
10182
10183 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10184
10185 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10186 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10187 Delay for otherchars as for normal word components.
10188
10189 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10190
10191 * minibuffer.el (completion--sifn-requote): Fix last change.
10192 (minibuffer-local-must-match-filename-map):
10193 Move define-obsolete-variable-alias before its var.
10194
10195 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10196
10197 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
10198
10199 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
10200 behavior.
10201 (completion--string-equal-p): New function.
10202 (completion--twq-all): Use it to get better assertion failure data.
10203
10204 Only handle ".." and '..' quoting in shell-mode (bug#11466).
10205 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
10206 (shell--requote-argument): New functions.
10207 (shell-completion-vars): Use them.
10208 (shell--parse-pcomplete-arguments): Rename from
10209 shell-parse-pcomplete-arguments.
10210 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
10211 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
10212 Obey comint-file-name-quote-list.
10213
10214 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
10215 (smie-indent-keyword): Use it.
10216
10217 2012-05-14 Stefan Merten <smerten@oekonux.de>
10218
10219 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
10220
10221 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10222
10223 * net/rlogin.el (rlogin-mode-map): Fix last change.
10224
10225 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
10226
10227 * mail/smtpmail.el (smtpmail-send-command): Send the command and
10228 the following \r\n using a single `process-send-string', since the
10229 Lotus SMTP server refuses to accept any commands if they are sent
10230 with two `process-send-string's (Bug#11444).
10231
10232 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10233
10234 * shell.el (shell-parse-pcomplete-arguments):
10235 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
10236
10237 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10238
10239 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
10240 (image-transform-scale, image-transform-right-angle-fudge): New vars.
10241 (image-transform-width, image-transform-fit-width): New functions.
10242 (image-transform-properties): Use them.
10243 (image-transform-check-size): New function.
10244 (image-toggle-display-image): Use it (for testing).
10245 (image-transform-set-rotation): Reduce angle mod 360.
10246 Delete obsolete comment.
10247
10248 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10249
10250 * image-mode.el: Fix scaling (bug#11399).
10251 (image-transform-resize): Doc fix.
10252 (image-transform-properties): Default scale is 1 and height should
10253 be an integer.
10254
10255 2012-05-13 Johan Bockgård <bojohan@gnu.org>
10256
10257 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
10258 than hard-coding `car', to fix misbehavior when moving forward.
10259
10260 2012-05-13 Chong Yidong <cyd@gnu.org>
10261
10262 * emacs-lisp/tabulated-list.el (tabulated-list-format)
10263 (tabulated-list-entries, tabulated-list-padding)
10264 (tabulated-list-sort-key): Make permanent-local.
10265
10266 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
10267 (electric-buffer-list): Put electric buffer menu
10268 command descriptions in this docstring, instead of the docstring
10269 of electric-buffer-menu-mode. Code cleanups.
10270 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
10271 Electric-buffer-menu-mode.
10272 (electric-buffer-update-highlight): Minor code cleanup.
10273
10274 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
10275
10276 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
10277 (Bug#11447)
10278
10279 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10280
10281 Move define-obsolete-variable-alias before the var's definition.
10282 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
10283 * tooltip.el (tooltip-hook):
10284 * textmodes/reftex-toc.el (reftex-toc-map):
10285 * textmodes/reftex-sel.el (reftex-select-label-map)
10286 (reftex-select-bib-map):
10287 * textmodes/reftex-index.el (reftex-index-map)
10288 (reftex-index-phrases-map):
10289 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
10290 * progmodes/meta-mode.el (meta-mode-map):
10291 * novice.el (disabled-command-hook):
10292 * loadhist.el (unload-hook-features-list):
10293 * frame.el (blink-cursor):
10294 * files.el (find-file-not-found-hooks, write-file-hooks)
10295 (write-contents-hooks):
10296 * emulation/tpu-edt.el (GOLD-map):
10297 * emacs-lock.el (emacs-lock-from-exiting):
10298 * emacs-lisp/generic.el (generic-font-lock-defaults):
10299 * emacs-lisp/chart.el (chart-map):
10300 * dos-fns.el (register-name-alist):
10301 * dired-x.el (dired-omit-files-p):
10302 * desktop.el (desktop-enable):
10303 * cus-edit.el (custom-mode-hook):
10304 * buff-menu.el (buffer-menu-mode-hook):
10305 * bookmark.el (bookmark-read-annotation-text-func)
10306 (bookmark-exit-hooks):
10307 * allout.el (allout-mode-deactivate-hook)
10308 (allout-exposure-change-hook, allout-structure-added-hook)
10309 (allout-structure-deleted-hook, allout-structure-shifted-hook):
10310 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
10311 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
10312 comes before the corresponding variable's definition.
10313
10314 2012-05-12 Chong Yidong <cyd@gnu.org>
10315
10316 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
10317 (Buffer-menu-mouse-select): Restore function (Bug#11459).
10318 (Buffer-menu-mode-map): Bind it.
10319 (Buffer-menu--pretty-name): Add a mouse-face property.
10320
10321 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10322
10323 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
10324 (prolog-upper-case-string, prolog-lower-case-string)
10325 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
10326 (prolog-use-smie, prolog-smie-grammar): New vars.
10327 (prolog-smie-forward-token, prolog-smie-backward-token)
10328 (prolog-smie-rules): New funs.
10329 (prolog-comment-indent): Remove.
10330 (prolog-mode-variables): Use default comment indentation instead.
10331 Setup SMIE.
10332 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
10333 (prolog-mode): Don't call them any more.
10334 (prolog-electric-colon, prolog-electric-dash)
10335 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
10336
10337 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
10338
10339 * minibuffer.el (completion--twq-all): Again, allow case differences.
10340
10341 * term.el: Move keymap initialization code to be more idiomatic.
10342 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
10343 (term-terminal-menu): Move initialization into declaration.
10344 (term-escape-char): Let the user set it in her .emacs.
10345
10346 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
10347 Provide SMIE-based indentation (not enabled by default yet).
10348 (sh-mode-map): Don't bind electric keys.
10349 Use electric-pair-mode instead of skeleton-pair.
10350 (sh-assignment-regexp): Fit within 80 columns.
10351 (sh-indent-supported): Specify actual shell name instead of boolean.
10352 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
10353 (sh-maybe-here-document): Use it. Make obsolete.
10354 (sh-electric-here-document-mode) New minor mode.
10355 (sh-mode): Use it. Don't set sh-indent-supported-here here.
10356 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
10357 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
10358 (sh-smie-rc-grammar, sh-use-smie): New vars.
10359 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
10360 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
10361 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
10362 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
10363 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
10364 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
10365 (sh-set-shell): Use smie-setup if requested.
10366
10367 * term.el (term-set-escape-char): Properly set term-escape-char.
10368 See http://stackoverflow.com/questions/10524656.
10369
10370 2012-05-10 Chong Yidong <cyd@gnu.org>
10371
10372 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
10373 Use url-generic-parse-url, and handle host names and Windows
10374 filenames properly.
10375 (ffap-url-unwrap-remote): Use url-generic-parse-url.
10376 (ffap-url-unwrap-remote): Accept list values, specifying a list of
10377 URL schemes to work on.
10378 (ffap--toggle-read-only): New function.
10379 (ffap-read-only, ffap-read-only-other-window)
10380 (ffap-read-only-other-frame): Use it.
10381 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
10382 necessary for ffap-url-unwrap-remote.
10383
10384 2012-05-10 Dave Abrahams <dave@boostpro.com>
10385
10386 * cus-start.el (create-lockfiles): Add it.
10387
10388 2012-05-09 Chong Yidong <cyd@gnu.org>
10389
10390 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
10391 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
10392
10393 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10394
10395 * shell.el (shell-completion-vars): Fix last change (bug#11348).
10396
10397 2012-05-09 Chong Yidong <cyd@gnu.org>
10398
10399 * ansi-color.el (ansi-color-process-output): Check for validity of
10400 comint-last-output-start before using it. This avoids a bad
10401 interaction with gdb-mi's input/output buffer.
10402
10403 2012-05-09 Glenn Morris <rgm@gnu.org>
10404
10405 * files.el (dir-locals-read-from-file):
10406 Mention dir-locals in any error message.
10407
10408 2012-05-09 Chong Yidong <cyd@gnu.org>
10409
10410 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
10411 package (Bug#11410).
10412
10413 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
10414 variables into description.
10415
10416 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10417
10418 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
10419 shell-delimiter-argument-list (bug#11348).
10420 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
10421
10422 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
10423
10424 * textmodes/rst.el: Silence byte-compiler warnings.
10425 (rst-re-alist, rst-reset-section-caches): Move around.
10426 (rst-re): Use `characterp', not `char-valid-p'.
10427 (font-lock-beg, font-lock-end): Declare.
10428
10429 * progmodes/idlw-shell.el (specs): Remove reference to deleted
10430 variable `idlwave-shell-activate-alt-keybindings' and simplify.
10431
10432 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
10433
10434 2012-05-08 Glenn Morris <rgm@gnu.org>
10435
10436 * files.el (auto-mode-alist): Treat ".make" like ".mk".
10437
10438 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10439
10440 * vc/log-edit.el: Add GNU coding standards highlighting.
10441 (log-edit-font-lock-gnu-style)
10442 (log-edit-font-lock-gnu-keywords): New vars.
10443 (log-edit-font-lock-keywords): New fun.
10444 (log-edit-mode): Don't fold case in font-lock.
10445 (log-edit-font-lock-keywords): Do not assume case-folding.
10446
10447 * imenu.el: Misc cleanup. Make docstrings out of comments.
10448 Use lexical-binding.
10449 (imenu--index-alist, imenu--last-menubar-index-alist)
10450 (imenu-menubar-modified-tick): Use defvar-local.
10451 (imenu--split-menu): Remove unused var.
10452 (imenu--cleanup-seen): Declare as global.
10453 (imenu--cleanup): Use dolist.
10454
10455 * subr.el (defvar-local): Add debug spec and doc-string position.
10456
10457 2012-05-08 Glenn Morris <rgm@gnu.org>
10458
10459 * language/burmese.el, language/cham.el, language/czech.el:
10460 * language/english.el, language/georgian.el, language/greek.el:
10461 * language/japanese.el, language/khmer.el, language/korean.el:
10462 * language/lao.el, language/misc-lang.el, language/romanian.el:
10463 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
10464 * language/thai.el, language/utf-8-lang.el:
10465 Remove no-byte-compile setting.
10466
10467 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
10468
10469 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10470
10471 * progmodes/make-mode.el (makefile-browse):
10472 Remove unnecessary interactive. (Bug#11324)
10473
10474 2012-05-07 Glenn Morris <rgm@gnu.org>
10475
10476 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
10477
10478 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
10479
10480 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
10481
10482 * loadup.el: Preload newcomment.el.
10483 * newcomment.el: Move autoload-only code to toplevel.
10484
10485 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
10486 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
10487 Handle new :right-align column property.
10488 (tabulated-list-print-col): Idem, plus use `display' text-property to
10489 try and preserve alignment for variable pitch fonts.
10490
10491 2012-05-07 Chong Yidong <cyd@gnu.org>
10492
10493 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
10494 (tabulated-list-use-header-line): New var.
10495 (tabulated-list-init-header): Use it.
10496 (tabulated-list-print-fake-header): New function.
10497 (tabulated-list-print): Use it.
10498 (tabulated-list-sort-button-map): Add non-header-line commands.
10499 (tabulated-list-init-header): Add column name property to basic
10500 labels as well.
10501 (tabulated-list-col-sort): Handle non-header-line button case.
10502 (tabulated-list--sort-by-column-name): Fix a corner case.
10503
10504 * buff-menu.el (list-buffers--refresh):
10505 Handle Buffer-menu-use-header-line.
10506
10507 2012-05-06 Chong Yidong <cyd@gnu.org>
10508
10509 * buff-menu.el: Convert to Tabulated List mode.
10510 (Buffer-menu-buffer+size-width): Make obsolete.
10511 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
10512 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
10513 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
10514 documentation into docstring of buffer-menu.
10515 (Buffer-menu-toggle-files-only): Add an informative message.
10516 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
10517 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
10518 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
10519 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
10520 (Buffer-menu-execute, Buffer-menu-select)
10521 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
10522 (Buffer-menu-bury): Use Tabulated List machinery.
10523 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
10524 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
10525 Delete.
10526 (list-buffers--refresh): New function.
10527 (list-buffers-noselect): Use it.
10528 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
10529 (Buffer-menu--pretty-file-name): New helper functions.
10530
10531 * loadup.el: Preload tabulated-list.
10532
10533 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
10534 tabulated-list-sort-column.
10535 (tabulated-list-init-header): Add the initial aligning space even
10536 if tabulated-list-padding is zero.
10537
10538 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
10539
10540 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
10541 whose cdr is not a cons cell correctly (bug#11038).
10542
10543 2012-05-06 Chong Yidong <cyd@gnu.org>
10544
10545 * emacs-lisp/tabulated-list.el (tabulated-list-format):
10546 Accept additional plist in column descriptors.
10547 (tabulated-list-init-header): Obey it.
10548 (tabulated-list-get-entry): New function.
10549 (tabulated-list-put-tag): Use it. Use string-width instead of
10550 length.
10551 (tabulated-list--column-number): New function.
10552 (tabulated-list-print): Use it.
10553 (tabulated-list-print-col): New function.
10554 Set `tabulated-list-column-name' property on each column's text.
10555 (tabulated-list-print-entry): Use it.
10556 (tabulated-list-delete-entry, tabulated-list-set-col):
10557 New functions.
10558 (tabulated-list-sort-column): New command (Bug#11337).
10559
10560 * buff-menu.el (list-buffers): Move C-x C-b binding from
10561 buff-menu.el to bindings.el.
10562
10563 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
10564 :advertised-binding feature.
10565
10566 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
10567
10568 * progmodes/compile.el (compilation-internal-error-properties):
10569 Calculate start position correctly when end-col is set but
10570 end-line is not (Bug#11382).
10571
10572 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
10573
10574 * man.el (Man-unindent): Use text-property-default-nonsticky to
10575 prevent untabify from inheriting face properties (Bug#11408).
10576
10577 2012-05-05 Stefan Merten <smerten@oekonux.de>
10578
10579 * textmodes/rst.el: Major merge with upstream development up to
10580 Docutils SVN r7399 / rst.el V1.2.1.
10581
10582 Clarify maintainership and authors.
10583
10584 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
10585 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
10586 (rst-official-version, rst-official-cvs-rev, rst-version)
10587 (rst-package-emacs-version-alist): New functions and variables
10588 for version information.
10589
10590 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
10591 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
10592 (rst-mode-syntax-table, rst-mode): New and corrected functions
10593 and variables representing reStructuredText features.
10594
10595 (rst-re): New function for reStructuredText regexes. Use in
10596 many places.
10597
10598 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
10599 (rst-mode-map): Rebind keys.
10600
10601 (rst-mode-lazy, rst-font-lock-keywords)
10602 (rst-font-lock-extend-region)
10603 (rst-font-lock-extend-region-internal)
10604 (rst-font-lock-extend-region-extend)
10605 (rst-font-lock-find-unindented-line-limit)
10606 (rst-font-lock-find-unindented-line-match)
10607 (rst-adornment-level, rst-font-lock-adornment-level)
10608 (rst-font-lock-adornment-match)
10609 (rst-font-lock-handle-adornment-pre-match-form)
10610 (rst-font-lock-handle-adornment-matcher): Major revision of
10611 font-locking. Integrate with other code. Use `jit-lock-mode'.
10612
10613 (rst-preferred-adornments, rst-adjust-hook)
10614 (rst-new-adornment-down, rst-preferred-bullets)
10615 (rst-preferred-bullets, rst-indent, rst-indent-width)
10616 (rst-indent-field, rst-indent-literal-normal)
10617 (rst-indent-literal-minimized, rst-indent-comment): Change,
10618 extend and improve customization.
10619
10620 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
10621 (rst-normalize-cursor-position, rst-get-decoration)
10622 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
10623 (rst-rstrip, rst-toc-insert-find-delete-contents)
10624 (rst-shift-fill-region, rst-compute-bullet-tabs)
10625 (rst-debug-print-tabs, rst-debug-mark-found)
10626 (rst-shift-region-guts, rst-shift-region-right)
10627 (rst-shift-region-left, rst-use-char-classes)
10628 (rst-font-lock-keywords-function)
10629 (rst-font-lock-indentation-point)
10630 (rst-font-lock-find-unindented-line-begin)
10631 (rst-font-lock-find-unindented-line-end)
10632 (rst-font-lock-find-unindented-line)
10633 (rst-font-lock-adornment-point, rst-font-lock-level)
10634 (rst-adornment-level-alist): Remove functions and variables.
10635
10636 (rst-compare-adornments, rst-get-adornment-match)
10637 (rst-suggest-new-adornment, rst-get-adornments-around)
10638 (rst-adornment-complete-p, rst-get-next-adornment)
10639 (rst-adjust-adornment, rst-display-adornments-hierarchy)
10640 (rst-straighten-adornments): Standardize function names to
10641 use "adornment" instead of "decoration". Correct callers.
10642 Similar standardizing in many places.
10643
10644 (rst-update-section, rst-adjust, rst-promote-region)
10645 (rst-enumerate-region, rst-bullet-list-region)
10646 (rst-repeat-last-character): Correct use of `interactive'.
10647
10648 (rst-classify-adornment, rst-find-all-adornments)
10649 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
10650 (rst-find-leftmost-column, rst-repeat-last-character):
10651 Refactor functions.
10652
10653 (rst-find-title-line, rst-reset-section-caches)
10654 (rst-get-adornments-around, rst-adjust-adornment-work)
10655 (rst-arabic-to-roman, rst-roman-to-arabic)
10656 (rst-insert-list-pos, rst-insert-list-new-item)
10657 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
10658 New functions.
10659
10660 (rst-all-sections, rst-section-hierarchy)
10661 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
10662 New variables.
10663
10664 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
10665 configuration instead of only buffer. Change where necessary.
10666
10667 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
10668 (rst-shift-region, rst-adaptive-fill): New functions for
10669 indentation and filling.
10670
10671 (rst-comment-line-break, rst-comment-indent)
10672 (rst-comment-insert-comment, rst-comment-region)
10673 (rst-uncomment-region): New functions for handling comments.
10674
10675 (rst-compile): Quote shell arguments.
10676
10677 (rst-compile-pdf-preview, rst-compile-slides-preview):
10678 Delete temporary files after use.
10679
10680 2012-05-05 Glenn Morris <rgm@gnu.org>
10681
10682 * calendar/cal-html.el: Optionally include holidays in the output.
10683 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
10684 (cal-html-holidays): New option.
10685 (cal-html-css-default): Add holiday entry.
10686 (holiday-in-range): Autoload it.
10687 (cal-html-htmlify-entry): Add optional class argument.
10688 (cal-html-htmlify-list): Add optional holidays argument.
10689 (cal-html-insert-agenda-days): Include holidays in the output.
10690 (cal-html-one-month): Maybe include holidays.
10691
10692 * calendar/holidays.el (holiday-in-range):
10693 Move here from cal-tex-list-holidays.
10694 * calendar/cal-tex.el (cal-tex-list-holidays):
10695 Make it an obsolete alias for holiday-in-range. Update all callers.
10696
10697 2012-05-05 Chong Yidong <cyd@gnu.org>
10698
10699 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
10700 Nextstep.
10701
10702 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
10703
10704 * files.el (file-auto-mode-skip): New var.
10705 (set-auto-mode-1): Use it.
10706
10707 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
10708
10709 * repeat.el: Use lexical-binding.
10710 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
10711 (repeat-undo-count): Remove.
10712 (repeat):
10713 * progmodes/octave-mod.el (octave-abbrev-start):
10714 * progmodes/f90.el (f90-abbrev-start):
10715 * face-remap.el (text-scale-adjust):
10716 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
10717
10718 * emacs-lisp/pcase.el (pcase--let*): New function.
10719 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
10720 a bit more.
10721 (pcase--split-pred): Be more clever about ruling out overlap between
10722 a predicate and some constant pattern.
10723 (pcase--q1): Use `null' instead of (eq foo nil).
10724
10725 * subr.el (setq-local, defvar-local): New macros.
10726 (kbd): Redefine as an alias.
10727 (with-selected-window): Leave unrelated frames alone.
10728 (set-temporary-overlay-map): New function.
10729
10730 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10731
10732 * subr.el (user-error): New function.
10733 * window.el (switch-to-buffer):
10734 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
10735 (smerge-match-conflict):
10736 * simple.el (previous-matching-history-element)
10737 (next-matching-history-element, goto-history-element, undo-more)
10738 (undo-start):
10739 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
10740 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
10741 (next-file, tags-loop-scan, list-tags, complete-tag):
10742 * progmodes/compile.el (compilation-loop):
10743 * mouse.el (mouse-minibuffer-check):
10744 * man.el (Man-bgproc-sentinel, Man-goto-page):
10745 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
10746 (Info-history-forward, Info-follow-reference, Info-menu)
10747 (Info-extract-menu-item, Info-extract-menu-counting)
10748 (Info-forward-node, Info-backward-node, Info-next-menu-item)
10749 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
10750 (Info-next-reference, Info-prev-reference, Info-index)
10751 (Info-index-next, Info-follow-nearest-node)
10752 (Info-copy-current-node-name):
10753 * imenu.el (imenu--make-index-alist)
10754 (imenu-default-create-index-function, imenu-add-to-menubar):
10755 * files.el (basic-save-buffer, recover-file):
10756 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10757 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
10758 (checkdoc-message-text, checkdoc-defun):
10759 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
10760 * cus-edit.el (customize-changed-options, customize-rogue)
10761 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
10762 (custom-variable-mark-to-reset-standard)
10763 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
10764 (custom-file):
10765 * completion.el (check-completion-length):
10766 * comint.el (comint-search-arg)
10767 (comint-previous-matching-input-string-position)
10768 (comint-previous-matching-input)
10769 (comint-replace-by-expanded-history-before-point, comint-send-input)
10770 (comint-copy-old-input, comint-backward-matching-input)
10771 (comint-goto-process-mark, comint-set-process-mark):
10772 * calendar/calendar.el (calendar-cursor-to-date): Use it.
10773 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
10774
10775 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10776
10777 * dabbrev.el (dabbrev--ignore-case-p): New function.
10778 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
10779 Use it.
10780
10781 * files.el (automount-dir-prefix): Mark as obsolete.
10782
10783 2012-05-04 Glenn Morris <rgm@gnu.org>
10784
10785 * patcomp.el, play/bruce.el: Move to obsolete/.
10786
10787 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
10788
10789 Fix minor Y10k bugs.
10790 * arc-mode.el (archive-unixdate):
10791 * autoinsert.el (auto-insert-alist):
10792 * calc/calc-forms.el (math-this-year):
10793 * emacs-lisp/copyright.el (copyright-current-year)
10794 (copyright-update-year, copyright):
10795 * tar-mode.el (tar-clip-time-string):
10796 * time.el (display-time-update):
10797 Don't assume years have 4 digits.
10798
10799 2012-05-04 Chong Yidong <cyd@gnu.org>
10800
10801 * dos-w32.el (file-name-buffer-file-type-alist)
10802 (direct-print-region-use-command-dot-com):
10803 * ffap.el (ffap-menu-regexp):
10804 * find-file.el (ff-special-constructs):
10805 * follow.el (follow-debug):
10806 * forms.el (forms--debug):
10807 * iswitchb.el (iswitchb-all-frames):
10808 * ido.el (ido-all-frames):
10809 * emacs-lisp/timer.el (timer-max-repeats):
10810 * mail/feedmail.el (feedmail-mail-send-hook)
10811 (feedmail-mail-send-hook-queued):
10812 * mail/footnote.el (footnote-signature-separator):
10813 * mail/mailabbrev.el (mail-alias-separator-string)
10814 (mail-abbrev-mode-regexp):
10815 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
10816 * progmodes/idlwave.el (idlwave-libinfo-file)
10817 (idlwave-default-completion-case-is-down)
10818 (idlwave-library-routines): Convert defvars to defcustoms.
10819
10820 * mail/rmail.el (rmail-decode-mime-charset):
10821 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
10822 (idlwave-shell-fix-inserted-breaks)
10823 (idlwave-shell-activate-alt-keybindings)
10824 (idlwave-shell-use-breakpoint-glyph):
10825 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
10826
10827 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
10828
10829 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
10830
10831 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
10832
10833 * progmodes/verilog-mode.el (font-lock-keywords):
10834 Fix mis-highligting auto. Reported by Craig Barner.
10835 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
10836 defines from global name space. Reported by Dan Dever.
10837 (verilog-auto-reset, verilog-auto-reset-widths)
10838 (verilog-auto-tieoff): Support using unbased numbers for
10839 AUTORESET and AUTOTIEOFF.
10840 (verilog-submit-bug-report): Update variable list.
10841 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
10842 parenthesis from not matching. Reported by Michael Rytting.
10843 (verilog-auto-template-lint): Fix hash error when linting modules
10844 with no used templates.
10845 (verilog-warn, verilog-warn-error)
10846 (verilog-warn-fatal): When non-interactive report multiple
10847 warnings before exiting. Suggested by Brad Dobbie.
10848 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
10849 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
10850 to report unused template errors. Reported by Brad Dobbie.
10851 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
10852 nets, bug438. Reported by Vns Blore.
10853 (verilog-auto-inout-module, verilog-auto-reg)
10854 (verilog-read-decls, verilog-read-sub-decls-sig)
10855 (verilog-signals-edit-wire-reg, verilog-signals-with):
10856 Fix passing of Verilog data types in ANSI input/output ports
10857 such as "output logic" into the AUTOs. Special case "wire" and
10858 "reg" for backwards compatibility presuming Verilog 2001.
10859 (verilog-auto-ascii-enum): Add "auto enum" as alias.
10860 (verilog-preprocess): Fix replication of preprocess output.
10861 Reported by Brad Dobbie.
10862 (verilog-auto-inst-interfaced-ports):
10863 Create verilog-auto-inst-interfaced-ports, bug429.
10864 Reported by Julian Gorfajn.
10865 (verilog-after-save-font-hook)
10866 (verilog-before-save-font-hook): New variable.
10867 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
10868 (verilog-save-font-mods): Wrap disabling fontification, reported
10869 by David Rogoff.
10870 (verilog-do-indent, verilog-pretty-declarations-auto)
10871 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
10872 Reported by Pierre-David Pfister.
10873 (verilog-set-auto-endcomments): Fix endtask auto comments outside
10874 of class declarations, bug292. Reported by Kevin Heilman.
10875 (verilog-read-decls): Fix 'parameter type' not appearing in
10876 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
10877 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
10878 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
10879 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
10880 Reported by David Kravitz.
10881
10882 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
10883
10884 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
10885 assignment with tests in ifs and for loops.
10886 (verilog-extended-complete-re, verilog-complete-reg): Change so
10887 that DPI inport functions don't look like fuction declarations.
10888 (verilog-pretty-expr): Don't line up assignment
10889 operations to the test and increment in if and for loops
10890 (verilog-extended-complete-re, verilog-complete-reg): Change so
10891 that DPI inport functions don't look like fuction declarations.
10892
10893 2012-05-03 Kenichi Handa <handa@m17n.org>
10894
10895 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
10896 decoding, and show a warning message without signaling an error
10897 (Bug#11282).
10898
10899 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
10900
10901 * emacs-lisp/bytecomp.el
10902 (byte-compile-file-form-custom-declare-variable): Compile all elements,
10903 since cconv.el might have introduced :fun-body, internal-make-closure,
10904 and friends for bytecomp to handle (bug#11391).
10905 * custom.el (defcustom): Avoid ((λ ..) ..).
10906
10907 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
10908
10909 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
10910
10911 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
10912
10913 * notifications.el (dbus-debug):
10914 * term/linux.el (gpm-mouse-enable):
10915 * term/screen.el (xterm-register-default-colors): Declare.
10916
10917 2012-05-02 Chong Yidong <cyd@gnu.org>
10918
10919 * cus-start.el (gc-cons-percentage, exec-suffixes)
10920 (dos-display-scancodes, dos-hyper-key, dos-super-key)
10921 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
10922 (make-cursor-line-fully-visible, void-text-area-pointer)
10923 (font-list-limit): Add customization data.
10924
10925 * allout.el (allout-exposure-change-functions)
10926 (allout-structure-added-functions)
10927 (allout-structure-deleted-functions)
10928 (allout-structure-shifted-functions): Rename abnormal hooks from
10929 *-hook, and convert to defcustoms.
10930 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
10931 Convert to defcustoms.
10932 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
10933
10934 * allout-widgets.el: Hook callers changed.
10935
10936 2012-05-02 Eli Zaretskii <eliz@gnu.org>
10937
10938 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
10939 the yanked message in preference to the default value of
10940 buffer-file-coding-system.
10941
10942 2012-05-02 Martin Rudalics <rudalics@gmx.at>
10943
10944 * window.el (display-buffer--action-function-custom-type):
10945 Fix entry.
10946
10947 2012-05-02 Alan Mackenzie <acm@muc.de>
10948
10949 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
10950
10951 2012-05-01 Glenn Morris <rgm@gnu.org>
10952
10953 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
10954
10955 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
10956
10957 * cus-edit.el (custom-variable-documentation): Simplify with format.
10958
10959 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10960 Stefan Monnier <monnier@iro.umontreal.ca>
10961
10962 * simple.el (suggest-key-bindings, execute-extended-command):
10963 Move from keyboard.c.
10964
10965 2012-05-01 Chong Yidong <cyd@gnu.org>
10966
10967 * follow.el: Eliminate advice.
10968 (set-process-filter, process-filter, sit-for): Advice deleted.
10969 (follow-mode-off-hook): Obsolete hook removed.
10970 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
10971 Vars deleted.
10972 (follow-auto): Use a :set function.
10973 (follow-mode): Rewritten. Don't advise process filters.
10974 (follow-switch-to-current-buffer-all, follow-scroll-up)
10975 (follow-scroll-down): Assume follow-mode is bound.
10976 (follow-comint-scroll-to-bottom)
10977 (follow-align-compilation-windows): New functions.
10978 (follow--window-sorter): New function.
10979 (follow-all-followers): Use it to explicitly sort windows by their
10980 positions; don't make assumptions about next-window order.
10981 (follow-windows-start-end, follow-delete-other-windows-and-split)
10982 (follow-calc-win-start): Doc fix.
10983 (follow-windows-aligned-p, follow-select-if-visible): Don't call
10984 vertical-motion unnecessarily.
10985 (follow-adjust-window): New function.
10986 (follow-post-command-hook): Use it.
10987 (follow-call-set-process-filter, follow-call-process-filter)
10988 (follow-intercept-process-output, follow-tidy-process-filter-alist)
10989 (follow-stop-intercept-process-output, follow-generic-filter):
10990 Functions deleted.
10991 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
10992 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
10993 New functions, replacing advice on scroll-bar-* commands.
10994 (follow-mwheel-scroll): New function (Bug#4112).
10995
10996 * comint.el (comint-adjust-point): New function.
10997 (comint-postoutput-scroll-to-bottom): Use it.
10998 Call follow-comint-scroll-to-bottom for Follow mode buffers.
10999
11000 2012-05-01 Glenn Morris <rgm@gnu.org>
11001
11002 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
11003 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
11004 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
11005 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
11006 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
11007 Remove no-byte-compile setting.
11008
11009 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11010
11011 * minibuffer.el (completion-table-with-quoting): Fix compatibility
11012 all-completions code to not return a number in the last cdr.
11013
11014 2012-04-30 Leo Liu <sdl.web@gmail.com>
11015
11016 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
11017 read-only error.
11018
11019 2012-04-29 Chong Yidong <cyd@gnu.org>
11020
11021 * follow.el (follow-calc-win-end): Rewrite to handle partial
11022 screen lines correctly (Bug#8390).
11023 (follow-avoid-tail-recenter): Minor cleanup.
11024
11025 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11026
11027 Avoid the obsolete `assoc' package.
11028 * speedbar.el (speedbar-refresh): Avoid adelete.
11029 (speedbar-file-lists): Simplify and avoid aput.
11030 * man.el (Man--sections, Man--refpages): New vars, replacing
11031 Man-sections-alist and Man-refpages-alist.
11032 (Man-build-section-alist, Man-build-references-alist):
11033 Use them; avoid aput.
11034 (Man--last-section, Man--last-refpage): New vars.
11035 (Man-follow-manual-reference): Use them.
11036 Use the `default' arg of completing-read.
11037 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
11038
11039 2012-04-27 Chong Yidong <cyd@gnu.org>
11040
11041 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
11042
11043 * startup.el (x-apply-session-resources): New function.
11044
11045 * term/ns-win.el (ns-initialize-window-system):
11046 * term/w32-win.el (w32-initialize-window-system):
11047 * term/x-win.el (x-initialize-window-system): Use it to properly
11048 set menu-bar-mode and other vars from X resources, even if the
11049 initial frame is not a window-system frame (Bug#2299).
11050
11051 * subr.el (read-key): Avoid running filter function when setting
11052 up temporary tool bar entries (Bug#9922).
11053
11054 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11055
11056 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
11057 (Bug#11344)
11058
11059 2012-04-27 Chong Yidong <cyd@gnu.org>
11060
11061 * select.el (xselect--encode-string): New function, split from
11062 xselect-convert-to-string.
11063 (xselect-convert-to-string): Use it.
11064 (xselect-convert-to-filename, xselect-convert-to-os)
11065 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
11066 returned strings are properly encoded (Bug#11315).
11067
11068 2012-04-27 Chong Yidong <cyd@gnu.org>
11069
11070 * simple.el (delete-active-region): Move to killing custom group.
11071
11072 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11073
11074 * progmodes/which-func.el (which-func-current): Quote %
11075 characters for mode-line processing.
11076
11077 2012-04-27 Chong Yidong <cyd@gnu.org>
11078
11079 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
11080 reaching eob (Bug#11286).
11081
11082 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11083
11084 * progmodes/gdb-mi.el (gdb-control-level): New variable.
11085 (gdb): Make it buffer-local and init to zero.
11086 (gdb-control-commands-regexp): New variable.
11087 (gdb-send): Don't wrap in "-interpreter-exec console" if
11088 gdb-control-level is positive. Increment gdb-control-level
11089 whenever the command matches gdb-control-commands-regexp, and
11090 decrement it each time the command is "end". (Bug#11279)
11091
11092 2012-04-27 Martin Rudalics <rudalics@gmx.at>
11093
11094 * window.el (adjust-window-trailing-edge, enlarge-window)
11095 (shrink-window, window-resize):
11096 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
11097 windows (Bug#11276).
11098
11099 2012-04-27 Chong Yidong <cyd@gnu.org>
11100
11101 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
11102 fix "missing prefix" warning. All callers changed.
11103
11104 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11105
11106 * emacs-lisp/assoc.el: Move to obsolete/.
11107
11108 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11109
11110 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
11111
11112 * term/ns-win.el (ns-define-service):
11113 * progmodes/pascal.el (pascal-goto-defun):
11114 * progmodes/js.el (js--read-tab):
11115 * progmodes/etags.el (tags-lazy-completion-table):
11116 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
11117 * emacs-lisp/ewoc.el (ewoc--wrap):
11118 * emacs-lisp/assoc.el (aput, adelete, amake):
11119 * doc-view.el (doc-view-convert-current-doc):
11120 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
11121
11122 2012-04-26 Chong Yidong <cyd@gnu.org>
11123
11124 * image.el (image-type-from-buffer): Only return supported image
11125 type (Bug#9045).
11126
11127 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
11128 value, for symmetry with diff-end-of-hunk.
11129 (diff-split-hunk, diff-find-source-location)
11130 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
11131 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
11132 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
11133 compute the relevant hunk or file properly (Bug#6005).
11134 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
11135
11136 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11137
11138 * vc/vc-mtn.el:
11139 * vc/vc-hg.el:
11140 * vc/vc-git.el:
11141 * vc/vc-dir.el:
11142 * vc/vc-cvs.el:
11143 * vc/vc-bzr.el:
11144 * vc/vc-arch.el:
11145 * vc/vc.el: Replace lexical-let by lexical-binding.
11146 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
11147 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
11148 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
11149
11150 2012-04-26 Chong Yidong <cyd@gnu.org>
11151
11152 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
11153 (diff-mode-shared-map): Bind it to / and [remap undo].
11154
11155 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
11156 (ediff-window-setup-function): Use it as the default, to set up
11157 windows based on whether the current frame is graphical (Bug#2138).
11158 (ediff-choose-window-setup-function-automatically): Make obsolete.
11159
11160 * vc/ediff-init.el: Always define ediff-pixel-width/height.
11161
11162 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11163
11164 * ffap.el: Remove old code for obsolete package.
11165 (ffap-complete-as-file-p): Remove.
11166
11167 Use completion-table-with-quoting for comint and pcomplete.
11168 * comint.el (comint--unquote&requote-argument)
11169 (comint--unquote-argument, comint--requote-argument): New functions.
11170 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
11171 (comint-quote-filename): Use regexp-opt-charset.
11172 (comint--common-suffix, comint--common-quoted-suffix)
11173 (comint--table-subvert): Remove.
11174 (comint-unquote-function, comint-requote-function): New vars.
11175 (comint--complete-file-name-data): Use them with
11176 completion-table-with-quoting.
11177 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
11178 * pcomplete.el (pcomplete-arg-quote-list)
11179 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
11180 (pcomplete-unquote-argument-function): Default to non-nil.
11181 (pcomplete-unquote-argument): Simplify.
11182 (pcomplete--common-quoted-suffix): Remove.
11183 (pcomplete-requote-argument-function): New var.
11184 (pcomplete--common-suffix): New function.
11185 (pcomplete-completions-at-point): Use completion-table-with-quoting
11186 and completion-table-subvert.
11187
11188 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
11189 (minibuffer--double-dollars): Preserve properties.
11190 (completion--sifn-requote): New function.
11191 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
11192
11193 * minibuffer.el: Add support for completion of quoted/escaped data.
11194 (completion-table-with-quoting, completion-table-subvert): New funs.
11195 (completion--twq-try, completion--twq-all): New functions.
11196 (completion--nth-completion): New function.
11197 (completion-try-completion, completion-all-completions): Use it.
11198
11199 2012-04-25 Leo Liu <sdl.web@gmail.com>
11200
11201 * progmodes/python.el (python-pdbtrack-get-source-buffer):
11202 Use compilation-message if available to find real filename.
11203
11204 2012-04-25 Chong Yidong <cyd@gnu.org>
11205
11206 * vc/diff-mode.el (diff-setup-whitespace): New function.
11207 (diff-mode): Use it.
11208
11209 * vc/diff.el (diff-sentinel):
11210 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
11211 Whitespace mode variables based on diff style (Bug#8612).
11212
11213 2012-04-25 Leo Liu <sdl.web@gmail.com>
11214
11215 * progmodes/python.el (python-send-region): Add suffix .py to the
11216 temp file.
11217
11218 * files.el (auto-mode-alist): Use javascript-mode instead.
11219
11220 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
11221
11222 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
11223
11224 * net/soap-client.el (soap-resolve-references-for-sequence-type)
11225 (soap-resolve-references-for-array-type): Hack to prevent self
11226 references, see Bug#9.
11227 (soap-parse-envelope): Report the contents of the 'detail' node
11228 when receiving a fault reply.
11229 (soap-parse-envelope): Report the contents of the entire 'detail' node.
11230
11231 * net/soap-inspect.el (soap-sample-value-for-simple-type)
11232 (soap-inspect-simple-type): New function.
11233
11234 * net/soap-client.el (soap-simple-type): New struct.
11235 (soap-default-xsd-types, soap-default-soapenc-types)
11236 (soap-decode-basic-type, soap-encode-basic-type):
11237 support unsignedInt and double basic types.
11238 (soap-resolve-references-for-simple-type)
11239 (soap-parse-simple-type, soap-encode-simple-type): New function.
11240 (soap-parse-schema): Parse xsd:simpleType declarations.
11241
11242 * net/soap-client.el (soap-default-xsd-types)
11243 (soap-default-soapenc-types): Add integer, byte and anyURI types.
11244 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
11245 the local name of "soapenc:Array".
11246 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
11247 decoding integer, byte and anyURI xsd types.
11248
11249 2012-04-25 Chong Yidong <cyd@gnu.org>
11250
11251 * cus-edit.el (custom-buffer-create-internal): Update header text.
11252
11253 2012-04-25 Eli Zaretskii <eliz@gnu.org>
11254
11255 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
11256 settings on 'system-type', not on 'window-system'. On MS-Windows,
11257 set interactive-mode on in GDB.
11258
11259 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11260
11261 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
11262 (ruby-syntax-propertize-regexp): Remove.
11263 (ruby-syntax-propertize-function): Split regexp into chunks.
11264 Match following code directly.
11265
11266 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
11267
11268 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
11269 (ruby-syntax-propertize-regexp): New function.
11270 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
11271 by a special keyword.
11272
11273 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
11274 (ruby-syntax-general-delimiters-goto-beg)
11275 (ruby-syntax-propertize-general-delimiters): New functions.
11276 (ruby-syntax-propertize-function): Use them to handle GDL.
11277 (ruby-font-lock-keywords): Move old handling of GDL...
11278 (ruby-font-lock-syntactic-keywords): .. to here.
11279 (ruby-calculate-indent): Adjust indentation for GDL.
11280
11281 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
11282
11283 * notifications.el (top): Remove unneeded declarations.
11284 (notifications-specification-version): Change to "1.2".
11285 (notifications-interface, notifications-notify-method)
11286 (notifications-close-notification-method): Fix docstring.
11287 (notifications-get-capabilities-method): New defconst.
11288 (notifications-notify): Add :action-items, :resident and
11289 :transient hints. Change "image_data" to "image-data" and
11290 "image_path" to "image-path".
11291 (notifications-get-capabilities): New defun.
11292
11293 2012-04-24 Leo Liu <sdl.web@gmail.com>
11294
11295 * progmodes/python.el: Move hideshow setup to the end.
11296
11297 2012-04-24 Martin Rudalics <rudalics@gmx.at>
11298
11299 * window.el (handle-select-window): Clear echo area since this is
11300 no more done by read_char (Bug#11304).
11301
11302 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11303
11304 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
11305 and `/ M' to filter-derived-mode.
11306 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
11307 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
11308 (ibuffer-mark-by-mode): Use default rather than initial-input.
11309 (ibuffer-filter-by-derived-mode): Autoload and require-match.
11310
11311 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
11312
11313 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
11314 (ibuffer-filter-by-derived-mode): New filter.
11315 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
11316
11317 2012-04-23 Andreas Politz <politza@fh-trier.de>
11318
11319 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
11320
11321 2012-04-23 Chong Yidong <cyd@gnu.org>
11322
11323 * cus-edit.el (customize-apropos, customize-apropos-options):
11324 Disable matching of non-option variables (Bug#11176).
11325 (customize-option, customize-option-other-window)
11326 (customize-changed-options): Doc fix.
11327 (customize-apropos-options, customize-apropos-faces)
11328 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
11329
11330 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
11331 Fix word list splitting (Bug#11132).
11332 (apropos-symbol, apropos-keybinding, apropos-label)
11333 (apropos-property, apropos-function-button)
11334 (apropos-variable-button, apropos-misc-button): New faces.
11335 (apropos-symbol-face, apropos-keybinding-face)
11336 (apropos-label-face, apropos-property-face, apropos-match-face):
11337 Variables removed (Bug#8396).
11338 (apropos-library-button, apropos-format-plist, apropos-print)
11339 (apropos-print-doc, apropos-describe-plist): Callers changed.
11340
11341 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
11342
11343 * net/xesam.el (xesam-mode-map): Use let-bound map in
11344 initialization. (Bug#11292)
11345
11346 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11347
11348 Preserve ispell session localwords when switching back to
11349 original buffer.
11350
11351 * textmodes/ispell.el (ispell-buffer-session-localwords):
11352 New buffer-local variable to hold buffer session localwords.
11353 (ispell-kill-ispell): Add option 'clear to delete session
11354 localwords.
11355 (ispell-command-loop, ispell-change-dictionary)
11356 (ispell-buffer-local-words): Preserve session localwords when
11357 needed.
11358
11359 * textmodes/flyspell.el (flyspell-process-localwords)
11360 (flyspell-do-correct): Preserve session localwords when needed.
11361
11362 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11363
11364 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
11365 using obsolete `translation-table-for-input'.
11366 (ispell-word, ispell-process-line, ispell-complete-word):
11367 Use plain `insert' instead of removed `ispell-insert-word'.
11368
11369 2012-04-22 Chong Yidong <cyd@gnu.org>
11370
11371 * cus-edit.el (custom-variable-menu)
11372 (custom-variable-reset-saved, custom-face-menu)
11373 (custom-face-reset-saved): If there is no saved value, make the
11374 "reset-saved" operation bring back the default (Bug#9509).
11375 (custom-face-state): Properly detect themed faces.
11376
11377 * faces.el (face-spec-set): Stop supporting deprecated form of
11378 third arg.
11379
11380 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
11381
11382 Move functions from C to Lisp. Make non-blocking method calls
11383 the default. Implement further D-Bus standard interfaces.
11384
11385 * net/dbus.el (dbus-message-internal): Declare function.
11386 Remove unneeded function declarations.
11387 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
11388 (dbus-message-type-method-return, dbus-message-type-error)
11389 (dbus-message-type-signal): Declare variables. Remove local
11390 definitions.
11391 (dbus-interface-dbus, dbus-interface-peer)
11392 (dbus-interface-introspectable, dbus-interface-properties)
11393 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
11394 Adapt docstring.
11395 (dbus-interface-objectmanager): New defconst.
11396 (dbus-call-method, dbus-call-method-asynchronously)
11397 (dbus-send-signal, dbus-method-return-internal)
11398 (dbus-method-error-internal, dbus-register-service)
11399 (dbus-register-signal, dbus-register-method): New defuns, moved
11400 from dbusbind.c
11401 (dbus-call-method-handler, dbus-setenv)
11402 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
11403 New defuns.
11404 (dbus-call-method-non-blocking): Make it an obsolete function.
11405 (dbus-unregister-object, dbus-unregister-service)
11406 (dbus-handle-event, dbus-register-property)
11407 (dbus-property-handler): Obey the new structure of
11408 `bus-registered-objects'.
11409 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
11410 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11411 Use `dbus-call-method'.
11412
11413 2012-04-22 Chong Yidong <cyd@gnu.org>
11414
11415 * cus-edit.el (custom-commands, custom-reset-menu)
11416 (Custom-reset-standard): Tweak labels.
11417 (custom-reset-button-menu): Change default to t.
11418 (custom-buffer-create-internal): For the custom-reset-button-menu
11419 case, put the revert button first.
11420 (custom-group-subtitle): New face.
11421 (custom-group-value-create): Align docstring to a specific column.
11422
11423 * wid-edit.el (widget-documentation-link-add): Don't handle
11424 indentation in this function.
11425 (widget-documentation-string-indent-to): New function.
11426 (widget-documentation-string-value-create): Use it.
11427
11428 * autorevert.el (auto-revert):
11429 * epg-config.el (epg):
11430 * ibuffer.el (ibuffer):
11431 * mpc.el (mpc):
11432 * ses.el (ses):
11433 * eshell/eshell.el (eshell):
11434 * net/ange-ftp.el (ange-ftp):
11435 * progmodes/ebnf2ps.el (postscript):
11436 * progmodes/flymake.el (flymake):
11437 * progmodes/prolog.el (prolog):
11438 * progmodes/verilog-mode.el (verilog-mode):
11439 * progmodes/which-func.el (which-func):
11440 * term/xterm.el (xterm):
11441 * textmodes/picture.el (picture):
11442 * textmodes/tildify.el (tildify):
11443 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
11444 customization buffers.
11445
11446 2012-04-22 Alan Mackenzie <acm@muc.de>
11447
11448 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
11449 Adding a ) can hide the resulting (..) from searches. Fix it.
11450 Bound the backward search to the position of the existing (.
11451
11452 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
11453
11454 * progmodes/verilog-mode.el (verilog-mode): Check whether
11455 which-func-modes is t before adding verilog-mode.
11456 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
11457
11458 2012-04-21 Leo Liu <sdl.web@gmail.com>
11459
11460 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
11461
11462 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
11463
11464 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
11465 filling of the last column of a table (Bug#5635).
11466 (woman-find-next-control-line): New arg, specifying an additional
11467 regexp component for the control line.
11468 (woman2-roff-buffer): Use it.
11469 (woman-break-table): New function.
11470 (woman2-TS): Use it.
11471
11472 2012-04-21 Chong Yidong <cyd@gnu.org>
11473
11474 * woman.el (woman-set-buffer-display-table, woman-decode-region)
11475 (woman-horizontal-escapes, woman-negative-vertical-space)
11476 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
11477 (WoMan-warn-ignored): Use ?\s instead of ?\ .
11478
11479 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11480
11481 * minibuffer.el (completion-file-name-table): Complete user names.
11482
11483 2012-04-20 Leo Liu <sdl.web@gmail.com>
11484
11485 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
11486 and pcase-let*.
11487
11488 2012-04-20 Chong Yidong <cyd@gnu.org>
11489
11490 * server.el (server-execute): Respect initial-buffer-choice if it
11491 is a string and there are no files to open (Bug#2825).
11492 (server-create-window-system-frame, server-create-tty-frame):
11493 Don't switch buffers here.
11494 (server-process-filter): Only try to open a window system frame if
11495 compiled with graphical support (Bug#8314).
11496
11497 2012-04-20 Dan Nicolaescu <dann@gnu.org>
11498
11499 * battery.el (battery-echo-area-format): Display remaining time
11500 for sysfs backend too (Bug#11269).
11501 (battery-linux-sysfs): Fix conditional for the charge.
11502
11503 2012-04-20 Chong Yidong <cyd@gnu.org>
11504
11505 * progmodes/gdb-mi.el (gdb): Revert previous change.
11506 (gdb-inferior-io--init-proc): New function.
11507 (gdb-init-1): Use it.
11508 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
11509 responsible for allocating a new pty and hooking it to gdb when
11510 the old pty gets an EIO due to process exit.
11511 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
11512 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
11513 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
11514
11515 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11516
11517 * window.el (window-min-size, window-sizable, window-min-delta)
11518 (window-max-delta, window--resizable, window-resizable)
11519 (window-total-size, window-full-height-p, window-full-width-p)
11520 (window-in-direction, window--resize-mini-window, window-resize)
11521 (window--resize-child-windows-normal)
11522 (window--resize-child-windows, window--resize-siblings)
11523 (window--resize-this-window, adjust-window-trailing-edge)
11524 (enlarge-window, shrink-window): Doc fixes.
11525
11526 2012-04-20 Chong Yidong <cyd@gnu.org>
11527
11528 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
11529 New function to call delete-process on the gdb-inferior buffer's pty.
11530 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
11531 pty process (Bug#11273).
11532 (gdb-update): New arg to suppress talking to the gdb process.
11533 (gdb-done-or-error): Use it.
11534 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
11535 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
11536 sentinel not being called.
11537
11538 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
11539
11540 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
11541
11542 2012-04-20 Glenn Morris <rgm@gnu.org>
11543
11544 * net/network-stream.el (open-network-stream): Doc fix.
11545
11546 2012-04-20 Chong Yidong <cyd@gnu.org>
11547
11548 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
11549
11550 2012-04-20 Alan Mackenzie <acm@muc.de>
11551
11552 Ensure searching for keywords is case sensitive.
11553
11554 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
11555 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
11556 (c-defun-name, c-mark-function, c-cpp-define-name)
11557 (c-comment-indent, c-scan-conditionals, c-indent-defun)
11558 (c-context-line-break): Bind case-fold-search to nil.
11559
11560 * progmodes/cc-mode.el (c-font-lock-fontify-region):
11561 Bind case-fold-search to nil.
11562
11563 2012-04-20 Chong Yidong <cyd@gnu.org>
11564
11565 * mail/sendmail.el (mail-bury): Call return action with the right
11566 Rmail buffer (Bug#11242).
11567
11568 * server.el (server-process-filter): Handle corner case where both
11569 tty and nowait options are present (Bug#11102).
11570
11571 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11572
11573 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
11574 (top level): Put into the executable the ident-style '$Id:' tag on
11575 windows-nt as well.
11576
11577 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11578
11579 * electric.el (electric-indent-post-self-insert-function): Check that
11580 electric-indent-mode is enabled in current buffer.
11581
11582 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
11583
11584 * imenu.el (imenu-progress-message): Restore; it is "used" in
11585 erc/erc-imenu.el and net/snmp-mode.el.
11586
11587 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
11588
11589 * avoid.el (mouse-avoidance-mode): Mark unused arg.
11590 (mouse-avoidance-nudge-mouse): Remove unused binding.
11591
11592 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
11593
11594 * descr-text.el (describe-char):
11595 * progmodes/python.el (python-describe-symbol):
11596 Don't call `toggle-read-only', set `buffer-read-only'.
11597
11598 * imenu.el (imenu-default-goto-function): Mark unused args.
11599 (imenu-progress-message): Remove obsolete macro; all callers changed.
11600
11601 * subr.el (keymap-canonicalize): Remove unused binding.
11602 (read-passwd): Mark unused arg.
11603
11604 * tutorial.el (tutorial--display-changes): Remove unused binding.
11605 (tutorial--save-tutorial-to): Remove unused variable.
11606
11607 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
11608 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
11609 (package-generate-autoloads, package-menu--generate)
11610 (package-menu--find-upgrades): Remove unused bindings.
11611
11612 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
11613 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
11614 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
11615 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
11616 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
11617 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
11618 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
11619 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
11620 (cua-delete-char-rectangle): Mark unused args.
11621 (cua-align-rectangle): Remove unused binding.
11622
11623 * mail/rmail.el (compilation--message->loc)
11624 (epa--find-coding-system-for-mime-charset): Declare.
11625
11626 * net/dbus.el (dbus-register-service): Declare.
11627 (dbus-name-owner-changed-handler): Remove unused binding.
11628
11629 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
11630 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
11631 (nxml-scan-backward-within): Mark unused arg.
11632 (nxml-dynamic-markup-word): Remove unused binding.
11633
11634 * mouse.el (mouse-menu-major-mode-map):
11635 * emacs-lisp/authors.el (authors-scan-change-log)
11636 (authors-add-to-author-list):
11637 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
11638 * emacs-lisp/smie.el (smie-auto-fill):
11639 * mail/sendmail.el (mail-bury):
11640 * mail/unrmail.el (unrmail):
11641 * net/tls.el (open-tls-stream):
11642 * textmodes/picture.el (picture-mouse-set-point):
11643 Remove unused bindings.
11644
11645 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
11646
11647 * net/tramp.el (tramp-action-password): Let-bind
11648 `enable-recursive-minibuffers' to t.
11649
11650 2012-04-18 Sam Steingold <sds@gnu.org>
11651
11652 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
11653 instead of 'string to accommodate values like [f11].
11654 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
11655 * progmodes/gdb-mi.el: Likewise.
11656
11657 2012-04-18 Leo Liu <sdl.web@gmail.com>
11658
11659 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
11660 current buffer.
11661 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
11662 LOCAL is nil.
11663
11664 2012-04-18 Chong Yidong <cyd@gnu.org>
11665
11666 * simple.el (line-move): Use forward-line if in batch mode
11667 (Bug#11053).
11668
11669 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
11670
11671 * files.el (after-find-file): Do not try to add a final newline if
11672 the buffer is read-only (Bug#11156).
11673
11674 2012-04-17 Richard Stallman <rms@gnu.org>
11675
11676 * mail/rmail.el (rmail-start-mail):
11677 Pass (rmail-mail-return...) for the return-action.
11678 Pass (rmail-yank-current-message...) for the yank-action.
11679 (rmail-yank-current-message): New function.
11680 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
11681 (rmail-reply): Likewise.
11682 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
11683
11684 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
11685 buffer, not the last. Reject temp buffers. Use the rmail-mode
11686 buffer, not newbuf.
11687
11688 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
11689
11690 * server.el (server-ensure-safe-dir): Simplify.
11691
11692 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
11693
11694 * emacs-lisp/smie.el: Provide smarter auto-filling.
11695 (smie-auto-fill): New function.
11696 (smie-setup): Use it.
11697
11698 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
11699
11700 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
11701
11702 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
11703 (comment-indent): Use it.
11704
11705 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
11706
11707 * ses.el: The overall change is to add cell renaming, that is
11708 setting fancy names for cell symbols other than name matching
11709 "\\`[A-Z]+[0-9]+\\'" regexp .
11710 (ses-localvars): Add ses--renamed-cell-symb-list.
11711 (ses-create-cell-variable): New defun.
11712 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
11713 (ses-relocate-formula): Relocate formulas only for cells the
11714 symbols of which are not renamed, i.e. symbols whose names do not
11715 match regexp "\\`[A-Z]+[0-9]+\\'".
11716 (ses-relocate-all): Relocate values only for cells the symbols of
11717 which are not renamed.
11718 (ses-load): Create cells variables as the (ses-cell ...) are read,
11719 in order to check row col consistency with cell symbol name only
11720 for cells that are not renamed.
11721 (ses-replace-name-in-formula): New defun.
11722 (ses-rename-cell): New defun.
11723
11724 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
11725
11726 * progmodes/perl-mode.el (perl-indent-parens-as-block):
11727 New option (bug#11118).
11728 (perl-calculate-indent): Respect it.
11729
11730 2012-04-17 Glenn Morris <rgm@gnu.org>
11731
11732 * dired-aux.el (dired-mark-read-string): Doc fix.
11733
11734 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
11735
11736 * dired-aux.el (dired-mark-read-string): Offer optional completion.
11737 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
11738
11739 2012-04-17 Glenn Morris <rgm@gnu.org>
11740
11741 * mouse.el (mouse-drag-track):
11742 * speedbar.el (speedbar-frame-mode):
11743 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
11744
11745 2012-04-16 Leo Liu <sdl.web@gmail.com>
11746
11747 * progmodes/python.el: Trivial cleanup.
11748
11749 2012-04-16 Glenn Morris <rgm@gnu.org>
11750
11751 * vc/vc.el (vc-string-prefix-p):
11752 * vc/pcvs-util.el (cvs-string-prefix-p):
11753 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
11754 * mpc.el (mpc-string-prefix-p):
11755 Make all of these into obsolete aliases for string-prefix-p.
11756 Update callers.
11757 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
11758
11759 * textmodes/two-column.el: Move custom options to the start.
11760 (frame-width): Remove compat definition.
11761 (2C-associate-buffer, 2C-dissociate):
11762 Use with-current-buffer rather than save-excursion.
11763 (2C-dissociate): Force a mode-line update.
11764 (2C-autoscroll): Use ignore-errors.
11765
11766 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
11767 Autoload trivia.
11768
11769 * emacs-lisp/cl-extra.el (*random-state*):
11770 Remove unnecessary declaration.
11771
11772 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
11773
11774 * play/cookie1.el (cookie-snarf):
11775 Give an explicit error if input file cannot be read.
11776
11777 * play/yow.el (yow-file): Use expand-file-name rather than concat.
11778
11779 * progmodes/perl-mode.el (c-macro-expand):
11780 Remove unnecessary autoload (it is in loaddefs.el).
11781
11782 * textmodes/picture.el (picture-desired-column)
11783 (picture-update-desired-column): Convert comments to doc-strings.
11784 (picture-substitute): Remove function.
11785 (picture-mode-map): Initialize in the defvar.
11786
11787 * woman.el: Remove eval-after-load for tar-mode.
11788 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
11789 (woman-tar-extract-file): Autoload it.
11790
11791 * frame.el (automatic-hscrolling): Make this alias obsolete.
11792
11793 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11794
11795 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
11796 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
11797 (ispell-dictionary-base-alist): Revert to original XEmacs
11798 friendly version for default. [:alpha:] will be added in
11799 `ispell-set-spellchecker-params' if needed.
11800
11801 2012-04-16 Chong Yidong <cyd@gnu.org>
11802
11803 * image.el (imagemagick--file-regexp): New variable.
11804 (imagemagick-register-types): Use it.
11805 (imagemagick-types-inhibit): Add :set function. Allow new value
11806 of t to inhibit all types.
11807
11808 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
11809 so we can preload it.
11810
11811 * loadup.el (fboundp): Preload regexp-opt, needed by
11812 imagemagick-register-types.
11813
11814 2012-04-15 Chong Yidong <cyd@gnu.org>
11815
11816 * frame.el (scrolling): Remove nearly unused customization group.
11817
11818 * scroll-all.el (scroll-all-mode): Move to windows group.
11819
11820 2012-04-15 Chong Yidong <cyd@gnu.org>
11821
11822 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
11823
11824 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
11825
11826 Avoid the use of ((lambda ...) ...) in lexical-binding code.
11827 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
11828
11829 2012-04-15 Glenn Morris <rgm@gnu.org>
11830
11831 * simple.el (process-file-side-effects): Doc fix.
11832
11833 2012-04-15 Glenn Morris <rgm@gnu.org>
11834
11835 * international/mule-cmds.el (set-language-environment): Doc fix.
11836
11837 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
11838
11839 * server.el (server-auth-key, server-generate-key): Doc fixes.
11840 (server-get-auth-key): Doc fix. Use `string-match-p'.
11841 (server-start): Reflow docstring.
11842
11843 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
11844
11845 * server.el (server-generate-key): `called-interactively-p'
11846 requires a parameter.
11847
11848 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
11849
11850 * server.el (server-auth-key): New variable.
11851 (server-generate-key, server-get-auth-key): New function.
11852 (server-start): Use the new variable and functions to allow
11853 setting a permanent server key (bug#9423).
11854
11855 2012-04-14 Leo Liu <sdl.web@gmail.com>
11856
11857 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
11858
11859 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
11860
11861 Spelling fixes.
11862 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
11863 Emacs uses American spelling.
11864
11865 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
11866
11867 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
11868 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
11869 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
11870 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
11871
11872 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
11873
11874 * progmodes/which-func.el (which-func-modes): Change default.
11875
11876 2012-04-14 Kim F. Storm <storm@cua.dk>
11877
11878 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
11879 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
11880
11881 2012-04-14 Chong Yidong <cyd@gnu.org>
11882
11883 * custom.el (custom-theme-set-variables): Doc fix.
11884
11885 2012-04-14 Glenn Morris <rgm@gnu.org>
11886
11887 * international/mule.el (set-auto-coding-for-load): Doc fix.
11888
11889 2012-04-14 Alan Mackenzie <acm@muc.de>
11890
11891 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
11892 imenu work again for Objective C Mode. Correct the *-index values,
11893 these having been disturbed by a previous change in 2011-08.
11894
11895 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
11896 Correct two search limits.
11897
11898 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
11899
11900 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
11901
11902 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
11903
11904 * international/characters.el: Fix sorting.
11905
11906 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11907
11908 * international/characters.el: Add more missing Latin case pairs.
11909
11910 2012-04-14 Glenn Morris <rgm@gnu.org>
11911
11912 * files.el (dir-locals-set-class-variables): Doc fix.
11913
11914 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11915
11916 * international/characters.el: Add set-case-syntax-pair call for
11917 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
11918 counterpart. (Bug#11209)
11919
11920 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
11921
11922 2012-04-14 Glenn Morris <rgm@gnu.org>
11923
11924 * calendar/holidays.el (calendar-check-holidays): Doc fix.
11925
11926 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11927
11928 * textmodes/ispell.el (ispell-dictionary-base-alist):
11929 Add data for Hebrew.
11930
11931 2012-04-14 Chong Yidong <cyd@gnu.org>
11932
11933 * net/rcirc.el (rcirc-cmd-quit):
11934 Revert 2012-03-18 change (Bug#11192).
11935
11936 2012-04-14 Glenn Morris <rgm@gnu.org>
11937
11938 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
11939
11940 2012-04-14 Eli Zaretskii <eliz@gnu.org>
11941
11942 * minibuffer.el (completion-in-region-mode-map):
11943 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
11944
11945 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
11946
11947 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
11948
11949 2012-04-13 Masatake YAMATO <yamato@redhat.com>
11950
11951 * minibuffer.el (minibuffer-local-filename-syntax): New variable
11952 to allow `C-M-f' and `C-M-b' to move to the nearest path
11953 separator (bug#9511).
11954
11955 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
11956
11957 * avoid.el: Require cl when compiling. And also move the
11958 `provide' to the end.
11959
11960 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11961
11962 * avoid.el (mouse-avoidance-banish-position): New variable.
11963 (mouse-avoidance-banish-destination): Use it (bug#10165).
11964
11965 2012-04-13 Leo Liu <sdl.web@gmail.com>
11966
11967 * progmodes/which-func.el (which-func-modes): Add objc-mode.
11968
11969 2012-04-13 Ken Brown <kbrown@cornell.edu>
11970
11971 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
11972 this is no longer needed now that cygstart understands file:// URLs.
11973 (browse-url-filename-alist): For the same reason, don't modify
11974 file:// URLs on Cygwin.
11975
11976 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
11977
11978 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
11979 the region on shift if the binding is already shifted (bug#11221).
11980
11981 2012-04-12 Glenn Morris <rgm@gnu.org>
11982
11983 * mail/mailpost.el: Move to obsolete/.
11984
11985 2012-04-12 Drew Adams <drew.adams@oracle.com>
11986
11987 * imenu.el (imenu--generic-function): Ignore invisible definitions
11988 (bug#10123).
11989
11990 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
11991
11992 * hexl.el (hexl-bits): New variable.
11993 (hexl-options): Mention the variable in the doc string.
11994 (hexl-rulerise, hexl-line-displen): New functions.
11995 (hexl-mode): Mention the new variable.
11996 (hexl-mode, hexl-current-address, hexl-current-address):
11997 Use the displen.
11998 (hexl-ascii-start-column): New function.
11999 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
12000 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
12001
12002 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12003
12004 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
12005 '("-i" ENCODING), in 2 separate command-line arguments, to specify
12006 the encoding, as expected by hunspell.
12007
12008 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12009
12010 * battery.el (battery--linux-sysfs-regexp): New const.
12011 (battery-status-function): Use it. Remove yeeloong special case.
12012 (battery-yeeloong-sysfs): Remove.
12013 (battery-echo-area-format): Remove yeeloong special case.
12014
12015 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12016
12017 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
12018 Reported by Noah Friedman.
12019
12020 * subr.el (read-passwd): Use read-string.
12021
12022 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12023
12024 * vcursor.el (vcursor-move): Increase the priority of the overlay
12025 (bug#9663).
12026
12027 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
12028
12029 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
12030 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
12031
12032 2012-04-11 William Stevenson <yhvh2000@gmail.com>
12033
12034 * textmodes/artist.el (artist-mode): Convert artist-mode to use
12035 define-minor-mode (bug#10760).
12036
12037 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12038
12039 * progmodes/grep.el (rgrep): Tweak the find command line so
12040 that directories matching `grep-find-ignored-files' won't be
12041 pruned (bug#10351).
12042
12043 2012-04-11 Chong Yidong <cyd@gnu.org>
12044
12045 * startup.el (command-line): Remove support for long-obsolete
12046 variable font-lock-face-attributes.
12047
12048 2012-04-11 Glenn Morris <rgm@gnu.org>
12049
12050 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
12051
12052 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12053
12054 * window.el (window--state-get-1): Obey window-point-insertion-type.
12055
12056 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
12057
12058 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
12059 to previous function when point is on the first character of a
12060 function. Take care of that in `narrow-to-defun' (bug#6157).
12061
12062 2012-04-11 Glenn Morris <rgm@gnu.org>
12063
12064 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
12065 not just file-errors.
12066
12067 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
12068 (vc-bzr-sha1): Use internal sha1.
12069
12070 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12071
12072 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
12073
12074 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
12075
12076 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
12077 that start in the middle of the line (bug#10496).
12078
12079 2012-04-10 Dan Nicolaescu <dann@gnu.org>
12080
12081 * battery.el (battery-linux-proc-acpi): Only one battery is
12082 discharged at a time, but that seems to confuse battery.el when
12083 computing `rate-type' for the battery not being discharged
12084 (bug#10332).
12085
12086 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12087
12088 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
12089
12090 * international/quail.el: Use dolist and simplify.
12091 (quail-define-package, quail-update-keyboard-layout)
12092 (quail-define-rules): Use dolist.
12093 (quail-insert-kbd-layout, quail-get-translation): CSE.
12094
12095 * tmm.el: Use dolist, remove left over hook.
12096 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
12097 Use dolist.
12098 (calendar-load-hook): Don't mess with it.
12099
12100 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
12101 Use derived-mode-p. Run the diff asynchronously.
12102
12103 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12104
12105 * obsolete/mouse-sel.el: Add an Obsolete-since header.
12106
12107 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12108
12109 * misc.el: Display absolute path of loaded DLLs (bug#10424).
12110 (list-dynamic-libraries--loaded): New function.
12111 (list-dynamic-libraries--refresh): Use it.
12112
12113 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
12114
12115 * progmodes/python.el (python-fill-paragraph):
12116 Make python-fill-region in a multiline string work when font-lock is
12117 disabled (bug#7018).
12118
12119 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
12120
12121 * language/european.el (cp775): Add oem/legacy (en)coding on
12122 DOS/MS Windows for the Baltic languages. There are still plenty
12123 of texts written in this encoding/codepage (bug#6519).
12124
12125 2012-04-10 Glenn Morris <rgm@gnu.org>
12126
12127 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
12128 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
12129
12130 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
12131
12132 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
12133 next-line "n" and previous-line "p" in order to make recentf more
12134 consistent with ibuffer, dired or org-mode (bug#9387).
12135
12136 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12137
12138 * image.el (put-image): Return the overlay created instead of the
12139 optional input string (bug#7834). Note that this may break code
12140 that is (for some reason or other) depending on `put-image'
12141 returning the string.
12142
12143 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
12144
12145 * simple.el (zap-to-char): Allow zapping using input methods
12146 (bug#1580).
12147
12148 * textmodes/fill.el (fill-region): Leave point and mark where they
12149 were before filling (bug#5399).
12150
12151 2012-04-09 Glenn Morris <rgm@gnu.org>
12152
12153 * version.el (emacs-bzr-get-version):
12154 Handle lightweight checkouts of local branches.
12155
12156 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
12157
12158 * international/characters.el: Recover lost case pairs. (Bug#11209)
12159
12160 2012-04-09 Chong Yidong <cyd@gnu.org>
12161
12162 * custom.el (custom-variable-p): Return nil for non-symbol
12163 arguments instead of signaling an error.
12164 (user-variable-p): Obsolete alias for custom-variable-p.
12165
12166 * apropos.el (apropos-variable):
12167 * files-x.el (read-file-local-variable):
12168 * simple.el (set-variable):
12169 * woman.el (woman-mini-help):
12170 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
12171
12172 2012-04-09 Glenn Morris <rgm@gnu.org>
12173
12174 * startup.el (normal-top-level): Don't look for leim-list.el
12175 in places where it will not be found. (Bug#910)
12176
12177 * international/mule-cmds.el (set-default-coding-systems):
12178 * files.el (normal-mode):
12179 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
12180 This function was removed with ucs-tables.el in 2008.
12181
12182 2012-04-08 Eli Zaretskii <eliz@gnu.org>
12183
12184 * textmodes/ispell.el (ispell-check-version): For hunspell, set
12185 ispell-encoding8-command to "-i", without a trailing space.
12186 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
12187 separate command-line arguments, to specify the encoding, since
12188 that's how hunspell expects it.
12189
12190 2012-04-08 Glenn Morris <rgm@gnu.org>
12191
12192 * loadup.el: Load bindings before cus-start.
12193 This reduces somewhat the number of "rogue" settings in emacs -Q.
12194
12195 2012-04-07 Glenn Morris <rgm@gnu.org>
12196
12197 * version.el (emacs-bzr-get-version): New function.
12198 (emacs-bzr-version): New variable.
12199 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
12200 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
12201
12202 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12203
12204 * international/uni-bidi.el, international/uni-category.el:
12205 * international/uni-combining.el, international/uni-decimal.el:
12206 * international/uni-decomposition.el, international/uni-digit.el:
12207 * international/uni-lowercase.el, international/uni-mirrored.el:
12208 * international/uni-name.el, international/uni-numeric.el:
12209 * international/uni-titlecase.el, international/uni-uppercase.el:
12210 Update for Unicode 6.1.
12211
12212 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12213
12214 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
12215
12216 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
12217
12218 * window.el (shrink-window): Mention the `window-min-height'
12219 variable in the doc string.
12220
12221 2012-04-05 Bastien Guerry <bzg@altern.org>
12222
12223 * color.el (color-lighten-name): Fix typo.
12224
12225 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12226
12227 * server.el (server--on-display-p): New function.
12228 (server--on-display-p): Use it.
12229
12230 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
12231
12232 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
12233 (bug#11145).
12234
12235 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12236
12237 * comint.el (comint--common-quoted-suffix): Check string boundary
12238 before comparing (bug#11158).
12239 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
12240
12241 2012-04-04 Chong Yidong <cyd@gnu.org>
12242
12243 * minibuffer.el (completion-extra-properties): Doc fix.
12244
12245 * subr.el (delayed-warnings-hook): Doc fix.
12246
12247 2012-04-04 Daiki Ueno <ueno@unixuser.org>
12248
12249 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
12250 selection (Bug#11159).
12251 (epa-insert-keys): Inform that the default public key will be
12252 exported if no key is selected.
12253
12254 2012-04-04 Richard Stallman <rms@gnu.org>
12255
12256 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
12257
12258 2012-04-03 Chong Yidong <cyd@gnu.org>
12259
12260 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
12261 mail-insert-file, not its obsolete alias mail-attach-file.
12262
12263 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
12264
12265 * notifications.el (notifications-notify): Fix docstring.
12266
12267 2012-04-02 Glenn Morris <rgm@gnu.org>
12268
12269 * emacs-lisp/authors.el (authors-aliases): Another addition.
12270
12271 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
12272
12273 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
12274 `tramp-compat-call-process' instead of `tramp-local-call-process'.
12275 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
12276
12277 2012-04-01 Chong Yidong <cyd@gnu.org>
12278
12279 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
12280 Handle root directory properly.
12281 (copy-directory): Caller changed.
12282
12283 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12284 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
12285
12286 2012-03-31 Glenn Morris <rgm@gnu.org>
12287
12288 * term/xterm.el (xterm-extra-capabilities): Doc fix.
12289
12290 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
12291
12292 * calendar/calendar.el (calendar-window-list)
12293 (calendar-hide-window): Restore. (Bug#11140)
12294 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
12295
12296 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
12297
12298 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12299
12300 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12301 Check if file is a symlink (Bug#10489).
12302
12303 * files.el (copy-directory): Likewise.
12304
12305 2012-03-30 Chong Yidong <cyd@gnu.org>
12306
12307 * image.el (imagemagick-types-inhibit)
12308 (imagemagick-register-types): Doc fix.
12309
12310 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12311
12312 * textmodes/ispell.el (ispell-get-extended-character-mode):
12313 Disable extended-char-mode for hunspell. hunspell does not support it
12314 and treats ~word as ordinary words in pipe mode.
12315
12316 2012-03-30 Glenn Morris <rgm@gnu.org>
12317
12318 * tutorial.el (help-with-tutorial): Ensure local variables don't
12319 happen to make the buffer read-only. (Bug#11127)
12320
12321 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
12322
12323 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
12324 (perl-calculate-indent): Return `noindent' in strings.
12325
12326 2012-03-28 Sam Steingold <sds@gnu.org>
12327
12328 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
12329 instead of the broken adhockery which does not prevent calendar
12330 buffers from being displayed at random after exit.
12331 (calendar-window-list, calendar-hide-window): Remove the broken
12332 adhockery.
12333
12334 2012-03-28 Glenn Morris <rgm@gnu.org>
12335
12336 * replace.el (query-replace-map): Doc fix.
12337
12338 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
12339
12340 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
12341 contents. (Bug#11109)
12342
12343 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12344
12345 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
12346 (bug#11077).
12347 (avl-tree--check, avl-tree--check-node): New funs.
12348
12349 2012-03-27 Martin Rudalics <rudalics@gmx.at>
12350
12351 * window.el (switch-to-visible-buffer): New option.
12352 (switch-to-prev-buffer, switch-to-next-buffer):
12353 Observe switch-to-visible-buffer. Make sure that checking for a window
12354 showing a buffer already is done on the same frame.
12355
12356 2012-03-27 Glenn Morris <rgm@gnu.org>
12357
12358 * startup.el (mail-host-address): Doc fix.
12359
12360 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12361
12362 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
12363 than 197 variables.
12364
12365 2012-03-26 Ami Fischman <ami@fischman.org>
12366
12367 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
12368
12369 2012-03-26 Glenn Morris <rgm@gnu.org>
12370
12371 * files.el (save-buffers-kill-emacs): Doc fix.
12372
12373 * startup.el (normal-top-level, command-line, command-line-1):
12374 Give them doc strings.
12375
12376 2012-03-25 Eli Zaretskii <eliz@gnu.org>
12377
12378 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
12379 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
12380
12381 2012-03-25 Chong Yidong <cyd@gnu.org>
12382
12383 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
12384 theme if it was previously enabled before (Bug#11031).
12385
12386 * cus-theme.el (custom-theme-write-faces): Retrieve current face
12387 spec with custom-face-get-current-spec if its :shown-value is not
12388 determined yet (Bug#9337).
12389 (customize-create-theme, custom-theme-revert): Doc fixes.
12390
12391 * button.el (button-at): Minor addition to docstring.
12392
12393 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
12394
12395 * vc/vc.el (vc-merge): Fix a prompt.
12396
12397 2012-03-24 Chong Yidong <cyd@gnu.org>
12398
12399 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
12400 point (Bug#9623).
12401
12402 * button.el (button-at): Minor addition to docstring.
12403
12404 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12405
12406 * newcomment.el (comment-choose-indent): No space after BOL.
12407
12408 2012-03-22 Sam Steingold <sds@gnu.org>
12409
12410 * window.el (switch-to-prev-buffer): Revert last patch because the
12411 bug turned out to be an advertised feature (Elisp manual 28.14).
12412
12413 2012-03-22 Glenn Morris <rgm@gnu.org>
12414
12415 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
12416 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
12417
12418 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12419
12420 * net/network-stream.el (network-stream-open-starttls): Make error
12421 message under Windows be less misleading.
12422
12423 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
12424
12425 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
12426 understands (bug#9942).
12427
12428 2012-03-22 Chong Yidong <cyd@gnu.org>
12429
12430 * simple.el (end-of-visible-line): Handle return value of
12431 next-single-property-change properly (Bug#9371).
12432
12433 2012-03-22 Kenichi Handa <handa@m17n.org>
12434
12435 * international/quail.el (quail-insert-kbd-layout): Fix previous
12436 change. To avoid unwanted bidi reordering, use
12437 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
12438
12439 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
12440
12441 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
12442 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
12443 (ruby-beginning-of-indent): Be more careful with the difference
12444 between word-boundary and symbol boundary.
12445 (ruby-mode-syntax-table): Make : a symbol constituent.
12446
12447 2012-03-21 Andreas Politz <politza@fh-trier.de>
12448
12449 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
12450
12451 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12452
12453 * progmodes/etags.el (tags-completion-at-point-function):
12454 Improve last fix.
12455
12456 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
12457
12458 2012-03-21 Sam Steingold <sds@gnu.org>
12459
12460 * progmodes/etags.el (tags-completion-at-point-function):
12461 Avoid the error when point is inside the pattern.
12462
12463 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
12464
12465 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
12466 line (Bug#10855).
12467
12468 2012-03-21 Drew Adams <drew.adams@oracle.com>
12469
12470 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
12471
12472 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
12473
12474 * ido.el (ido-set-current-directory, ido-read-internal)
12475 (ido-choose-completion-string, ido-completion-help): Handle nil
12476 value of ido-completion-buffer (Bug#11008).
12477
12478 2012-03-21 Sam Steingold <sds@gnu.org>
12479
12480 * window.el (switch-to-prev-buffer): Do not switch to a visible
12481 window previous buffer, just like with the frame previous buffers.
12482
12483 2012-03-21 Chong Yidong <cyd@gnu.org>
12484
12485 * faces.el (make-face, make-empty-face, copy-face):
12486 * face-remap.el (face-remap-add-relative, face-remap-set-base):
12487 Doc fixes.
12488
12489 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 * wid-edit.el (widget-complete-field): Remove (bug#11051).
12492 (widget-complete): Remove broken use of it.
12493
12494 2012-03-20 Chong Yidong <cyd@gnu.org>
12495
12496 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12497 Use string-width and truncate-string-width to handle arbitrary
12498 characters.
12499
12500 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
12501
12502 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
12503 to draw rectangles, not squares. (Regression introduced by revno
12504 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
12505
12506 2012-03-18 Chong Yidong <cyd@gnu.org>
12507
12508 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
12509 it is not yet defined (for temacs).
12510
12511 2012-03-18 Leo Liu <sdl.web@gmail.com>
12512
12513 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
12514 prefix.
12515
12516 2012-03-17 Eli Zaretskii <eliz@gnu.org>
12517
12518 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
12519 (ispell-choices-win-default-height, ispell-silently-savep)
12520 (ispell-dictionary-alist, ispell-encoding8-command)
12521 (ispell-check-version, ispell-aspell-find-dictionary)
12522 (ispell-valid-dictionary-list, ispell-words-keyword)
12523 (ispell-get-word, ispell-internal-change-dictionary)
12524 (ispell-region, ispell-skip-region-list)
12525 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
12526 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
12527 (ispell-message-text-end, ispell-message)
12528 (ispell-buffer-local-parsing): Doc fix.
12529
12530 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
12531
12532 * htmlfontify.el: Add support for code block fontification for ODT
12533 export (Bug #9914).
12534 (hfy-optimisations): Define new option
12535 `body-text-only'
12536 (hfy-fontify-buffer): Honor above setting.
12537 (hfy-begin-span, hfy-end-span): New routines factored out form
12538 `hfy-fontify-buffer'.
12539 (hfy-begin-span-handler, hfy-end-span-handler): New variables
12540 that permit insertion of custom tags.
12541 (hfy-fontify-buffer): Use above handlers.
12542 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
12543 (hfy-face-to-css): Re-defined to be a variable.
12544 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
12545 over multiple runs. This is made possible by having the caller let
12546 bind a special variable `hfy-user-sheet-assoc'.
12547 (htmlfontify-string): New defun.
12548 (hfy-compile-face-map): Make sure that the last char in the
12549 buffer is correctly fontified.
12550 (hfy-face-resolve-face): Whitespace only change.
12551
12552 2012-03-17 Eli Zaretskii <eliz@gnu.org>
12553
12554 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
12555 message more clear.
12556
12557 2012-03-16 Leo Liu <sdl.web@gmail.com>
12558
12559 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
12560
12561 2012-03-16 Alan Mackenzie <acm@muc.de>
12562
12563 Further optimize the handling of large macros.
12564
12565 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
12566 limit to a call of `c-literal-limits'.
12567 (c-determine-+ve-limit): New function.
12568 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
12569 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
12570 In CASE 5B, restrict a search limit to 500.
12571 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
12572
12573 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
12574 Restrict macro bounds to +-500 from after-change's BEG END.
12575
12576 2012-03-16 Leo Liu <sdl.web@gmail.com>
12577
12578 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
12579
12580 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
12581
12582 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
12583 `special-mode' setting of `buffer-read-only'. (Bug#11010)
12584
12585 2012-03-16 Glenn Morris <rgm@gnu.org>
12586
12587 * view.el (view-buffer, view-buffer-other-window)
12588 (view-buffer-other-frame): Doc fixes re special mode-class.
12589
12590 * subr.el (eval-after-load): If named feature is provided not from
12591 a file, run after-load forms. (Bug#10946)
12592
12593 * calendar/calendar.el (calendar-insert-at-column):
12594 Handle non-unit-width characters a bit better. (Bug#10978)
12595
12596 2012-03-15 Chong Yidong <cyd@gnu.org>
12597
12598 * emacs-lisp/ring.el (ring-extend): New function.
12599 (ring-insert+extend): Extend the ring correctly (Bug#11019).
12600
12601 * comint.el (comint-read-input-ring)
12602 (comint-add-to-input-history): Grow comint-input-ring lazily.
12603
12604 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12605
12606 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
12607 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
12608
12609 * imenu.el: Fix multiple inheritance breakage (bug#9199).
12610 (imenu-add-to-menubar): Don't add a redundant index.
12611 (imenu-update-menubar): Handle a dynamically composed keymap.
12612
12613 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
12614
12615 * mail/sendmail.el (mail-encode-header):
12616 Bind rfc2047-encode-encoded-words to nil.
12617
12618 2012-03-13 Glenn Morris <rgm@gnu.org>
12619
12620 * calendar/calendar.el (calendar-string-spread):
12621 Handle non-unit-width characters a bit better. (Bug#10978)
12622
12623 2012-03-13 Leo Liu <sdl.web@gmail.com>
12624
12625 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
12626 directory and file as argument (Bug#10822).
12627
12628 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
12629
12630 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
12631 For dynamically generated code, follow $PC.
12632 (gdb-disassembly-handler-custom): Handle no function name case.
12633
12634 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
12635
12636 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
12637 * emulation/ws-mode.el (ws-query-replace):
12638 * sort.el (sort-regexp-fields):
12639 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
12640
12641 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12642
12643 * dabbrev.el: Fix cycle completion order (bug#10963).
12644 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
12645 (dabbrev-completion): Don't use an obarray; provide
12646 a cycle-sort-function.
12647
12648 2012-03-12 Leo Liu <sdl.web@gmail.com>
12649
12650 * simple.el (kill-new): Use equal-including-properties for comparison.
12651 (kill-do-not-save-duplicates): Doc fix.
12652
12653 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12654
12655 * dabbrev.el: Fix cycle completion (bug#10963).
12656 Use lexical binding and wrap to 80 columns.
12657 (dabbrev-completion): Delay computing the list of completions.
12658
12659 2012-03-12 Kenichi Handa <handa@m17n.org>
12660
12661 * international/quail.el (quail-insert-kbd-layout): Surround each
12662 row by LRO and PDF instead of inserting many LRMs. Pad the left
12663 and right of each non-spacing marks. Insert invisible space
12664 between lower and upper characters to prevent composition.
12665
12666 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12667
12668 * minibuffer.el (minibuffer-complete): Don't get confused when the
12669 function is run twice via different commands (bug#10958).
12670 (complete-with-action): Fix docstring.
12671
12672 2012-03-12 Chong Yidong <cyd@gnu.org>
12673
12674 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
12675 (nxml-completion-at-point-function): New function.
12676 (nxml-mode): Use it.
12677 (nxml-bind-meta-tab-to-complete-flag): Default to t.
12678
12679 * emacs-lisp/package.el (package-unpack, package-unpack-single):
12680 Load generated autoloads file before byte compiling (Bug#10970).
12681 (package--make-autoloads-and-compile): New helper fun.
12682
12683 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
12684
12685 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
12686
12687 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
12688
12689 * autorevert.el (auto-revert-handler): Ensure, that
12690 file-readable-p is applied only for local files or in
12691 auto-revert-tail-mode.
12692
12693 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
12694
12695 * server.el (server-eval-at): Handle non-tcp connections.
12696 Decode result string.
12697
12698 * server.el (server-msg-size): New constant.
12699 (server-reply-print): New function.
12700 (server-eval-and-print): Use it.
12701 (server-eval-at): Use server-quote-arg and server-unquote-arg.
12702 Handle -print-nonl.
12703
12704 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
12705
12706 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
12707 (Bug#10987).
12708
12709 2012-03-11 Chong Yidong <cyd@gnu.org>
12710
12711 * simple.el (goto-line): Doc fix (Bug#9938).
12712
12713 * subr.el (save-window-excursion): Doc fix (Bug#9979).
12714
12715 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
12716 when finished (Bug#10963).
12717
12718 2012-03-11 Martin Rudalics <rudalics@gmx.at>
12719
12720 * window.el (split-window-below): Fix bug in case where
12721 split-window-keep-point is nil (Bug#10971).
12722
12723 2012-03-11 Juri Linkov <juri@jurta.org>
12724
12725 * replace.el (replace-highlight): Set isearch-word to nil
12726 unconditionally. (Bug#10887)
12727
12728 2012-03-10 Eli Zaretskii <eliz@gnu.org>
12729
12730 * net/mairix.el (mairix-replace-invalid-chars): Rename from
12731 mairix-replace-illegal-chars; all callers changed. Don't remove
12732 ^, ~, and = characters: they are meaningful in mairix search specs.
12733 (mairix-widget-create-query): Add usage information about mairix
12734 search forms: negating words, searching for substrings, etc.
12735
12736 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
12737
12738 * international/fontset.el (font-encoding-alist): Add an entry for
12739 ksx1001 (Bug#5667).
12740
12741 2012-03-10 Richard Stallman <rms@gnu.org>
12742
12743 * mail/sendmail.el (mail-encode-header):
12744 Set rfc2047-encode-encoded-words.
12745
12746 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
12747
12748 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
12749 view buffer means not swapped.
12750 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
12751 (rmail-write-region-annotate): Error if real text has disappeared.
12752
12753 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
12754
12755 2012-03-10 Chong Yidong <cyd@gnu.org>
12756
12757 * emulation/cua-rect.el (cua--init-rectangles):
12758 * emulation/cua-base.el (cua--init-keymaps):
12759 Add delete-forward-char to remappings (Bug#9666).
12760
12761 2012-03-10 Martin Rudalics <rudalics@gmx.at>
12762
12763 * speedbar.el (speedbar-unhighlight-one-tag-line):
12764 Avoid unhighlighting due to frame switching (Bug#10275).
12765
12766 2012-03-10 Chong Yidong <cyd@gnu.org>
12767
12768 * minibuffer.el (completion-in-region, completion-help-at-point):
12769 Give the completion field overlay a high priority (Bug#6830).
12770
12771 * dired.el (dired-goto-file): Recognize absolute file name
12772 listings (Bug#7126).
12773 (dired-goto-file-1): New helper function.
12774 (dired-toggle-read-only): Inhibit warnings.
12775
12776 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
12777
12778 * net/dbus.el (dbus-property-handler): Return empty array if
12779 there are no properties.
12780
12781 2012-03-09 Leo Liu <sdl.web@gmail.com>
12782
12783 * savehist.el (savehist-printable): Stricter check for string
12784 value (Bug#10937).
12785
12786 2012-03-09 Eli Zaretskii <eliz@gnu.org>
12787
12788 * mail/smtpmail.el (smtpmail-send-it):
12789 Bind coding-system-for-write to *-unix, so that FCC files are kept in
12790 valid mbox format.
12791
12792 2012-03-09 Glenn Morris <rgm@gnu.org>
12793
12794 * files.el (dir-locals-find-file):
12795 Don't check result is regular, readable.
12796 (dir-locals-read-from-file): Demote errors.
12797
12798 2012-03-08 Eli Zaretskii <eliz@gnu.org>
12799
12800 * international/quail.el (quail-insert-kbd-layout):
12801 Insert invisible LRM characters before each character in a keyboard
12802 layout cell, to prevent their reordering by bidi display engine.
12803 For details, see the discussion in
12804 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
12805
12806 2012-03-08 Alan Mackenzie <acm@muc.de>
12807
12808 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
12809 the starting position; make it extend the marked region when
12810 invoked repeatedly - all under appropriate circumstances.
12811 Fixes bugs #5525, #10906.
12812
12813 2012-03-08 Glenn Morris <rgm@gnu.org>
12814
12815 * files.el (locate-dominating-file, dir-locals-find-file):
12816 Undo 2012-03-06 change.
12817
12818 2012-03-07 Eli Zaretskii <eliz@gnu.org>
12819
12820 * international/quail.el (quail-help):
12821 Force bidi-paragraph-direction be left-to-right. See discussion in
12822 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
12823 for the reason.
12824
12825 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
12826
12827 Avoid superfluous registering of signals. (Bug#10807)
12828
12829 * notifications.el (notifications-on-action-object)
12830 (notifications-on-close-object): New defvars.
12831 (notifications-on-action-signal, notifications-on-closed-signal):
12832 Unregister the signal if not needed any longer.
12833 (notifications-notify): Register `notifications-action-signal' or
12834 `notifications-closed-signal', if :on-action or :on-close has been
12835 passed as argument.
12836
12837 2012-03-07 Chong Yidong <cyd@gnu.org>
12838
12839 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
12840 non-X platforms.
12841
12842 2012-03-06 Glenn Morris <rgm@gnu.org>
12843
12844 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
12845 (x-disown-selection-internal, x-get-selection-internal):
12846 Doc fix (add arglist signatures). (Bug#10783)
12847
12848 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
12849
12850 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
12851 Handle breakpoints with no "type".
12852
12853 2012-03-06 Glenn Morris <rgm@gnu.org>
12854
12855 * files.el (locate-dominating-file): Add optional predicate argument.
12856 (dir-locals-find-file): Make use of above change.
12857
12858 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
12859
12860 * info.el (Info-insert-dir): Also try "dir.gz".
12861
12862 2012-03-06 Glenn Morris <rgm@gnu.org>
12863
12864 * files.el (dir-locals-find-file):
12865 Ignore non-readable or non-regular files. (Bug#10928)
12866
12867 * files.el (locate-dominating-file): Doc fix.
12868
12869 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
12870
12871 * calendar/calendar.el (calendar-set-mode-line):
12872 `getenv' returns a string. (Bug#10951)
12873
12874 2012-03-05 Leo Liu <sdl.web@gmail.com>
12875
12876 * simple.el (backward-delete-char-untabify): Constrain point to
12877 field (Bug#10939).
12878
12879 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
12880
12881 2012-03-05 Chong Yidong <cyd@gnu.org>
12882
12883 * simple.el (count-words): If called from Lisp, return the word
12884 count, for symmetry with `count-lines'. Arglist changed.
12885 (count-words--message): Args changed. Consolidate counting code
12886 from count-words and count-words-region.
12887 (count-words-region): Caller changed.
12888 (count-lines-region): Make it an obsolete alias.
12889
12890 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
12891
12892 * saveplace.el (save-place-to-alist)
12893 (save-place-ignore-files-regexp): Allow value nil to disable this
12894 feature.
12895
12896 2012-03-04 Chong Yidong <cyd@gnu.org>
12897
12898 * faces.el (face-spec-reset-face): For the default face, reset the
12899 attributes to default values (Bug#10748).
12900
12901 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12902
12903 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
12904 previous patch: Check `message-send-mail-function', and not the
12905 default function (bug#10897).
12906
12907 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
12908
12909 * notifications.el (notifications-on-action-signal)
12910 (notifications-on-closed-signal): Check for unique service name of
12911 incoming event. Fix error in removing entry.
12912 (top): Register for signals with wildcard service name.
12913 (notifications-notify): Use daemon unique service name for map entries.
12914
12915 2012-03-04 Chong Yidong <cyd@gnu.org>
12916
12917 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
12918
12919 2012-03-04 Glenn Morris <rgm@gnu.org>
12920
12921 * abbrev.el (copy-abbrev-table, abbrev-table-p)
12922 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
12923 (expand-abbrev, define-abbrev-table): Doc fixes.
12924
12925 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12926
12927 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
12928 `message-default-send-mail-function' and not `send-mail-function'
12929 when doing the prompting for `sendmail-query-once' before sending
12930 in Message buffers (bug#10897).
12931
12932 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
12933 This is inconsistent with all the other stream functions, which leave
12934 the setting up to the higher levels (if so wanted) (bug#10931).
12935
12936 2012-03-02 Alan Mackenzie <acm@muc.de>
12937
12938 Depessimize the handling of very large macros.
12939
12940 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
12941 (c-macro-cache-syntactic): New variables to implement a one
12942 element macro cache.
12943 (c-invalidate-macro-cache): New function.
12944 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
12945 Adapt to use the new cache.
12946 (c-state-safe-place): Use better the cache of safe positions.
12947 (c-state-semi-nonlit-pos-cache)
12948 (c-state-semi-nonlit-pos-cache-limit):
12949 New variables for...
12950 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
12951 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
12952 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
12953 Use c-state-semi-safe-place.
12954
12955 * progmodes/cc-langs.el (c-get-state-before-change-functions):
12956 Add c-invalidate-macro-cache to the C, C++, Obj entries.
12957
12958 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
12959
12960 * jka-compr.el (jka-compr-call-process):
12961 Apply `file-accessible-directory-p' only when the default directory is
12962 not remote.
12963
12964 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
12965
12966 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
12967 access of FILE2, if FILE1 does not exist.
12968
12969 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
12970 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
12971
12972 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
12973 Add "PAGER=" to `process-environment'.
12974
12975 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
12976
12977 * progmodes/sql.el: Bug fix
12978 (sql-get-login-ext): Save login values in globals.
12979 (sql-get-login): Use new version of `sql-get-login-ext'.
12980 (sql-interactive-mode): Set global `sql-connection' to nil.
12981 (sql-connect): Set global values for connection.
12982 (sql-product-interactive): Save global values as buffer local.
12983
12984 2012-02-29 Leo Liu <sdl.web@gmail.com>
12985
12986 * abbrev.el (define-abbrevs): Reset sys to nil.
12987
12988 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12989
12990 * files.el (file-equal-p): Rename from `files-equal-p'.
12991 Return nil when one or both files don't exist.
12992 (file-subdir-of-p): Now only top directory must exists,
12993 return nil if it doesn't.
12994 (copy-directory): No need to test with `file-subdir-of-p' after
12995 creating dir.
12996 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
12997 to `file-equal-p'.
12998
12999 2012-02-28 Glenn Morris <rgm@gnu.org>
13000
13001 * shell.el (shell-mode):
13002 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
13003 * play/landmark.el (landmark-font-lock-face-O):
13004 * play/handwrite.el (handwrite):
13005 * play/gomoku.el (gomoku-O):
13006 * net/browse-url.el (browse-url-browser-display):
13007 * international/mule.el (define-charset):
13008 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
13009 * filesets.el (filesets-find-file-delay):
13010 * eshell/em-xtra.el (eshell-xtra):
13011 * eshell/em-unix.el (eshell-grep):
13012 * emulation/viper.el (viper-mode):
13013 * emacs-lisp/regexp-opt.el (regexp-opt-group):
13014 * emacs-lisp/easymenu.el (easy-menu-define):
13015 * calendar/timeclock.el (timeclock-use-display-time):
13016 * bs.el (bs-mode):
13017 * bookmark.el (bookmark-save-flag):
13018 Doc fix (standardize possessive apostrophe usage).
13019
13020 2012-02-27 Chong Yidong <cyd@gnu.org>
13021
13022 * emulation/viper-cmd.el (viper-intercept-ESC-key):
13023 Fix key-binding lookup for ESC key (Bug#9146).
13024
13025 * font-lock.el (font-lock-specified-p): Rename from
13026 font-lock-spec-present. Callers changed.
13027
13028 2012-02-27 Daniel Hackney <dan@haxney.org>
13029
13030 * emacs-lisp/package.el (package-compute-transaction):
13031 Handle holding a package version to t in package-load-list.
13032
13033 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
13034
13035 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
13036 (tramp-get-inode, tramp-get-device): Use cached values.
13037
13038 2012-02-26 Alan Mackenzie <acm@muc.de>
13039
13040 Check there is a font-lock specification before doing initial
13041 fontification.
13042
13043 * font-core.el (font-lock-mode): Move the conditional from
13044 :after-hook to font-lock-initial-fontify.
13045 (font-lock-default-function): Move the check for a specification
13046 to font-lock-spec-present.
13047
13048 * font-lock.el (font-lock-initial-fontify): Call ...
13049 (font-lock-spec-present): New function.
13050
13051 2012-02-26 Jim Blandy <jimb@red-bean.com>
13052
13053 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
13054 (gdb-send): Apply it to the operand of the '-interpreter-exec
13055 console' command, so that we can pass arguments with (say) quotes
13056 in them. Store exact string sent in gdb-debug-log (Bug#10765).
13057
13058 2012-02-26 Chong Yidong <cyd@gnu.org>
13059
13060 * help-fns.el (describe-function-1): Clarify description of
13061 remapping (Bug#10844).
13062
13063 * files.el (files-equal-p): Doc fix.
13064 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
13065 and quit the loop once a mismatch is found.
13066
13067 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
13068
13069 * bs.el (bs--show-with-configuration): Don't throw an error
13070 if the window cannot be split; otherwise, subsequent calls to
13071 bs-show fail, restoring a stale window config. (Bug#10882)
13072
13073 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
13074
13075 * term/ns-win.el (global-map): Bind ns-drag-file to
13076 ns-find-file (Bug#5855, Bug#10050).
13077
13078 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
13079
13080 * calendar/parse-time.el (parse-time-string): Allow extractor to
13081 return nil.
13082
13083 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
13084
13085 * net/tramp.el (tramp-file-name-for-operation):
13086 Add `files-equal-p' and `file-subdir-of-p'.
13087
13088 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
13089 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
13090 Add COPY-CONTENTS argument.
13091
13092 2012-02-25 Chong Yidong <cyd@gnu.org>
13093
13094 Add custom groups for VC backends, for consistency with vc-bzr.
13095
13096 * vc/vc-arch.el (vc-arch):
13097 * vc/vc-cvs.el (vc-cvs):
13098 * vc/vc-git.el (vc-git):
13099 * vc/vc-hg.el (vc-hg):
13100 * vc/vc-mtn.el (vc-mtn):
13101 * vc/vc-rcs.el (vc-rcs):
13102 * vc/vc-sccs.el (vc-sccs):
13103 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
13104 All relevant defcustoms reassigned.
13105
13106 2012-02-25 Chong Yidong <cyd@gnu.org>
13107
13108 * newcomment.el (comment-styles): Add autoload (Bug#10868).
13109
13110 * term/x-win.el (x-initialize-window-system): Reduce default for
13111 x-selection-timeout to 5 seconds (Bug#8869).
13112
13113 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13114
13115 * files.el (files-equal-p, file-subdir-of-p): New functions.
13116 (copy-directory): Error when trying to copy a directory on itself.
13117 Add missing copy-contents arg to tramp handler.
13118 * dired-aux.el (dired-copy-file-recursive): Same.
13119 (dired-create-files): Modify destination when source is equal to
13120 dest when copying files.
13121 Return also when dest is a subdir of source. (Bug#10489)
13122
13123 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
13124
13125 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
13126 (Bug#10874)
13127
13128 2012-02-23 Alan Mackenzie <acm@muc.de>
13129
13130 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
13131 parameter "after-hook:" to allow the expansion to run code after
13132 the execution of the mode hooks.
13133
13134 * font-lock.el (font-lock-initial-fontify): New function extracted
13135 from font-lock-mode-internal.
13136
13137 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
13138 :after-hook.
13139
13140 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13141
13142 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
13143 (completion--cache-all-sorted-completions): New function.
13144 (completion-all-sorted-completions): Use it.
13145 (completion--do-completion, minibuffer-force-complete):
13146 Use it to re-instate the flush hook.
13147
13148 * icomplete.el (icomplete-completions): Replace last fix with a better
13149 one (bug#10850).
13150
13151 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
13152
13153 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
13154 when it might call us back infinitely (bug#10797).
13155
13156 2012-02-23 Glenn Morris <rgm@gnu.org>
13157
13158 * minibuffer.el (completion-category-overrides): Doc fix.
13159
13160 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13161
13162 * minibuffer.el (completion-table-with-context): Fix inf-loop.
13163 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
13164
13165 2012-02-23 Glenn Morris <rgm@gnu.org>
13166
13167 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
13168 (authors-obsolete-files-regexps, authors-ignored-files)
13169 (authors-ambiguous-files, authors-renamed-files-alist):
13170 Add more entries.
13171
13172 2012-02-23 Juri Linkov <juri@jurta.org>
13173
13174 * isearch.el (isearch-occur): Sync interactive spec with occur's
13175 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
13176
13177 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
13178
13179 2012-02-22 Juri Linkov <juri@jurta.org>
13180
13181 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
13182 (ucs-insert): Doc fix. Check for hex digits in the string.
13183 Don't display `nil' in the error message. (Bug#10857)
13184
13185 2012-02-22 Alan Mackenzie <acm@muc.de>
13186
13187 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
13188
13189 2012-02-22 Glenn Morris <rgm@gnu.org>
13190
13191 * ffap.el (ffap-c-path):
13192 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
13193
13194 2012-02-22 Chong Yidong <cyd@gnu.org>
13195
13196 * custom.el (load-theme): Doc fix.
13197
13198 2012-02-22 Glenn Morris <rgm@gnu.org>
13199
13200 * dired-x.el (dired-guess-shell-alist-default):
13201 Remove escape sequences from nroff output. (Bug#172)
13202
13203 2012-02-21 Glenn Morris <rgm@gnu.org>
13204
13205 * vc/emerge.el (emerge-defvar-local):
13206 Set `permanent-local' property rather than unused `preserved'.
13207
13208 * textmodes/picture.el (picture-delete-char): New alias.
13209 (picture-mode-map): Use it. (Bug#10860)
13210 (picture-mode): Doc fix.
13211
13212 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
13213
13214 * newcomment.el (uncomment-region-default): Remove unused binding.
13215
13216 2012-02-21 Glenn Morris <rgm@gnu.org>
13217
13218 * textmodes/picture.el (picture-motion, picture-motion-reverse)
13219 (picture-self-insert, picture-tab-chars): Doc fix.
13220 (picture-mode-map): Fix C-a, C-e.
13221
13222 2012-02-20 Glenn Morris <rgm@gnu.org>
13223
13224 * emacs-lisp/authors.el (authors-aliases): Add another entry.
13225
13226 2012-02-20 Leo Liu <sdl.web@gmail.com>
13227
13228 * icomplete.el (icomplete-completions): Check FROM arg before
13229 passing to substring (Bug#10850).
13230
13231 2012-02-19 Chong Yidong <cyd@gnu.org>
13232
13233 * comint.el: Require ansi-color.
13234 (comint-output-filter-functions): Add ansi-color-process-output.
13235
13236 * ansi-color.el: Don't set comint-output-filter-functions; it is
13237 now in the initial value defined in comint.el.
13238 (ansi-color-apply-face-function): New variable.
13239 (ansi-color-apply-on-region): Use it.
13240 (ansi-color-apply-overlay-face): New function.
13241
13242 * shell.el (shell): No need to require ansi-color.
13243 (shell-mode): Use ansi-color-apply-face-function to highlight
13244 color escapes using font-lock-face property (Bug#10835).
13245
13246 2012-02-19 Chong Yidong <cyd@gnu.org>
13247
13248 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
13249 mode-line formats (Bug#10839).
13250
13251 2012-02-18 Glenn Morris <rgm@gnu.org>
13252
13253 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
13254
13255 * mail/undigest.el (unforward-rmail-message): Doc fix.
13256
13257 * saveplace.el (save-place-ignore-files-regexp): Add :version.
13258
13259 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13260
13261 * international/characters.el (script-list): Sync with the latest
13262 Unicode Character Database.
13263
13264 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
13265
13266 * international/titdic-cnv.el: Remove duplicate coding tag.
13267 * language/cham.el: Likewise.
13268 * language/tai-viet.el: Likewise.
13269
13270 2012-02-18 Glenn Morris <rgm@gnu.org>
13271
13272 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
13273 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
13274 (calendar-bahai-all-holidays-flag, calendar-other-dates):
13275 * calendar/diary-lib.el (diary-abbreviated-year-flag):
13276 * calendar/holidays.el (holiday-bahai-holidays)
13277 (calendar-holidays, list-holidays):
13278 Use utf-8 Bahá'í in doc-strings, menus, etc.
13279
13280 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
13281
13282 * saveplace.el (save-place-ignore-files-regexp): New variable
13283 allowing for excluding files from saving their location of point.
13284 The default value matches the temporary commit message editing
13285 files from Git, SVN, Bazaar, and Mercurial.
13286 (save-place-to-alist): Use it.
13287
13288 2012-02-17 Lawrence Mitchell <wence@gmx.li>
13289 Stefan Monnier <monnier@iro.umontreal.ca>
13290
13291 * newcomment.el (uncomment-region-default): Don't leave extra space
13292 when an arg is provided (bug#8150).
13293
13294 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
13295
13296 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
13297
13298 2012-02-17 Glenn Morris <rgm@gnu.org>
13299
13300 * net/socks.el: Require network-stream. (Bug#10599)
13301
13302 2012-02-17 Kenichi Handa <handa@m17n.org>
13303
13304 * international/charprop.el:
13305 * international/uni-name.el:
13306 * international/uni-old-name.el:
13307 * international/uni-comment.el: Regenerate.
13308
13309 2012-02-16 Glenn Morris <rgm@gnu.org>
13310
13311 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
13312 Interactively in calendar buffer, give an error if not on a date.
13313
13314 2012-02-15 Glenn Morris <rgm@gnu.org>
13315
13316 * shell.el (shell-delimiter-argument-list):
13317 Revert 2011-02-17 change. (Bug#8027)
13318
13319 2012-02-15 Chong Yidong <cyd@gnu.org>
13320
13321 * minibuffer.el (completion-at-point-functions): Doc fix.
13322
13323 * custom.el (defcustom): Doc fix; note use of defvar.
13324
13325 2012-02-15 Glenn Morris <rgm@gnu.org>
13326
13327 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
13328 Doc fixes.
13329
13330 2012-02-14 Glenn Morris <rgm@gnu.org>
13331
13332 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
13333
13334 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
13335
13336 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
13337 way the ports list is computed.
13338 (smtpmail-query-smtp-server): Prompt the user for a port number if
13339 we can't connect to any of the standard ports (bug#10810).
13340
13341 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
13342
13343 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
13344
13345 2012-02-13 Glenn Morris <rgm@gnu.org>
13346
13347 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
13348
13349 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
13350
13351 * net/gnutls.el (gnutls-trustfiles): New variable.
13352 (gnutls-negotiate): Use it.
13353
13354 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13355
13356 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
13357 does its stuff if Gnus is running.
13358
13359 2012-02-13 Alan Mackenzie <acm@muc.de>
13360
13361 Fix a loop in c-set-fl-decl-start.
13362
13363 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
13364 c-backward-syntactic-ws actually moves backwards.
13365
13366 2012-02-13 Leo Liu <sdl.web@gmail.com>
13367
13368 * net/rcirc.el (rcirc-markup-attributes): Move point to the
13369 beginning so that all \C-o chars are removed.
13370
13371 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
13372
13373 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
13374
13375 2012-02-12 Alan Mackenzie <acm@muc.de>
13376
13377 Fix infinite loop with long macros.
13378 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
13379
13380 2012-02-12 Chong Yidong <cyd@gnu.org>
13381
13382 * window.el (display-buffer): Doc fix (Bug#10785).
13383
13384 2012-02-12 Glenn Morris <rgm@gnu.org>
13385
13386 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13387 (x-disown-selection-internal, x-get-selection-internal):
13388 Sync docs with the xselect.c versions.
13389
13390 * allout-widgets.el: Add missing license notice.
13391
13392 2012-02-11 Glenn Morris <rgm@gnu.org>
13393
13394 * select.el (x-get-selection-internal, x-own-selection-internal)
13395 (x-disown-selection-internal):
13396 * x-dnd.el (x-get-selection-internal): Update declarations.
13397
13398 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
13399
13400 * window.el (window-sides-slots):
13401 * tool-bar.el (tool-bar-position):
13402 * term/xterm.el (xterm-extra-capabilities):
13403 * ses.el (ses-self-reference-early-detection):
13404 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
13405 (verilog-auto-wire-type)
13406 (verilog-auto-delete-trailing-whitespace)
13407 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
13408 (verilog-auto-tieoff-declaration):
13409 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
13410 (sql-oracle-statement-starters, sql-oracle-scan-on):
13411 * progmodes/prolog.el (prolog-align-comments-flag)
13412 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
13413 (prolog-left-indent-regexp, prolog-paren-indent-p)
13414 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
13415 (prolog-types, prolog-mode-specificators)
13416 (prolog-determinism-specificators, prolog-directives)
13417 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
13418 (prolog-electric-dot-flag)
13419 (prolog-electric-dot-full-predicate-template)
13420 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
13421 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
13422 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
13423 (prolog-program-switches, prolog-prompt-regexp)
13424 (prolog-debug-on-string, prolog-debug-off-string)
13425 (prolog-trace-on-string, prolog-trace-off-string)
13426 (prolog-zip-on-string, prolog-zip-off-string)
13427 (prolog-use-standard-consult-compile-method-flag)
13428 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
13429 (prolog-imenu-max-lines, prolog-info-predicate-index)
13430 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
13431 (prolog-char-quote-workaround):
13432 * progmodes/cc-vars.el (c-defun-tactic):
13433 * net/tramp.el (tramp-encoding-command-interactive)
13434 (tramp-local-end-of-line):
13435 * net/soap-client.el (soap-client):
13436 * net/netrc.el (netrc-file):
13437 * net/gnutls.el (gnutls):
13438 * minibuffer.el (completion-category-overrides)
13439 (completion-cycle-threshold)
13440 (completion-pcm-complete-word-inserts-delimiters):
13441 * man.el (Man-name-local-regexp):
13442 * mail/feedmail.el (feedmail-display-full-frame):
13443 * international/characters.el (glyphless-char-display-control):
13444 * eshell/em-ls.el (eshell-ls-date-format):
13445 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
13446 (lisp-lambda-list-keyword-parameter-indentation)
13447 (lisp-lambda-list-keyword-parameter-alignment):
13448 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
13449 * dired-x.el (dired-omit-verbose):
13450 * cus-theme.el (custom-theme-allow-multiple-selections):
13451 * calc/calc.el (calc-highlight-selections-with-faces)
13452 (calc-lu-field-reference, calc-lu-power-reference)
13453 (calc-note-threshold):
13454 * battery.el (battery-mode-line-limit):
13455 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
13456 (archive-7z-update):
13457 * allout.el (allout-prefixed-keybindings)
13458 (allout-unprefixed-keybindings)
13459 (allout-inhibit-auto-fill-on-headline)
13460 (allout-flattened-numbering-abbreviation):
13461 * allout-widgets.el (allout-widgets-auto-activation)
13462 (allout-widgets-icons-dark-subdir)
13463 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
13464 (allout-widgets-theme-dark-background)
13465 (allout-widgets-theme-light-background)
13466 (allout-widgets-item-image-properties-emacs)
13467 (allout-widgets-item-image-properties-xemacs)
13468 (allout-widgets-run-unit-tests-on-load)
13469 (allout-widgets-time-decoration-activity)
13470 (allout-widgets-hook-error-post-time)
13471 (allout-widgets-track-decoration):
13472 Add missing :version tags to new defcustoms and defgroups.
13473
13474 * progmodes/sql.el (sql-ansi-statement-starters)
13475 (sql-oracle-statement-starters): Add custom type.
13476
13477 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
13478 (prolog-system-version): Give it a type.
13479
13480 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13481
13482 * term/pc-win.el (x-select-text, x-selection-owner-p)
13483 (x-own-selection-internal, x-disown-selection-internal)
13484 (x-get-selection-internal): Sync doc strings and argument lists
13485 with xselect.c, common-win.el and x-win.el. (Bug#10783)
13486
13487 2012-02-11 Leo Liu <sdl.web@gmail.com>
13488
13489 * progmodes/python.el (python-end-of-statement): Fix infinite
13490 loop. (Bug#10788)
13491
13492 2012-02-10 Glenn Morris <rgm@gnu.org>
13493
13494 * international/mule-cmds.el (unify-8859-on-encoding-mode)
13495 (unify-8859-on-decoding-mode): Properly mark as obsolete.
13496
13497 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
13498
13499 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
13500 about SMTP before checking the From header.
13501
13502 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
13503 into own function for reuse by emacsbug.el.
13504
13505 2012-02-10 Leo Liu <sdl.web@gmail.com>
13506
13507 * subr.el (condition-case-unless-debug): Rename from
13508 condition-case-no-debug. All callers changed.
13509 (with-demoted-errors): Fix caller.
13510
13511 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
13512 * nxml/rng-valid.el (rng-do-some-validation):
13513 * emacs-lisp/package.el (package-refresh-contents)
13514 (package-menu-execute):
13515 * desktop.el (desktop-create-buffer):
13516 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
13517
13518 2012-02-10 Glenn Morris <rgm@gnu.org>
13519
13520 * textmodes/bibtex.el:
13521 Add missing :version tags for new/changed defcustoms.
13522
13523 * files.el (remote-file-name-inhibit-cache): Doc fixes.
13524
13525 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
13526
13527 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
13528 (smtpmail-via-smtp): Use it, or fall back on the From address.
13529 (smtpmail-send-it): Ditto.
13530
13531 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
13532
13533 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
13534 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
13535 (byte-compile-tmp-var): New const.
13536 (byte-compile-defvar): Use it to minimize .elc size.
13537 Just use `defvar' rather than simulate it (bug#10761).
13538
13539 2012-02-09 Glenn Morris <rgm@gnu.org>
13540
13541 * files.el (rename-uniquely): Doc fix. (Bug#3806)
13542
13543 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
13544 Add :version tags.
13545
13546 * progmodes/compile.el (compilation-error-screen-columns)
13547 (compilation-first-column, compilation-filter-start): Doc fixes.
13548
13549 * vc/log-view.el (log-view-toggle-entry-display):
13550 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
13551
13552 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
13553 (report-emacs-bug-can-use-xdg-email):
13554 (report-emacs-bug-insert-to-mailer): Doc fixes.
13555 (report-emacs-bug): Message fix.
13556
13557 * net/browse-url.el (browse-url-can-use-xdg-open)
13558 (browse-url-xdg-open): Doc fixes.
13559
13560 * electric.el (electric-indent-mode, electric-pair-mode)
13561 (electric-layout-rules, electric-layout-mode): Doc fixes.
13562 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
13563
13564 2012-02-08 Martin Rudalics <rudalics@gmx.at>
13565
13566 * server.el (server-unselect-display): Don't inadvertently kill
13567 the current buffer. (Bug#10729)
13568
13569 2012-02-08 Glenn Morris <rgm@gnu.org>
13570
13571 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
13572 (sql-list-table): Doc fixes.
13573
13574 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
13575 Comment out (does nothing).
13576
13577 * completion.el (dynamic-completion-mode):
13578 * dirtrack.el (dirtrack-debug-mode):
13579 * electric.el (electric-layout-mode):
13580 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
13581 * face-remap.el (text-scale-mode, buffer-face-mode):
13582 * iimage.el (iimage-mode):
13583 * image-mode.el (image-transform-mode):
13584 * minibuffer.el (completion-in-region-mode):
13585 * scroll-lock.el (scroll-lock-mode):
13586 * simple.el (next-error-follow-minor-mode):
13587 * tar-mode.el (tar-subfile-mode):
13588 * tooltip.el (tooltip-mode):
13589 * vcursor.el (vcursor-use-vcursor-map):
13590 * wid-browse.el (widget-minor-mode):
13591 * emulation/tpu-edt.el (tpu-edt-mode):
13592 * emulation/tpu-extras.el (tpu-cursor-free-mode):
13593 * international/iso-ascii.el (iso-ascii-mode):
13594 * language/thai-util.el (thai-word-mode):
13595 * mail/supercite.el (sc-minor-mode):
13596 * net/goto-addr.el (goto-address-mode):
13597 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
13598 * progmodes/cwarn.el (cwarn-mode):
13599 * progmodes/flymake.el (flymake-mode):
13600 * progmodes/glasses.el (glasses-mode):
13601 * progmodes/hideshow.el (hs-minor-mode):
13602 * progmodes/pascal.el (pascal-outline-mode):
13603 * textmodes/enriched.el (enriched-mode):
13604 * vc/smerge-mode.el (smerge-mode):
13605 Doc fixes (minor mode argument).
13606
13607 2012-02-07 Eli Zaretskii <eliz@gnu.org>
13608
13609 * ls-lisp.el (ls-lisp-sanitize): New function.
13610 (ls-lisp-insert-directory): Use it to fix or remove any elements
13611 in file-alist with missing attributes. (Bug#4673)
13612
13613 2012-02-07 Alan Mackenzie <acm@muc.de>
13614
13615 Fix spurious recognition of c-in-knr-argdecl.
13616
13617 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
13618 putative K&R region.
13619
13620 2012-02-07 Alan Mackenzie <acm@muc.de>
13621
13622 * progmodes/cc-engine.el (c-forward-objc-directive):
13623 Prevent looping in "#pragma mark @implementation".
13624
13625 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
13626
13627 * notifications.el (notifications-on-closed-signal): Make `reason'
13628 optional. (Bug#10744)
13629
13630 2012-02-07 Glenn Morris <rgm@gnu.org>
13631
13632 * emacs-lisp/easy-mmode.el (define-minor-mode):
13633 Doc fixes for the macro and the mode it defines.
13634
13635 * image.el (imagemagick-types-inhibit): Doc fix.
13636
13637 * cus-start.el (imagemagick-render-type): Add it.
13638
13639 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
13640
13641 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
13642 Set the default at load time, too, so that `font-lock-fontify-buffer'
13643 can be called without setting up the entire mode first. This fixes
13644 a bug in `mm-inline-text' with C MIME parts.
13645
13646 2012-02-06 Chong Yidong <cyd@gnu.org>
13647
13648 * simple.el (list-processes--refresh): Delete exited processes
13649 (Bug#8094).
13650
13651 * comint.el (comint-next-prompt): next-single-char-property-change
13652 and prev-single-char-property-change never return nil (Bug#8657).
13653
13654 * custom.el (defcustom): Doc fix (Bug#9711).
13655
13656 2012-02-05 Chong Yidong <cyd@gnu.org>
13657
13658 * cus-edit.el (custom-variable-reset-backup): Quote the value
13659 before storing it in the customized-value property (Bug#6712).
13660 (custom-display): Add a customization type tag.
13661 (custom-buffer-create-internal): Improve tooltip message.
13662
13663 * wid-edit.el (widget-field-value-get): New optional arg to
13664 suppress trailing whitespace truncation.
13665 (character): Use it (Bug#2689).
13666
13667 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
13668
13669 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
13670 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
13671
13672 2012-02-05 Chong Yidong <cyd@gnu.org>
13673
13674 * cus-edit.el (custom-variable-value-create): For mismatched
13675 types, show the current value (Bug#7600).
13676
13677 * custom.el (defcustom): Doc fix.
13678
13679 2012-02-05 Glenn Morris <rgm@gnu.org>
13680
13681 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
13682
13683 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
13684
13685 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
13686 (pp-buffer): Use `ignore-errors', `looking-at-p'.
13687 (pp-last-sexp): Use `looking-at-p'.
13688
13689 2012-02-04 Glenn Morris <rgm@gnu.org>
13690
13691 * files.el (revert-buffer):
13692 Doc fix (mention revert-buffer-in-progress-p).
13693
13694 * emacs-lisp/ert-x.el (ert-simulate-command):
13695 Check deferred-action-list (which is obsolete) is bound.
13696
13697 * subr.el (with-wrapper-hook): Doc fixes.
13698
13699 * simple.el (filter-buffer-substring-functions)
13700 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
13701
13702 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
13703
13704 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
13705 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
13706
13707 2012-02-04 Leo Liu <sdl.web@gmail.com>
13708
13709 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
13710
13711 2012-02-04 Glenn Morris <rgm@gnu.org>
13712
13713 * image.el (image-extension-data): Add obsolete alias.
13714
13715 * isearch.el (isearch-update): Doc fix.
13716
13717 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
13718
13719 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
13720
13721 2012-02-03 Glenn Morris <rgm@gnu.org>
13722
13723 * image.el (image-animated-p): Doc fix. Use image-animated-types.
13724 (image-animate-timeout): Doc fix.
13725
13726 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
13727
13728 2012-02-02 Glenn Morris <rgm@gnu.org>
13729
13730 * server.el (server-auth-dir): Doc fix.
13731 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
13732
13733 * subr.el (run-mode-hooks): Doc fix.
13734
13735 2012-02-02 Juri Linkov <juri@jurta.org>
13736
13737 * image-mode.el (image-toggle-display-image): Remove tautological
13738 `major-mode' from the `derived-mode-p' test.
13739
13740 2012-02-02 Kenichi Handa <handa@m17n.org>
13741
13742 * composite.el (compose-region): Cancel previous change.
13743
13744 2012-02-02 Kenichi Handa <handa@m17n.org>
13745
13746 * composite.el (compose-region, compose-string): Signal error for
13747 a null string component (Bug#6988).
13748
13749 2012-02-01 Chong Yidong <cyd@gnu.org>
13750
13751 * view.el (view-buffer-other-window, view-buffer-other-frame):
13752 Handle special modes like view-buffer (Bug#10650).
13753 (view-buffer): Simplify.
13754
13755 * frame.el (set-frame-font): Tweak meaning of third argument.
13756
13757 * dynamic-setting.el (font-setting-change-default-font):
13758 Use set-frame-font (Bug#9982).
13759
13760 2012-02-01 Glenn Morris <rgm@gnu.org>
13761
13762 * progmodes/compile.el (compilation-internal-error-properties):
13763 Respect compilation-first-column in the "*compilation*" buffer.
13764
13765 * emacs-lisp/easy-mmode.el (define-minor-mode):
13766 Relax :variable's test for a named function.
13767
13768 2012-01-31 Alan Mackenzie <acm@muc.de>
13769
13770 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
13771 off by one error.
13772
13773 2012-01-31 Chong Yidong <cyd@gnu.org>
13774
13775 * frame.el (set-frame-font): New arg ALL-FRAMES.
13776
13777 * menu-bar.el (menu-set-font): Use set-frame-font.
13778
13779 * faces.el (face-spec-reset-face): Don't apply unspecified
13780 attribute values to the default face.
13781
13782 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
13783
13784 * progmodes/cwarn.el (cwarn): Remove dead link.
13785 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
13786 Remove * from defcustom docstrings.
13787 (turn-on-cwarn-mode): Make obsolete.
13788 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
13789 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
13790
13791 2012-01-31 Glenn Morris <rgm@gnu.org>
13792
13793 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
13794 Fix :variable handling of mode a symbol not equal to modefun.
13795 Allow named functions to be used as the cdr of :variable.
13796
13797 2012-01-30 Glenn Morris <rgm@gnu.org>
13798
13799 * emacs-lisp/authors.el (authors-fixed-entries):
13800 Remove reference to deleted file rnewspost.el.
13801
13802 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
13803
13804 * window.el (window-with-parameter): Remove unused variable `windows'.
13805 (window--side-check): Remove unused variable `code'.
13806 (window--resize-siblings): Remove unused variable `first'.
13807 (adjust-window-trailing-edge): Remove unused variable `failed'.
13808 (window-deletable-p, window--delete): Remove unused variable `buffer'.
13809 Use `let', not `let*'.
13810 (balance-windows-2): Remove unused variable `found'.
13811 (window--state-put-2): Remove unused variable `splits'.
13812 (window-state-put): Remove unused variable `selected'.
13813 (same-window-p): Use `string-match-p'.
13814 (display-buffer-assq-regexp): Remove unused variable `value'.
13815 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13816 Mark argument ALIST as ignored.
13817 (pop-to-buffer): Remove unused variable `old-window'.
13818
13819 2012-01-29 Eli Zaretskii <eliz@gnu.org>
13820
13821 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
13822 and .lzma compressed files.
13823
13824 2012-01-29 Chong Yidong <cyd@gnu.org>
13825
13826 * frame.el (window-system-default-frame-alist): Doc fix.
13827
13828 * dynamic-setting.el (font-setting-change-default-font): Don't
13829 change the default face if SET-FONT argument is non-nil (Bug#9982).
13830
13831 2012-01-29 Samuel Bronson <naesten@gmail.com>
13832
13833 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
13834
13835 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
13836
13837 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
13838 breakpoints in files outside current directory (Bug#6098).
13839
13840 2012-01-29 Chong Yidong <cyd@gnu.org>
13841
13842 * progmodes/python.el: Require ansi-color at top-level.
13843
13844 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
13845 Define and use in Emacs Lisp mode (Bug#9360).
13846 (lisp-mode-abbrev-table): Add doc.
13847 (lisp-mode-variables): Don't set local-abbrev-table.
13848 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
13849
13850 2012-01-28 Roland Winkler <winkler@gnu.org>
13851
13852 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
13853
13854 2012-01-28 Roland Winkler <winkler@gnu.org>
13855
13856 * textmodes/bibtex.el (bibtex-entry-alist): New function.
13857 (bibtex-set-dialect): Use it. Either set global values of
13858 dialect-dependent variables or bind these variables buffer-locally
13859 (Bug#10254).
13860 (bibtex-mode): Call bibtex-set-dialect via
13861 hack-local-variables-hook.
13862 (bibtex-dialect): Update docstring.
13863 Add safe-local-variable predicate.
13864 (bibtex-entry-alist, bibtex-field-alist): Initialize via
13865 bibtex-set-dialect.
13866 (bibtex-mode-map): Define menu for each dialect.
13867 (bibtex-entry): Fix docstring.
13868
13869 2012-01-28 Chong Yidong <cyd@gnu.org>
13870
13871 * eshell/esh-arg.el (eshell-quote-argument): New function.
13872
13873 * eshell/esh-ext.el (eshell-invoke-batch-file):
13874 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
13875 first arg to eshell-parse-command (Bug#10523).
13876
13877 2012-01-28 Drew Adams <drew.adams@oracle.com>
13878
13879 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
13880 `default-directory' is non-nil.
13881
13882 2012-01-28 Eli Zaretskii <eliz@gnu.org>
13883
13884 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
13885 line that displays system-configuration-options. (Bug#9924)
13886
13887 2012-01-28 Drew Adams <drew.adams@oracle.com>
13888
13889 * descr-text.el (describe-char): Show information about POS, in
13890 addition to information about the character at POS. Improve and
13891 update the doc string. Change "code point" to "code point in
13892 charset", to avoid confusion with the character's Unicode code
13893 point shown above that. (Bug#10129)
13894
13895 2012-01-28 Eli Zaretskii <eliz@gnu.org>
13896
13897 * descr-text.el (describe-char): Show the raw character, not only
13898 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
13899 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
13900 for the reasons.
13901
13902 2012-01-28 Phil Hagelberg <phil@hagelb.org>
13903
13904 * emacs-lisp/package.el (package-install):
13905 Run package-refresh-contents if there is no archive yet (Bug#9798).
13906
13907 2012-01-28 Chong Yidong <cyd@gnu.org>
13908
13909 * emacs-lisp/package.el (package-maybe-load-descriptor):
13910 New function, split from package-maybe-load-descriptor.
13911 (package-maybe-load-descriptor): Use it.
13912 (package-download-transaction): Fully load required packages
13913 inside the loop, so that `require' calls work (Bug#10593).
13914 (package-install): No need to call package-initialize now.
13915
13916 2012-01-28 Chong Yidong <cyd@gnu.org>
13917
13918 * simple.el (deactivate-mark): Doc fix (Bug#8614).
13919
13920 * tooltip.el (tooltip-mode): Doc fix.
13921 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
13922
13923 * frame.el (set-cursor-color): Doc fix (Bug#352).
13924
13925 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
13926 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
13927
13928 * cus-edit.el (custom-buffer-create-internal): Fix search button
13929 action (Bug#10542).
13930 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
13931
13932 2012-01-27 Eduard Wiebe <usenet@pusto.de>
13933
13934 * dired.el (dired-mark-files-regexp):
13935 Include any subdirectory components. (Bug#10445)
13936
13937 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
13938
13939 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
13940 Handle [host]:port syntax. (Bug#10533)
13941
13942 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
13943
13944 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
13945
13946 2012-01-26 Glenn Morris <rgm@gnu.org>
13947
13948 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
13949 * term.el (term-raw-escape-map): Use Control-X-prefix.
13950 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
13951
13952 2012-01-25 Martin Rudalics <rudalics@gmx.at>
13953
13954 * window.el (window-state-get, window--state-get-1): Don't deal
13955 with fixed-sizeness of windows. Simplify code.
13956
13957 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
13958
13959 * window.el (window--state-get-1, window--state-put-2):
13960 Don't save and restore the mark.
13961
13962 2012-01-25 Chong Yidong <cyd@gnu.org>
13963
13964 * custom.el (custom-variable-p): Doc fix.
13965
13966 2012-01-25 Glenn Morris <rgm@gnu.org>
13967
13968 * dired.el (dired-goto-file): Handle some of the more common
13969 characters that `ls -b' escapes. (Bug#10596)
13970
13971 * progmodes/compile.el (compilation-next-error-function):
13972 Respect compilation-first-column in the "*compilation*" buffer.
13973 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
13974
13975 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
13976
13977 2012-01-24 Glenn Morris <rgm@gnu.org>
13978
13979 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
13980
13981 2012-01-24 Julien Danjou <julien@danjou.info>
13982
13983 * color.el (color-rgb-to-hsl): Fix value computing.
13984 (color-hue-to-rgb): New function.
13985 (color-hsl-to-rgb): New function.
13986 (color-clamp, color-saturate-hsl, color-saturate-name)
13987 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
13988 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
13989
13990 2012-01-24 Glenn Morris <rgm@gnu.org>
13991
13992 * vc/vc-rcs.el (vc-rcs-create-tag):
13993 * vc/vc-sccs.el (vc-sccs-create-tag):
13994 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
13995
13996 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
13997
13998 * eshell/esh-util.el (eshell-read-hosts-file):
13999 Skip comment lines. (Bug#10549)
14000
14001 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
14002
14003 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
14004
14005 * subr.el (display-delayed-warnings): Doc fix.
14006 (collapse-delayed-warnings): New function to collapse identical
14007 adjacent warnings.
14008 (delayed-warnings-hook): Add it.
14009
14010 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
14011
14012 * net/tramp.el (tramp-action-login): Set connection property "login-as".
14013
14014 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
14015 (tramp-default-user-alist): Don't add "pscp".
14016 (tramp-do-copy-or-rename-file-out-of-band): Use connection
14017 property "login-as", if set. (Bug#10530)
14018
14019 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
14020
14021 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
14022 "plink1" and "psftp". (Bug#10530)
14023
14024 2012-01-21 Kenichi Handa <handa@m17n.org>
14025
14026 * international/mule-cmds.el (prefer-coding-system): Show a
14027 warning message if the default value of file-name-coding-system
14028 was not changed.
14029
14030 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14031
14032 * windmove.el (windmove-reference-loc):
14033 Fix windmove-reference-loc miscalculation.
14034
14035 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
14036
14037 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
14038 default unit.
14039
14040 2012-01-21 Glenn Morris <rgm@gnu.org>
14041
14042 * international/mule.el (auto-coding-alist): Add .tbz.
14043
14044 * files.el (local-enable-local-variables): Doc fix.
14045 (inhibit-local-variables-regexps): Rename from
14046 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
14047 Doc fix. Add some extensions from auto-coding-alist.
14048 (inhibit-local-variables-suffixes):
14049 Rename from inhibit-first-line-modes-suffixes. Doc fix.
14050 (inhibit-local-variables-p):
14051 New function, extracted from set-auto-mode-1.
14052 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
14053 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
14054 (hack-local-variables): Doc fix. Make the mode-only case
14055 respect enable-local-variables and friends.
14056 Respect inhibit-local-variables-regexps for file-locals, but
14057 not for directory-locals.
14058 (set-visited-file-name):
14059 Take account of inhibit-local-variables-regexps.
14060 Whether it applies may change as the file name is changed.
14061 * jka-cmpr-hook.el (jka-compr-install):
14062 * jka-compr.el (jka-compr-uninstall):
14063 Update for inhibit-first-line-modes-suffixes name change.
14064
14065 2012-01-20 Martin Rudalics <rudalics@gmx.at>
14066
14067 * help-macro.el (make-help-screen): Temporarily restore original
14068 binding for minor-mode-map-alist (Bug#10454).
14069
14070 2012-01-19 Julien Danjou <julien@danjou.info>
14071
14072 * color.el (color-name-to-rgb): Use the white color to find the max
14073 color component value and return correctly computed values.
14074 (color-name-to-rgb): Add missing float conversion for max value.
14075
14076 2012-01-19 Martin Rudalics <rudalics@gmx.at>
14077
14078 * window.el (window--state-get-1, window-state-get): Do not use
14079 special state value for window-persistent-parameters.
14080 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
14081 (window--state-put-2): Reset all window parameters to nil before
14082 assigning values of persistent parameters.
14083
14084 2012-01-18 Alan Mackenzie <acm@muc.de>
14085
14086 Eliminate sluggishness and hangs in fontification of "semicolon
14087 deserts".
14088
14089 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
14090 Change value 10000 -> 3000.
14091 (c-state-safe-place): Reformulate so it doesn't stack up an
14092 infinite number of wrong entries in c-state-nonlit-pos-cache.
14093 (c-determine-limit-get-base, c-determine-limit): New functions to
14094 determine backward search limits disregarding literals.
14095 (c-find-decl-spots): Amend commenting.
14096 (c-cheap-inside-bracelist-p): New function which detects "={".
14097
14098 * progmodes/cc-fonts.el
14099 (c-make-font-lock-BO-decl-search-function): Give a limit to a
14100 backward search.
14101 (c-font-lock-declarations): Fix an occurrence of point being
14102 undefined. Check additionally for point being in a bracelist or
14103 near a macro invocation without a semicolon so as to avoid a
14104 fruitless time consuming search for a declarator. Give a more
14105 precise search limit for declarators using the new
14106 c-determine-limit.
14107
14108 2012-01-18 Glenn Morris <rgm@gnu.org>
14109
14110 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
14111 (set-auto-mode): Doc fixes.
14112
14113 2012-01-17 Glenn Morris <rgm@gnu.org>
14114
14115 * isearch.el (search-nonincremental-instead): Fix doc typo.
14116
14117 * dired.el (dired-insert-directory): Handle newlines in directory name.
14118 (dired-build-subdir-alist): Unescape newlines in directory name.
14119
14120 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
14121
14122 * net/tramp.el (tramp-local-end-of-line): New defcustom.
14123 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
14124 (tramp-action-terminal): Use it. (Bug#10530)
14125
14126 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
14127
14128 * minibuffer.el (completion--replace): Strip properties (bug#10062).
14129
14130 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14131
14132 * window.el (window-state-ignored-parameters): Remove variable.
14133 (window--state-get-1): Rename argument MARKERS to IGNORE.
14134 Handle persistent window parameters. Make copy of clone-of
14135 parameter only if requested. (Bug#10348)
14136 (window--state-put-2): Install a window parameter only if it has
14137 a non-nil value or an existing parameter shall be overwritten.
14138
14139 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
14140
14141 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
14142
14143 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14144
14145 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
14146 don't pass the (nil) value of `upnode' to string-match.
14147
14148 2012-01-14 Chong Yidong <cyd@gnu.org>
14149
14150 * startup.el (command-line): Fix X resource class for cursorColor.
14151 Fix values recognized by the cursorBlink resource.
14152
14153 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
14154
14155 * epg.el (epg--make-temp-file): Avoid permission race condition
14156 when running on old Emacs versions (bug#10403).
14157
14158 2012-01-14 Glenn Morris <rgm@gnu.org>
14159
14160 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
14161
14162 2012-01-13 Alan Mackenzie <acm@muc.de>
14163
14164 Fix filling for when filladapt mode is enabled.
14165
14166 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
14167 c-mask-paragraph, pass in `fill-paragraph' rather than
14168 `fill-region-as-paragraph'. (This is a reversion of a previous
14169 change.)
14170 * progmodes/cc-mode.el (c-basic-common-init):
14171 Make fill-paragraph-handle-comment buffer local and set it to nil.
14172
14173 2012-01-13 Glenn Morris <rgm@gnu.org>
14174
14175 * dired.el (dired-switches-escape-p): New function.
14176 (dired-insert-directory): Use dired-switches-escape-p.
14177 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
14178
14179 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
14180
14181 2012-01-12 Glenn Morris <rgm@gnu.org>
14182
14183 * mail/sendmail.el (mail-mode): Update paragraph-separate for
14184 changes in adaptive-fill-regexp. (Bug#10276)
14185
14186 2012-01-11 Alan Mackenzie <acm@muc.de>
14187
14188 Fix Emacs bug #10463 - put `widen's around the critical spots.
14189
14190 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
14191 widen around each invocation of c-state-pp-to-literal. Remove an
14192 unused let variable.
14193
14194 2012-01-11 Glenn Morris <rgm@gnu.org>
14195
14196 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
14197 Doc fix.
14198
14199 2012-01-10 Chong Yidong <cyd@gnu.org>
14200
14201 * net/network-stream.el (network-stream-open-starttls):
14202 Avoid emitting a confusing error message when the server gives a bad
14203 response to the capability command.
14204
14205 2012-01-10 Glenn Morris <rgm@gnu.org>
14206
14207 * mail/unrmail.el (unrmail): Tweak previous change.
14208
14209 2012-01-09 Chong Yidong <cyd@gnu.org>
14210
14211 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
14212
14213 2012-01-08 Alan Mackenzie <acm@muc.de>
14214
14215 Optimize font locking in long enum definitions.
14216
14217 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
14218 arm to a cond form to handle enums.
14219 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
14220 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
14221
14222 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14223
14224 * files.el (move-file-to-trash): Preserve default file modes on error.
14225 (Bug#10401)
14226
14227 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14228
14229 * faces.el (set-face-attribute): Clarify the meaning of the nil
14230 frame (bug#10294).
14231
14232 * subr.el (with-selected-frame): Mention that the selected frame
14233 is restored (bug#9980).
14234
14235 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
14236 (bug#9759).
14237
14238 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
14239 (password-read): Don't autoload unused function.
14240
14241 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
14242
14243 * progmodes/which-func.el (which-func-mode): Turn into a
14244 non-interactive function and mark as obsolete (bug#10428).
14245
14246 2012-01-06 Chong Yidong <cyd@gnu.org>
14247
14248 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
14249 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
14250 functions, along with 1 and -1.
14251
14252 2012-01-06 Eli Zaretskii <eliz@gnu.org>
14253
14254 * time.el (display-time-load-average)
14255 (display-time-default-load-average): Doc fixes. See the thread
14256 starting at
14257 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
14258 for the details.
14259
14260 2012-01-06 Glenn Morris <rgm@gnu.org>
14261
14262 * mail/unrmail.el (unrmail): Give an explicit error if the input file
14263 has no messages. (Bug#10377)
14264
14265 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
14266 than Info-edit. (Bug#10385)
14267
14268 * time.el (display-time-load-average, display-time-next-load-average):
14269 Doc fixes.
14270
14271 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
14272 local setting of buffer-read-only to the input buffer. (Bug#10419)
14273
14274 * calendar/calendar.el (calendar-mode):
14275 Locally set scroll-margin to 0. (Bug#10379)
14276
14277 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
14278
14279 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
14280
14281 2012-01-05 Glenn Morris <rgm@gnu.org>
14282
14283 * eshell/em-unix.el (diff-no-select): Autoload it.
14284 (eshell/diff): Use diff-no-select. (Bug#10420)
14285
14286 2012-01-05 Chong Yidong <cyd@gnu.org>
14287
14288 * shell.el (shell-dynamic-complete-functions): Revert last change.
14289 (shell-command-completion-function): New function.
14290 (shell-completion-vars): Use it to implement
14291 shell-completion-execonly (Bug#10417).
14292
14293 * custom.el (enable-theme): Don't set custom-safe-themes.
14294
14295 * cus-theme.el (custom-theme-merge-theme):
14296 Ignore custom-enabled-themes and custom-safe-themes.
14297
14298 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
14299
14300 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
14301 first prompt in `sql-interacive-mode'.
14302 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
14303 keywords.
14304 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
14305 (sql-product-interactive): Bug fix: Set `sql-buffer' in
14306 context of original buffer. Invoke `sql-login-hook'.
14307
14308 2012-01-04 Eli Zaretskii <eliz@gnu.org>
14309
14310 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
14311 letters in cite-prefix.
14312
14313 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14314
14315 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
14316
14317 2012-01-03 Chong Yidong <cyd@gnu.org>
14318
14319 * shell.el (shell-dynamic-complete-functions):
14320 Put pcomplete-completions-at-point, so as to try
14321 comint-filename-completion first (Bug#10417).
14322
14323 2012-01-02 Richard Stallman <rms@gnu.org>
14324
14325 * battery.el (battery-status-function):
14326 Detect when to use battery-yeeloong-sysfs.
14327 (battery-echo-area-format): Add string for Yeeloong.
14328 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
14329 (battery-yeeloong-sysfs): New function.
14330
14331 2012-01-02 Chong Yidong <cyd@gnu.org>
14332
14333 * dirtrack.el (dirtrack-list): Eliminate unused third element.
14334 (dirtrack): Merge code for handling relative filenames in prompt
14335 from shell-dir-cookie-watcher.
14336 (dirtrack-debug-message): New arg to avoid excess format calls.
14337
14338 * shell.el (shell-dir-cookie-re): Variable deleted.
14339 (shell-dir-cookie-watcher): Function deleted.
14340 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
14341 with dirtrack-mode.
14342
14343 2012-01-01 Eli Zaretskii <eliz@gnu.org>
14344
14345 * term/w32-win.el (dynamic-library-alist) <gnutls>:
14346 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
14347 libgnutls-26.dll.
14348
14349 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
14350
14351 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
14352
14353 2011-12-31 Eli Zaretskii <eliz@gnu.org>
14354
14355 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
14356 headers of non-MIME messages, when rmail-enable-mime is non-nil.
14357
14358 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
14359
14360 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
14361 also for alternative shells.
14362 (tramp-open-connection-setup-interactive-shell): Check, whether
14363 the shell is a busybox.
14364 (tramp-send-command): Don't suppress multiple prompts for
14365 busyboxes, it hurts.
14366
14367 2011-12-28 Chong Yidong <cyd@gnu.org>
14368
14369 * progmodes/gdb-mi.el (gdb-get-source-file-list)
14370 (gdb-get-source-file): Move mode line update to
14371 gdb-get-source-file (Bug#10087).
14372
14373 2011-12-25 Chong Yidong <cyd@gnu.org>
14374
14375 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
14376 gud-gdb-marker-filter without taking it as an argument.
14377 (gud-gdb-run-command-fetch-lines): Caller changed.
14378 (gud-gdb-completion-function): New variable.
14379 (gud-gdb-completion-at-point): Use it.
14380 (gud-gdb-completions-1): Split from gud-gdb-completions.
14381
14382 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
14383 function as separate arguments.
14384 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
14385 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
14386 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
14387 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
14388 (gdb-stopped, def-gdb-auto-update-trigger)
14389 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
14390 (gdb-get-changed-registers, gdb-get-main-selected-frame):
14391 Callers changed.
14392 (gud-gdbmi-completions): New function.
14393 (gdb): Use it for generating the completion table.
14394
14395 2011-12-24 Alan Mackenzie <acm@muc.de>
14396
14397 Introduce a mechanism to widen the region used in context font
14398 locking. Use this to protect declarations from losing their contexts.
14399
14400 * progmodes/cc-langs.el (c-before-font-lock-functions):
14401 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
14402 (c-before-context-fontification-functions): New defvar, a list of
14403 functions to be run just before context (etc.) font locking.
14404
14405 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
14406 New, functionality extracted from
14407 c-neutralize-syntax-in-and-mark-CPP.
14408 (c-in-after-change-fontification): New variable.
14409 (c-after-change): Set c-in-after-change-fontification.
14410 (c-set-fl-decl-start): Rejig its interface, so it can be called
14411 from both after-change and context fontifying.
14412 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
14413 New functions.
14414 (c-standard-font-lock-fontify-region-function): New variable.
14415 (c-font-lock-fontify-region): New function.
14416
14417 2011-12-24 Juri Linkov <juri@jurta.org>
14418
14419 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
14420 (Bug#10348)
14421
14422 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
14423
14424 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
14425 existence of source file. (Bug#10325)
14426
14427 2011-12-23 Alan Mackenzie <acm@muc.de>
14428
14429 Fix unstable fontification inside templates.
14430
14431 * progmodes/cc-langs.el (c-before-font-lock-functions):
14432 Newly created from the singular version. The (c c++ objc) entry now
14433 additionally has c-set-fl-decl-start. The other languages (apart
14434 from AWK) have that as a single entry.
14435
14436 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14437 The functionality for "local" declarations has been extracted to
14438 c-set-fl-decl-start.
14439
14440 * progmodes/cc-mode.el (c-common-init, c-after-change):
14441 Changes due to pluralisation of c-before-font-lock-functions.
14442 (c-set-fl-decl-start): New function, extracted from
14443 c-font-lock-enclosing-decls and enhanced.
14444
14445 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
14446
14447 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
14448
14449 2011-12-22 Juri Linkov <juri@jurta.org>
14450
14451 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
14452
14453 2011-12-22 Chong Yidong <cyd@gnu.org>
14454
14455 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
14456
14457 2011-12-21 Drew Adams <drew.adams@oracle.com>
14458
14459 * files.el (file-remote-p): Fix docstring. (Bug#10319)
14460
14461 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14462
14463 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
14464
14465 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
14466
14467 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
14468 highlighting and support. Fix up comments for capitalization.
14469 (cfengine-mode-debug): New var.
14470 (cfengine3-mode): Change the modeline indicator to "CFE3".
14471 (cfengine3-font-lock-keywords): Improve defun highlighting.
14472 (cfengine2-actions): Rename from `cfengine-actions'.
14473 (cfengine2-font-lock-keywords): Rename from
14474 `cfengine-font-lock-keywords'.
14475 (cfengine2-imenu-expression): Rename from
14476 `cfengine-imenu-expression'.
14477 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
14478 (cfengine2-beginning-of-defun): Rename from
14479 `cfengine-beginning-of-defun'.
14480 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
14481 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
14482 (cfengine2-mode): Rename from `cfengine-mode'. Change the
14483 modeline indicator to "CFE2".
14484 (cfengine-mode): Defalias to `cfengine-auto-mode'.
14485 (cfengine-mode-abbrevs): Mark obsolete.
14486
14487 2011-12-21 Chong Yidong <cyd@gnu.org>
14488
14489 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
14490 filename argument.
14491
14492 2011-12-20 Martin Rudalics <rudalics@gmx.at>
14493
14494 * window.el (window-normalize-buffer-to-display): Remove.
14495 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
14496
14497 2011-12-19 Chong Yidong <cyd@gnu.org>
14498
14499 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
14500 Don't signal an error in a predicate function; return non-nil.
14501 (vc-dir-mark-file): Move the error here.
14502 (vc-dir-mark-unmark): If acting on the region, keep going if one
14503 of the entries cannot be marked/unmarked.
14504 (vc-dir-mark-all-files): If current entry is a directory, mark
14505 only child files, as documented.
14506
14507 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
14508
14509 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
14510 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
14511 addition.
14512
14513 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14514
14515 * term/ns-win.el (ns-get-selection-internal)
14516 (ns-store-selection-internal): Declare.
14517 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
14518 Declare as obsolete.
14519 (ns-get-pasteboard, ns-paste-secondary):
14520 Use ns-get-selection-internal.
14521 (ns-set-pasteboard, ns-copy-including-secondary):
14522 Use ns-store-selection-internal.
14523
14524 2011-12-17 Chong Yidong <cyd@gnu.org>
14525
14526 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
14527 (vc-deduce-fileset): Doc fix.
14528
14529 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
14530
14531 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
14532
14533 2011-12-13 Sam Steingold <sds@gnu.org>
14534
14535 * man.el (Man-getpage-in-background): When running under a
14536 window-system, ignore $MANWIDTH and $COLUMNS.
14537
14538 2011-12-15 Kenichi Handa <handa@m17n.org>
14539
14540 * language/ethio-util.el: Change coding tag to utf-8-emacs.
14541 (setup-ethiopic-environment-internal): Comment out key-binding for
14542 ethio-toggle-punctuation.
14543
14544 2011-12-13 Alan Mackenzie <acm@muc.de>
14545
14546 Add the switch statement to AWK Mode.
14547
14548 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
14549 "default" to the keywords regexp.
14550
14551 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
14552 expression as the rest.
14553 (c-nonlabel-token-key): Allow string literals for AWK.
14554 Refactor for the other modes.
14555
14556 Large brace-block initialisation makes CC Mode slow: Fix.
14557 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
14558 routines. Limit backward searching in c-font-lock-enclosing.decl.
14559
14560 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
14561 pp-state and literal type in addition to the limits.
14562 (c-state-safe-place): New defun, extracted from c-state-literal-at.
14563 (c-state-literal-at): Use the above new defun.
14564 (c-slow-in-literal, c-fast-in-literal): Remove.
14565 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
14566
14567 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
14568 being in a literal. Add a limit for backward searching.
14569
14570 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
14571 c-slow-in-literal.
14572
14573 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
14574
14575 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
14576
14577 2011-12-13 Martin Rudalics <rudalics@gmx.at>
14578
14579 * window.el (delete-other-windows): Use correct frame in call to
14580 window-with-parameter.
14581
14582 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
14583
14584 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
14585 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
14586 (makefile-gmake-statements, makefile-makepp-statements):
14587 Use it and add new makepp keywords.
14588 (makefile-makepp-font-lock-keywords): Add new patterns.
14589 (makefile-match-function-end): Match new [...] and [[...]].
14590
14591 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
14592
14593 * ses.el (ses-call-printer-return, ses-cell-property-get)
14594 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
14595 (ses-create-cell-variable, ses-reset-header-string)
14596 (ses-cell-set-formula, ses-repair-cell-reference-all)
14597 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
14598 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
14599 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
14600 (ses-aset-with-undo, ses-load, ses-truncate-cell)
14601 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
14602 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
14603 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
14604 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
14605 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
14606 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
14607 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
14608 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
14609
14610 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
14611
14612 * ses.el: The overall change is to add cell renaming, that is
14613 setting fancy names for cell symbols other than name matching
14614 "\\`[A-Z]+[0-9]+\\'" regexp .
14615 (ses-create-cell-variable): New defun.
14616 (ses-relocate-formula): Relocate formulas only for cells the
14617 symbols of which are not renamed, i.e. symbols whose names do not
14618 match regexp "\\`[A-Z]+[0-9]+\\'".
14619 (ses-relocate-all): Relocate values only for cells the symbols of
14620 which are not renamed.
14621 (ses-load): Create cells variables as the (ses-cell ...) are read,
14622 in order to check row col consistency with cell symbol name only
14623 for cells that are not renamed.
14624 (ses-replace-name-in-formula): New defun.
14625 (ses-rename-cell): New defun.
14626
14627 2011-12-11 Chong Yidong <cyd@gnu.org>
14628
14629 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
14630 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
14631
14632 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
14633
14634 * window.el (other-window): Fix docstring.
14635
14636 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14637
14638 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
14639 `from' or `to' address before taking its substring.
14640 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
14641 encoded name is chopped in the middle of the encoded string, and
14642 thus displayed encoded.
14643
14644 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
14645
14646 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
14647
14648 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14649
14650 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
14651 to use texinfo-update-node and commands that call it if the
14652 Texinfo file uses @node lines without next/prev/up pointers.
14653 Correct outdated description about texinfo-master-menu.
14654 (texinfo-all-menus-update, texinfo-master-menu)
14655 (texinfo-update-node, texinfo-every-node-update)
14656 (texinfo-multiple-files-update): Doc fix. Warn against updating
14657 all the @node lines.
14658 (texinfo-master-menu): Only call texinfo-update-node if the prefix
14659 argument is numeric. Explain better in the doc string what the
14660 function really does.
14661 (texinfo-insert-master-menu-list): Improve the error message
14662 displayed if there's no menu in the Top node.
14663 (Bug#2975) See also this thread:
14664 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
14665
14666 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
14667
14668 * speedbar.el (speedbar-supported-extension-expressions):
14669 Add .adb and .ads, commonly used for Ada source code (bug#10256).
14670
14671 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
14672
14673 * printing.el (pr-mode-alist):
14674 * simple.el (filter-buffer-substring-functions)
14675 (completion-list-insert-choice-function):
14676 * window.el (window-with-parameter, window-atom-root)
14677 (window-sides-slots, window-size-fixed, window-min-delta)
14678 (window-max-delta, window--resize-mini-window)
14679 (window--resize-child-windows-normal, window-tree)
14680 (delete-other-windows, quit-window, split-window)
14681 (display-buffer-record-window, special-display-buffer-names)
14682 (special-display-regexps, special-display-popup-frame)
14683 (same-window-p, split-window-sensibly)
14684 (display-buffer-overriding-action, display-buffer-alist)
14685 (display-buffer-base-action, display-buffer, switch-to-buffer)
14686 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
14687 (fit-window-to-buffer, recenter-positions)
14688 (mouse-autoselect-window-state, mouse-autoselect-window-select):
14689 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
14690 and remove unneeded backslashes in docstrings.
14691
14692 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
14693
14694 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
14695
14696 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
14697 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
14698 end in ".mk".
14699 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
14700 when reading the makefile (bug#10116).
14701
14702 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
14703
14704 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
14705 (bug#10116).
14706
14707 2011-12-06 Glenn Morris <rgm@gnu.org>
14708
14709 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
14710
14711 2011-12-06 Chong Yidong <cyd@gnu.org>
14712
14713 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
14714
14715 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
14716
14717 * textmodes/table.el (table-shorten-cell): Fix typo.
14718
14719 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
14720
14721 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
14722
14723 2011-12-05 Eli Zaretskii <eliz@gnu.org>
14724
14725 * descr-text.el (describe-char): Fix display of strong
14726 right-to-left characters and directional embeddings and overrides.
14727
14728 * simple.el (what-cursor-position): Fix display of codepoints of
14729 strong right-to-left characters.
14730
14731 2011-12-05 Chong Yidong <cyd@gnu.org>
14732
14733 * faces.el (read-color): Doc fix.
14734
14735 2011-12-05 Glenn Morris <rgm@gnu.org>
14736
14737 * align.el (align--set-marker): Add doc-string.
14738 Don't try to move something that is not a marker. (Bug#10216)
14739
14740 2011-12-04 Glenn Morris <rgm@gnu.org>
14741
14742 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
14743 overly zealous deletion of trailing whitespace.
14744
14745 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
14746
14747 * server.el (server-delete-client): On Windows, do not try to delete
14748 the only terminal.
14749 (server-process-filter): On Windows, treat requests for a tty frame as
14750 if they were for a GUI frame if the running server is in GUI mode.
14751
14752 2011-12-03 Glenn Morris <rgm@gnu.org>
14753
14754 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
14755
14756 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
14757
14758 * electric.el: Streamline electric-indent's hook.
14759 (electric-indent-chars): Revert to simple list.
14760 (electric-indent-functions): New var.
14761 (electric-indent-post-self-insert-function): Use it.
14762
14763 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
14764 there's no inferior buffer (bug#10196).
14765 (prolog-consult-compile): Don't use toggle-read-only.
14766
14767 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
14768
14769 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
14770 interrupt. (Bug#10187)
14771
14772 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
14773
14774 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
14775 (bug#9160).
14776
14777 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
14778 (bug#10191).
14779
14780 2011-12-02 Juri Linkov <juri@jurta.org>
14781
14782 * info.el (Info-search): Display "end of manual" when Isearch
14783 reaches the end of single-file Info manual. (Bug#9918)
14784
14785 2011-12-02 Eli Zaretskii <eliz@gnu.org>
14786
14787 * isearch.el (isearch-message-prefix): Run the input method part
14788 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
14789
14790 2011-12-02 Juri Linkov <juri@jurta.org>
14791
14792 * isearch.el (isearch-occur): Use `word-search-regexp' for
14793 `isearch-word'.
14794 (isearch-search-and-update): Add condition for `isearch-word' and
14795 call `word-search-regexp'. (Bug#10145)
14796
14797 2011-12-01 Glenn Morris <rgm@gnu.org>
14798
14799 * eshell/em-hist.el (eshell-hist-initialize):
14800 Handle eshell-history-size nil and HISTSIZE set or unset.
14801 (eshell-history-file-name, eshell-history-size): Fix custom type.
14802
14803 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
14804
14805 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
14806
14807 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
14808
14809 * progmodes/verilog-mode.el (verilog-pretty-expr):
14810 Rework verilog-pretty-expr to handle new assignment operators in system
14811 verilog, such as += *= and the like.
14812 (verilog-assignment-operator-re): Regular expression to find the
14813 assigment operator in a verilog assignment.
14814 (verilog-assignment-operation-re): Regular expression to find an
14815 assignment statement for pretty-expr.
14816 (verilog-in-attribute-p): Query returns true if point is in an
14817 attribute context; used to skip these for expression line up from
14818 pretty-expr.
14819 (verilog-in-parameter-p): Query returns true if point is in an
14820 parameter definition context; used to skip these for expression
14821 line up from pretty-expr.
14822 (verilog-in-parenthesis-p): Query returns true if point is in a
14823 parenthetical expression, specifically ( ) but not [ ] or { };
14824 used by pretty-expr.
14825 (verilog-just-one-space): If there is no space, don't add one.
14826 (verilog-get-lineup-indent-2): Specifically skip just attribute
14827 contexts for expression lineup, rather than skipping all
14828 parenthetical expressions.
14829 (verilog-calculate-indent): Fix comment, and fix indent.
14830 (verilog-do-indent): Indent declarations in lists (suggested by
14831 Joachim Lechner).
14832 (verilog-mode-abbrev-table): Populate abbrev mode with the various
14833 skeleton items.
14834 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
14835 by Alain Mellan).
14836
14837 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
14838
14839 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
14840 parameters with embedded comments. Reported by Ray Stevens.
14841 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
14842 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
14843 Reported by Tim Holt.
14844 (verilog-auto): Fix AUTOing a upper module then AUTOing module
14845 instantiated by upper module causing wrong expansion until AUTOed a
14846 second time. Reported by K C Buckenmaier.
14847 (verilog-diff-auto): Fix showing .* as a difference when
14848 `verilog-auto-star-save' off. Reported by Dan Dever.
14849 (verilog-auto-reset, verilog-read-always-signals)
14850 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
14851 temporary signals in reset list if
14852 verilog-auto-reset-blocking-in-non is nil, and match assignment
14853 style to each signal's assignment type, bug381.
14854 Reported by Thomas Esposito.
14855 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
14856 (verilog-uvm-statement-re): Support UVM indentation and
14857 highlighting, with old OVM keywords only.
14858 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
14859 Support AUTOTIEOFF creating non-wire data types.
14860 Suggested by Jonathan Greenlaw.
14861 (verilog-auto-insert-lisp, verilog-delete-to-paren)
14862 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
14863 (verilog-inject-sense, verilog-read-inst-pins)
14864 (verilog-read-sub-decls, verilog-read-sub-decls-line):
14865 Fix mismatching parenthesis inside commented out code when deleting
14866 AUTOINST, bug383. Reported by Jonathan Greenlaw.
14867 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
14868 non-numeric vector width. Reported by Alex Reed.
14869 (verilog-auto-ascii-enum): Add "onehot" option to work around not
14870 detecting signals with parameter widths. Reported by Alex Reed.
14871 (verilog-auto-delete-trailing-whitespace):
14872 With `verilog-auto-delete-trailing-whitespace' remove trailing
14873 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
14874 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
14875 Fix verilog-scan-cache corruption when running user AUTO expansion
14876 hooks that call indentation routines.
14877 (verilog-simplify-range-expression): Fix typo ignoring lower case
14878 identifiers.
14879 (verilog-delete-auto): Fix delete-autos to also remove user created
14880 automatics, as long as they start with AUTO.
14881 (verilog-batch-diff-auto, verilog-diff-auto)
14882 (verilog-diff-function): Add `verilog-diff-auto' and bind to
14883 "C-c?" to report differences in AUTO expansion, ignoring spaces.
14884 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
14885 (verilog-in-paren-quick, verilog-re-search-backward-quick)
14886 (verilog-re-search-forward-quick, verilog-syntax-ppss):
14887 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
14888 is disabled and its cache will get corrupt, causing AUTOS not to
14889 expand. Instead use only -quick functions.
14890 (verilog-scan-region): Fix scanning over escaped quotes.
14891 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
14892 (verilog-re-search-backward-quick)
14893 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
14894 related functions now ignore strings, to fix misparsing of strings
14895 with magic comments embedded in them.
14896 (verilog-read-auto-template):
14897 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
14898 Reported by Brad Dobbie.
14899 (verilog-read-auto-template):
14900 Fix 'verilog-auto-inst-template-numbers' with comments.
14901 Reported by Brad Dobbie.
14902 (verilog-auto-inst, verilog-auto-inst-param)
14903 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
14904 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
14905 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
14906 debugging templates without merge conflicts, bug357.
14907 Reported by Brad Dobbie.
14908 (verilog-read-auto-template):
14909 Fix verilog-auto-inst-template-numbers with multiple templates.
14910 Reported by Brad Dobbie.
14911 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
14912 abbrevs so user won't be asked to save.
14913 (verilog-read-auto-lisp-present): Fix to start at beginning of
14914 buffer in case called outside of verilog-auto.
14915 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
14916 to "X-2". Reported by Matthew Myers.
14917 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
14918 all inputs from module templates. Reported by Leith Johnson.
14919 (verilog-module-inside-filename-p): Fix locating programs as with
14920 modules.
14921 (verilog-auto-inst-port): Fix vl-width expressions when using
14922 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
14923 (verilog-decls-get-regs, verilog-decls-get-signals,
14924 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
14925 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
14926 verilog-read-decls): Combine reg and wire structures into one var
14927 structure to represent SystemVerilog concepts.
14928 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
14929 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
14930 (verilog-auto-wire-type, verilog-insert-definition):
14931 Add verilog-auto-wire-type and AUTOLOGIC to support using
14932 SystemVerilog "logic" keyword instead of "wire"/"reg".
14933 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
14934 to declares outputs that also have assignments (presumably in an
14935 ifdef or generate if so there's not a driver conflict).
14936 Reported by Matthew Myers.
14937 (verilog-auto-declare-nettype, verilog-insert-definition):
14938 Add verilog-auto-declare-nettype to fix declarations using
14939 `default_nettype none. Reported by Julian Gorfajn.
14940 (verilog-read-always-signals-recurse, verilog-read-decls)
14941 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
14942 malformed end statement, bug325. Reported by Joshua Wise and
14943 Andrew Drake.
14944 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
14945 (verilog-inst-comment-re): Fix not deleting Interfaced comment
14946 when expanding .* in interfaces, bug320.
14947 Reported by Pierre-David Pfister.
14948 (verilog-read-module-name): Fix import statements between module
14949 name and open parenthesis, bug317.
14950 Reported by Pierre-David Pfister.
14951 (verilog-simplify-range-expression): Fix simplification of
14952 multiplications inside AUTOWIRE connections, bug303.
14953 (verilog-auto-inst-port): Support parameter expansion in
14954 multidimensional arrays.
14955 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
14956 after "assert property". Reported by Julian Gorfajn.
14957 (verilog-simplify-range-expression): Fix "couldn't merge" errors
14958 with multiplication, bug303.
14959 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
14960 Reported by Jan Frode Lonnum.
14961
14962 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14963
14964 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
14965 (hfy-shell-file-name, hfy-shell):
14966 * international/fontset.el (x-decompose-font-name): Fix typos.
14967
14968 2011-11-29 Ken Brown <kbrown@cornell.edu>
14969
14970 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
14971 (gdb-version): Remove defvar.
14972 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
14973 (gdb-gud-context-command, gdb-non-stop-handler)
14974 (gdb-current-context-command, gdb-stopped): Use it.
14975 (gdb-init-1): Enable pretty printing here.
14976 (gdb-non-stop-handler): Don't enable pretty-printing here.
14977 Check to see if the target supports non-stop mode; if not, turn off
14978 non-stop mode. Use the following.
14979 (gdb-check-target-async): New defun.
14980 (gud-watch, gdb-stopped): Fix whitespace.
14981 (gdb-get-source-file): Don't try to display the source file if
14982 `gdb-main-file' is nil.
14983
14984 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
14985
14986 * align.el: Try to generate fewer markers (bug#10047).
14987 (align--set-marker): New macro.
14988 (align-region): Use it.
14989
14990 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
14991
14992 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
14993
14994 2011-11-29 Chong Yidong <cyd@gnu.org>
14995
14996 * indent.el (indent-for-tab-command, indent-according-to-mode):
14997 Doc fix.
14998 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
14999
15000 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
15001
15002 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
15003 aware of remote file names. (Bug#10124)
15004
15005 2011-11-29 Chong Yidong <cyd@gnu.org>
15006
15007 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
15008
15009 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15010
15011 * files.el (find-file): Don't use force-same-window (bug#10144).
15012 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
15013 use pop-to-buffer if the selected window can't be used.
15014 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
15015
15016 2011-11-28 Eli Zaretskii <eliz@gnu.org>
15017
15018 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
15019 special-mode-map.
15020
15021 2011-11-28 Chong Yidong <cyd@gnu.org>
15022
15023 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
15024
15025 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
15026
15027 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
15028 gdb-get-source-file-list on gdb-create-source-file-list.
15029
15030 2011-11-26 Eli Zaretskii <eliz@gnu.org>
15031
15032 * whitespace.el (whitespace-newline): Use a different foreground
15033 color for 16-color light-background displays.
15034
15035 2011-11-24 Chong Yidong <cyd@gnu.org>
15036
15037 * window.el (display-buffer--special-action): Doc fix.
15038
15039 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
15040
15041 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
15042 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
15043 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
15044 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
15045 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
15046 (avl-tree-stack-first):
15047 * emacs-lisp/cconv.el (cconv--analyse-use):
15048 * net/gnutls.el (gnutls-negotiate): Fix typos.
15049
15050 2011-11-24 Glenn Morris <rgm@gnu.org>
15051
15052 * lpr.el (lpr-windows-system, lpr-lp-system):
15053 * mail/binhex.el (binhex-begin-line):
15054 * progmodes/grep.el (grep-history, grep-find-history):
15055 * textmodes/flyspell.el:
15056 * vc/pcvs-defs.el (cvs-global-menu):
15057 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
15058 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
15059 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
15060
15061 * net/tls.el: Fix case of "GnuTLS".
15062
15063 * paths.el (rmail-file-name): Format doc-string for make-docfile.
15064
15065 * version.el (emacs-build-system): Give it a doc-string.
15066
15067 2011-11-24 Juri Linkov <juri@jurta.org>
15068
15069 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
15070
15071 2011-11-24 Glenn Morris <rgm@gnu.org>
15072
15073 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
15074 if called on a non-mime message just toggle the headers. (Bug#8006)
15075
15076 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
15077
15078 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
15079 (allout-lead-with-comment-string, allout-structure-deleted-hook)
15080 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
15081 (allout-rebullet-heading, allout-open-sibtopic)
15082 (allout-toggle-current-subtree-encryption)
15083 (allout-toggle-subtree-encryption, allout-encrypt-string)
15084 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
15085 (allout-distinctive-bullets-string, allout-auto-activation):
15086 * window.el (window-normalize-buffer-to-display):
15087 * progmodes/verilog-mode.el (verilog-batch-indent):
15088 * textmodes/bibtex.el (bibtex-field-braces-opt)
15089 (bibtex-field-strings-opt):
15090 * vc/cvs-status.el (cvs-tree-merge):
15091 Fix typos.
15092
15093 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
15094
15095 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
15096 `non-essential' to t, in order to avoid remote connections.
15097
15098 2011-11-23 Eli Zaretskii <eliz@gnu.org>
15099
15100 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15101 On MS-DOS and MS-Windows, compare with loaddefs.el
15102 case-insensitively.
15103
15104 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15105
15106 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
15107
15108 2011-11-23 Glenn Morris <rgm@gnu.org>
15109
15110 * paths.el (rmail-file-name): Reformat the doc-string so that it
15111 is picked up.
15112
15113 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
15114 (rmail-auto-file): Ignore case in the "special" field names,
15115 as mail-fetch-field does for all others.
15116
15117 * mail/rmail.el (rmail-forward):
15118 * mail/rmailkwd.el (rmail-set-label):
15119 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
15120 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
15121
15122 * mail/rmail.el (rmail-current-message): Doc fix.
15123
15124 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
15125
15126 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15127
15128 * server.el (server-eval-and-print): Allow C-g (bug#6585).
15129
15130 2011-11-22 Glenn Morris <rgm@gnu.org>
15131
15132 * mail/rmailmm.el (test-rmail-mime-handler)
15133 (test-rmail-mime-bulk-handler)
15134 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
15135
15136 2011-11-21 Juri Linkov <juri@jurta.org>
15137
15138 * calc/calc.el (calc-read-key-sequence):
15139 Let-bind `input-method-function' to nil. (Bug#10018)
15140
15141 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15142
15143 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
15144 Tell the caller that the next line needs recomputation, even
15145 though it doesn't start a sexp (bug#10094).
15146
15147 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15148
15149 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
15150
15151 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15152
15153 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15154 Use force-same-window.
15155
15156 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15157
15158 * descr-text.el (describe-char-unicode-data):
15159 * json.el (json-string-escape):
15160 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
15161 (Footnote-unicode, Footnote-style-p):
15162 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
15163
15164 2011-11-20 Chong Yidong <cyd@gnu.org>
15165
15166 * window.el (replace-buffer-in-windows): Restore interactive spec.
15167
15168 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15169
15170 * electric.el (electric-indent-mode): Fix last change (too optimistic).
15171
15172 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
15173 (byte-compile-global-not-obsolete-vars): New var.
15174 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
15175 Use it.
15176 (byte-compile-warn-obsolete): Align text with the one in *Help*.
15177
15178 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15179
15180 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
15181 * progmodes/pascal.el (electric-pascal-equal):
15182 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
15183 * xml.el (xml-substitute-special): Fix typos.
15184
15185 2011-11-20 Glenn Morris <rgm@gnu.org>
15186
15187 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
15188 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
15189 Doc fixes.
15190 (rmail-decode-mime-charset): Mark as obsolete.
15191
15192 * mail/rmailsum.el (rmail-message-regexp-p-1):
15193 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
15194 Before using mime functions, check they are set. (Bug#10077)
15195
15196 2011-11-19 Juri Linkov <juri@jurta.org>
15197
15198 * info.el (Info-finder-find-node): Use `package--builtins' instead
15199 of `package-alist'. Use node names formed by the pattern "Keyword "
15200 and the keyword name.
15201
15202 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15203
15204 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
15205
15206 2011-11-19 Juri Linkov <juri@jurta.org>
15207
15208 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
15209 that calls `revert-buffer' on all Info buffers. (Bug#9915)
15210 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
15211 `old-history', `old-history-forward'. Add let-binding
15212 `window-selected'. Remove calls to `kill-buffer',
15213 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
15214 before calling `Info-find-node', so `Info-find-node-2' will reread
15215 the Info file. Restore window positions only when `window-selected'
15216 is non-nil.
15217
15218 2011-11-19 Juri Linkov <juri@jurta.org>
15219
15220 * isearch.el (isearch-lazy-highlight-new-loop):
15221 Remove condition `(not isearch-error)'. (Bug#9918)
15222
15223 * misearch.el (multi-isearch-search-fun): Add condition
15224 `(not bound)' to ignore lazy-highlighting search.
15225 Add the search-failed message "end of multi" when the end of
15226 multi-sequence is reached. Uncapitalize the search-failed
15227 message "Repeat for next buffer".
15228
15229 * info.el (Info-search): Add the search-failed message
15230 "end of the manual" when the end of the manual is reached
15231 in Isearch mode.
15232
15233 2011-11-19 Juri Linkov <juri@jurta.org>
15234
15235 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
15236 Use non-destructive `remove' instead of `delete' because
15237 `Info-history-list' stored to `Info-isearch-initial-history-list' in
15238 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
15239
15240 2011-11-19 Juri Linkov <juri@jurta.org>
15241
15242 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
15243 to nil instead of binding `search-ring' and `regexp-search-ring'.
15244 (Bug#9185)
15245
15246 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15247
15248 * simple.el (line-move): Force movement by logical lines for any
15249 hscrolled window, not only when auto-hscroll-mode is on.
15250 (line-move-visual): Update doc string to that effect. (Bug#10076)
15251
15252 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15253
15254 * language/european.el (macintosh): Define as alias for mac-roman.
15255
15256 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15257
15258 * mail/rmailmm.el (rmail-mime-display-header)
15259 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
15260 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
15261 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
15262 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
15263 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
15264 of a raw aref.
15265 (rmail-mime-entity-segment): To get past the tagline, move forward
15266 2 more lines, to account for the 2 empty lines that precede and
15267 follow the line with the buttons.
15268 (rmail-mime-update-tagline): Move one more line, to get past the
15269 empty line that follows the buttons in the tagline. (Bug#9520)
15270
15271 2011-11-19 Martin Rudalics <rudalics@gmx.at>
15272
15273 * window.el (window-max-delta-1, window-min-delta-1)
15274 (window-min-size-1, window-state-get-1, window-state-put-1)
15275 (window-state-put-2): Use "window--" prefix.
15276
15277 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15278
15279 * emacs-lisp/smie.el: Improve warnings and conflict detection.
15280 (smie-warning-count): New var.
15281 (smie-set-prec2tab): Use it.
15282 (smie-bnf->prec2): Improve warnings. Add docstring.
15283 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
15284 (smie-bnf--set-class): New function.
15285 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
15286 corner case.
15287
15288 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
15289 (compilation-error-properties, compilation-move-to-column):
15290 Handle compilation-first-column while in the target buffer.
15291
15292 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
15293 Don't hardcode point-min==1.
15294
15295 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
15296 (eshell-rewrite-for-command): Remove workaround.
15297 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
15298 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
15299 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
15300
15301 * files-x.el (modify-file-local-variable): Obey commenting conventions.
15302
15303 2011-11-17 Glenn Morris <rgm@gnu.org>
15304
15305 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15306 Ignore buffer-local generated-autoload-file if it is the same
15307 as the global value. (Bug#10049)
15308
15309 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
15310
15311 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
15312 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
15313 (reftex-toc-previous-heading, reftex-toc-max-level)
15314 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
15315 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
15316 (reftex-toc-do-promote, reftex-toc-promote-prepare)
15317 (reftex-toc-promote-action, reftex-toc-extract-section-number)
15318 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
15319 (reftex-toc-rename-label, reftex-toc-visit-location)
15320 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
15321 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
15322 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
15323 leaving "*toc*" only for references to the buffer.
15324
15325 2011-11-17 Martin Rudalics <rudalics@gmx.at>
15326
15327 * window.el (window-resize, delete-window, split-window):
15328 Replace window-splits by window-combination-resize.
15329 * cus-start.el (window-splits): Replace by window-combination-resize.
15330
15331 2011-11-17 Glenn Morris <rgm@gnu.org>
15332
15333 * progmodes/sh-script.el (sh-font-lock-keywords-var):
15334 Make bash entry derive from sh entry, not shell entry.
15335
15336 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
15337
15338 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
15339 local file name.
15340
15341 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15342
15343 * menu-bar.el (menu-bar-file-menu):
15344 * printing.el (pr-ps-utility):
15345 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
15346 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
15347 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
15348 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
15349 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
15350 (icalendar--convert-cyclic-to-ical)
15351 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
15352 (icalendar--convert-ical-to-diary)
15353 (icalendar--convert-recurring-to-diary)
15354 (icalendar--convert-non-recurring-all-day-to-diary)
15355 (icalendar-import-format-sample):
15356 * progmodes/idlw-shell.el (idlwave-shell-mode):
15357 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
15358 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
15359 (vhdl-ps-print-init): Fix typos.
15360
15361 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
15362
15363 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
15364 FSF and collapse date sequence, obscure author/maintainer email address
15365 better, remove extra version line, track relocation of author's webpage.
15366
15367 * progmodes/python.el (python-pdbtrack-input-prompt)
15368 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
15369 regular python pdb prompts. Adjustments shamelessly taken exactly as
15370 suggested in EmacsWiki page (tiny change):
15371 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
15372
15373 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15374
15375 * expand.el (expand-pos, expand-index, expand-point):
15376 Remove redundant info from docstring.
15377 (expand-add-abbrevs): Doc fix.
15378 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
15379 (expand-sample-perl-mode-expand-list): Fix typos.
15380
15381 * net/dbus.el (dbus-event-member-name):
15382 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
15383 * term/pc-win.el (msdos-create-frame-with-faces):
15384 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
15385
15386 2011-11-16 Martin Rudalics <rudalics@gmx.at>
15387
15388 * window.el (split-window, window-state-get-1)
15389 (window-state-put-1, window-state-put-2): Rename occurrences of
15390 window-nest to window-combination-limit.
15391 * cus-start.el (window-nest): Rename to window-combination-limit.
15392
15393 2011-11-16 Chong Yidong <cyd@gnu.org>
15394
15395 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
15396 regexp (Bug#10033).
15397
15398 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
15399
15400 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
15401 `completing-read' will remove *Completions* and will preserve
15402 current-buffer for us.
15403 (tmm-add-prompt): Users of *Completions* will always (re)set its
15404 major mode.
15405 (tmm-old-comp-map): Remove.
15406
15407 2011-11-16 Glenn Morris <rgm@gnu.org>
15408
15409 * mail/rmailedit.el: Require rmailmm when compiling.
15410 (rmail-old-mime-state): New declaration.
15411 (rmail-edit-current-message): If editing a mime message,
15412 edit the "raw" message from the mbox buffer.
15413 (rmail-cease-edit): Handle mime messages. (Bug#9840)
15414
15415 2011-11-15 Glenn Morris <rgm@gnu.org>
15416
15417 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
15418 which wasn't being used. Add optional arg to force given state.
15419 (rmail-mime): Add optional arg to force given state.
15420
15421 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15422
15423 * allout.el (allout-encryption-plaintext-sanitization-regexps):
15424 * frame.el (display-mm-dimensions-alist):
15425 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
15426 (outline-move-subtree-down):
15427 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
15428 (newsticker--treeview-do-get-node):
15429 * net/quickurl.el (quickurl-list-buffer-name):
15430 * progmodes/dcl-mode.el (dcl-mode):
15431 * progmodes/gdb-mi.el (gdb-mapcar*):
15432 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
15433
15434 2011-11-15 Glenn Morris <rgm@gnu.org>
15435
15436 * mail/rmail.el (rmail-file-coding-system): It's only ever used
15437 in a boolean sense, so just make it a boolean, and fix the doc.
15438 (rmail-show-mime-function, rmail-mime-feature)
15439 (rmail-require-mime-maybe): Doc fixes.
15440 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
15441
15442 * mail/rmailmm.el (rmail-show-mime): Doc fix.
15443
15444 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15445
15446 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
15447 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
15448 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
15449 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
15450
15451 2011-11-15 Glenn Morris <rgm@gnu.org>
15452
15453 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
15454 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
15455 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
15456 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
15457 (rmail-mime, rmail-show-mime): Doc fixes.
15458
15459 * term/ns-win.el (mode-line-frame-identification):
15460 Leave it alone. (Bug#10051)
15461
15462 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
15463
15464 * mail/rmailout.el (rmail-output-to-rmail-buffer):
15465 Handle empty buffers. (Bug#9978)
15466
15467 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
15468
15469 * international/mule.el (define-charset):
15470 * mail/rmailmm.el (rmail-mime-find-header-encoding):
15471 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
15472 * progmodes/verilog-mode.el (verilog-backward-token):
15473 * textmodes/ispell.el (lookup-words):
15474 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
15475
15476 2011-11-14 Glenn Morris <rgm@gnu.org>
15477
15478 * progmodes/executable.el
15479 (executable-make-buffer-file-executable-if-script-p):
15480 Handle file-modes returning nil.
15481
15482 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
15483 message - not necessary, and causes problems. (Bug#9831)
15484
15485 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
15486
15487 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
15488
15489 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
15490 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
15491 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
15492
15493 2011-11-12 Martin Rudalics <rudalics@gmx.at>
15494
15495 * window.el (window-resize, delete-window): Use window-splits
15496 variable instead of function.
15497 (window-state-get-1, window-state-put-2, window-state-put):
15498 Don't deal with windows' splits status.
15499
15500 2011-11-12 Glenn Morris <rgm@gnu.org>
15501
15502 * apropos.el (apropos-do-all, apropos-library, apropos-value)
15503 (apropos-documentation): Doc fixes.
15504
15505 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
15506
15507 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
15508 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
15509
15510 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
15511
15512 * electric.el (electric-indent-post-self-insert-function): Make it
15513 possible for a char to only indent in some circumstances.
15514 (electric-indent-mode): Simplify.
15515
15516 2011-11-11 Martin Rudalics <rudalics@gmx.at>
15517
15518 * window.el (windows-with-parameter): Remove unused function.
15519 (windows-at-side): Rename to window-at-side-list.
15520 (window-check, window-atom-check, window-atom-check-1)
15521 (window-side-check, window-size-ignore, window-size-fixed-1)
15522 (window-in-direction-2): Prefix with "window--".
15523 (window-tree-1): Rename to window--subtree, fix doc-string.
15524
15525 2011-11-11 Glenn Morris <rgm@gnu.org>
15526
15527 * subr.el (eval-after-load): If FILE is already loaded,
15528 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
15529
15530 2011-11-10 Glenn Morris <rgm@gnu.org>
15531
15532 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
15533 Call svn via vc-svn-command rather than vc-do-command.
15534 (vc-svn-command): Add --non-interactive. (Bug#9993)
15535 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
15536
15537 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15538 Add toggle-read-only. (Bug#7292)
15539 * files.el (toggle-read-only): Mention that it should only
15540 be used interactively. (Bug#10006)
15541
15542 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
15543
15544 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15545 Adjust regexp for OCaml warnings.
15546
15547 * electric.el (electric-pair-post-self-insert-function): Let user
15548 turn it off buffer-locally (bug#9932).
15549
15550 * progmodes/python.el (python-beginning-of-statement):
15551 Rewrite (bug#2703).
15552
15553 * progmodes/compile.el: Better handle TABs (bug#9749).
15554 (compilation-internal-error-properties)
15555 (compilation-next-error-function): Obey the target buffer's
15556 compilation-error-screen-columns.
15557
15558 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
15559
15560 * progmodes/meta-mode.el: Remove obsolete comments.
15561 (meta-right-comment-regexp, meta-ignore-comment-regexp):
15562 Fix typos in docstrings.
15563
15564 2011-11-09 Martin Rudalics <rudalics@gmx.at>
15565
15566 * window.el (window-size-fixed-p): Rewrite doc-string.
15567 (window-resizable-p): Rename to window--resizable-p. Update callers.
15568 (window--resizable): New function. Make all callers of
15569 window-resizable call window--resizable instead.
15570 (window-resizable): Rewrite in terms of window--resizable.
15571
15572 2011-11-08 Glenn Morris <rgm@gnu.org>
15573
15574 * progmodes/delphi.el (delphi-mode-syntax-table):
15575 Let define-derived-mode define a proper syntax table. (Bug#9994)
15576
15577 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
15578
15579 * window.el: Stay away from defsubst.
15580 (window-list-no-nils): Remove.
15581 (window-state-get-1, window-state-get): Use backquote instead.
15582
15583 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15584
15585 * emacs-lisp/find-func.el (find-function-read):
15586 Fix incorrect use of default argument in `completing-read'.
15587
15588 2011-11-08 Martin Rudalics <rudalics@gmx.at>
15589
15590 * window.el (display-buffer-function, special-display-function):
15591 Mention display-buffer-record-window but do not mention
15592 help-setup parameter in doc-strings.
15593 (window-min-delta): Fix doc-string typo.
15594
15595 2011-11-08 Chong Yidong <cyd@gnu.org>
15596
15597 * window.el (window-total-height, window-total-width): Doc fix.
15598 (window-body-size): Move from C.
15599 (window-body-height, window-body-width): Move to C.
15600
15601 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
15602
15603 * window.el: Make special-display like display-buffer-alist (bug#9532).
15604 (display-buffer--special-action): New function, morphed
15605 from display-buffer--special.
15606 (display-buffer): Use it to handle special-display-buffers at higher
15607 priority (just after display-buffer-alist).
15608 (display-buffer-fallback-action, display-buffer--other-frame-action)
15609 (pop-to-buffer-same-window): Remove display-buffer--special.
15610
15611 2011-11-07 Glenn Morris <rgm@gnu.org>
15612
15613 * calendar/cal-menu.el (cal-menu-set-date-title):
15614 Do nothing if not in a calendar. (Bug#9976)
15615
15616 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
15617
15618 * files.el (find-file): Always use selected-window.
15619
15620 2011-11-07 Martin Rudalics <rudalics@gmx.at>
15621
15622 * window.el (window-combinations): Make WINDOW argument
15623 mandatory. Rewrite doc-string.
15624 (walk-window-subtree, window-atom-check, window-min-delta)
15625 (window-max-delta, window--resize-this-window)
15626 (window--resize-root-window-vertically, window-tree)
15627 (balance-windows, window-state-put): Rewrite doc-strings as to
15628 not mention the term "subwindow".
15629 (window--resize-subwindows-skip-p): Rename to
15630 window--resize-child-windows-skip-p.
15631 (window--resize-subwindows-normal): Rename to
15632 window--resize-child-windows-normal.
15633 (window--resize-subwindows): Rename to
15634 window--resize-child-windows.
15635 (window-or-subwindow-p): Rename to window--in-subtree-p.
15636
15637 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15638
15639 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
15640 Ensure that mbox format messages end in two newlines (Bug#9974).
15641
15642 2011-11-06 Chong Yidong <cyd@gnu.org>
15643
15644 * window.el (window-combination-p): Function deleted; its
15645 side-effect is not used in any existing code.
15646 (window-combinations, window-combined-p): Call window-*-child
15647 directly.
15648
15649 2011-11-05 Chong Yidong <cyd@gnu.org>
15650
15651 * window.el (window-valid-p): Rename from window-any-p.
15652 (window-size-ignore, window-state-get): Callers changed.
15653 (window-normalize-window): Rename from window-normalize-any-window.
15654 New arg LIVE-ONLY, replacing window-normalize-live-window.
15655 (window-normalize-live-window): Delete.
15656 (window-combination-p, window-combined-p, window-combinations)
15657 (walk-window-subtree, window-atom-root, window-min-size)
15658 (window-sizable, window-sizable-p, window-size-fixed-p)
15659 (window-min-delta, window-max-delta, window-resizable)
15660 (window-resizable-p, window-full-height-p, window-full-width-p)
15661 (window-current-scroll-bars, window-point-1, set-window-point-1)
15662 (window-at-side-p, window-in-direction, window-resize)
15663 (adjust-window-trailing-edge, maximize-window, minimize-window)
15664 (window-deletable-p, delete-window, delete-other-windows)
15665 (record-window-buffer, unrecord-window-buffer)
15666 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
15667 (quit-window, split-window, window-state-put)
15668 (set-window-text-height, fit-window-to-buffer)
15669 (shrink-window-if-larger-than-buffer): Callers changed.
15670
15671 2011-11-04 Eli Zaretskii <eliz@gnu.org>
15672
15673 * mail/rmail.el (rmail-simplified-subject): Decode subject with
15674 rfc2047-decode-string.
15675 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
15676 warnings.
15677
15678 * window.el (window-body-height, window-body-width): Mention in
15679 the doc string that the return values are in frame's canonical
15680 units. (Bug#9949)
15681
15682 2011-11-03 Alan Mackenzie <acm@muc.de>
15683
15684 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
15685 change in cc-engine.el.
15686
15687 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
15688
15689 * window.el (switch-to-buffer): Use `force-same-window' interactively.
15690
15691 2011-11-02 Martin Rudalics <rudalics@gmx.at>
15692
15693 * window.el (quit-window): Call unrecord-window-buffer after
15694 showing another buffer in the window. (Bug#9937)
15695 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
15696
15697 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
15698
15699 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
15700 Accept status with more than 9 shelves. (Bug#9935)
15701 Reported by Colin D Bennett <colin@gibibit.com>.
15702
15703 2011-11-01 Martin Rudalics <rudalics@gmx.at>
15704
15705 * help.el (with-help-window): Don't reference
15706 temp-buffer-show-specifiers in doc-string.
15707
15708 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
15709
15710 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
15711 menu-item.
15712
15713 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15714
15715 * whitespace.el: New version 13.2.2.
15716 (whitespace-newline-mode): Disable properly. Reported by Sarah
15717 <EmacsWiki>.
15718
15719 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
15720
15721 * net/newst-treeview.el: Remove "Time-stamp".
15722 (newsticker--group-manage-orphan-feeds): Do not call
15723 newsticker--treeview-tree-update.
15724 (newsticker-treeview-update, newsticker-treeview):
15725 Call newsticker--treeview-tree-update if necessary.
15726
15727 2011-10-30 Martin Rudalics <rudalics@gmx.at>
15728
15729 * window.el (window-iso-combination-p, window-iso-combined-p)
15730 (window-iso-combinations): Remove "iso-" infix.
15731 Suggested by Chong Yidong.
15732 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
15733 (window-max-delta-1, window-resize, window--resize-siblings)
15734 (window--resize-this-window, adjust-window-trailing-edge)
15735 (split-window, balance-windows-1)
15736 (shrink-window-if-larger-than-buffer):
15737 * calendar/calendar.el (calendar-generate-window):
15738 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
15739
15740 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
15741
15742 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
15743 in place (bug#9907).
15744 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
15745 (eshell-rewrite-if-command, eshell-rewrite-for-command)
15746 (eshell-structure-basic-command, eshell-rewrite-while-command)
15747 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
15748 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
15749 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
15750 (eshell-do-pipelines-synchronously, eshell-eval-command):
15751 Use backquotes and prefer setq to set.
15752 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
15753 (eshell-macrop): Use functionp.
15754 (eshell-do-eval): Handle multiple expressions in `while' body.
15755
15756 2011-10-30 Chong Yidong <cyd@gnu.org>
15757
15758 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
15759 instead of set-mark (Bug#9810).
15760
15761 2011-10-30 Chong Yidong <cyd@gnu.org>
15762
15763 * window.el (split-window-below, split-window-right): Rename from
15764 split-window-above-each-other and split-window-side-by-side
15765 respectively. All callers changed.
15766 (split-window-sensibly, split-window-sensibly): Use them.
15767 (split-window-keep-point): Doc fix.
15768
15769 * isearch.el: Add isearch-scroll property to split-window-below
15770 and split-window-right.
15771
15772 * follow.el (follow-mode):
15773 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15774 * progmodes/ada-xref.el (ada-gdb-application):
15775 * emulation/vip.el (vip-buffer-in-two-windows):
15776 * image-dired.el (image-dired-dired-with-window-configuration):
15777 * dired-x.el (dired-do-find-marked-files):
15778 * dired.el (dired-pop-to-buffer):
15779 * bs.el (bs--show-with-configuration):
15780 * vc/emerge.el (emerge-setup-windows):
15781 * textmodes/two-column.el (2C-two-columns):
15782 * textmodes/reftex-toc.el (reftex-toc):
15783 * progmodes/gdb-mi.el (gdb-setup-windows):
15784 * progmodes/fortran.el (fortran-window-create):
15785 * net/newst-treeview.el (newsticker--treeview-window-init):
15786 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
15787 * emulation/tpu-edt.el (tpu-gold-map):
15788 * emulation/crisp.el (crisp-mode-map):
15789 * calendar/calendar.el (calendar-basic-setup): Callers changed.
15790
15791 2011-10-29 Chong Yidong <cyd@gnu.org>
15792
15793 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
15794
15795 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
15796
15797 * textmodes/flyspell.el (flyspell-word): Fix char offset for
15798 forged Ispell output (Bug#7904).
15799
15800 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
15801
15802 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15803
15804 * doc-view.el: Avoid ugly errors about not finding nil.
15805 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
15806 (doc-view-dvipdf-program, doc-view-unoconv-program)
15807 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
15808 Avoid nil or absolute file name as default value.
15809 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
15810
15811 2011-10-28 Alan Mackenzie <acm@muc.de>
15812
15813 * progmodes/cc-defs.el (c-version): -> 5.32.2.
15814
15815 2011-10-28 Alan Mackenzie <acm@muc.de>
15816
15817 Amend the handling of c-beginning/end-of-defun in nested declaration
15818 scopes.
15819
15820 * progmodes/cc-vars.el (c-defun-tactic): Move here from
15821 cc-langs.el. Change it to a defcustom.
15822
15823 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
15824 cc-vars.el.
15825
15826 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15827 Prevent "class foo : bar" being spuriously recognized as a label.
15828
15829 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
15830 Add parameter `inclusive' (to include enclosing braces in the region).
15831 (c-widen-to-enclosing-decl-scope): New function.
15832 (c-while-widening-to-decl-block): New macro.
15833 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
15834 outward for defun boundaries, and correspondingly change symbol
15835 `respect-enclosure' to `go-outward'.
15836 (c-declaration-limits): Change algorithm to report only the "innermost"
15837 defun's boundaries.
15838
15839 2011-10-28 Deniz Dogan <deniz@dogan.se>
15840
15841 * net/rcirc.el (rcirc-mode): Use hard newlines.
15842
15843 2011-10-28 Alan Mackenzie <acm@muc.de>
15844
15845 Amend to indent and fontify macros "which include their own semicolon"
15846 correctly, using the "virtual semicolon" mechanism.
15847
15848 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
15849
15850 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
15851 Recode to scan one line at a time rather than having \n and \r
15852 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
15853 (c-forward-label): Amend for virtual semicolons.
15854 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
15855
15856 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
15857 of the new C macros.
15858
15859 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
15860 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
15861 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
15862 (c-opt-cpp-macro-define): Make into a full language variable.
15863 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
15864 AWK Mode (including \n, \r) removed, no longer needed.
15865
15866 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
15867 Invoke c-make-macro-with-semi-re.
15868
15869 * progmodes/cc-vars.el (c-macro-with-semi-re):
15870 (c-macro-names-with-semicolon): New variables.
15871 (c-make-macro-with-semi-re): New function.
15872
15873 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15874
15875 * vc/log-edit.el: Fill empty field rather than adding new one.
15876 (log-edit-add-field): New function.
15877 (log-edit-insert-changelog): Use it.
15878
15879 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15880
15881 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
15882
15883 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15884
15885 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
15886 (gdb--check-interpreter): New function.
15887 (gdb): Use it.
15888
15889 2011-10-27 Glenn Morris <rgm@gnu.org>
15890
15891 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
15892 (least-positive-float, least-negative-float)
15893 (least-positive-normalized-float, least-negative-normalized-float)
15894 (float-epsilon, float-negative-epsilon):
15895 Remove unnecessary declarations.
15896
15897 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
15898 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
15899 (least-positive-float, least-negative-float)
15900 (least-positive-normalized-float, least-negative-normalized-float)
15901 (float-epsilon, float-negative-epsilon): Add doc-strings,
15902 based on those in cl.texi.
15903
15904 * files.el (set-visited-file-name): If the major-mode changed,
15905 reload the local variables. (Bug#9796)
15906
15907 2011-10-27 Chong Yidong <cyd@gnu.org>
15908
15909 * subr.el (change-major-mode-after-body-hook): New hook.
15910 (run-mode-hooks): Run it.
15911
15912 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
15913 Use change-major-mode-before-body-hook.
15914
15915 * simple.el (fundamental-mode):
15916 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
15917 change introducing fundamental-mode-hook.
15918
15919 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
15920
15921 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
15922
15923 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
15924
15925 * ido.el (ido-file-name-all-completions-1): Do not require
15926 tramp.el explicitly. (Bug#7583)
15927
15928 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
15929
15930 * progmodes/octave-mod.el:
15931 * progmodes/octave-inf.el: Update maintainer.
15932
15933 2011-10-26 Chong Yidong <cyd@gnu.org>
15934
15935 * subr.el (with-wrapper-hook): Rewrite doc.
15936
15937 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
15938
15939 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
15940 filenames "/method:foo:". (Bug#9793)
15941
15942 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15943
15944 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
15945 (bug#9865).
15946
15947 2011-10-24 Glenn Morris <rgm@gnu.org>
15948
15949 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
15950
15951 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
15952
15953 * notifications.el: Add the requirement of a running D-Bus session
15954 bus to the Commentary.
15955
15956 2011-10-24 Juri Linkov <juri@jurta.org>
15957
15958 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15959 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
15960 (Bug#9364)
15961
15962 2011-10-24 Juri Linkov <juri@jurta.org>
15963
15964 * info.el (Info-following-node-name-re): Add newline to the list
15965 of allowed characters for leading space. (Bug#9824)
15966
15967 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
15968
15969 * progmodes/octave-inf.el (inferior-octave-mode-map):
15970 Fix C-c C-h binding.
15971 * progmodes/octave-mod.el (octave-help): Remove.
15972
15973 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
15974
15975 Sync with Tramp 2.2.3.
15976
15977 * net/tramp-cache.el (top): Pacify byte-compiler using
15978 `init-file-user' and `site-run-file'.
15979
15980 * net/trampver.el: Update release number.
15981
15982 2011-10-23 Chong Yidong <cyd@gnu.org>
15983
15984 * files.el (toggle-read-only): Remove obsolete comment about
15985 version control.
15986
15987 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
15988 for toggle-read-only. Note that this hasn't called vc-next-action
15989 since 2008-05-02, though it wasn't documented at the time.
15990
15991 * vc/ediff-init.el (ediff-toggle-read-only-function):
15992 Use toggle-read-only.
15993
15994 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
15995
15996 Fix bug #9560, sporadic wrong indentation; improve instrumentation
15997 of c-parse-state.
15998
15999 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16000 correct faulty logical expression.
16001 (c-parse-state-state, c-record-parse-state-state):
16002 (c-replay-parse-state-state): New defvar/defuns.
16003 (c-debug-parse-state): Use new functions.
16004
16005 2011-10-22 Martin Rudalics <rudalics@gmx.at>
16006
16007 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
16008 last fix. Use window-in-direction correctly.
16009
16010 2011-10-21 Chong Yidong <cyd@gnu.org>
16011
16012 * progmodes/idlwave.el (idlwave-mode):
16013 * progmodes/vera-mode.el (vera-mode): No need to set
16014 require-final-newline; that's done in prog-mode.
16015 Suggested by Stefan Monnier.
16016
16017 2011-10-21 Martin Rudalics <rudalics@gmx.at>
16018
16019 * mouse.el (mouse-drag-window-above)
16020 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
16021 (mouse-drag-mode-line-1, mouse-drag-header-line)
16022 (mouse-drag-vertical-line-rightward-window): Remove.
16023 (mouse-drag-line): New function.
16024 (mouse-drag-mode-line, mouse-drag-header-line)
16025 (mouse-drag-vertical-line): Call mouse-drag-line.
16026 * window.el (window-at-side-p, windows-at-side): New functions.
16027
16028 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
16029
16030 * tar-mode.el (tar-grind-file-mode):
16031 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
16032
16033 2011-10-21 Chong Yidong <cyd@gnu.org>
16034
16035 * progmodes/idlwave.el (idlwave-mode):
16036 * progmodes/vera-mode.el (vera-mode):
16037 Use mode-require-final-newline.
16038
16039 2011-10-20 Glenn Morris <rgm@gnu.org>
16040
16041 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
16042
16043 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
16044
16045 * emulation/cua-base.el (cua-set-mark): Fix case of string.
16046
16047 2011-10-20 Chong Yidong <cyd@gnu.org>
16048
16049 * emulation/cua-base.el (cua-mode):
16050 * mail/footnote.el (footnote-mode):
16051 * mail/mailabbrev.el (mail-abbrevs-mode):
16052 * net/xesam.el (xesam-minor-mode):
16053 * progmodes/bug-reference.el (bug-reference-mode):
16054 * progmodes/cap-words.el (capitalized-words-mode):
16055 * progmodes/compile.el (compilation-minor-mode)
16056 (compilation-shell-minor-mode):
16057 * progmodes/gud.el (gud-tooltip-mode):
16058 * progmodes/hideif.el (hide-ifdef-mode):
16059 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16060 * progmodes/subword.el (subword-mode):
16061 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16062 * progmodes/which-func.el (which-function-mode):
16063 * term/tvi970.el (tvi970-set-keypad-mode):
16064 * term/vt100.el (vt100-wide-mode):
16065 * textmodes/flyspell.el (flyspell-mode):
16066 * textmodes/ispell.el (ispell-minor-mode):
16067 * textmodes/nroff-mode.el (nroff-electric-mode):
16068 * textmodes/paragraphs.el (use-hard-newlines):
16069 * textmodes/refill.el (refill-mode):
16070 * textmodes/reftex.el (reftex-mode):
16071 * textmodes/rst.el (rst-minor-mode):
16072 * textmodes/sgml-mode.el (html-autoview-mode)
16073 (sgml-electric-tag-pair-mode):
16074 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
16075 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
16076 * emulation/crisp.el (crisp-mode):
16077 * emacs-lisp/eldoc.el (eldoc-mode):
16078 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
16079 minor mode behavior.
16080
16081 2011-10-19 Juri Linkov <juri@jurta.org>
16082
16083 * descr-text.el (describe-char): Add #x2010 and #x2011 to
16084 the list of hard-coded chars with escape-glyph face.
16085
16086 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16087
16088 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
16089
16090 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
16091
16092 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
16093 running process.
16094
16095 2011-10-19 Glenn Morris <rgm@gnu.org>
16096
16097 * vc/vc-bzr.el (vc-bzr-after-dir-status):
16098 Ignore ignored files. (Bug#9726)
16099
16100 2011-10-19 Chong Yidong <cyd@gnu.org>
16101
16102 Doc fix for minor modes, stating that an omitted argument enables
16103 the mode unconditionally when called from Lisp.
16104
16105 * abbrev.el (abbrev-mode):
16106 * allout.el (allout-mode):
16107 * autoinsert.el (auto-insert-mode):
16108 * autoarg.el (autoarg-mode, autoarg-kp-mode):
16109 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16110 (global-auto-revert-mode):
16111 * battery.el (display-battery-mode):
16112 * composite.el (global-auto-composition-mode)
16113 (auto-composition-mode):
16114 * delsel.el (delete-selection-mode):
16115 * desktop.el (desktop-save-mode):
16116 * dired-x.el (dired-omit-mode):
16117 * dirtrack.el (dirtrack-mode):
16118 * doc-view.el (doc-view-minor-mode):
16119 * double.el (double-mode):
16120 * electric.el (electric-indent-mode, electric-pair-mode):
16121 * emacs-lock.el (emacs-lock-mode):
16122 * epa-hook.el (auto-encryption-mode):
16123 * follow.el (follow-mode):
16124 * font-core.el (font-lock-mode):
16125 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
16126 * help.el (temp-buffer-resize-mode):
16127 * hilit-chg.el (highlight-changes-mode)
16128 (highlight-changes-visible-mode):
16129 * hi-lock.el (hi-lock-mode):
16130 * hl-line.el (hl-line-mode, global-hl-line-mode):
16131 * icomplete.el (icomplete-mode):
16132 * ido.el (ido-everywhere):
16133 * image-file.el (auto-image-file-mode):
16134 * image-mode.el (image-minor-mode):
16135 * iswitchb.el (iswitchb-mode):
16136 * jka-cmpr-hook.el (auto-compression-mode):
16137 * linum.el (linum-mode):
16138 * longlines.el (longlines-mode):
16139 * master.el (master-mode):
16140 * mb-depth.el (minibuffer-depth-indicate-mode):
16141 * menu-bar.el (menu-bar-mode):
16142 * minibuf-eldef.el (minibuffer-electric-default-mode):
16143 * mouse-sel.el (mouse-sel-mode):
16144 * msb.el (msb-mode):
16145 * mwheel.el (mouse-wheel-mode):
16146 * outline.el (outline-minor-mode):
16147 * paren.el (show-paren-mode):
16148 * recentf.el (recentf-mode):
16149 * reveal.el (reveal-mode, global-reveal-mode):
16150 * rfn-eshadow.el (file-name-shadow-mode):
16151 * ruler-mode.el (ruler-mode):
16152 * savehist.el (savehist-mode):
16153 * scroll-all.el (scroll-all-mode):
16154 * scroll-bar.el (scroll-bar-mode):
16155 * server.el (server-mode):
16156 * shell.el (shell-dirtrack-mode):
16157 * simple.el (auto-fill-mode, transient-mark-mode)
16158 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
16159 (line-number-mode, column-number-mode, size-indication-mode)
16160 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
16161 * strokes.el (strokes-mode):
16162 * time.el (display-time-mode):
16163 * t-mouse.el (gpm-mouse-mode):
16164 * tool-bar.el (tool-bar-mode):
16165 * tooltip.el (tooltip-mode):
16166 * type-break.el (type-break-mode-line-message-mode)
16167 (type-break-query-mode):
16168 * view.el (view-mode):
16169 * whitespace.el (whitespace-mode, whitespace-newline-mode)
16170 (global-whitespace-mode, global-whitespace-newline-mode):
16171 * xt-mouse.el (xterm-mouse-mode): Doc fix.
16172
16173 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16174 Fix autogenerated docstring.
16175
16176 2011-10-19 Juri Linkov <juri@jurta.org>
16177
16178 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
16179 by checking environment variables "DESKTOP_SESSION" and
16180 "XDG_CURRENT_DESKTOP". (Bug#9779)
16181
16182 2011-10-19 Juri Linkov <juri@jurta.org>
16183
16184 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
16185 (browse-url-chromium-program, browse-url-chromium-arguments):
16186 New defcustoms.
16187 (browse-url-default-browser): Check for `browse-url-chromium' and
16188 call `browse-url-chromium-program'.
16189 (browse-url-chromium): New command. (Bug#9779)
16190
16191 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
16192
16193 * facemenu.el (list-colors-duplicates): On Windows, detect more
16194 duplicates by assuming that only colors matching "^System" are
16195 special "system colors". (Bug#9722)
16196
16197 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16198
16199 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
16200 to distinguish the author from the committer.
16201
16202 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
16203
16204 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
16205
16206 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
16207
16208 * international/mule.el (sgml-html-meta-auto-coding-function):
16209 Add support for detecting encoding in HTML5 specified only as
16210 <meta charset="UTF-8">. Implementation just makes http-equiv and
16211 content-type parts from HTML4 encoding string optional. (Bug#9716)
16212
16213 2011-10-18 Glenn Morris <rgm@gnu.org>
16214
16215 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
16216
16217 2011-10-18 Chong Yidong <cyd@gnu.org>
16218
16219 * faces.el (cursor): Doc fix.
16220
16221 2011-10-17 Chong Yidong <cyd@gnu.org>
16222
16223 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
16224
16225 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
16226
16227 * dirtrack.el (dirtrack): Support shell buffers with path
16228 prefixes, e.g. tramp-based remote shells. (Bug#9647)
16229
16230 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
16231
16232 * json.el: Bump version to 1.3 and note change in History.
16233 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
16234
16235 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16236
16237 * comint.el (comint-insert-input, comint-send-input)
16238 (comint-get-old-input-default, comint-backward-matching-input)
16239 (comint-next-prompt): Use nil instead of `input' for field property of
16240 past user input (bug#114).
16241
16242 * minibuffer.el (completion--replace): Inherit surrounding properties
16243 (bug#114).
16244 (minibuffer-complete-and-exit): Use it.
16245
16246 * comint.el (comint--table-subvert): Quote the all-completions output
16247 (bug#9160).
16248
16249 2011-10-17 Martin Rudalics <rudalics@gmx.at>
16250
16251 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
16252
16253 * menu-bar.el (menu-bar-file-menu): Add entry for making new
16254 window on right of selected. (Bug#9350) Reword other window
16255 entries and separate them from frame entries.
16256
16257 2011-10-15 Glenn Morris <rgm@gnu.org>
16258
16259 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
16260 Doc fixes.
16261
16262 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
16263
16264 * net/network-stream.el (network-stream-open-starttls):
16265 Improve detection of failure due to lack of TLS support.
16266
16267 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
16268 putting the input text in front and in bold.
16269
16270 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16271
16272 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
16273
16274 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
16275 empty buffer.
16276
16277 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
16278 unread-command-events rather than pushing yet-another event.
16279
16280 2011-10-14 Eli Zaretskii <eliz@gnu.org>
16281
16282 * mail/sendmail.el (sendmail-query-once): Improve the wording of
16283 the explanation of the possible choices. Make the options passed
16284 to completing-read shorter.
16285
16286 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16287
16288 * textmodes/flyspell.el (flyspell-large-region): Make sure
16289 extended character mode is used if defined (Bug#1339).
16290
16291 2011-10-13 Eli Zaretskii <eliz@gnu.org>
16292
16293 * simple.el (what-cursor-position): Fix the display of the
16294 character info for LRE, LRO, RLE, and RLO characters by appending
16295 an invisible PDF.
16296
16297 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
16298
16299 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
16300 even in case of error; add debug spec; simplify data flow.
16301 (with-timeout-handler): Remove.
16302
16303 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
16304
16305 Fix Bug#6019, Bug#9315.
16306
16307 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
16308 complete `buffer-file-name', the local file name part could look
16309 remotely (for example on VMS).
16310
16311 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
16312 `tramp-run-real-handler'.
16313 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
16314 already quoted by '"'.
16315
16316 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
16317 Let `file-name-handler-alist' be nil, the local file name part
16318 could look remotely (for example on VMS).
16319
16320 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16321
16322 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
16323 from here...
16324 (flyspell-post-command-hook): ...to here.
16325
16326 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16327
16328 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
16329 if not needed.
16330 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
16331 using completion. Protect against "slow" callers.
16332 Remove the "message hack".
16333
16334 2011-10-11 Juri Linkov <juri@jurta.org>
16335
16336 * isearch.el (isearch-lazy-highlight-word): New variable.
16337 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
16338 Use it. (Bug#9727)
16339
16340 2011-10-11 Glenn Morris <rgm@gnu.org>
16341
16342 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
16343 like f90-previous-statement does.
16344
16345 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16346
16347 * eshell/eshell.el (eshell-command): History should be saved
16348 only in interactive use, to avoid error.
16349
16350 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16351
16352 * minibuffer.el (completion-file-name-table): Fix last change,
16353 i.e. ignore normal errors but not the other ones.
16354
16355 2011-10-10 Martin Rudalics <rudalics@gmx.at>
16356
16357 * window.el (special-display-buffer-names)
16358 (special-display-regexps): Remove some remnants of earlier
16359 changes from doc-strings.
16360 (quit-windows-on): New function.
16361
16362 * vc/vc.el (vc-revert, vc-rollback):
16363 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
16364 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
16365 (Bug#6183) (Bug#7074) (Bug#7447)
16366
16367 2011-10-09 Martin Rudalics <rudalics@gmx.at>
16368
16369 * window.el (frame-auto-hide-function): Add version tag.
16370 (Bug#9699)
16371
16372 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
16373
16374 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
16375 condition.
16376
16377 2011-10-09 Leo Liu <sdl.web@gmail.com>
16378
16379 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
16380 (Bug#9701)
16381
16382 2011-10-08 Glenn Morris <rgm@gnu.org>
16383
16384 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
16385 before the first code statement zero indent. (Bug#9690)
16386
16387 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
16388
16389 * simple.el (count-words-region): Always count in the region.
16390 Report the number of lines and characters too.
16391 (count-words): New command, which counts in the buffer if the
16392 region is inactive, as count-words-region used to.
16393 (count-words--message): New function. Handle plurals.
16394 (count-lines-region): Make it an alias for count-words-region.
16395
16396 * bindings.el (esc-map): Replace count-lines-region with
16397 count-words-region.
16398
16399 2011-10-08 Martin Rudalics <rudalics@gmx.at>
16400
16401 * window.el (window--delete): Delete dedicated frame
16402 unconditionally when argument KILL is non-nil. (Bug#9699)
16403 (switch-to-buffer): Fix doc-string typo.
16404
16405 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16406
16407 * eshell/eshell.el (eshell-command): Avoid using hooks.
16408
16409 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
16410
16411 * bindings.el ([M-left],[M-right]): Bind to left-word and
16412 right-word respectively.
16413
16414 2011-10-07 Glenn Morris <rgm@gnu.org>
16415
16416 * cus-start.el (debug-on-quit): Fix custom type.
16417
16418 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16419
16420 * subr.el (define-key-after): Clarify that the function is not
16421 useful for non-menu keymaps.
16422
16423 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
16424
16425 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16426
16427 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
16428 in current minibuffer (Fix bug with recursive minibuffers).
16429
16430 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
16431
16432 * progmodes/gdb-mi.el (gdb): Doc fix.
16433
16434 2011-10-05 Martin Rudalics <rudalics@gmx.at>
16435
16436 * window.el (frame-auto-hide-function): New option replacing
16437 frame-auto-delete. Suggested by Stefan Monnier.
16438 (window--delete): Call frame-auto-hide-function instead of
16439 investigating frame-auto-delete.
16440 (window-point-1, set-window-point-1): New functions.
16441 (window-in-direction, record-window-buffer, window-state-get-1)
16442 (display-buffer-record-window): Use window-point-1 instead of
16443 window-point.
16444 (set-window-buffer-start-and-point): Use set-window-point-1.
16445
16446 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16447
16448 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
16449
16450 2011-10-05 Glenn Morris <rgm@gnu.org>
16451
16452 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
16453 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
16454
16455 2011-10-05 Leo Liu <sdl.web@gmail.com>
16456
16457 * subr.el (read-char-choice): Fix argument to buffer-live-p which
16458 works with buffer object.
16459
16460 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16461
16462 * mpc.el (mpc-tool-bar-map): Add labels.
16463
16464 2011-10-04 Glenn Morris <rgm@gnu.org>
16465
16466 * calendar/holidays.el (calendar-check-holidays): Doc fix.
16467
16468 2011-10-04 Martin Rudalics <rudalics@gmx.at>
16469
16470 * window.el (window--delete): New function.
16471 (frame-auto-delete): Resuscitate option.
16472 (bury-buffer, replace-buffer-in-windows)
16473 (quit-window): Rewrite using window--delete.
16474 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
16475 Pass display-buffer-mark-dedicated to window--display-buffer-2
16476 (Bug#9639).
16477
16478 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16479
16480 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
16481 returns a list (bug#9554). Add remote file name completion.
16482 * comint.el (comint--table-subvert): Curry and get quote&unquote
16483 functions as arguments.
16484 (comint--complete-file-name-data): Adjust call accordingly.
16485 * pcomplete.el (pcomplete--table-subvert): Remove.
16486 (pcomplete-completions-at-point): Use comint--table-subvert instead.
16487
16488 * minibuffer.el (completion-table-case-fold): Use currying.
16489 (completion--styles-type, completion--cycling-threshold-type):
16490 New constants.
16491 (completion-styles, completion-category-overrides)
16492 (completion-cycle-threshold): Use them.
16493 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
16494 completion-table-case-fold.
16495
16496 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
16497
16498 * minibuffer.el (completion-category-overrides): Fix type of styles
16499 and add more user friendly tags (bug#9660).
16500
16501 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16502
16503 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
16504 (mule-input-method-string): New widget.
16505 (default-input-method, language-info-custom-alist): Use it.
16506
16507 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16508
16509 * pcomplete.el: Require comint.
16510 (pcomplete--common-suffix): Remove.
16511 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
16512 (pcomplete--table-subvert): Sync with comint--table-subvert.
16513 (pcomplete--entries): Use comint-completion-file-name-table.
16514 * comint.el (comint-unquote-filename): Simplify.
16515 (comint-completion-file-name-table): New function (bug#9616).
16516 (comint--complete-file-name-data): Use it.
16517
16518 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
16519 (pcmpl-gnu-tar-buffer): Remove.
16520 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
16521 around. Make sure pcomplete-suffix-list is only changed temporarily.
16522 Don't look inside the tar's file if it's too large.
16523
16524 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
16525
16526 * cus-edit.el (custom-mode-map):
16527 * epa.el (epa-key-list-mode-map):
16528 * man.el (Man-mode-map):
16529 * startup.el (splash-screen-keymap):
16530 * simple.el (special-mode-map): Use scroll-up-command and
16531 scroll-down-command.
16532
16533 * progmodes/idlw-help.el (idlwave-help-mode-map):
16534 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
16535 * net/newst-plainview.el (newsticker-mode-map):
16536 * emulation/ws-mode.el (wordstar-mode-map):
16537 * emulation/vi.el (vi-com-map):
16538 * calc/calc-graph.el (calc-graph-show-dumb):
16539 * term/sun.el (terminal-init-sun):
16540 * term/ns-win.el (global-map):
16541 * progmodes/grep.el (grep-mode-map):
16542 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
16543 * mail/rmail.el (rmail-mode-map):
16544 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
16545
16546 * custom.el (custom-safe-themes, load-theme): Treat value of t for
16547 custom-safe-themes as special.
16548
16549 2011-10-01 Julien Danjou <julien@danjou.info>
16550
16551 * notifications.el (notifications-notify): Fix docstring.
16552
16553 2011-10-01 Per Starbäck <per@starback.se>
16554
16555 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
16556
16557 2011-09-30 Martin Rudalics <rudalics@gmx.at>
16558
16559 * startup.el (command-line-1): Fix last fix by inserting
16560 initial-scratch-message into *scratch* before displaying it.
16561 (Bug#9605) and (Bug#9636)
16562
16563 2011-09-29 Eli Zaretskii <eliz@gnu.org>
16564
16565 * simple.el (line-move): If auto-hscroll-mode is disabled and the
16566 window is hscrolled, move by logical lines. (Bug#9607)
16567 (line-move-visual): Update the doc string to the above effect.
16568
16569 2011-09-29 Martin Rudalics <rudalics@gmx.at>
16570
16571 * window.el (display-buffer-record-window): When WINDOW is the
16572 selected window use `point' instead of `window-point'. (Bug#9626)
16573
16574 * startup.el (command-line-1): Use insert-before-markers when
16575 inserting initial-scratch-message. (Bug#9605)
16576
16577 * help.el (help-window): Remove variable.
16578
16579 2011-09-29 Glenn Morris <rgm@gnu.org>
16580
16581 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
16582
16583 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
16584
16585 * descr-text.el (describe-char-categories): Accept category
16586 descriptions more than one line long.
16587
16588 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
16589
16590 * simple.el (delete-trailing-whitespace): Fix last change.
16591
16592 * progmodes/perl-mode.el (perl-syntax-propertize-function):
16593 Don't confuse "y => 3" as the beginning of a `y' operation.
16594
16595 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
16596 object has more than 4 slots (bug#9613).
16597
16598 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
16599
16600 * subr.el (with-output-to-temp-buffer):
16601 * net/quickurl.el (quickurl, quickurl-browse-url):
16602 Fix typos in docstrings.
16603
16604 2011-09-27 Eli Zaretskii <eliz@gnu.org>
16605
16606 * minibuffer.el (completion-styles)
16607 (completion-category-overrides): Cross reference each other in doc
16608 strings.
16609
16610 2011-09-27 Glenn Morris <rgm@gnu.org>
16611
16612 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
16613 to split-string. (Bug#9606)
16614
16615 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16616
16617 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
16618 (bug#9615).
16619
16620 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
16621
16622 * emacs-lisp/package.el (list-packages): Fix echo area message.
16623
16624 2011-09-27 Leo Liu <sdl.web@gmail.com>
16625
16626 * ido.el (ido-read-internal): Accept cons cell HIST arg.
16627
16628 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
16629
16630 * net/dbus.el (dbus-unregister-object): Don't release services for
16631 registered signals. (Bug#9581)
16632
16633 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
16634
16635 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
16636 function that picks between cfengine 2 and 3 support
16637 automatically. Update docs accordingly.
16638
16639 2011-09-22 Kenichi Handa <handa@m17n.org>
16640
16641 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
16642 ZERO.
16643 (indian-itrans-v5-table-for-tamil): New variable.
16644 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
16645
16646 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
16647
16648 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
16649 that's true if the current command involved collapsing of text.
16650 It's reset to false at the beginning of the next command.
16651 (allout-post-command-business): Move the cursor to the beginning
16652 of entry if the cursor is hidden and collapsing activity just
16653 happened.
16654
16655 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
16656
16657 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
16658 tracking (Bug#9541).
16659
16660 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
16661
16662 * net/newst-reader.el (newsticker-html-renderer)
16663 (newsticker-show-news): Automatically load html rendering package
16664 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
16665 because w3m-fill-column is let-bound" and the error "Symbol's value
16666 as variable is void: w3m-fill-column".
16667
16668 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
16669
16670 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
16671 Release services only if they are defined. (Bug#9581)
16672
16673 2011-09-23 Richard Stallman <rms@gnu.org>
16674
16675 * textmodes/paragraphs.el (forward-sentence): For backwards case,
16676 distinguish start of paragraph from start of its text.
16677
16678 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
16679
16680 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
16681 (rmail-generate-viewer-buffer): Put that hook on view buffer.
16682 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
16683
16684 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
16685
16686 * international/mule-diag.el (mule-diag): Insert a newline after
16687 each fontset description.
16688
16689 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16690
16691 * simple.el (delete-trailing-whitespace):
16692 Document last change; simplify.
16693
16694 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
16695
16696 * simple.el (delete-trailing-whitespace): Also delete
16697 extra newlines at the end of the buffer.
16698
16699 * textmodes/picture.el: Make motion commands obey shift-select-mode.
16700 (picture-newline): Use forward-line so as to ignore fields.
16701
16702 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16703
16704 * subr.el (with-wrapper-hook): Fix edebug spec.
16705
16706 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
16707
16708 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
16709 (bug#4538).
16710
16711 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
16712
16713 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
16714 Fix nasty bug using wrong cached values.
16715
16716 2011-09-23 Alan Mackenzie <acm@muc.de>
16717
16718 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
16719
16720 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
16721
16722 * window.el (pop-to-buffer): Ensure right window is selected if we
16723 chose another frame.
16724
16725 2011-09-22 Eli Zaretskii <eliz@gnu.org>
16726
16727 * simple.el (what-cursor-position): Use get-char-property-change
16728 and next-single-char-property-change, to be able to show display
16729 properties that come from overlays as well as text properties.
16730
16731 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
16732
16733 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
16734
16735 * cmuscheme.el (run-scheme, switch-to-scheme):
16736 * cus-edit.el (customize-group, custom-buffer-create)
16737 (customize-browse):
16738 * info.el (info):
16739 * shell.el (shell):
16740 * mail/sendmail.el (mail):
16741 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
16742
16743 2011-09-22 Richard Stallman <rms@gnu.org>
16744
16745 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
16746 move back only to line beg, don't move back over blank lines.
16747
16748 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
16749
16750 * files.el (copy-directory): Set directory attributes only in case
16751 they could be retrieved from the source directory. (Bug#9565)
16752
16753 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
16754
16755 * progmodes/hideshow.el (hs-looking-at-block-start-p)
16756 (hs-find-block-beginning, hs-hide-level-recursive):
16757 Ignore strings as well as comments. (Bug#9502)
16758
16759 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
16760
16761 * progmodes/sql.el (sql-comint-postgres):
16762 Convert port number to a string. (Bug#9566)
16763
16764 2011-09-22 Martin Rudalics <rudalics@gmx.at>
16765
16766 * window.el (quit-window): Undedicate window when switching to
16767 previous buffer. Reported by Thierry Volpiatto
16768 <thierry.volpiatto@gmail.com>.
16769 (special-display-popup-frame): When popping up a new frame reset
16770 its previous buffers to nil. Simplify code.
16771
16772 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
16773
16774 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
16775 and process filter, as done also in `shell-command'.
16776
16777 2011-09-21 Martin Rudalics <rudalics@gmx.at>
16778
16779 * window.el (set-window-buffer-start-and-point):
16780 Call set-window-start with NOFORCE argument t.
16781 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
16782 (quit-window): Reword doc-string. Handle new format of
16783 quit-restore parameter. Don't delete window if it has a
16784 previous buffer we can show instead of the present one.
16785 (display-buffer-record-window): Rewrite using a new format for
16786 the quit-restore window parameter
16787 (special-display-popup-frame, display-buffer-same-window)
16788 (display-buffer-reuse-window, display-buffer-pop-up-frame)
16789 (display-buffer-pop-up-window, display-buffer-use-some-window):
16790 Adapt symbol passed to display-buffer-record-window.
16791 * help.el (help-window-setup): Handle new format of quit-restore
16792 parameter.
16793
16794 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16795
16796 * faces.el (face-list): Fix docstring (bug#9564).
16797
16798 * window.el (display-buffer--action-function-custom-type):
16799 Don't include internal functions in the Custom interface.
16800
16801 2011-09-20 Juri Linkov <juri@jurta.org>
16802
16803 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
16804 (Info-forward-node, Info-backward-node, Info-next-preorder)
16805 (Info-last-preorder): Use it. (Bug#9528)
16806
16807 2011-09-20 Juri Linkov <juri@jurta.org>
16808
16809 * info.el (Info-last-preorder): Visit last menu item only when
16810 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
16811
16812 2011-09-20 Julien Danjou <julien@danjou.info>
16813
16814 * password-cache.el (password-cache-remove): Remove entries even if the
16815 value is nil, so that password with a nil value (negative caching) is
16816 possible to invalidate.
16817
16818 2011-09-20 Lawrence Mitchell <wence@gmx.li>
16819
16820 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
16821 all whitespace around breakpoint. (Bug#9553)
16822 (f90-find-breakpoint): Only break at whitespace inside a comment.
16823
16824 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
16825
16826 * minibuffer.el (completion-file-name-table): Keep track of errors.
16827 (completion-table-with-predicate): Handle the case where pred1 is nil.
16828 * pcomplete.el (pcomplete-completions-at-point): Simplify.
16829
16830 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16831
16832 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
16833 (debugger-return-value): Signal an error if the debugging context does
16834 not await any return value.
16835
16836 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
16837 * image-mode.el (image-toggle-display-text)
16838 (image-toggle-display-image): Stay away from evil `intangible'.
16839
16840 2011-09-19 Leo Liu <sdl.web@gmail.com>
16841
16842 * replace.el (occur-revert-arguments): Make it permanent-local.
16843 (occur-mode): Don't call font-lock-defontify.
16844
16845 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
16846
16847 * net/ldap.el (ldap-search-internal): Don't push empty search
16848 result (Bug#9508).
16849
16850 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
16851
16852 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
16853
16854 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
16855
16856 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
16857 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
16858
16859 2011-09-18 Juri Linkov <juri@jurta.org>
16860
16861 * buff-menu.el (Buffer-menu-mode-map):
16862 * dired.el (dired-mode-map):
16863 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
16864 (lisp-interaction-mode-map):
16865 * emacs-lisp/package.el (package-menu-mode-map):
16866 * epa.el (epa-key-list-mode-map):
16867 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
16868 (menu-bar-options-menu):
16869 * outline.el (outline-mode-menu-bar-map):
16870 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
16871 * vc/vc-dir.el (vc-dir-menu-map):
16872 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
16873 Capitalize non-function content words in menu item strings.
16874
16875 * dired.el (dired-mode-map): Add menu item for
16876 `image-dired-dired-toggle-marked-thumbs'.
16877
16878 2011-09-18 Juri Linkov <juri@jurta.org>
16879
16880 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
16881 to `isearch-case-fold-search' and restore its original value
16882 after the `isearch-mode' call.
16883
16884 2011-09-18 Juri Linkov <juri@jurta.org>
16885
16886 * progmodes/grep.el (grep-process-setup): Don't check code for 1
16887 because `zgrep' returns 1 for successful matches (bug#9226).
16888
16889 2011-09-18 Juri Linkov <juri@jurta.org>
16890
16891 * info.el (Info-extract-menu-node-name): Check the second match
16892 for empty string (second test-case of bug#9528).
16893 (Info-last-preorder): Let-bind `Info-history' to nil to not add
16894 intermediate nodes to the history (first test-case of bug#9528).
16895
16896 2011-09-18 Juri Linkov <juri@jurta.org>
16897
16898 * info.el (Info-mode-syntax-table): New variable.
16899 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
16900
16901 2011-09-18 Juri Linkov <juri@jurta.org>
16902
16903 * info.el (Info-file-supports-index-cookies):
16904 Increment line-beginning-position's arg from 3 to 4 because makeinfo
16905 outputs one more line for long file names (bug#4142).
16906
16907 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
16908
16909 * newcomment.el (comment-normalize-vars): If prompting for
16910 comment-start, set comment-start-skip too (Bug#8424).
16911
16912 2011-09-18 Johan Bockgård <bojohan@gnu.org>
16913
16914 * icomplete.el: Fix previous fix of Bug#5849.
16915 (icomplete-mode): Don't set completion-show-inline-help.
16916 (icomplete-minibuffer-setup): Set completion-show-inline-help
16917 locally during icompletion.
16918
16919 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
16920
16921 * woman.el (woman2-process-escapes): Don't delete unrecognized
16922 escapes (Bug#7843).
16923
16924 * files.el (inhibit-first-line-modes-regexps): Add image files.
16925 (hack-local-variables-prop-line): Return nil for malformed
16926 prop-lines (Bug#9044).
16927
16928 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
16929
16930 * net/tramp.el (top): Don't require 'shell.
16931 (tramp-methods): Fix docstring.
16932 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
16933 Return complete remote file name. Handle "smb" case.
16934 Use `tramp-tmpdir', if defined for the respective method.
16935 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
16936
16937 * net/tramp-compat.el (top): Require 'shell.
16938
16939 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
16940 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
16941 `tramp-current-host'.
16942 (tramp-get-remote-tmpdir): Remove.
16943
16944 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
16945 `tramp-tmpdir' entries.
16946 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
16947 (tramp-smb-handle-file-attributes): Ignore errors.
16948 (tramp-smb-wait-for-output): Check also for process end.
16949
16950 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
16951
16952 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
16953 when sending QUIT (bug#9312).
16954
16955 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
16956
16957 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
16958 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
16959 occur-mode-display-occurrence.
16960 (occur-edit-mode): Add usage message.
16961 (occur-cease-edit): New command.
16962 (occur-after-change-function): Use text properties to find the
16963 position of the prefix text.
16964 (occur-engine): Set stickiness of prefix text properties.
16965
16966 2011-09-17 Glenn Morris <rgm@gnu.org>
16967
16968 * progmodes/etags.el (complete-tag):
16969 Fix call to completion-in-region. (Bug#9526)
16970
16971 2011-09-17 Juri Linkov <juri@jurta.org>
16972
16973 * textmodes/ispell.el (ispell-word): Add to the error message
16974 the word, ispell program name and current dictionary (bug#9121).
16975 (ispell-tex-arg-end): Capitalize "error" in the error message.
16976
16977 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
16978
16979 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
16980 check. (Bug#4251)
16981
16982 2011-09-17 Juri Linkov <juri@jurta.org>
16983
16984 * window.el (window-safe-min-height, window-safe-min-width):
16985 Fix typos (followup to bug#9522).
16986
16987 2011-09-17 Sven Joachim <svenjoac@gmx.de>
16988
16989 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
16990
16991 2011-09-16 Eli Zaretskii <eliz@gnu.org>
16992
16993 * simple.el (line-move): If goal-column is set, move by logical
16994 lines, not by display lines. (Bug#971)
16995 (next-line, previous-line, goal-column, line-move-visual): Doc fix
16996 to reflect the above change.
16997
16998 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
16999
17000 * image.el (imagemagick-register-types): Use regexp-opt.
17001
17002 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17003
17004 * window.el (display-buffer-base-action): Rename from
17005 display-buffer-default-action. Make default value empty.
17006 (display-buffer-overriding-action): Convert to defvar.
17007 (display-buffer-fallback-action): New var.
17008
17009 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17010
17011 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
17012 declaration.
17013 (package--add-to-archive-contents): If there is a duplicate entry
17014 with an older version, remove it.
17015 (package-menu-mark-delete, package-menu-mark-install)
17016 (package-menu-mark-unmark): Make unused args optional.
17017 (package-menu-mark-obsolete-for-deletion):
17018 Use package-menu-get-status instead of a regexp search.
17019 (package-menu-get-status): Use tabulated-list-entry.
17020 (package-menu-mark-upgrades): New command.
17021 (package-menu-mode-map): Bind it to U. Add it to menu bar.
17022 (package-menu-execute): Do installation before deletion.
17023 (package-menu-refresh, package-menu-execute): Use derived-mode-p
17024 instead of checking major-mode.
17025 (package-menu--find-upgrades): New function.
17026
17027 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17028
17029 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
17030 passwords in the log buffer.
17031 (smtpmail-process-filter): Update the process marker so that the
17032 "broken by peer" status message is inserted in the right place.
17033
17034 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17035
17036 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
17037 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
17038 bibtex-completion-at-point-function.
17039 (bibtex-completion-at-point-function): Use them.
17040
17041 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
17042
17043 * mpc.el (mpc-constraints-tag-lookup): New function.
17044 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
17045 also to browser "album|playlist".
17046
17047 2011-09-14 Juri Linkov <juri@jurta.org>
17048
17049 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
17050 (isearch-edit-string): Use length of `isearch-string' when
17051 `isearch-fail-pos' returns nil.
17052 (isearch-message): Remove duplicate code and call
17053 `isearch-fail-pos' with arg `t'.
17054
17055 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
17056
17057 * replace.el (occur-mode-goto-occurrence): Don't force using other
17058 window (Bug#9499).
17059
17060 * dired-aux.el (dired-do-chmod): Don't provide initial input.
17061
17062 2011-09-14 Martin Rudalics <rudalics@gmx.at>
17063
17064 * window.el (display-buffer-window): Remove.
17065 (display-buffer-record-window): Use help-setup window parameter
17066 instead of variable display-buffer-window.
17067 (display-buffer-function, special-display-buffer-names)
17068 (special-display-function): Mention help-setup parameter instead
17069 of display-buffer-window in doc-string.
17070 * help.el (help-window-setup): New argument help-window.
17071 Use help-window-setup parameter instead of display-buffer-window.
17072 Reword some messages.
17073 (with-help-window): Pass window used for displaying the buffer
17074 to help-window-setup. Don't set display-buffer-window.
17075
17076 2011-09-13 Glenn Morris <rgm@gnu.org>
17077
17078 * emacs-lisp/debug.el (debugger-make-xrefs):
17079 Preserve point. (Bug#9462)
17080
17081 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17082
17083 * window.el (window-deletable-p): Use next-frame.
17084
17085 2011-09-13 Martin Rudalics <rudalics@gmx.at>
17086
17087 * window.el (window-auto-delete): Remove.
17088 (window-deletable-p): Remove argument FORCE. Don't deal with
17089 dedication and previous buffers.
17090 (switch-to-prev-buffer): Don't delete window.
17091 (delete-windows-on): Delete a window's frame if and only if the
17092 window is dedicated.
17093 (replace-buffer-in-windows): Delete buffer's window or frame if
17094 and only if window is dedicated.
17095 (quit-window): Handle quit-restore as before last change.
17096 (bury-buffer): Delete window only if window-deletable-p returns t.
17097
17098 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17099
17100 * window.el (window-deletable-p): Never delete the last frame on a
17101 given terminal.
17102
17103 2011-09-13 Glenn Morris <rgm@gnu.org>
17104
17105 * help.el (describe-key-briefly): Copy previous standard-output change.
17106
17107 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
17108
17109 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
17110
17111 2011-09-13 Glenn Morris <rgm@gnu.org>
17112
17113 * emacs-lisp/lisp-mode.el (lisp-indent-function):
17114 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
17115
17116 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
17117
17118 * dired-aux.el (dired-mark-read-string): Don't return default
17119 value on empty input (Bug#9361).
17120 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
17121 Omit initial minibuffer contents.
17122 (dired-do-chmod): Signal an error on empty input.
17123 (dired-mark-read-string): Don't return default on empty input.
17124
17125 * files.el (file-modes-symbolic-to-number): Doc fix.
17126
17127 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17128
17129 * international/mule-cmds.el (ucs-completions): Remove.
17130 (read-char-by-name): Use complete-with-action instead; add metadata.
17131
17132 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17133
17134 * window.el (display-buffer--action-function-custom-type)
17135 (display-buffer--action-custom-type): New vars.
17136 (display-buffer-alist, display-buffer-default-action)
17137 (display-buffer-overriding-action): Add defcustom types.
17138
17139 * frame.el (delete-other-frames): Doc fix (Bug#276).
17140
17141 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17142
17143 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
17144
17145 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17146
17147 Change modes that used same-window-* vars to use switch-to-buffer.
17148
17149 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
17150 Use switch-to-buffer.
17151
17152 * cus-edit.el (customize-group, custom-buffer-create)
17153 (customize-browse, custom-buffer-create-other-window):
17154 Use switch-to-buffer or switch-to-buffer-other-window.
17155
17156 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
17157 (Info-prev, Info-up, Info-speedbar-goto-node)
17158 (info-display-manual): Use switch-to-buffer.
17159 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
17160
17161 * mail/sendmail.el (mail): Use switch-to-buffer.
17162 (mail-recover): Use switch-to-buffer-other-window.
17163
17164 * cmuscheme.el (run-scheme, switch-to-scheme):
17165 * ielm.el (ielm):
17166 * shell.el (shell):
17167 * net/rlogin.el (rlogin):
17168 * net/telnet.el (telnet, rsh):
17169 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
17170
17171 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
17172
17173 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
17174
17175 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17176
17177 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
17178 so don't mention it (bug#9301).
17179 (dired-sort-toggle-or-edit): Clarify string further.
17180
17181 * faces.el (face-spec-set-match-display): Make `(type graphic)'
17182 match `x', `w32' and `ns', like the manual says (bug#9029).
17183
17184 * subr.el (eval-after-load): Doc string clarification (bug#9125).
17185 (process-kill-buffer-query-function): Mention the buffer name in
17186 the query.
17187
17188 * image-mode.el (image-next-line): The line parameter is mandatory
17189 (bug#9258).
17190
17191 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
17192 which can be useful (bug#9301).
17193
17194 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
17195
17196 * subr.el (match-string): Mention that the current buffer should
17197 be the same as the search was done in (bug#9282).
17198
17199 * facemenu.el: Disable the remove-* commands if the mark isn't
17200 active (bug#9162).
17201
17202 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17203
17204 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
17205 of display-buffer.
17206 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
17207
17208 * replace.el (occur-mode-goto-occurrence)
17209 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
17210 and display-buffer.
17211
17212 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
17213 display-buffer.
17214
17215 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
17216 special-display and same-window variables.
17217 (mail-other-window): Use switch-to-buffer-other-window.
17218 (mail-other-frame): USe switch-to-buffer-other-frame.
17219
17220 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
17221 Use display-buffer-other-frame.
17222 (gdb-display-gdb-buffer): Use pop-to-buffer.
17223
17224 * progmodes/gud.el (gud-goto-info): Use info-other-window.
17225
17226 * progmodes/python.el: Don't set same-window-buffer-names.
17227
17228 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
17229
17230 * window.el (display-buffer-alist): Add *Python*.
17231
17232 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17233
17234 * window.el (display-buffer-alist): Add entry for buffers
17235 previously handled same-window-*.
17236 (display-buffer-alist, display-buffer-default-action)
17237 (display-buffer-overriding-action): Mark as risky.
17238 (display-buffer-alist): Document action function changes.
17239 (display-buffer--same-window-action)
17240 (display-buffer--other-frame-action): New variables.
17241 (switch-to-buffer, display-buffer-other-frame): Use them.
17242 (display-buffer): Rename reuse-frame entry to reusable-frames.
17243 (display-buffer-reuse-selected-window): Function deleted.
17244 (display-buffer-reuse-window): Handle reusable-frames alist entry.
17245 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
17246 (display-buffer-special): New function.
17247 (display-buffer--maybe-pop-up-frame-or-window): Rename from
17248 display-buffer-reuse-or-pop-window. Split off special-display
17249 part into display-buffer-special.
17250 (display-buffer-use-some-window): Don't perform any special
17251 pop-up-frames handling.
17252 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
17253 (display-buffer--maybe-same-window): Rename from
17254 display-buffer-maybe-same-window.
17255
17256 * info.el: Don't set same-window-regexps.
17257 (info-setup): New function.
17258 (info-other-window, info): Call it.
17259
17260 * cus-edit.el: Don't set same-window-regexps.
17261 (customize-group): New argument.
17262 (customize-group-other-window): Use it.
17263 (customize-face, customize-face-other-window): Likewise.
17264 (custom-buffer-create-other-window): Use pop-to-buffer directly.
17265
17266 * net/rlogin.el:
17267 * net/telnet.el:
17268 * progmodes/gud.el: Don't set same-window-regexps.
17269
17270 * cmuscheme.el:
17271 * ielm.el:
17272 * shell.el:
17273 * mail/sendmail.el:
17274 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
17275
17276 2011-09-10 Juri Linkov <juri@jurta.org>
17277
17278 * isearch.el (isearch-edit-string): Remove obsolete mention of
17279 `C-w' (`isearch-yank-word-or-char') from docstring.
17280 (isearch-query-replace): Fix typo in docstring (bug#9466).
17281
17282 2011-09-10 Juri Linkov <juri@jurta.org>
17283
17284 * paren.el (show-paren-function): Don't show escaped parens.
17285 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
17286
17287 2011-09-10 Eli Zaretskii <eliz@gnu.org>
17288
17289 * mail/sendmail.el (mml-to-mime, mml-attach-file)
17290 (mm-default-file-encoding): Remove autoload forms, they are
17291 replaced with autoload cookies in mml.el and mm-encode.el.
17292 (mail-add-attachment): New command.
17293 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
17294 (mail-mode): Mention mail-insert-file and mail-add-attachment in
17295 the doc string.
17296 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
17297
17298 2011-09-10 Reuben Thomas <rrt@sc3d.org>
17299
17300 * simple.el (count-words-region): Use buffer if there's no region
17301 (bug#9429).
17302
17303 2011-09-09 Juri Linkov <juri@jurta.org>
17304
17305 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
17306 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
17307 (wdired-isearch-filter-read-only): New function. (Bug#6362)
17308
17309 2011-09-09 Alan Mackenzie <acm@muc.de>
17310
17311 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
17312 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
17313
17314 2011-09-09 Eli Zaretskii <eliz@gnu.org>
17315
17316 Fix for Savannah bug#9392.
17317 * simple.el (mail-encode-mml): New defvar.
17318
17319 * mail/rmail.el (mail-encode-mml): Add a defvar.
17320 (rmail-enable-mime-composing): Default to t.
17321 (rmail-forward): Use MIME method of forwarding only if both
17322 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
17323 Set mail-encode-mml non-nil if the MIME method was used.
17324
17325 * mail/sendmail.el (mml-to-mime): Add autoload form.
17326 (mail-encode-mml): Add a defvar.
17327 (mail-mode): Make mail-encode-mml buffer-local and initialize it
17328 to nil.
17329 (mail-send): If mail-encode-mml is non-nil, run the outgoing
17330 message through mml-to-mime, and reset mail-encode-mml to nil.
17331
17332 2011-09-09 Glenn Morris <rgm@gnu.org>
17333
17334 * woman.el (woman-if-body): When processing an .el block,
17335 do not delete the next .el block as well. (Bug#9447)
17336 (woman-special-characters): Add oq, cq, and hy characters.
17337
17338 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17339
17340 * window.el (window-deletable-p): Make sure window is live before
17341 invoking window-prev-buffers.
17342
17343 2011-09-08 Leo Liu <sdl.web@gmail.com>
17344
17345 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
17346
17347 2011-09-08 Juri Linkov <juri@jurta.org>
17348
17349 * progmodes/compile.el (compilation-environment): Make it
17350 a defcustom (bug#8340).
17351
17352 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17353
17354 * window.el (frame-auto-delete): Rename to window-auto-delete.
17355 Make it control auto-deletion of windows and/or frames.
17356 (window-deletable-p): New argument FORCE. Rewrite conditions
17357 for deleting window/frame. (Bug#9419)
17358 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
17359 Rewrite handling of case when window/frame can be deleted.
17360 (delete-windows-on): Call window-deletable-p with new FORCE
17361 argument t. (Bug#9456)
17362
17363 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
17364
17365 * help-mode.el (help-mode): Restore autoload.
17366
17367 2011-09-07 Juri Linkov <juri@jurta.org>
17368
17369 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
17370 `compilation-environment'. Set buffer-local
17371 `compilation-environment' to `thisenv' later after (funcall mode).
17372 (Bug#8340)
17373
17374 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
17375 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
17376 instead of replacing its value. (Bug#8340)
17377
17378 2011-09-07 Juri Linkov <juri@jurta.org>
17379
17380 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
17381 based on text properties put by `grep-filter' instead of matching
17382 escape sequences.
17383 (grep-mode): Set buffer-local `compilation-error-screen-columns'
17384 to the value of `grep-error-screen-columns' (bug#9438).
17385
17386 2011-09-07 Juri Linkov <juri@jurta.org>
17387
17388 * simple.el (next-error-highlight, next-error-highlight-no-select):
17389 Doc fix (bug#9432).
17390
17391 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
17392
17393 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
17394 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
17395
17396 2011-09-07 Leo Liu <sdl.web@gmail.com>
17397
17398 * net/rcirc.el (rcirc-mode): Conditionally initialize
17399 rcirc-input-ring.
17400
17401 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17402
17403 * emacs-lisp/find-func.el (find-function-C-source): Only set
17404 find-function-C-source-directory after checking that we found a source
17405 file there (bug#9440).
17406
17407 2011-09-06 Alan Mackenzie <acm@muc.de>
17408
17409 * isearch.el (isearch-other-meta-char): Wherever a key list is
17410 unread, "unread" the prefix arg, too. This fixes bug #8901.
17411
17412 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
17413
17414 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
17415
17416 2011-09-05 Juri Linkov <juri@jurta.org>
17417
17418 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
17419
17420 2011-09-05 Juri Linkov <juri@jurta.org>
17421
17422 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
17423 keeping point where processing of grep matches begins, and
17424 continue to delete remaining escape sequences from the same point.
17425 (grep-filter): Make leading zero optional in "0?1;31m" because
17426 git-grep emits "\033[1;31m" escape sequences unlike expected
17427 "\033[01;31m" as GNU Grep does (bug#9408).
17428 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
17429
17430 2011-09-05 Juri Linkov <juri@jurta.org>
17431
17432 * subr.el (y-or-n-p): Capitalize "yes".
17433
17434 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
17435
17436 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
17437 `tramp-cache-unload-hook' where appropriate.
17438 (tramp-methods): Rename `tramp-remote-sh' to
17439 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
17440 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
17441
17442 * net/tramp-sh.el (top): Don't require 'shell.
17443 (tramp-methods): Add `tramp-remote-shell' and
17444 `tramp-remote-shell-args' entries.
17445 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
17446 (tramp-sh-handle-shell-command): Remove.
17447 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17448 Use `tramp-remote-shell'.
17449
17450 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
17451
17452 * mail/sendmail.el (sendmail-query-once-function): Delete.
17453 (sendmail-query-once): Save directly to send-mail-function.
17454 Update message-send-mail-function too.
17455
17456 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
17457
17458 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
17459
17460 * progmodes/python.el (python-mode-map): Use correct function to
17461 start python interpreter from menu-bar (as reported by Geert
17462 Kloosterman).
17463 (inferior-python-mode-map): Fix typo.
17464 (python-shell-map): Remove.
17465
17466 2011-09-03 Deniz Dogan <deniz@dogan.se>
17467
17468 * net/rcirc.el (rcirc-print): Simplify code for
17469 rcirc-scroll-show-maximum-output. There is no need to walk
17470 through all windows to find the right one.
17471
17472 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
17473
17474 * help.el (help-return-method): Doc fix.
17475
17476 2011-09-03 Martin Rudalics <rudalics@gmx.at>
17477
17478 * window.el (window-deletable-p): Don't return a non-nil value
17479 when there's a buffer that was shown in the window before.
17480 (Bug#9419)
17481 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17482 Set window's previous buffers to nil.
17483
17484 2011-09-03 Eli Zaretskii <eliz@gnu.org>
17485
17486 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
17487 newline before and after the tag line, so it doesn't interfere
17488 with determining the paragraph direction of bidirectional text.
17489
17490 2011-09-03 Leo Liu <sdl.web@gmail.com>
17491
17492 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
17493
17494 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
17495
17496 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
17497 (pop-to-buffer): Change interactive spec. Pass second argument
17498 directly to display-buffer.
17499 (display-buffer): Fix interactive spec. Use functionp to
17500 distinguish between a function and a list of functions.
17501
17502 * abbrev.el (edit-abbrevs):
17503 * arc-mode.el (archive-extract):
17504 * autoinsert.el (auto-insert):
17505 * bookmark.el (bookmark-bmenu-list):
17506 * files.el (find-file):
17507 * view.el (view-buffer):
17508 * progmodes/compile.el (compilation-goto-locus):
17509 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
17510
17511 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
17512
17513 * window.el (display-buffer-alist): Doc fix.
17514 (display-buffer): Add docstring. Don't treat
17515 display-buffer-default specially.
17516 (display-buffer-reuse-selected-window)
17517 (display-buffer-same-window, display-buffer-maybe-same-window)
17518 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17519 (display-buffer-pop-up-window)
17520 (display-buffer-reuse-or-pop-window)
17521 (display-buffer-use-some-window): New functions.
17522 (display-buffer-default-action): Use them.
17523 (display-buffer-default): Delete.
17524 (pop-to-buffer-1): Fix choice of actions.
17525
17526 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
17527
17528 * minibuffer.el (completion--insert-strings): Don't get confused by
17529 completion entries that end with an LF char.
17530
17531 2011-09-01 Eli Zaretskii <eliz@gnu.org>
17532
17533 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
17534
17535 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
17536
17537 * window.el (display-buffer): Restore interactive spec.
17538 (display-buffer-same-window, display-buffer-other-window):
17539 New functions.
17540 (pop-to-buffer-1): New function. Use the above.
17541 (pop-to-buffer, pop-to-buffer-same-window): Use it.
17542 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
17543
17544 * view.el (view-buffer-other-window, view-buffer-other-frame):
17545 Just use pop-to-buffer.
17546
17547 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17548
17549 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
17550
17551 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
17552
17553 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
17554
17555 2011-08-31 Richard Stallman <rms@gnu.org>
17556
17557 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
17558 of the separation of rmail-view-buffer from rmail-buffer.
17559 If you say no to "replace original", the decrypt is in the
17560 view buffer. If you say yes, the decrypt goes into the
17561 rmail buffer also.
17562
17563 2011-08-31 Martin Rudalics <rudalics@gmx.at>
17564
17565 * window.el (display-buffer-window): Rewrite doc-string.
17566 (display-buffer-record-window): New function.
17567 (display-buffer-macro-specifiers)
17568 (display-buffer-even-window-sizes, display-buffer-set-height)
17569 (display-buffer-set-width, display-buffer-in-window)
17570 (display-buffer-reuse-window, display-buffer-split-specifiers)
17571 (display-buffer-side-specifiers, display-buffer-split-window-1)
17572 (display-buffer-split-window, display-buffer-split-atom-window)
17573 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
17574 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
17575 (display-buffer-other-window-means-other-frame)
17576 (display-buffer-normalize-special)
17577 (display-buffer-normalize-default)
17578 (display-buffer-normalize-argument)
17579 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
17580 (display-buffer-normalize-specifiers, display-buffer-frame)
17581 (display-buffer-same-window, display-buffer-same-frame)
17582 (display-buffer-other-window)
17583 (display-buffer-same-frame-other-window)
17584 (display-buffer-other-frame, pop-to-buffer-same-window)
17585 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
17586 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
17587 (switch-to-buffer-same-frame)
17588 (switch-to-buffer-other-window-same-frame)
17589 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
17590 (display-buffer-alist-set-1, display-buffer-alist-set-2)
17591 (display-buffer-alist-set): Remove.
17592 (display-buffer-function, special-display-buffer-names)
17593 (special-display-regexps, special-display-function):
17594 In doc-string refer to display-buffer-window and quit-restore
17595 parameter.
17596 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
17597 (special-display-frame-alist, special-display-popup-frame)
17598 (same-window-buffer-names, same-window-regexps, same-window-p)
17599 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17600 (split-window-preferred-function, split-height-threshold)
17601 (split-width-threshold, window-splittable-p)
17602 (split-window-sensibly, window--try-to-split-window)
17603 (window--frame-usable-p, even-window-heights)
17604 (window--even-window-heights, window--display-buffer-1)
17605 (window--display-buffer-2, display-buffer-other-frame):
17606 Restore old Emacs 23 code, order and doc-strings where applicable.
17607 (display-buffer-default, display-buffer-assq-regexp): New functions.
17608 (display-buffer-alist): Rewrite doc-string.
17609 (display-buffer-default-action)
17610 (display-buffer-overriding-action): New variables.
17611 (display-buffer, switch-to-buffer): Rewrite.
17612 (pop-to-buffer): Restore Emacs 23 behavior but use
17613 window-normalize-buffer-to-display.
17614 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
17615 Restore Emacs 23 behavior but use
17616 window-normalize-buffer-to-switch-to.
17617 (pop-to-buffer-same-window): Rewrite.
17618 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
17619 Rewrite using Emacs 23 options.
17620
17621 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
17622
17623 * net/tramp.el (tramp-root-regexp): Remove.
17624 (tramp-completion-file-name-regexp-unified)
17625 (tramp-completion-file-name-regexp-separate)
17626 (tramp-completion-file-name-regexp-url): Don't use leading volume
17627 letter on w32 systems. (Bug#5303, Bug#9311)
17628 (tramp-drop-volume-letter): Simplify definition.
17629 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
17630
17631 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
17632
17633 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
17634 (bug#9356).
17635
17636 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
17637
17638 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
17639
17640 2011-08-29 Juri Linkov <juri@jurta.org>
17641
17642 * isearch.el (isearch-done): Don't display message "Mark saved"
17643 when arg `edit' is non-nil to prevent its flicker in the echo area.
17644
17645 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
17646
17647 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
17648 obsolete packages for deletion.
17649
17650 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
17651
17652 * help-mode.el (help-mode-map): Add special-mode-map to parent.
17653 (help-mode): Derive help-mode from special-mode. Don't invoke
17654 view-mode from help-mode.
17655 (help-xref-override-view-map): Remove.
17656 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
17657 view-mode is not used anymore.
17658
17659 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
17660
17661 * server.el (server-port): Doc fix.
17662
17663 * cus-theme.el (custom-theme-choose-mode): Inherit from
17664 special-mode (Bug#9124).
17665 (custom-theme-choose-mode-map): Add special-mode to parent.
17666
17667 2011-08-28 Alan Mackenzie <acm@muc.de>
17668
17669 * progmodes/cc-fonts.el
17670 (c-make-font-lock-BO-decl-search-function): New function.
17671 (c-basic-matchers-after - "Fontify the clauses after various
17672 keywords"): Extract the three keyword lists for the 3 erroneous
17673 constructs from the list of four, and use the new function above
17674 in place of an old one.
17675
17676 2011-08-28 Deniz Dogan <deniz@dogan.se>
17677
17678 * net/rcirc.el (rcirc-insert-prev-input)
17679 (rcirc-insert-next-input): Remove unused argument.
17680
17681 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
17682
17683 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
17684
17685 2011-08-27 Alan Mackenzie <acm@muc.de>
17686
17687 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
17688 handle function pointer parameters properly.
17689
17690 2011-08-27 Martin Rudalics <rudalics@gmx.at>
17691
17692 * window.el (display-buffer-reuse-window): Fix case where
17693 selected window was reused with non-nil OTHER-WINDOW argument.
17694 (Bug#9381)
17695
17696 2011-08-27 Deniz Dogan <deniz@dogan.se>
17697
17698 * net/rcirc.el (rcirc-check-auth-status): Adding support for
17699 oftc's NickServ messages.
17700
17701 2011-08-27 Glenn Morris <rgm@gnu.org>
17702
17703 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
17704
17705 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
17706
17707 * emacs-lisp/package.el (package-install): Call package-initialize
17708 if called interactively.
17709
17710 2011-08-26 Leo Liu <sdl.web@gmail.com>
17711
17712 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
17713
17714 2011-08-25 Juri Linkov <juri@jurta.org>
17715
17716 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17717 `search-whitespace-regexp' (bug#9364).
17718
17719 2011-08-25 Juri Linkov <juri@jurta.org>
17720
17721 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
17722 `regexp-search-ring' to their global values to protect from
17723 updating by `read-from-minibuffer' (bug#9185).
17724
17725 2011-08-25 Juri Linkov <juri@jurta.org>
17726
17727 * textmodes/ispell.el (ispell-command-loop): Add newline
17728 at the end of the "Use option `i'..." line.
17729
17730 2011-08-25 Juri Linkov <juri@jurta.org>
17731
17732 * battery.el (display-battery-mode): If `battery-status-function'
17733 or `battery-mode-line-format' is nil, display the message and set
17734 `display-battery-mode' to nil (bug#9363).
17735
17736 2011-08-25 Eli Zaretskii <eliz@gnu.org>
17737
17738 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
17739 bidi-string-mark-left-to-right; they are unnecessary now.
17740
17741 2011-08-25 Deniz Dogan <deniz@dogan.se>
17742
17743 * net/quickurl.el: Documentation typo fixes.
17744
17745 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
17746
17747 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
17748
17749 2011-08-25 Glenn Morris <rgm@gnu.org>
17750
17751 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
17752
17753 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
17754 (smtpmail-via-smtp): Handle nil response from smtp.
17755
17756 2011-08-24 Juri Linkov <juri@jurta.org>
17757
17758 * proced.el (proced-marked): Inherit from `error' instead of
17759 `font-lock-warning-face'.
17760
17761 * ibuffer.el (ibuffer-marked-face): Change default face from
17762 `font-lock-warning-face' to `warning'.
17763 (ibuffer-deletion-face): Change default face from
17764 `font-lock-type-face' to `error'.
17765
17766 * battery.el (battery-update): Use the face `error' instead of
17767 `font-lock-warning-face' (bug#6117).
17768
17769 2011-08-24 Juri Linkov <juri@jurta.org>
17770
17771 * faces.el (success): Change face color from "Green3" to
17772 "ForestGreen" on light background (bug#9353).
17773
17774 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
17775
17776 * window.el (quit-window): Rename from quit-restore-window.
17777 Use same arglist as old quit-window.
17778 (frame-auto-delete): Doc fix.
17779
17780 * view.el (view-mode-exit): Use quit-window.
17781
17782 2011-08-24 Juri Linkov <juri@jurta.org>
17783
17784 * isearch.el (isearch-ring-adjust1): Start visiting previous
17785 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
17786 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
17787 for empty search string (when the last search string is reused
17788 automatically) to adjust the isearch ring to the last element and
17789 prepare the correct index for further M-p commands (bug#9185).
17790
17791 2011-08-24 Kenichi Handa <handa@m17n.org>
17792
17793 * international/ucs-normalize.el: If decomposition property of
17794 CHAR is the default one (i.e. a list of CHAR itself), treat it as
17795 nil.
17796 (nfd, nfkd): Likewise.
17797
17798 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
17799
17800 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
17801 from process filters aren't reliably transmitted to the surrounding
17802 accept-process-output.
17803 (mpc-proc-check): New function.
17804 (mpc-proc-sync): Use it (bug#8293)
17805
17806 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17807
17808 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
17809 Add compatibility functions (bug#9313).
17810
17811 2011-08-23 Eli Zaretskii <eliz@gnu.org>
17812
17813 * cus-start.el (all): Add entry for bidi-paragraph-direction.
17814
17815 * international/uni-bidi.el: Regenerate.
17816
17817 2011-08-23 Kenichi Handa <handa@m17n.org>
17818
17819 * international/charprop.el:
17820 * international/uni-bidi.el:
17821 * international/uni-category.el:
17822 * international/uni-combining.el:
17823 * international/uni-comment.el:
17824 * international/uni-decimal.el:
17825 * international/uni-decomposition.el:
17826 * international/uni-digit.el:
17827 * international/uni-lowercase.el:
17828 * international/uni-mirrored.el:
17829 * international/uni-name.el:
17830 * international/uni-numeric.el:
17831 * international/uni-old-name.el:
17832 * international/uni-titlecase.el:
17833 * international/uni-uppercase.el: Regenerate.
17834
17835 2011-08-23 Martin Rudalics <rudalics@gmx.at>
17836
17837 * help.el (help-window-setup): Fix message displayed when other
17838 window is reused. (Bug#9341)
17839
17840 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17841
17842 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
17843 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
17844
17845 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
17846 Mark obsolete.
17847 * shell.el (shell-parse-pcomplete-arguments): New function.
17848 (shell-completion-vars): Use it instead (bug#9160).
17849
17850 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
17851
17852 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
17853 strings and comments (bug#9333).
17854
17855 * emacs-lisp/debug.el (debug-arglist): New function.
17856 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
17857 (debug-on-entry-1): Handle interpreted closures (bug#9120).
17858
17859 2011-08-22 Juri Linkov <juri@jurta.org>
17860
17861 * progmodes/compile.el (compilation-mode-font-lock-keywords):
17862 Revert regexp that highlights output switches to its old
17863 pre-2010-10-28 value and remove one `?' from it (bug#9319).
17864
17865 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
17866 to check for empty output (bug#9226).
17867
17868 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
17869
17870 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
17871 symbol-constituent as the default, as that stops font-lock from
17872 working properly (Bug#8843).
17873
17874 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17875
17876 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
17877 `coding-system-for-*' around the process open call to avoid
17878 auth-source side effects.
17879 (smtpmail-try-auth-methods): Expand the secret password.
17880 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
17881 probe hangs.
17882
17883 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
17884
17885 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
17886
17887 * emacs-lisp/find-func.el (find-function-noselect): New arg
17888 lisp-only.
17889
17890 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
17891 signal an error for built-in functions (Bug#6664).
17892
17893 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17894
17895 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
17896 (smtpmail-try-auth-methods): Use it.
17897
17898 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
17899
17900 * font-lock.el (font-lock-fontify-region)
17901 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
17902 (font-lock-default-unfontify-buffer)
17903 (font-lock-default-fontify-region)
17904 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
17905
17906 * progmodes/compile.el (compilation-error-properties):
17907 Fix confusion between file struct and message struct (Bug#9319).
17908 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
17909 `ant' regexp.
17910
17911 * net/browse-url.el (browse-url-firefox): Don't call
17912 browse-url-firefox-sentinel unless using -remote (Bug#9328).
17913
17914 2011-08-20 Glenn Morris <rgm@gnu.org>
17915
17916 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
17917
17918 * tutorial.el (tutorial--default-keys): Update some default bindings.
17919
17920 * files.el (hack-local-variables): Fully ignore case for "mode:".
17921
17922 2011-08-20 Alan Mackenzie <acm@muc.de>
17923
17924 Resolve invalid use of a regexp in regexp-opt.
17925
17926 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
17927 detection for a java annotation.
17928
17929 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
17930 detection for a java annotation.
17931
17932 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
17933 handling for java.
17934 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
17935
17936 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
17937
17938 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
17939 (Bug#9274).
17940
17941 2011-08-20 Alan Mackenzie <acm@muc.de>
17942
17943 Fontify CPP expressions correctly when starting in the middle of
17944 such a construct. Mainly for when jit-lock etc. starts a chunk
17945 here.
17946
17947 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
17948 variable.
17949 (c-make-font-lock-search-form): New function, extracted from
17950 c-make-font-lock-search-function.
17951 (c-make-font-lock-search-function): Use the above function.
17952 (c-make-font-lock-context-search-function): New function.
17953 (c-cpp-matchers): Enhance the preprocessor expression case with
17954 the above function
17955 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
17956 which takes an expression.
17957
17958 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
17959
17960 2011-08-20 Martin Rudalics <rudalics@gmx.at>
17961
17962 * window.el (display-buffer-reuse-window)
17963 (display-buffer-pop-up-window): Don't reuse or split a side
17964 window.
17965
17966 2011-08-19 Glenn Morris <rgm@gnu.org>
17967
17968 * files.el (hack-local-variables-prop-line, hack-local-variables):
17969 Downcase "Mode:". (Bug#9331)
17970
17971 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
17972
17973 * international/characters.el: Add L and R categories.
17974
17975 * subr.el (bidi-string-mark-left-to-right): Rename from
17976 string-mark-left-to-right. Use category search.
17977
17978 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
17979
17980 2011-08-18 Juri Linkov <juri@jurta.org>
17981
17982 * faces.el (error, warning, success): New faces with definitions
17983 copied from old default values of `font-lock-warning-face',
17984 `compilation-warning', `compilation-info' (bug#6117).
17985
17986 * font-lock.el (font-lock-warning-face): Inherit from `error'.
17987
17988 * progmodes/compile.el (compilation-error): Inherit from `error'.
17989 (compilation-warning): Inherit from `warning'.
17990 (compilation-info): Inherit from `success'.
17991
17992 * dired.el (dired-marked): Inherit from `warning'.
17993 (dired-flagged): Inherit from `error'.
17994
17995 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
17996
17997 * mail/smtpmail.el (auth-source): Require to avoid problems with
17998 binding variables (bug#9298). Also clean up some unused
17999 autoloads.
18000
18001 * net/network-stream.el (network-stream-open-starttls):
18002 Support using starttls.el without using gnutls-cli.
18003
18004 2011-08-17 Juri Linkov <juri@jurta.org>
18005
18006 * progmodes/grep.el (rgrep): Handle the case when
18007 `grep-find-command' is a cons cell (bug#9278).
18008
18009 2011-08-17 Martin Rudalics <rudalics@gmx.at>
18010
18011 * window.el (display-buffer-pop-up-frame): Run frame creation
18012 function with BUFFER current (as special-display-popup-frame
18013 does). Reported by Drew Adams.
18014
18015 2011-08-17 Daiki Ueno <ueno@unixuser.org>
18016
18017 * epa-mail.el: Simplify GnuPG group expansion using
18018 epg-expand-group.
18019 (epa-mail-group-alist, epa-mail-group-modtime)
18020 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
18021 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
18022 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
18023 Remove.
18024
18025 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
18026
18027 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
18028
18029 2011-08-16 Alan Mackenzie <acm@muc.de>
18030
18031 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
18032 Correct, to avoid the inside of macros.
18033
18034 2011-08-16 Richard Stallman <rms@gnu.org>
18035
18036 * epa-mail.el: Handle GnuPG group definitions.
18037 (epa-mail-group-alist, epa-mail-group-modtime)
18038 (epa-mail-gnupg-conf-file): New variables.
18039 (epa-mail-parse-groups, epa-mail-sync-groups)
18040 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
18041 (epa-mail-expand-recipients): New functions.
18042 (epa-mail-encrypt): Call epa-mail-expand-recipients.
18043
18044 * mail/rmail.el (rmail-epa-decrypt): New command.
18045
18046 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
18047 Don't bind buffer-read-only, just inhibit-read-only.
18048 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
18049 (epa-decrypt-armor-in-region): Make error message clearer.
18050
18051 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
18052
18053 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
18054 and "a2b" to "ab" for `prefix'.
18055
18056 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
18057
18058 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
18059 filter groups.
18060 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
18061 Fourquet (Bug#8804).
18062
18063 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
18064
18065 * startup.el (argi): Declare as global variable (bug#9275).
18066
18067 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
18068
18069 * subr.el (string-mark-left-to-right): Search the entire string
18070 for RTL script, not just the terminating character. Doc fix.
18071
18072 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
18073
18074 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
18075 New function.
18076 (js--regexp-literal, js-syntax-propertize-function): Remove.
18077 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
18078 (js-mode-map): Don't rebind electric keys.
18079 (js-insert-and-indent): Remove.
18080 (js-mode): Setup electric-layout and electric-indent instead.
18081
18082 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
18083
18084 2011-08-12 Daiki Ueno <ueno@unixuser.org>
18085
18086 * epa.el (epa-progress-callback-function): Fix the logic of
18087 displaying progress.
18088 * epa-file.el (epa-file-insert-file-contents): Make progress
18089 display more user-friendly.
18090 (epa-file-write-region): Ditto.
18091
18092 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
18093
18094 * subr.el (string-mark-left-to-right): New function.
18095
18096 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
18097 Use string-mark-left-to-right.
18098 (list-buffers-noselect): Caller changed.
18099
18100 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
18101 Use string-mark-left-to-right.
18102 (tabulated-list-print): Recenter after moving point.
18103
18104 2011-08-10 Juri Linkov <juri@jurta.org>
18105
18106 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
18107 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
18108 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
18109
18110 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
18111
18112 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
18113 (Bug#7554).
18114
18115 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18116
18117 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
18118 character. (Bug#6594)
18119
18120 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
18121
18122 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
18123 (image-dired--with-db-file): New macro.
18124 (image-dired-write-tags, image-dired-remove-tag)
18125 (image-dired-create-gallery-lists, image-dired-write-comments)
18126 (image-dired-get-comment, image-dired-mark-tagged-files)
18127 (image-dired-list-tags, image-dired-gallery-generate): Use it.
18128 (image-dired-gallery-generate): Use insert-file-contents.
18129
18130 * time.el (display-time-world-list, display-time-world-display):
18131 * time-stamp.el (time-stamp-string):
18132 * vc/add-log.el (add-change-log-entry): Use setenv instead of
18133 set-time-zone-rule (Bug#7337).
18134
18135 2011-08-08 Daiki Ueno <ueno@unixuser.org>
18136
18137 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
18138 (epg-error-to-string, epg-errors-to-string): New function.
18139 (epg-wait-for-completion): Reverse errors list.
18140 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
18141 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
18142 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
18143 (epg-sign-keys, epg-generate-key-from-file)
18144 (epg-generate-key-from-string): Format errors by using
18145 epg-errors-to-string (bug#9255).
18146 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
18147
18148 2011-08-07 Juri Linkov <juri@jurta.org>
18149
18150 * faces.el (list-faces-display): Remove extra angle bracket
18151 from `help-mode-map'.
18152
18153 * info.el (Info-history-toc-nodes): Doc fix.
18154
18155 * longlines.el (longlines-mode): Doc fix.
18156
18157 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
18158
18159 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
18160 of statements and in a few more cases (bug#9183).
18161
18162 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
18163 New functions.
18164 (cl-transform-lambda): Use them (bug#9239).
18165
18166 2011-08-05 Martin Rudalics <rudalics@gmx.at>
18167
18168 * window.el (display-buffer-same-window)
18169 (display-buffer-same-frame, display-buffer-other-window)
18170 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18171 (pop-to-buffer-other-window)
18172 (pop-to-buffer-same-frame-other-window)
18173 (pop-to-buffer-other-frame): Make them defuns.
18174 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
18175
18176 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18177
18178 * subr.el (make-composed-keymap): Move from C. Change calling
18179 convention, and improve docstring to bring attention to a subtle point.
18180 * minibuffer.el (completing-read-default): Adjust accordingly.
18181
18182 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
18183
18184 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18185 (tramp-open-shell): Use `tramp-shell-quote-argument'.
18186
18187 * net/trampver.el: Update release number.
18188
18189 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18190
18191 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
18192 "in" (bug#9190).
18193
18194 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18195
18196 * mail/sendmail.el (sendmail-query-once): Restore the current
18197 buffer after querying (bug#9074).
18198
18199 * dired.el (dired-flagged): Use different faces for marked and
18200 flagged files (bug#6117).
18201
18202 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
18203 (bug#4433).
18204
18205 * ido.el (ido-mode): Switch off the message if called
18206 non-interactively.
18207
18208 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
18209 before 587, since it appears that that's more likely to work for
18210 more people.
18211
18212 * cus-edit.el (custom-file): When running under emacs -q, always
18213 refuse to save the customizations, even if the .emacs file doesn't
18214 exist.
18215
18216 * info.el: Remove the `Info-beginning-of-buffer' function
18217 (bug#8325).
18218
18219 * net/network-stream.el (network-stream-open-starttls):
18220 Use `starttls-available-p' to see whether starttls.el can be used.
18221
18222 2011-08-01 Martin Rudalics <rudalics@gmx.at>
18223
18224 * window.el (display-buffer-in-window): Don't set dedicated status
18225 of window here (Bug#9215).
18226 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18227 (display-buffer-pop-up-side-window)
18228 (display-buffer-in-side-window): Set dedicated status of window here.
18229
18230 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
18231
18232 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
18233 before binding generated-autoload-file.
18234
18235 2011-08-01 Deniz Dogan <deniz@dogan.se>
18236
18237 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
18238
18239 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
18240
18241 Sync with Tramp 2.2.2.
18242
18243 * net/trampver.el: Update release number.
18244
18245 2011-07-30 Juri Linkov <juri@jurta.org>
18246
18247 * dired-aux.el (dired-touch-initial): Remove function.
18248 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
18249 current time, and `default' to the last modification time of the
18250 current marked file (bug#6887).
18251
18252 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
18253
18254 * simple.el (goto-line): Use string-to-number to provide a
18255 numeric argument to read-number (bug#9163).
18256
18257 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
18258
18259 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
18260 connection process, it could be nil.
18261
18262 2011-07-27 Leo Liu <sdl.web@gmail.com>
18263
18264 Simplify url handling in rcirc-mode.
18265
18266 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
18267 (rcirc-browse-url-at-mouse): Remove.
18268 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
18269
18270 2011-07-26 Alan Mackenzie <acm@muc.de>
18271
18272 Fontify bitfield declarations properly.
18273
18274 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
18275 (c-symbol-chars): Now exported as a lang variable.
18276 (c-not-primitive-type-keywords): New lang variable.
18277
18278 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
18279 QT keyword "more" to prevent "more slots: ...." being spuriously
18280 parsed as a bitfield declaration.
18281
18282 * progmodes/cc-engine.el (c-beginning-of-statement-1):
18283 Refactor and enhance to handle bitfield declarations.
18284 (c-punctuation-in): New function.
18285 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
18286 declarations properly.
18287
18288 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
18289
18290 * calendar/icalendar.el (icalendar--all-events): Take care of
18291 multiple vcalendars in a single file.
18292 (icalendar--convert-float-to-ical): Checkdoc fixes.
18293
18294 2011-07-25 Deniz Dogan <deniz@dogan.se>
18295
18296 * image.el (insert-image): Clarifying docstring.
18297
18298 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
18299
18300 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
18301 `tramp-send-command-and-check' if there is no error.
18302 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
18303
18304 2011-07-22 Alan Mackenzie <acm@muc.de>
18305
18306 Prevent cc-langs.elc being loaded at run time.
18307
18308 * progmodes/cc-mode.el: Remove two autoload forms which loaded
18309 cc-langs.
18310
18311 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
18312 "(require 'cc-langs)". Quote a form so it will evaluate at
18313 (cc-mode's) compilation time.
18314
18315 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
18316
18317 * net/tramp.el (tramp-file-name-handler): Avoid recursive
18318 loading. (Bug#9114)
18319
18320 2011-07-21 Martin Rudalics <rudalics@gmx.at>
18321
18322 * window.el (display-buffer-pop-up-window)
18323 (display-buffer-pop-up-side-window)
18324 (display-buffer-in-side-window): Call display-buffer-set-height
18325 and display-buffer-set-width after setting the new window's
18326 buffer so `fit-window-to-buffer' and friends work on the right buffer.
18327
18328 2011-07-20 Sam Steingold <sds@gnu.org>
18329
18330 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
18331 (etags-tags-included-tables): Call `convert-standard-filename' on
18332 the file names contained in TAGS so that windows Emacs can handle
18333 TAGS files created by cygwin ctags.
18334
18335 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18336
18337 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
18338 which apparently didn't work.
18339
18340 2011-07-19 Roland Winkler <winkler@gnu.org>
18341
18342 * proced.el (proced-send-signal): For *Marked Processes* buffer
18343 put point at beginning of buffer.
18344
18345 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
18346
18347 * proced.el (proced-format): Make header lines align with the text
18348 (bug#1779).
18349
18350 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18351
18352 * view.el (view-buffer): Allow running in `special' modes if we're
18353 visiting a file (bug#8615).
18354
18355 2011-07-19 Martin Rudalics <rudalics@gmx.at>
18356
18357 * window.el (display-buffer-alist-of-strings-p)
18358 (display-buffer-alist-set-1, display-buffer-alist-set-2):
18359 New functions.
18360 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
18361 more accurately.
18362
18363 2011-07-18 Alan Mackenzie <acm@muc.de>
18364
18365 Fontify declarators properly when, e.g., a jit-lock chunk begins
18366 inside a declaration.
18367
18368 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
18369
18370 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18371 New function.
18372 (c-complex-decl-matchers): Insert reference to
18373 c-font-lock-enclosing-decls.
18374
18375 * progmodes/cc-engine.el (c-backward-single-comment):
18376 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
18377 to nil around calls to (forward-comment -1).
18378
18379 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18380
18381 * image.el (put-image): Doc typo fix.
18382
18383 * progmodes/etags.el (tags-search): Doc typo fix.
18384
18385 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
18386 password if we get errors 550 to 554.
18387
18388 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
18389
18390 * net/gnutls.el (gnutls-log-level): Remove.
18391
18392 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
18393 indentation character (bug#6380).
18394
18395 * files.el (buffer-offer-save): Made permanently local (bug#6241).
18396
18397 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
18398 to clarify what the problem is (bug#4291).
18399
18400 * simple.el (current-kill): Clarify what
18401 `interprogram-paste-function' does (bug#7500).
18402 (auto-fill-mode): Document `auto-fill-function' in relation to
18403 `auto-fill-mode' (bug#2470).
18404
18405 2011-07-16 Lawrence Mitchell <wence@gmx.li>
18406
18407 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
18408 method if slot is read-only (bug#9035).
18409
18410 2011-07-16 Martin Rudalics <rudalics@gmx.at>
18411
18412 * frame.el (select-frame-set-input-focus): New argument NORECORD.
18413 * window.el (pop-to-buffer): Select window used even if it was
18414 selected before, see discussion of (Bug#8615), (Bug#6954).
18415 Pass argument NORECORD on to select-frame-set-input-focus.
18416
18417 2011-07-15 Glenn Morris <rgm@gnu.org>
18418
18419 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
18420 Respect help-form.
18421
18422 2011-07-09 Lawrence Mitchell <wence@gmx.li>
18423
18424 * net/gnutls.el (gnutls-min-prime-bits): New variable.
18425 (gnutls-negotiate): Use it.
18426
18427 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18428
18429 * net/gnutls.el (gnutls-negotiate):
18430 Upcase `gnutls-algorithm-priority'.
18431
18432 2011-07-15 Glenn Morris <rgm@gnu.org>
18433
18434 * jka-compr.el (jka-compr-verbose): Move from here...
18435 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
18436 Add missing :version tag.
18437 * info.el: No need to require jka-compr when compiling.
18438
18439 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18440
18441 * net/gnutls.el (gnutls-algorithm-priority): New variable.
18442 (gnutls-negotiate): Use it.
18443
18444 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
18445
18446 * info.el (Info-beginning-of-buffer): New command.
18447 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
18448 announcing `b' as the key (bug#8325).
18449 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
18450
18451 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
18452
18453 * international/mule-cmds.el
18454 (describe-specified-language-support): Make the error message
18455 clearer (bug#8905).
18456
18457 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
18458
18459 * isearch.el (isearch-barrier): Add a doc string, since it's
18460 mentioned in a function doc string (bug#8678).
18461
18462 2011-07-15 Martin Rudalics <rudalics@gmx.at>
18463
18464 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
18465 buffer argument (Bug#9083) and self-identifying label argument.
18466
18467 2011-07-15 Glenn Morris <rgm@gnu.org>
18468
18469 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
18470
18471 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18472
18473 * man.el (Man-fontify-manpage): Fix message when formatting the
18474 man page (bug#7929).
18475
18476 2011-07-14 Eli Zaretskii <eliz@gnu.org>
18477
18478 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
18479 argument LRM; if non-nil, append an invisible LRM character to the
18480 buffer name.
18481 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
18482 last argument non-nil, when formatting buffer names.
18483 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
18484 paragraph direction.
18485
18486 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18487
18488 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
18489 the man page name (bug#7929).
18490
18491 * image.el (put-image): Mention the `put-image' overlay property
18492 (bug#7834).
18493
18494 * scroll-bar.el (set-scroll-bar-mode): Mention that
18495 `scroll-bar-mode' lists the values (bug#7772).
18496
18497 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
18498 command (bug#7729).
18499
18500 * rect.el (apply-on-rectangle): Return the point after the last
18501 operation.
18502 (string-rectangle): Go to the point after the last operation
18503 (bug#7522).
18504
18505 * printing.el (pr-toggle-region): Clarify the documentation
18506 slightly (bug#7493).
18507
18508 * time.el (display-time-update):
18509 Allow `display-time-mail-function' to return nil (bug#7158).
18510 Fix suggested by Detlev Zundel.
18511
18512 * vc/diff.el (diff): Clarify the order the file names are read
18513 (bug#7111).
18514
18515 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
18516 the doc string (bug#7015).
18517
18518 * font-lock.el (font-lock-maximum-decoration): Mention what
18519 numeric levels mean (bug#6935).
18520
18521 * startup.el (initial-buffer-choice): Don't mention the `none'
18522 selection, which is against policy.
18523
18524 2011-07-14 Martin Rudalics <rudalics@gmx.at>
18525
18526 * window.el (display-buffer-normalize-special):
18527 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
18528
18529 2011-07-14 Eli Zaretskii <eliz@gnu.org>
18530
18531 * subr.el (version<, version<=, version=): Mention "-CVS" and
18532 "-12345" alpha version numbers.
18533
18534 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
18535
18536 * bindings.el: Add advertised binding for set-mark-command
18537 (Bug#5772).
18538
18539 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
18540
18541 * bindings.el (mode-line-other-buffer):
18542 * bookmark.el (bookmark-bmenu-2-window):
18543 * bs.el (bs-cycle-next, bs-cycle-previous):
18544 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
18545 switch-to-buffer.
18546
18547 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
18548 Delete.
18549
18550 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
18551
18552 * follow.el (follow-debug-message, follow-redisplay):
18553 * jka-cmpr-hook.el (with-auto-compression-mode):
18554 Fix typos in docstrings.
18555
18556 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18557
18558 * subr.el (with-silent-modifications): Clarify somewhat what the
18559 macro inhibits (bug#6525).
18560
18561 * simple.el (eval-expression): Note what it does if called
18562 interactively (bug#6495).
18563
18564 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
18565
18566 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
18567 Use pop-to-buffer buffer-or-name if it is nil.
18568
18569 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18570 Remove switch-to-buffer.
18571
18572 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18573
18574 * files.el (make-directory): Clarify that an error will be raised
18575 if there's an error (bug#6397).
18576
18577 * startup.el (initial-buffer-choice): Add `none' as a choice
18578 (bug#6234).
18579
18580 * subr.el (add-hook): Clarify section about buffer-local hooks
18581 (bug#6218).
18582
18583 * dired.el (dired-flagged): Clarify doc string (bug#6117).
18584
18585 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
18586
18587 * tabify.el (untabify): Preserve the current column so that point
18588 doesn't move (bug#6032).
18589
18590 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18591
18592 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
18593 Rewrite to avoid awkward possessive "s" (bug#5986).
18594
18595 2011-07-13 Glenn Morris <rgm@gnu.org>
18596
18597 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
18598 (dired-insert-directory): Give a message the first time
18599 if ls is found not to support --dired.
18600
18601 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18602
18603 * simple.el (toggle-truncate-lines): Clarify what is toggled
18604 (bug#5580). Text by Drew Adams.
18605
18606 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
18607
18608 * simple.el (blink-matching-open): Make the error message from the
18609 last change less verbose.
18610
18611 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18612
18613 * font-lock.el (font-lock-comment-face): Use the high contrast
18614 "yellow" color for font-lock-comment-face on low color terminals
18615 using a dark background color (bug#4221).
18616
18617 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18618
18619 * dired.el (dired-insert-set-properties): Make the doc string
18620 reflect what it does now (bug#5325).
18621
18622 * simple.el (blink-matching-open): Say that we were unable to find
18623 the match within the limit, if we're limited (bug#5122).
18624
18625 * international/mule-cmds.el (prefer-coding-system): Add an
18626 example (bug#4869).
18627
18628 * progmodes/etags.el (tags-search): Document `file-list-form'
18629 (bug#4731).
18630
18631 2011-07-13 Lawrence Mitchell <wence@gmx.li>
18632
18633 * net/browse-url.el (browse-url-default-browser)
18634 (browse-url-browser-function): Make the default browser choice a
18635 bit more logical (bug#4300). Also clean up the doc string.
18636
18637 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
18638
18639 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
18640 binary endings (bug#4440).
18641
18642 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18643
18644 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
18645 which can be pretty annoying (bug#8971).
18646
18647 * jka-compr.el (jka-compr-verbose): New variable, and use
18648 throughout (bug#8971).
18649
18650 * info.el (Info-find-file): Fall back on the installation
18651 directory if we can't find the info node anywhere else.
18652
18653 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
18654
18655 * vc/vc.el (vc-revert-file):
18656 Don't set file time-stamp in the past. (Bug#5181)
18657
18658 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18659
18660 * files.el (after-find-file): Give a better error message when
18661 trying to find a symlink that points to a file that doesn't exist
18662 (bug#4398).
18663
18664 * progmodes/cc-vars.el: Remove (probably) misleading comment
18665 (bug#4396).
18666
18667 2011-07-12 Johan Bockgård <bojohan@gnu.org>
18668
18669 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
18670
18671 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
18672
18673 * mouse-sel.el: Hack restoring functionality, while keeping
18674 compatibility with 2010-07-03 changes to mouse selection.
18675 (mouse-sel-primary-overlay): New var.
18676 (mouse-sel-selection-alist): Use it.
18677 (mouse-sel-mode): Doc fix; remove points that are default features
18678 of mouse.el.
18679
18680 2011-07-12 Johan Bockgård <bojohan@gnu.org>
18681
18682 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18683 Fix previous fix (bug#2490).
18684
18685 2011-07-12 Roland Winkler <winkler@gnu.org>
18686
18687 * textmodes/bibtex.el (bibtex-initialize):
18688 Use pop-to-buffer-same-window.
18689 (bibtex-search-entries): Fix interactive call.
18690
18691 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18692
18693 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18694 Fontise bytecomp Error lines more correctly (bug#2490).
18695 Fix suggested by Johan Bockgård.
18696
18697 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
18698
18699 * dired-x.el (dired-guess-default): Use `delete-dups'.
18700
18701 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
18702
18703 * dired.el (dired-mark-prompt):
18704 * dired-aux.el (dired-read-shell-command): Doc fix.
18705
18706 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18707
18708 * mail/sendmail.el (sendmail-query-once):
18709 Use `customize-save-variable' unconditionally, now that it works under
18710 emacs -Q.
18711
18712 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
18713
18714 * cus-edit.el (custom-file): Take an optional no-error variable.
18715 (customize-save-variable): Set the variable, and give a warning if
18716 running under "emacs -q".
18717
18718 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
18719
18720 * loadhist.el (unload-feature-special-hooks):
18721 Add `auto-coding-functions', `fill-nobreak-predicate' and
18722 `find-directory-functions' (bug#5327).
18723
18724 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18725
18726 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
18727
18728 * cus-edit.el (custom-guess-name-alist): -alist variables should
18729 use the `alist' type (bug#3120). Suggested by Drew Adams.
18730
18731 * printing.el: Add documentation to all the `pr-toggle-' commands.
18732
18733 2011-07-11 Leo Liu <sdl.web@gmail.com>
18734
18735 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
18736 backends where it makes sense (bug#2623).
18737
18738 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18739
18740 * dired-x.el (dired-guess-default): Remove duplicate shell command
18741 entries (bug#2028).
18742 (dired-guess-default): Fix grammar in doc string (bug#2028).
18743 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
18744
18745 * subr.el (remove-duplicates): New conveniency function.
18746
18747 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
18748
18749 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
18750 (bug#1526).
18751
18752 2011-07-10 Martin Rudalics <rudalics@gmx.at>
18753
18754 * window.el (display-buffer-normalize-default): Don't invert
18755 meaning of even-window-heights. Reported by Eli Zaretskii
18756 <eliz@gnu.org>.
18757
18758 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
18759
18760 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
18761
18762 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
18763
18764 * window.el (display-buffer): Fix arguments to
18765 display-buffer-reuse-window in last change.
18766
18767 * faces.el (link): Use a less saturated blue on light backgrounds.
18768
18769 * startup.el (fancy-startup-text, fancy-about-text)
18770 (fancy-startup-tail): Use font-lock faces, for background safety.
18771
18772 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
18773
18774 * emulation/viper-cmd.el (viper-change-state-to-vi):
18775 Limit triggering of abbrev expansion (Bug#9038).
18776
18777 2011-07-09 Martin Rudalics <rudalics@gmx.at>
18778
18779 * window.el (display-buffer-default-specifiers): Remove.
18780 (display-buffer-macro-specifiers): Remove default specifiers.
18781 (display-buffer-alist): Default to nil.
18782 (display-buffer-reuse-window): New optional argument other-window.
18783 (display-buffer-pop-up-window): Allow splitting internal
18784 windows. Check whether a live window was created.
18785 (display-buffer-other-window-means-other-frame)
18786 (display-buffer-normalize-arguments): Rename to
18787 display-buffer-normalize-argument and rewrite. Set the
18788 other-window specifier.
18789 (display-buffer-normalize-special): New function.
18790 (display-buffer-normalize-options): Rename to
18791 display-buffer-normalize-default and rewrite.
18792 (display-buffer-normalize-options-inhibit): Remove.
18793 (display-buffer-normalize-specifiers): Rewrite.
18794 (display-buffer): Process other-window specifier and call
18795 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
18796 more faithfully.
18797 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
18798 (display-buffer-alist-set): Don't handle 'unset default values.
18799 (display-buffer-in-window, display-buffer-alist-set):
18800 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
18801 <tassilo@member.fsf.org>.
18802
18803 2011-07-09 Leo Liu <sdl.web@gmail.com>
18804
18805 * register.el (insert-register): Restore accidental change on
18806 2011-06-26. (Bug#9028)
18807
18808 2011-07-09 Glenn Morris <rgm@gnu.org>
18809
18810 * subr.el (remq): Handle the empty list. (Bug#9024)
18811
18812 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
18813
18814 * mail/sendmail.el (send-mail-function): No longer delay custom
18815 initialization.
18816 * custom.el (custom-initialize-delay): Doc fix.
18817
18818 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
18819
18820 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
18821
18822 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
18823
18824 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
18825 human-friendly prompt.
18826
18827 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
18828
18829 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
18830 provided by a particular plugin.
18831
18832 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
18833
18834 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
18835 save customizations (with "emacs -Q"), just set the variable
18836 instead of erroring out.
18837
18838 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
18839
18840 2011-07-08 Juri Linkov <juri@jurta.org>
18841
18842 * arc-mode.el (archive-zip-expunge, archive-zip-update)
18843 (archive-zip-update-case): Use 7z if found by `executable-find'.
18844 The order of searching the available programs is the same as in
18845 `archive-zip-extract' (bug#8968).
18846
18847 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
18848
18849 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
18850 (menu-bar-options-menu): Tweak descriptions.
18851
18852 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18853
18854 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
18855 menu items into verb phrases (bug#1421). Also refill to fit under
18856 80 columns.
18857
18858 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
18859
18860 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
18861 (Info-read-node-name): Doc fix (Bug#1084).
18862
18863 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
18864 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
18865 (end-of-sexp, beginning-of-sexp)
18866 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
18867 (forward-symbol, forward-same-syntax, word-at-point)
18868 (sentence-at-point): Doc fix (Bug#1144).
18869
18870 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18871
18872 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
18873 should cover it (bug#1281).
18874
18875 * cus-edit.el (custom-show): Mark as obsolete.
18876
18877 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
18878 negotiation fails, then possibly try again with a non-encrypted
18879 connection (bug#9017).
18880
18881 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
18882 be used.
18883
18884 2011-07-07 Richard Stallman <rms@gnu.org>
18885
18886 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
18887 property, and handle its changed format.
18888 Look for the correct line number.
18889 Use file's line contents (but not past first =) to find
18890 correct line in message.
18891
18892 2011-07-07 Kenichi Handa <handa@m17n.org>
18893
18894 * international/characters.el (build-unicode-category-table):
18895 Delete it.
18896 (unicode-category-table): Set it by unicode-property-table-internal.
18897
18898 * international/mule-cmds.el (char-code-property-alist): Move to
18899 to src/chartab.c.
18900 (get-char-code-property): Call unicode-property-table-internal to
18901 load a file. Call get-unicode-property-internal where necessary.
18902 (put-char-code-property): Call unicode-property-table-internal to
18903 load a file. Call put-unicode-property-internal where necessary.
18904 put-unicode-property-internal where necessary.
18905 (char-code-property-description):
18906 Call unicode-property-table-internal to load a file.
18907
18908 * international/charprop.el:
18909 * international/uni-bidi.el:
18910 * international/uni-category.el:
18911 * international/uni-combining.el:
18912 * international/uni-comment.el:
18913 * international/uni-decimal.el:
18914 * international/uni-decomposition.el:
18915 * international/uni-digit.el:
18916 * international/uni-lowercase.el:
18917 * international/uni-mirrored.el:
18918 * international/uni-name.el:
18919 * international/uni-numeric.el:
18920 * international/uni-old-name.el:
18921 * international/uni-titlecase.el:
18922 * international/uni-uppercase.el: Regenerate.
18923
18924 * loadup.el: Load international/charprop.el before
18925 international/characters.
18926
18927 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
18928
18929 * window.el (next-buffer, previous-buffer): Signal an error if
18930 called from a minibuffer window.
18931
18932 * bindings.el: Revert 2011-07-04 change.
18933
18934 2011-07-06 Richard Stallman <rms@gnu.org>
18935
18936 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
18937 (rmail-mime-insert-bulk, rmail-mime-insert-text):
18938 Treat markers like ints.
18939 (rmail-mime-entity): Doc fix.
18940
18941 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
18942
18943 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
18944 defcustom again for backwards compatibility.
18945
18946 * simple.el (shell-command-on-region): Fill.
18947
18948 * dired-aux.el (dired-kill-line): Add a doc string.
18949
18950 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
18951 to "\\sw\\|\\s_" (bug#358).
18952
18953 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
18954 (dired-unmark-backward): Ditto.
18955 (dired-flag-backup-files): Ditto.
18956
18957 * dired-x.el (dired-mark-sexp): Ditto.
18958
18959 2011-07-06 Richard Stallman <rms@gnu.org>
18960
18961 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
18962 (rmail-mime-entity): New arg TRUNCATED.
18963 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
18964 New functions.
18965 (rmail-mime-save): Warn if entity is truncated.
18966 (rmail-mime-toggle-hidden): Likewise, for showing.
18967 (rmail-mime-process-multipart): Record when an entity is truncated.
18968
18969 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
18970 if ENTITY is a string.
18971
18972 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
18973
18974 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
18975 of faces when `M-C-x'-ing their definitions (bug#8378).
18976 Also clean up the code slightly.
18977
18978 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
18979 because that makes the colors go away.
18980
18981 * mail/sendmail.el (send-mail-function): Change the default to
18982 `sendmail-query-once'.
18983 (sendmail-query-once): Add an autoload cookie.
18984
18985 * net/network-stream.el (network-stream-open-starttls): Try using
18986 a plain connection even if the server offered STARTTLS, and we
18987 kinda wanted to use it, if Emacs doesn't have any STARTTLS
18988 capability. This should make smtpmail.el work in slightly more
18989 configurations.
18990
18991 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
18992
18993 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
18994 New defun.
18995 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
18996
18997 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
18998
18999 * progmodes/sql.el: Version 3.0
19000 (sql-product-alist): Add product :completion-object,
19001 :completion-column, and :statement attributes.
19002 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
19003 (sql-mode-syntax-table): Mark all punctuation.
19004 (sql-font-lock-keywords-builder): Temporarily remove fallback on
19005 ansi keywords.
19006 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
19007 (sql-mode-oracle-font-lock-keywords): Improve.
19008 (sql-oracle-show-reserved-words): New function for development.
19009 (sql-product-font-lock): Simplify for source code buffers.
19010 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
19011 New functions.
19012 (sql-highlight-product): Set product specific syntax table.
19013 (sql-mode-map): Add statement movement functions.
19014 (sql-ansi-statement-starters, sql-oracle-statement-starters):
19015 New variable.
19016 (sql-statement-regexp, sql-beginning-of-statement)
19017 (sql-end-of-statement, sql-signum): New functions.
19018 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
19019 (sql-show-sqli-buffer): Bug fix.
19020 (sql-interactive-mode): Store connection data as buffer local.
19021 (sql-connect): Add NEW-NAME parameter. Redesign interaction
19022 with sql-interactive-mode.
19023 (sql-save-connection): Save buffer local settings.
19024 (sql-connection-menu-filter): Change menu entry name.
19025 (sql-product-interactive): Bug fix.
19026 (sql-preoutput-hold): New variable.
19027 (sql-interactive-remove-continuation-prompt): Bug fixes.
19028 (sql-debug-redirect): New variable.
19029 (sql-str-literal): New function.
19030 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
19031 Redesign.
19032 (sql-oracle-save-settings, sql-oracle-restore-settings)
19033 (sql-oracle-list-all, sql-oracle-list-table): New functions.
19034 (sql-completion-object, sql-completion-column)
19035 (sql-completion-sqlbuf): New variables.
19036 (sql-build-completions-1, sql-build-completions)
19037 (sql-try-completion): New functions.
19038 (sql-read-table-name): Use them.
19039 (sql-contains-names): New buffer local variable.
19040 (sql-list-all, sql-list-table): Use it.
19041 (sql-oracle-completion-types): New variable.
19042 (sql-oracle-completion-object, sql-sqlite-completion-object)
19043 (sql-postgres-completion-object): New functions.
19044
19045 2011-07-06 Glenn Morris <rgm@gnu.org>
19046
19047 * window.el (pop-to-buffer): Doc fix.
19048
19049 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
19050
19051 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
19052
19053 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
19054
19055 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
19056
19057 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
19058
19059 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
19060
19061 * button.el (button): Inherit from link face. Suggested by Dan
19062 Nicolaescu.
19063
19064 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19065
19066 * progmodes/gdb-mi.el: Fit in 80 columns.
19067 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
19068 switch-to-buffer.
19069
19070 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
19071 if imenu is simply not configured (bug#8941).
19072
19073 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
19074
19075 * allout.el (allout-post-undo-hook): New allout outline-change
19076 event hook to signal undo activity.
19077 (allout-post-command-business): Run allout-post-undo-hook if an
19078 undo just occurred.
19079 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
19080 * allout-widgets.el (allout-widgets-after-undo-function):
19081 Ensure the integrity of the current item's decoration after it has been
19082 in the vicinity of an undo.
19083 (allout-widgets-mode): Include allout-widgets-after-undo-function
19084 on the new allout-post-undo-hook.
19085
19086 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19087
19088 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
19089 Let define-derived-mode define it.
19090 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
19091 cycles of abbrev-table inheritance (bug#8998).
19092
19093 2011-07-05 Roland Winkler <winkler@gnu.org>
19094
19095 * textmodes/bibtex.el: Add support for biblatex.
19096 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
19097 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
19098 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
19099 (bibtex-entry-alist, bibtex-field-alist): New variables.
19100 (bibtex-entry-field-alist): Obsolete alias for
19101 bibtex-BibTeX-entry-alist.
19102 (bibtex-entry-alist, bibtex-field-alist): New widgets.
19103 (bibtex-set-dialect): New command.
19104 (bibtex-entry-type, bibtex-entry-head)
19105 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
19106 Bind via bibtex-set-dialect.
19107 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
19108 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
19109 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
19110 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
19111 Define via bibtex-set-dialect.
19112 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
19113 Obey bibtex-no-opt-remove-re.
19114 (bibtex-vec-push, bibtex-vec-incr): New functions.
19115 (bibtex-format-entry, bibtex-field-list)
19116 (bibtex-print-help-message, bibtex-validate)
19117 (bibtex-search-entries): Use new format of bibtex-entry-alist.
19118
19119 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19120
19121 * progmodes/compile.el (compilation-goto-locus):
19122 * net/tramp-cmds.el (tramp-append-tramp-buffers):
19123 * bs.el (bs-cycle-next, bs-cycle-previous):
19124 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
19125 * bindings.el (mode-line-other-buffer):
19126 * autoinsert.el (auto-insert):
19127 * arc-mode.el (archive-extract):
19128 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
19129
19130 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19131
19132 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
19133 Fix check of `emacs-lock-unlockable-modes'.
19134 Coerce true values of `emacs-lock--try-unlocking' to t.
19135
19136 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19137
19138 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
19139 * emacs-lock.el: New file.
19140
19141 2011-07-05 Julien Danjou <julien@danjou.info>
19142
19143 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
19144 than `boundp' to check if face is set.
19145
19146 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19147
19148 * register.el (registerv-make):
19149 * window.el (window-min-height): Fix typos in docstrings.
19150
19151 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19152
19153 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
19154 Update doc string.
19155
19156 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19157
19158 * server.el (server-execute): Catch quit and call
19159 `server-return-error' to pass the error back to emacsclient and
19160 close the connection (bug#8942).
19161
19162 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
19163
19164 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
19165 insecure exception for current topic. Also note that auto-saves
19166 are handled differently.
19167
19168 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
19169 State variables for tracking auto-save inhibition situation.
19170
19171 (allout-write-contents-hook-handler): Rename from
19172 'allout-write-file-hook-handler', and describe how it depends on
19173 write-contents-functions sensitivity to non-nil value to prevent
19174 file write.
19175
19176 (allout-auto-save-hook-handler): Remove. auto-save does not check
19177 this in individual buffers, only in the starting buffer, so this
19178 is not the right way for us to inhibit auto-save in a buffer
19179 according to its condition.
19180
19181 (allout-mode): Use new allout-write-contents-hook-handler, and
19182 only with write-contents-functions. Remove auto-save provisions -
19183 they're implemented elsewhere.
19184
19185 (allout-before-change-handler): If undo is in progress, note that
19186 for attention of allout-post-command-business.
19187
19188 (allout-post-command-business): If the command we're following was
19189 an undo, check for change in the status of encrypted items and
19190 adjust auto-save inhibitions accordingly.
19191
19192 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
19193 according to whether there are or aren't any plain-text topics
19194 pending encryption.
19195
19196 (allout-inhibit-auto-save-info-for-decryption):
19197 Adjust buffer-saved-size and some allout state to inhibit auto-saves
19198 if there are plain-text topics pending encryption.
19199
19200 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
19201 buffer-saved-size and some allout state to not inhibit auto-saves
19202 if there are no longer any plain-text topics pending encryption.
19203
19204 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
19205 No longer provide for exemption of the current topic.
19206
19207 2011-07-04 Juri Linkov <juri@jurta.org>
19208
19209 Add 7z operations to delete and save changed members (bug#8968).
19210 * arc-mode.el (archive-7z-expunge, archive-7z-update):
19211 New defcustoms.
19212 (archive-7z-write-file-member): New function.
19213 (archive-7z-summarize): Fix the number of dashes in the
19214 listing output.
19215
19216 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19217
19218 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
19219 (bug#8958).
19220
19221 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
19222
19223 * bindings.el: Ignore next-buffer and previous-buffer in
19224 minibuffer-local-map.
19225
19226 * font-lock.el (font-lock-builtin-face): Change light background
19227 color to dark slate blue (Bug#6693).
19228
19229 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
19230
19231 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
19232
19233 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19234
19235 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
19236 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19237 Add switch-to-buffer.
19238
19239 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19240
19241 * isearch.el (isearch-search-fun-function): Clarify further the
19242 meaning of the function returned.
19243
19244 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
19245
19246 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
19247
19248 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
19249 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
19250 Use it.
19251 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
19252 `tramp-default-remote-path' does not exist.
19253 (tramp-send-command-and-read): New optional argument NOERROR.
19254 (tramp-open-connection-setup-interactive-shell)
19255 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
19256 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
19257 (tramp-process-sentinel): Flush also process' connection property.
19258 (tramp-sh-handle-start-file-process): Do not set process
19259 sentinel. It is done now ...
19260 (tramp-maybe-open-connection): ... here. (Bug#8929)
19261
19262 2011-07-04 MON KEY <monkey@sandpframing.com>
19263
19264 * play/animate.el (animate-string): Doc fixes and allow changing
19265 the buffer name (bug#5417).
19266
19267 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19268
19269 * play/animate.el (animation-buffer-name): Rename from *animate*.
19270
19271 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19272
19273 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
19274 This is simpler and helps future-proof the code.
19275 (timer-until): Use time-subtract and float-time.
19276 (timer--time-less-p): Use time-less-p.
19277
19278 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19279
19280 * type-break.el (timep): Use the value of `float-time' to avoid a
19281 byte-compiler warning.
19282
19283 * server.el (server-eval-and-print): Return any result, even nil.
19284
19285 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
19286
19287 * type-break.el: Accept time formats that the builtins accept.
19288 (timep, type-break-time-difference): Accept any format that
19289 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
19290 This is simpler and helps future-proof the code.
19291 (type-break-time-difference): Round rather than ignoring
19292 subseconds components.
19293
19294 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19295
19296 * info.el (Info-apropos-matches): Make non-interactive, since it
19297 doesn't seem to do anything useful as a command (bug#8829).
19298
19299 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
19300
19301 * frame.el (frame-background-mode, frame-set-background-mode):
19302 Move from faces.el.
19303 (frame-default-terminal-background): New function.
19304
19305 * custom.el (custom-push-theme): Don't record faces in `changed'
19306 theme; this doesn't work correctly for per-frame face settings.
19307 (disable-theme): Use face-set-after-frame-default to reset faces.
19308 (custom--frame-color-default): New function.
19309
19310 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19311
19312 * dired.el (dired-flagging-regexp): Remove unused variable
19313 (bug#8769).
19314
19315 2011-03-29 Kevin Ryde <user42@zip.com.au>
19316
19317 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19318 `perl-Test2' extend to match possible "fail #N" rep count
19319 (bug#8377).
19320
19321 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19322
19323 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
19324 `smtpmail-via-smtp' now returns the error instead of nil.
19325
19326 * isearch.el (isearch-search-fun-function): Clarify the doc string
19327 (bug#8101).
19328
19329 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
19330
19331 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
19332 unnecessary spaces (bug#8987).
19333
19334 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19335
19336 * net/network-stream.el (open-network-stream): Use the
19337 :end-of-capability command thoughout.
19338
19339 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
19340
19341 * net/network-stream.el (open-network-stream): Add the
19342 :end-of-capability command parameter, used by pop3.el.
19343
19344 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19345
19346 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
19347
19348 * fringe.el (fringe-query-style): Remove redundant text " (type ?
19349 for list)" (bug#6475).
19350
19351 * files.el (file-expand-wildcards): Ignore non-readable
19352 sub-directories while trying to find matches instead of signaling
19353 an error (bug#6297).
19354
19355 * man.el (Man-reference-regexp): Allow matching possible
19356 word-wrapped references (bug#6289).
19357
19358 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
19359 for consistency with the other vc buffers (bug#6197).
19360 (vc-checkin): Ditto.
19361
19362 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
19363
19364 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
19365
19366 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19367
19368 * custom.el (defcustom): Clarify that :set is only used in the
19369 Customize user interface (bug#6089).
19370
19371 * progmodes/flymake.el (flymake-mode): If the buffer isn't
19372 associated with a file, refuse to run instead of erroring out
19373 (bug#6084).
19374
19375 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
19376 the doc string, since it appears that using `fill-column' always
19377 controls the width (bug#7845).
19378
19379 * simple.el (shell-command-on-region): Say where the error output
19380 went if `shell-command-default-error-buffer' is set (bug#6857).
19381
19382 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
19383
19384 * allout.el (allout-yank-processing): Adjust cursor position for
19385 backwards-deleted space.
19386
19387 (allout-rebullet-heading): Register changes with
19388 allout-exposure-changed-hook, so the modified topic is properly
19389 decorated.
19390
19391 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19392
19393 * minibuffer.el (completion-in-region): Document PREDICATE
19394 (bug#7136).
19395
19396 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
19397 of keyword/argument pairs (bug#6904).
19398
19399 * replace.el (multi-occur):
19400 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
19401
19402 2011-07-02 Drew Adams <drew.adams@oracle.com>
19403
19404 * dired.el (dired-mark-if): Make the message about whether it's
19405 marking or unmarking clearer (bug#8523).
19406
19407 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19408
19409 * disp-table.el (display-table-print-array): New function.
19410 (describe-display-table): Use it to print the vectors more pretty
19411 (Bug#8859).
19412
19413 2011-07-02 Martin Rudalics <rudalics@gmx.at>
19414
19415 * window.el (window-state-get-1): Don't assign clone numbers.
19416 Add clone-of item to list of window parameters.
19417 (window-state-put-2): Don't process clone numbers.
19418 (display-buffer-alist): Fix doc-string.
19419
19420 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19421
19422 * subr.el (remq): Don't allocate if it's not needed.
19423 (keymap--menu-item-binding, keymap--menu-item-with-binding)
19424 (keymap--merge-bindings): New functions.
19425 (keymap-canonicalize): Use them to refine the canonicalization.
19426 * minibuffer.el (minibuffer-local-completion-map)
19427 (minibuffer-local-must-match-map): Move initialization from C.
19428 (minibuffer-local-filename-completion-map): Move initialization from C;
19429 don't inherit from anything here.
19430 (minibuffer-local-filename-must-match-map): Make obsolete.
19431 (completing-read-default): Use make-composed-keymap to combine
19432 minibuffer-local-filename-completion-map with either
19433 minibuffer-local-must-match-map or
19434 minibuffer-local-filename-completion-map.
19435
19436 2011-07-01 Glenn Morris <rgm@gnu.org>
19437
19438 * type-break.el (type-break-time-sum): Use dolist.
19439
19440 * textmodes/flyspell.el (flyspell-word-search-backward):
19441 Replace CL function.
19442
19443 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19444
19445 * mouse.el (mouse--strip-first-event): New function.
19446 (function-key-map): Use it to map fringe clicks to normal clicks
19447 by default.
19448
19449 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
19450 (vc-bzr-revision-completion-table): Add support for annotate and date.
19451
19452 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
19453 inherit from parent.
19454
19455 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19456
19457 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
19458 (dired-show-file-type): Doc fixup (bug#8818).
19459
19460 * dired.el (dired-mode): Fix up the doc string as suggested by
19461 Drew Adams (bug#8817).
19462
19463 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
19464 cookie, since the manual says that it should be possible to add
19465 this function to `find-file-hook' (bug#8709).
19466
19467 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
19468
19469 * progmodes/cfengine.el: Moved all cfengine3.el functionality
19470 here. Noted Ted Zlatanov as the maintainer.
19471 (cfengine-common-settings, cfengine-common-syntax): New functions
19472 to set up common things between `cfengine-mode' and
19473 `cfengine3-mode'.
19474 (cfengine3-mode): New mode.
19475 (cfengine3-defuns cfengine3-defuns-regex
19476 (cfengine3-class-selector-regex cfengine3-category-regex)
19477 (cfengine3-vartypes cfengine3-font-lock-keywords)
19478 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
19479 (cfengine3-indent-line): Add from cfengine3.el.
19480
19481 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
19482
19483 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
19484
19485 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
19486
19487 2011-07-01 Martin Rudalics <rudalics@gmx.at>
19488
19489 * window.el (same-window-buffer-names, same-window-regexps)
19490 (same-window-p, special-display-frame-alist)
19491 (special-display-popup-frame, special-display-function)
19492 (special-display-buffer-names, special-display-regexps)
19493 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
19494 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19495 (split-window-preferred-function, split-height-threshold)
19496 (split-width-threshold, even-window-heights)
19497 (display-buffer-mark-dedicated, window-splittable-p)
19498 (split-window-sensibly, window-safely-shrinkable-p):
19499 Un-obsolete.
19500 (display-buffer): Don't spread args with function specifier
19501 because special-display-popup-frame won't like it.
19502
19503 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
19504
19505 Time-stamp simplifications and fixes.
19506 These improve accuracy slightly, and future-proof the code
19507 against some potential changes to current-time format.
19508
19509 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
19510 by using time-since and float-time.
19511
19512 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
19513 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
19514 + NNN microseconds".
19515
19516 * type-break.el (type-break-time-sum): Rewrite using time-add.
19517
19518 * play/hanoi.el (hanoi-current-time-float): Remove.
19519 All uses replaced by float-time.
19520
19521 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
19522 This yields a more-accurate answer.
19523 (rng-time-to-float): Remove; no longer needed.
19524
19525 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
19526
19527 * calendar/timeclock.el (timeclock-seconds-to-time):
19528 Defalias to seconds-to-time, since they're the same thing.
19529
19530 * emacs-lisp/elp.el (elp-elapsed-time):
19531 * emacs-lisp/benchmark.el (benchmark-elapse):
19532 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
19533
19534 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19535
19536 * window.el (bury-buffer): Don't iconify the only frame.
19537 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
19538 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
19539
19540 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
19541
19542 * eshell/em-smart.el (eshell-smart-display-navigate-list):
19543 Add mouse-yank-primary.
19544
19545 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
19546
19547 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
19548
19549 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19550
19551 * emacs-lisp/find-func.el (find-library--load-name): New fun.
19552 (find-library-name): Use it to find relative load names when provided
19553 absolute file name (bug#8803).
19554
19555 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
19556
19557 * textmodes/flyspell.el (flyspell-word): Consider words that
19558 differ only in case as potential doublons (bug#5687).
19559
19560 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
19561 Remove two rather uninteresting debugging-like messages to make
19562 debbugs.el more silent.
19563
19564 * comint.el (comint-password-prompt-regexp): Accept "Response" as
19565 a password-like phrase.
19566
19567 2011-06-30 Masatake YAMATO <yamato@redhat.com>
19568
19569 * progmodes/cc-guess.el: New file.
19570
19571 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
19572
19573 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
19574 derived from `c-basic-common-init'.
19575
19576 * progmodes/cc-mode.el (top-level): Require cc-guess.
19577 (c-basic-common-init): Use `cc-choose-style-for-mode'.
19578
19579 2011-06-30 Lawrence Mitchell <wence@gmx.li>
19580
19581 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
19582
19583 2011-06-30 Alan Mackenzie <acm@muc.de>
19584
19585 * progmodes/cc-engine.el (c-guess-continued-construct):
19586 Correct the handling of template-args-cont, particularly for when font
19587 lock is disabled. Name this case as "CASE G".
19588
19589 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
19590
19591 * allout.el (allout-yank-processing): Fix injection of extra space
19592 between bullet and non-whitespace character in first topic when
19593 pasting, ensuring that the actual spacing in the pasted topic
19594 following the bullet char is preserved. This extra space was
19595 causing pasted encrypted topics to get a decrypted status even
19596 when the content was actually still encrypted. Now the decryption
19597 status from before the paste is preserved.
19598
19599 (allout-flag-region): Set all allout overlays so they evaporate
19600 when reduced to zero length (evanescent), to prevent overlay
19601 leakage.
19602
19603 2011-06-30 Glenn Morris <rgm@gnu.org>
19604
19605 * w32-fns.el (w32-charset-info-alist): Declare.
19606
19607 * find-dired.el (find-grep-options): Simplify.
19608
19609 * term/ns-win.el (ns-set-resource): Declare.
19610
19611 * ses.el (row, col): Declare dynamic variables honestly.
19612
19613 * textmodes/reftex-parse.el (index-tags): Declare.
19614
19615 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
19616
19617 * cus-edit.el (customize-push-and-save): New function.
19618
19619 * files.el (hack-local-variables-confirm): Use it.
19620
19621 * custom.el (load-theme): New arg NO-CONFIRM.
19622 Use customize-push-and-save (Bug#8720).
19623 (custom-enabled-themes): Doc fix.
19624
19625 * cus-theme.el (customize-create-theme)
19626 (custom-theme-merge-theme): Callers to load-theme changed.
19627
19628 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
19629
19630 * thingatpt.el (thing-at-point-short-url-regexp): Require that
19631 short URLs have at least one dot in them (bug #7614).
19632
19633 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
19634 nil, because using a pty is apparently too slow (bug #895).
19635
19636 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
19637
19638 * mail/sendmail.el (sendmail-query-once): New function.
19639 (sendmail-query-once-function): New variable.
19640
19641 2011-06-29 Glenn Morris <rgm@gnu.org>
19642
19643 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
19644
19645 * ses.el (top-level): Require cl when compiling.
19646 (ses-set-localvars): Fix error statement.
19647 Call it at compile time to silence a storm of warnings.
19648
19649 2011-06-29 Martin Rudalics <rudalics@gmx.at>
19650
19651 * window.el (normalize-live-buffer): Rename to
19652 window-normalize-buffer.
19653 (normalize-live-frame): Rename to window-normalize-frame.
19654 (normalize-any-window): Rename to window-normalize-any-window.
19655 (normalize-live-window): Rename to window-normalize-live-window.
19656 (make-window-atom): Rename to window-make-atom.
19657 (window-resize-reset): Rename to window--resize-reset.
19658 (window-resize-reset-1): Rename to window--resize-reset-1.
19659 (resize-mini-window): Rename to window--resize-mini-window.
19660 (resize-subwindows-skip-p): Rename to
19661 window--resize-subwindows-skip-p.
19662 (resize-subwindows-normal): Rename to
19663 window--resize-subwindows-normal.
19664 (resize-subwindows): Rename to window--resize-subwindows.
19665 (resize-other-windows): Rename to window--resize-siblings.
19666 (resize-this-window): Rename to window--resize-this-window.
19667 (resize-root-window): Rename to window--resize-root-window.
19668 (resize-root-window-vertically): Rename to
19669 window--resize-root-window-vertically.
19670 (normalize-buffer-to-display): Rename to
19671 window-normalize-buffer-to-display.
19672 (normalize-buffer-to-switch-to): Rename to
19673 window-normalize-buffer-to-switch-to.
19674 Correspondingly update all callers of the functions listed
19675 above.
19676 (display-buffer-alist, display-buffer-normalize-arguments)
19677 (display-buffer-normalize-options, display-buffer)
19678 (display-buffer-alist-set): Use "function" instead of
19679 "fun-with-args".
19680
19681 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
19682
19683 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
19684 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
19685 debbugs.gnu.org. Mention acknowledgment email.
19686
19687 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
19688
19689 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
19690 buffer multibyteness, since it shouldn't matter.
19691
19692 2011-06-28 Martin Rudalics <rudalics@gmx.at>
19693
19694 * window.el (display-buffer-in-side-window): Handle dedicated
19695 windows as in display-buffer-reuse-window.
19696 (display-buffer-normalize-alist): Use value of override
19697 specifier.
19698 (display-buffer-normalize-specifiers): Use value of
19699 other-window-means-other-frame specifier.
19700 (display-buffer-alist): Rewrite some texts in widgets.
19701 (display-buffer): Spread arguments when calling function
19702 specified by fun-with-args.
19703
19704 2011-06-28 Deniz Dogan <deniz@dogan.se>
19705
19706 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
19707 Unnest `let'.
19708
19709 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
19710 selectors (Bug#5732).
19711 (css-proprietary-nmstart-re): Use `regexp-opt'.
19712
19713 2011-06-27 Jari Aalto <jari.aalto@cante.net>
19714
19715 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
19716 (eshell-ls-date-format): New defcustom.
19717 (eshell-ls-file): Use it.
19718
19719 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
19720
19721 * help-fns.el (describe-variable): Fix message for terminal-local vars.
19722
19723 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
19724
19725 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
19726 (ange-ftp-make-tmp-name): New arg.
19727 (ange-ftp-file-local-copy): Use it.
19728
19729 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
19730
19731 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
19732 no-conversion (Bug#8870).
19733
19734 2011-06-27 Martin Rudalics <rudalics@gmx.at>
19735
19736 * window.el (window-right, window-left, window-child)
19737 (window-child-count, window-last-child)
19738 (window-iso-combination-p, walk-window-tree-1)
19739 (window-atom-check-1, window-tree-1, delete-window)
19740 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
19741 new naming conventions - window-vchild, window-hchild,
19742 window-next and window-prev are now called window-top-child,
19743 window-left-child, window-next-sibling and window-prev-sibling
19744 respectively.
19745 (resize-window-reset): Rename to window-resize-reset.
19746 (resize-window-reset-1): Rename to window-resize-reset-1.
19747 (resize-window): Rename to window-resize.
19748 (window-min-height, window-min-width)
19749 (resize-mini-window, resize-this-window, resize-root-window)
19750 (resize-root-window-vertically, adjust-window-trailing-edge)
19751 (enlarge-window, shrink-window, maximize-window)
19752 (minimize-window, delete-window, quit-restore-window)
19753 (split-window, balance-windows, balance-windows-area-adjust)
19754 (balance-windows-area, window-state-put-2)
19755 (display-buffer-even-window-sizes, display-buffer-set-height)
19756 (display-buffer-set-width, set-window-text-height)
19757 (fit-window-to-buffer): Rename all "resize-window" prefixed
19758 calls to use the "window-resize" prefix convention.
19759 (display-buffer-alist): Fix symbol for label specifier.
19760 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
19761 corresponding specifier.
19762 Reported by Juanma Barranquero <lekktu@gmail.com>.
19763
19764 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
19765
19766 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
19767 convention.
19768 (ses-call-printer): Does not pass an empty string to formatter when the
19769 cell is empty to keep from barking printer Calc math-format-value.
19770
19771 2011-06-27 Richard Stallman <rms@gnu.org>
19772
19773 * battery.el (battery-mode-line-limit): New variable.
19774 (battery-update): Handle it.
19775
19776 * mail/rmailmm.el (rmail-mime-process-multipart):
19777 Handle truncated messages.
19778
19779 2011-06-27 Glenn Morris <rgm@gnu.org>
19780
19781 * progmodes/flymake.el (flymake-err-line-patterns):
19782 Allow for column numbers in the ant/javac pattern. (Bug#8866)
19783
19784 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
19785
19786 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
19787 (ses--clean-!, ses--clean-_): New functions.
19788 (ses-range): Add configurability of readout order, and conversion
19789 to Calc vector.
19790
19791 * ses.el (ses-repair-cell-reference-all): New function.
19792 (ses-cell-symbol): Set macro as safe, so that it can be used in
19793 formulas.
19794
19795 * ses.el: Update cycle detection algorithm.
19796 (ses-localvars): Add ses--Dijkstra-attempt-nb and
19797 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
19798 (ses-set-localvars): New function.
19799 (ses-make-cell): Add property-list as a cell element.
19800 (ses-cell-property-get-fun, ses-cell-property-get)
19801 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
19802 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
19803 New functions.
19804 (ses-cell-property-set, ses-cell-property-pop)
19805 (ses-cell-property-get-handle): New macro.
19806 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
19807 New aliases, used for code readability.
19808 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
19809 cycle detection.
19810 (ses-self-reference-early-detection): New defcustom.
19811 (ses-formula-references): Robustify against self-referring cells.
19812 (ses-mode): Use ses-set-localvars.
19813 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
19814 before lauching the update processing.
19815 (ses-initialize-Dijkstra-attempt): New function.
19816 (ses-recalculate-cell): Update for cycle detection based on
19817 Dijkstra algorithm.
19818
19819 * ses.el: Fix commenting and indenting convention.
19820
19821 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
19822
19823 * bs.el (bs-cycle-next): Complete last change.
19824
19825 2011-06-27 Drew Adams <drew.adams@oracle.com>
19826
19827 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
19828
19829 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
19830
19831 * net/network-stream.el (network-stream-open-starttls):
19832 Don't re-get capabilities unless we've reestablished connection.
19833 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
19834
19835 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
19836 to binary to possibly avoid line encoding issues on Windows (among
19837 other things).
19838
19839 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
19840
19841 * net/network-stream.el (open-network-stream): Return an :error
19842 saying what the problem was, if possible.
19843
19844 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
19845 server.
19846
19847 * net/network-stream.el (network-stream-open-starttls): If we
19848 wanted to use STARTTLS, and the server offered it, but we weren't
19849 able to because we had no STARTTLS support, then close the connection.
19850 (open-network-stream): Return an :error element, if present.
19851
19852 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
19853
19854 * hl-line.el (hl-line-sticky-flag): Doc fix.
19855 (global-hl-line-sticky-flag): New option (Bug#8323).
19856 (global-hl-line-highlight): Obey it.
19857
19858 * vc/vc.el (vc-revert-show-diff): Default to t.
19859
19860 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
19861
19862 * allout-widgets.el (allout-widgets-post-command-business):
19863 Stop decorating intermediate isearch matches. They're not being
19864 undecorated when an isearch is continued past, and isearch
19865 automatically collapses them. This leads to "widget leaks", where
19866 decorated items accumulate in collapsed areas. Lines with lots of
19867 hidden widgets can slow down cursor travel, substantially.
19868 Too much complicated machinery would be needed to ensure undecoration,
19869 so we're doing without this nicety.
19870
19871 (allout-widgets-tally-string): Don't try to do a hash-table-count
19872 of allout-widgets-tally when it's nil. This eliminates spurious "Error
19873 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
19874 *Messages* when allout-widgets-maintain-tally is t.
19875
19876 2011-06-26 Martin Rudalics <rudalics@gmx.at>
19877
19878 * window.el (display-buffer-normalize-argument): Rename to
19879 display-buffer-normalize-arguments. Handle special meaning of
19880 LABEL argument. Respect special-display-function when popping up
19881 a new frame. Fix code searching for a window showing the buffer
19882 on another frame.
19883 (display-buffer-normalize-specifiers):
19884 Call display-buffer-normalize-arguments.
19885 (display-buffer-in-window): Don't undedicate the window if its
19886 buffer remains the same.
19887 Reported by Drew Adams <drew.adams@oracle.com>.
19888 (display-buffer-alist): Add choice for same-window macro
19889 specfier.
19890 (display-buffer): Mention special meaning of LABEL argument in
19891 doc-string. Fix quoting. Don't pop up a new frame even as
19892 fallback.
19893
19894 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
19895
19896 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
19897 avoid deleting the current window in some cases (bug#8911).
19898
19899 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
19900
19901 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
19902 (Bug#8934)
19903
19904 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
19905
19906 * net/network-stream.el (network-stream-open-starttls):
19907 Use built-in TLS support if `gnutls-available-p' is true.
19908 (network-stream-open-tls): Ditto.
19909
19910 2011-06-26 Leo Liu <sdl.web@gmail.com>
19911
19912 * register.el (registerv): New struct.
19913 (registerv-make): New function.
19914 (jump-to-register, describe-register-1, insert-register):
19915 Support the jump-func, print-func and insert-func slot of a registerv
19916 struct. (Bug#8415)
19917
19918 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
19919
19920 * vc/vc.el (vc-revert-show-diff): New defcustom.
19921 (vc-diff-internal): New arg specifying diff buffer.
19922 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
19923 reuse an existing *vc-diff* buffer (Bug#8927).
19924
19925 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
19926
19927 2011-06-26 Glenn Morris <rgm@gnu.org>
19928
19929 * progmodes/f90.el (f90-critical-indent): New option.
19930 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
19931 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
19932 (f90-mode): Doc fix.
19933 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
19934 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
19935 (f90-beginning-of-block, f90-next-block, f90-indent-region)
19936 (f90-match-end): Handle block, critical.
19937
19938 2011-06-25 Glenn Morris <rgm@gnu.org>
19939
19940 * calendar/diary-lib.el (diary-included-files): Doc fix.
19941 (diary-include-files): New function, extracted from
19942 diary-include-other-diary-files and diary-mark-included-diary-files.
19943 (diary-include-other-diary-files, diary-mark-included-diary-files):
19944 Just call diary-include-files.
19945 (diary-mark-entries): Reset diary-included-files on first call.
19946
19947 * calendar/diary-lib.el (diary-mark-entries)
19948 (diary-mark-included-diary-files):
19949 Visit included diary-files in temp buffers.
19950
19951 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
19952 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
19953 (f90-start-block-re, f90-imenu-generic-expression)
19954 (f90-looking-at-program-block-start, f90-no-block-limit):
19955 Add support for submodules.
19956
19957 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
19958 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
19959
19960 2011-06-25 Eli Zaretskii <eliz@gnu.org>
19961
19962 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
19963 buffer-file-type before setting its value, to avoid disastrous
19964 global effects on decoding files for DOS/Windows systems. (Bug#8780)
19965
19966 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
19967
19968 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
19969
19970 * ses.el (ses-unload-function):
19971 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
19972
19973 * proced.el (proced-unload-function):
19974 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
19975
19976 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
19977
19978 * server.el (server-create-window-system-frame): Add parameters arg.
19979 (server-process-filter): Doc fix. Handle frame-parameters.
19980
19981 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
19982
19983 Fix bug#8730, bug#8781.
19984
19985 * loadhist.el (unload--set-major-mode): New function.
19986 (unload-feature): Use it.
19987
19988 * progmodes/python.el (python-after-info-look): Add autoload cookie.
19989 (python-unload-function): New function.
19990
19991 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19992
19993 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
19994
19995 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
19996
19997 * net/browse-url.el (browse-url-firefox-program): Add icecat to
19998 the candidates list.
19999
20000 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
20001
20002 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
20003
20004 2011-06-23 Richard Stallman <rms@gnu.org>
20005
20006 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
20007 (rmail-variables): Set next-error-move-function.
20008 (rmail-what-message): Take argument POS.
20009 (rmail-next-error-move): New function.
20010
20011 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
20012
20013 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
20014 messages for adjacent non-terminals.
20015
20016 2011-06-23 Richard Stallman <rms@gnu.org>
20017
20018 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
20019 (rmail-show-message-1): Preserve buffer modified flag.
20020 (rmail-start-mail): Don't specify use of rmail-mail-return;
20021 that's done by mail-bury now.
20022 (rmail-mail-return): Handle arg NEWBUF.
20023
20024 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
20025
20026 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
20027 SIZE is a number.
20028
20029 2011-06-23 Martin Rudalics <rudalics@gmx.at>
20030
20031 * window.el (get-lru-window, get-mru-window)
20032 (get-largest-window): Never return a minibuffer window.
20033 (display-buffer-pop-up-window): Fix a bug that could lead to
20034 reusing the minibuffer window.
20035 (display-buffer): Pass original specifier argument to
20036 display-buffer-function instead of the normalized one.
20037 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
20038
20039 2011-06-22 Leo Liu <sdl.web@gmail.com>
20040
20041 * minibuffer.el (completing-read-function)
20042 (completing-read-default): Move from minibuf.c.
20043
20044 2011-06-22 Richard Stallman <rms@gnu.org>
20045
20046 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
20047 to Rmail even if not started by a special Rmail command.
20048
20049 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
20050 Copy the buffer currently showing just one message.
20051
20052 2011-06-22 Roland Winkler <winkler@gnu.org>
20053
20054 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
20055 (bibtex-clean-entry): First delete the old key so that a
20056 customized algorithm for generating the new key does not get
20057 confused by the old key.
20058 (bibtex-url): Obey regexp of first step.
20059 (bibtex-search-entries): Do not use add-to-list with local
20060 list-var.
20061
20062 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20063
20064 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
20065 stored a user name, then query for the password first, instead of
20066 waiting for SMTP to give an error message and the trying again.
20067
20068 2011-06-22 Lawrence Mitchell <wence@gmx.li>
20069
20070 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
20071 BUFFER in call-process.
20072
20073 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20074
20075 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
20076 QUIT twice.
20077 (smtpmail-try-auth-methods): Require user name and password from
20078 auth-source.
20079
20080 2011-06-22 Martin Rudalics <rudalics@gmx.at>
20081
20082 * window.el (display-buffer-default-specifiers)
20083 (display-buffer-alist): Remove entries for pop-up-frame-alist.
20084 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
20085 (split-window): Normalize SIDE argument (Bug#8916).
20086
20087 * frame.el (pop-up-frame-alist, pop-up-frame-function)
20088 (special-display-frame-alist, special-display-popup-frame):
20089 Remove duplicate declarations. These are now in window.el.
20090
20091 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20092
20093 * mail/smtpmail.el (smtpmail-via-smtp):
20094 Set :use-starttls-if-possible so that we always use STARTTLS if the
20095 server supports it. SMTP servers that support STARTTLS commonly
20096 require it.
20097
20098 * net/network-stream.el (network-stream-open-starttls): Support
20099 upgrading to STARTTLS always, even if we don't have built-in support.
20100 (open-network-stream): Add the :always-query-capabilities keyword.
20101
20102 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
20103 upgrades with `open-network-stream', and rely solely on
20104 auth-source for all credentials. Big changes throughout the file,
20105 but in particular:
20106 (smtpmail-auth-credentials): Remove.
20107 (smtpmail-starttls-credentials): Remove.
20108 (smtpmail-via-smtp): Check for servers saying they want AUTH after
20109 MAIL FROM, too.
20110
20111 * net/network-stream.el (network-stream-open-starttls):
20112 Provide support for client certificates both for external and built-in
20113 STARTTLS.
20114 (auth-source): Require.
20115 (open-network-stream): Document the :client-certificate keyword.
20116 (network-stream-certificate): Change cert-cert to cert and
20117 cert-key to key.
20118
20119 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
20120
20121 * net/tramp-cache.el (top): Don't load the persistency file when
20122 "emacs -Q" has been called.
20123
20124 2011-06-21 Tim Harper <timcharper@gmail.com>
20125
20126 * term/ns-win.el (ns-initialize-window-system):
20127 Set application-specific `ApplePressAndHoldEnabled' system
20128 resource to NO as it is not yet supported by the NS port.
20129
20130 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
20131
20132 * misc.el (list-dynamic-libraries--refresh): Compute header here...
20133 (list-dynamic-libraries): ...not here.
20134
20135 2011-06-21 Leo Liu <sdl.web@gmail.com>
20136
20137 * subr.el (sha1): Implement sha1 using secure-hash.
20138
20139 2011-06-21 Martin Rudalics <rudalics@gmx.at>
20140
20141 * window.el (display-buffer-alist): In default value do not
20142 enforce searching a window on any but the selected frame.
20143 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
20144 (display-buffer-select-window): Remove function.
20145 (display-buffer-in-window): When a window on another frame gets
20146 reused, do not select it any more but just raise its frame if
20147 necessary (Bug#8851) and (Bug#8856).
20148 (display-buffer-normalize-options): Handle pop-up-frames related
20149 options more faithfully.
20150 (pop-to-buffer): Don't rely on `display-buffer' selecting the
20151 window if it is on another frame.
20152 (display-buffer-alist, display-buffer-default-specifiers):
20153 Don't make new frame unsplittable by default.
20154 (display-buffer-normalize-argument): Fix doc-string typo and use
20155 'same-frame-other-window instead of 'other-window when associating
20156 with display-buffer-macro-specifiers.
20157
20158 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
20159
20160 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
20161 New functions.
20162 (5x5-mode-map, 5x5-mode-menu): Bind them.
20163 (5x5-draw-grid): Tweak the solver's rendering.
20164
20165 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20166
20167 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
20168 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
20169
20170 2011-06-21 Drew Adams <drew.adams@oracle.com>
20171
20172 * menu-bar.el: Use function variable instead of switch-to-buffer.
20173 (menu-bar-select-buffer-function): New variable.
20174 (menu-bar-update-buffers): Use it (bug#8876).
20175
20176 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20177
20178 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
20179 variable's status.
20180
20181 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
20182
20183 * x-dnd.el (x-dnd-version-from-flags)
20184 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
20185 and long as number (Bug#8899).
20186 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
20187
20188 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20189
20190 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
20191 (completion-try-completion, completion-all-completions): Compute the
20192 metadata argument if it's missing; make it optional (bug#8795).
20193
20194 * wid-edit.el: Use lex-bind and move towards completion-at-point.
20195 (widget-complete): Use new :completion-function property.
20196 (widget-completions-at-point): New function.
20197 (default): Use :completion-function instead of :complete.
20198 (widget-default-completions): Rename from widget-default-complete;
20199 Rewrite.
20200 (widget-string-complete, widget-file-complete, widget-color-complete):
20201 Remove functions.
20202 (file, symbol, function, variable, coding-system, color):
20203 * international/mule-cmds.el (default-input-method, charset)
20204 (language-info-custom-alist):
20205 * cus-edit.el (face): Use new property :completions.
20206
20207 * progmodes/pascal.el (pascal-completions-at-point): New function.
20208 (pascal-mode): Use it.
20209 (pascal-mode-map): Use completion-at-point.
20210 (pascal-toggle-completions): Make obsolete.
20211 (pascal-complete-word, pascal-show-completions):
20212 * progmodes/octave-mod.el (octave-complete-symbol):
20213 Redefine as obsolete alias.
20214 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
20215 Signal absence of completion info for old Octave,
20216 (inferior-octave-complete): Redefine as obsolete alias.
20217 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
20218 (meta-completions-at-point): Rename from meta-complete-symbol and
20219 adapt it for use on completion-at-point-functions.
20220 (meta-common-mode): Use it.
20221 (meta-looking-at-backward, meta-match-buffer): Remove.
20222 (meta-complete-symbol): Redefine as obsolete alias.
20223 (meta-common-mode-map): Use completion-at-point.
20224 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
20225 (makefile-mode-map): Use completion-at-point.
20226 (makefile-completions-at-point): Rename from makefile-complete and
20227 adapt it for use on completion-at-point-functions.
20228 (makefile-mode): Use it.
20229 (makefile-complete): Redefine as obsolete alias.
20230
20231 2011-06-20 Deniz Dogan <deniz@dogan.se>
20232
20233 * net/rcirc.el: Delete trailing whitespaces once and for all.
20234
20235 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
20236
20237 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
20238
20239 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
20240
20241 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
20242
20243 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
20244
20245 2011-06-19 Martin Rudalics <rudalics@gmx.at>
20246
20247 * window.el (display-buffer-other-window-means-other-frame):
20248 Call display-buffer-normalize-alist.
20249 (display-buffer-normalize-specifiers-1): Rename to
20250 display-buffer-normalize-argument. New argument other-frame.
20251 Rewrite.
20252 (display-buffer-normalize-specifiers-2): Rename to
20253 display-buffer-normalize-options.
20254 (display-buffer-normalize-alist-1): New function.
20255 (display-buffer-normalize-specifiers-3): Rename to
20256 display-buffer-normalize-alist.
20257 Call display-buffer-normalize-alist-1.
20258 (display-buffer-normalize-options-inhibit): New variable.
20259 (display-buffer-normalize-specifiers): Rewrite calling
20260 display-buffer-normalize-alist,
20261 display-buffer-normalize-argument, and
20262 display-buffer-normalize-options. Don't call the latter if
20263 display-buffer-normalize-options-inhibit is non-nil.
20264 (frame-auto-delete): New option.
20265 (window-deletable-p): Use frame-auto-delete.
20266 (window-list-no-nils, window-state-ignored-parameters)
20267 (window-state-get-1, window-state-get, window-state-put-list)
20268 (window-state-put-1, window-state-put-2, window-state-put):
20269 New functions.
20270 (display-buffer-normalize-options): Move special-display-p group
20271 after pop-up-frame group (Bug#8851) and (Bug#8856).
20272
20273 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
20274
20275 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
20276 groups (Bug#8776).
20277 (rx-submatch-n): New function.
20278 (rx): Document it.
20279
20280 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
20281 (Bug#8768).
20282
20283 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
20284
20285 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
20286
20287 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
20288 anytime existing face settings are present (Bug#8889).
20289
20290 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
20291 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
20292 Remove unused argument.
20293
20294 2011-06-18 Martin Rudalics <rudalics@gmx.at>
20295
20296 * window.el (display-buffer-default-specifiers):
20297 Remove pop-up-frame. Add pop-up-window-min-height,
20298 pop-up-window-min-width, and another reuse-window specifier
20299 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
20300 (display-buffer-normalize-specifiers-2):
20301 Handle split-height-threshold and split-width-threshold also when
20302 pop-up-windows is unset. Add a reuse-window specifier for the
20303 case popping up a new window fails.
20304 (special-display-popup-frame): Remove double quoting.
20305 (display-buffer-normalize-specifiers-1): Fix thinko.
20306
20307 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
20308
20309 * shell.el (shell-completion-vars): Set pcomplete-termination-string
20310 according to comint-completion-addsuffix.
20311
20312 * pcomplete.el: Convert to lexical binding and fix bug#8819.
20313 (pcomplete-suffix-list): Mark as obsolete.
20314 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
20315 pcomplete-seen in the closure.
20316 (pcomplete-comint-setup): Setup completion-at-point as well.
20317 (pcomplete--entries): New function.
20318 (pcomplete--env-regexp): New var.
20319 (pcomplete-entries): Rewrite to work with partial-completion and
20320 without relying on pcomplete-suffix-list.
20321 (pcomplete-pare-list): Remove, unused.
20322
20323 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20324
20325 * window.el (display-buffer-alist): Set pop-up-window-min-height
20326 and pop-up-window-min-width in default value. Reported by
20327 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
20328 other-window-means-other-frame.
20329 (display-buffer-macro-specifiers): Comment out entry for
20330 other-window specifier.
20331 (display-buffer-other-window-means-other-frame): New function.
20332 (display-buffer-normalize-specifiers-1): New arguments
20333 buffer-name and label. Treat other-window case specially.
20334 (display-buffer-normalize-specifiers-2): Treat other-window case
20335 specially.
20336 (display-buffer-normalize-specifiers-3): New function.
20337 (display-buffer-normalize-specifiers):
20338 Call display-buffer-normalize-specifiers-3.
20339
20340 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20341
20342 * window.el (same-window-p): Fix two typos introduced when
20343 adding with-no-warnings.
20344 (display-buffer-normalize-specifiers-1): Don't check
20345 pop-up-frames for 'unset initialization.
20346 (display-buffer-normalize-specifiers-2): Major rewrite using
20347 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
20348 (pop-up-frames, display-buffer-reuse-frames)
20349 (display-buffer-mark-dedicated): Don't initialize to 'unset.
20350 Suggested by David Engster <deng@randomsample.de>.
20351 (even-window-heights): Initialize to 'unset.
20352 (display-buffer-alist-set): Handle new 'unset initializations.
20353 (display-buffer-macro-specifiers): Don't pop up a new frame in the
20354 other window case.
20355
20356 2011-06-16 Martin Rudalics <rudalics@gmx.at>
20357
20358 * window.el (display-buffer-normalize-specifiers-1):
20359 Respect current value of pop-up-frames for most reasonable values of
20360 second argument of display-buffer (Bug#8865).
20361 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
20362 (switch-to-buffer-other-window-same-frame)
20363 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
20364 Adams (Bug#8875).
20365 (display-buffer): Don't check noninteractive when calling
20366 display-buffer-pop-up-frame.
20367 (display-buffer-pop-up-frame): Never pop up a frame in
20368 noninteractive mode (Bug#8857).
20369 (enlarge-window, shrink-window): Don't report an error when the
20370 window can't be resized as requested (Bug#8862).
20371
20372 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20373
20374 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
20375
20376 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
20377
20378 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
20379
20380 2011-06-15 Alan Mackenzie <acm@muc.de>
20381
20382 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
20383 for declarators, disable knr checking to speed up for normal files.
20384 2: Refactor, replacing a sequence of nested if forms by a cond form.
20385
20386 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20387
20388 * net/network-stream.el (open-network-stream): Add the keyword
20389 :always-query-capabilities for the case where you want to force a
20390 `plain' network connection, but the protocol still requires the
20391 capabilitiy command (i.e., SMTP and EHLO).
20392
20393 * subr.el (process-live-p): Rename from `process-alive-p' for
20394 consistency with other `-live-p' functions.
20395
20396 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20397
20398 * window.el (same-window-buffer-names, same-window-regexps)
20399 (special-display-frame-alist, special-display-popup-frame)
20400 (special-display-function, special-display-buffer-names)
20401 (special-display-regexps, pop-up-frame-alist)
20402 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
20403 (pop-up-windows, split-window-preferred-function)
20404 (split-height-threshold, split-width-threshold, even-window-heights)
20405 (display-buffer-mark-dedicated): Don't encourage the use of
20406 display-buffer-alist from Elisp code.
20407
20408 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
20409
20410 * progmodes/python.el (python-mode): Derive from prog-mode.
20411 * progmodes/ps-mode.el (ps-mode):
20412 * progmodes/mixal-mode.el (mixal-mode):
20413 * progmodes/cfengine.el (cfengine-mode):
20414 * progmodes/ld-script.el (ld-script-mode): Likewise.
20415
20416 2011-06-15 Martin Rudalics <rudalics@gmx.at>
20417
20418 * window.el (display-buffer-alist): Trim default value to avoid
20419 popping up a new frame (Bug#8857) or reusing an arbitrary window
20420 on another frame.
20421 (display-buffer): Do not fall back on popping up a new frame in
20422 batch mode (Bug#8857).
20423
20424 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
20425
20426 * cus-theme.el (describe-theme-1): Use custom-theme-p.
20427 (custom-theme-summary): New function.
20428 (customize-themes): Use it.
20429
20430 2011-06-13 Glenn Morris <rgm@gnu.org>
20431
20432 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
20433
20434 2011-06-13 Martin Rudalics <rudalics@gmx.at>
20435
20436 * help.el (help-window): Remove variable.
20437 (help-window-point-marker, temp-buffer-max-height)
20438 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
20439 (help-print-return-message): Don't set help-window.
20440 (resize-temp-buffer-window): Rewrite cod eand doc-string.
20441 (help-window-setup-finish): Remove.
20442 (help-window-display-message, help-window-setup)
20443 (with-help-window): Major rewrite based on new
20444 display-buffer-window variable.
20445
20446 * help-mode.el (help-mode-finish): Remove help-window related
20447 code.
20448
20449 * view.el (view-exits-all-viewing-windows): Remove reference to
20450 view-return-to-alist in doc-string.
20451 (view-return-to-alist): Make obsolete.
20452 (view-buffer): Call pop-to-buffer-same-window and remove
20453 undo-window code.
20454 (view-buffer-other-window): Call pop-to-buffer-other-window and
20455 simplify code. Ignore second argument.
20456 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
20457 simplify code. Ignore second argument.
20458 (view-return-to-alist-update): Make obsolete.
20459 (view-mode-enter): Rename second argument to QUIT-RESTORE.
20460 Rewrite using quit-restore window parameters.
20461 (view-mode-exit): Rename second argument to EXIT-ONLY.
20462 Rewrite using quit-restore-window.
20463 (View-exit, View-exit-and-edit, View-leave, View-quit)
20464 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
20465 appropriate arguments.
20466 (view-end-message): Use quit-restore window parameter.
20467
20468 * window.el (display-buffer-function): Rewrite doc-string.
20469 (display-buffer-window, display-buffer-alist): New variables.
20470 (display-buffer-split-specifiers)
20471 (display-buffer-side-specifiers)
20472 (display-buffer-macro-specifiers): New constants.
20473 (display-buffer-even-window-sizes, display-buffer-set-height)
20474 (display-buffer-set-width, display-buffer-select-window)
20475 (display-buffer-in-window, display-buffer-reuse-window)
20476 (display-buffer-split-window-1, display-buffer-split-window)
20477 (display-buffer-split-atom-window, display-buffer-pop-up-window)
20478 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
20479 (display-buffer-in-side-window, normalize-buffer-to-display)
20480 (display-buffer-normalize-specifiers-1)
20481 (display-buffer-normalize-specifiers-2)
20482 (display-buffer-normalize-specifiers, display-buffer-frame):
20483 New functions.
20484 (display-buffer): Major rewrite.
20485 (display-buffer-other-window, display-buffer-other-frame)
20486 (pop-to-buffer, switch-to-buffer-other-window)
20487 (switch-to-buffer-other-frame): Rewrite.
20488 (display-buffer-same-window, display-buffer-same-frame)
20489 (display-buffer-same-frame-other-window)
20490 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
20491 (pop-to-buffer-other-window)
20492 (pop-to-buffer-same-frame-other-window)
20493 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
20494 (switch-to-buffer-other-window-same-frame): New functions.
20495 (same-window-p, special-display-p): Rewrite disabling warnings.
20496 Make obsolete.
20497 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20498 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
20499 Make obsolete
20500 (same-window-buffer-names, same-window-regexps)
20501 (special-display-frame-alist, special-display-popup-frame)
20502 (special-display-function, special-display-buffer-names)
20503 (special-display-regexps, pop-up-frame-alist)
20504 (pop-up-frame-function, split-window-preferred-function)
20505 (split-height-threshold, split-width-threshold)
20506 (even-window-heights): Make obsolete.
20507
20508 2011-06-12 Glenn Morris <rgm@gnu.org>
20509
20510 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
20511 Misc simplifications.
20512
20513 2011-06-12 Martin Rudalics <rudalics@gmx.at>
20514
20515 * window.el (window-safely-shrinkable-p): Restore function which
20516 was inadvertently removed in change from 2011-06-11. Declare as
20517 obsolete.
20518
20519 * calendar/calendar.el (calendar-generate-window):
20520 Use window-iso-combined-p instead of combination of one-window-p and
20521 window-safely-shrinkable-p.
20522
20523 2011-06-12 Glenn Morris <rgm@gnu.org>
20524
20525 * progmodes/fortran.el (fortran-mode-syntax-table):
20526 * progmodes/f90.el (f90-mode-syntax-table):
20527 Set % to punctuation. (Bug#8820)
20528 (f90-find-tag-default): Remove, no longer needed.
20529
20530 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
20531
20532 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
20533
20534 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
20535
20536 * image.el (image-animated-p): Return animation delay in seconds.
20537 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
20538 (image-animate-timeout): Remove DELAY argument. Don't assume
20539 every subimage has the same delay; get it from image-animated-p.
20540 (image-animate): Caller changed.
20541
20542 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
20543
20544 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
20545 to ignored backtrace functions.
20546
20547 2011-06-11 Glenn Morris <rgm@gnu.org>
20548
20549 * calendar/appt.el (appt-disp-window-function): Doc fix.
20550 (appt-check): Handle overlapping appointments. (Bug#8337)
20551
20552 2011-06-11 Martin Rudalics <rudalics@gmx.at>
20553
20554 * window.el (window-tree-1, window-tree): New functions, moving
20555 the latter to window.el.
20556 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
20557 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
20558 (bw-refresh-edges): Remove.
20559 (balance-windows-1, balance-windows-2): New functions.
20560 (balance-windows): Rewrite in terms of window tree functions,
20561 balance-windows-1 and balance-windows-2.
20562 (bw-adjust-window): Remove.
20563 (balance-windows-area-adjust): New function with functionality of
20564 bw-adjust-window but using resize-window.
20565 (set-window-text-height): Rewrite doc-string.
20566 Use normalize-live-window and resize-window.
20567 (enlarge-window-horizontally, shrink-window-horizontally):
20568 Rename argument to DELTA.
20569 (window-buffer-height): New function.
20570 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
20571 Rewrite using new window resize routines.
20572 (kill-buffer-and-window, mouse-autoselect-window-select):
20573 Use ignore-errors instead of condition-case.
20574 (quit-window): Call delete-frame instead of delete-windows-on
20575 for the only buffer on frame.
20576
20577 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20578
20579 * loadup.el (top-level): Load window before files for the sake
20580 of replace-buffer-in-windows.
20581
20582 * files.el (read-buffer-to-switch)
20583 (switch-to-buffer-other-window)
20584 (switch-to-buffer-other-frame, display-buffer-other-frame):
20585 Move to window.el.
20586
20587 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
20588 (previous-buffer): Move to window.el.
20589
20590 * bindings.el (unbury-buffer): Move to window.el.
20591
20592 * window.el (delete-other-windows-vertically): Move after
20593 definition of delete-other-windows.
20594 (other-window, delete-windows-on, replace-buffer-in-windows):
20595 Move here from window.c.
20596 (record-window-buffer, unrecord-window-buffer)
20597 (set-window-buffer-start-and-point, switch-to-prev-buffer)
20598 (switch-to-next-buffer): New functions.
20599 (get-next-valid-buffer, last-buffer, next-buffer): Move here
20600 from simple.el. Call switch-to-next-buffer.
20601 (previous-buffer): Move here from simple.el.
20602 Call switch-to-prev-buffer.
20603 (bury-buffer): Move here from buffer.c. Switch to previous
20604 buffer when window cannot be deleted.
20605 (unbury-buffer): Move here from bindings.el.
20606 (ctl-x-map): Move binding for other-window from window.c to
20607 here.
20608 (read-buffer-to-switch, switch-to-buffer-other-window)
20609 (switch-to-buffer-other-frame): Move here from files.el.
20610 (normalize-buffer-to-switch-to): New functions.
20611 (switch-to-buffer): Move here from buffer.c.
20612 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
20613
20614 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20615
20616 * window.el (window-min-height, window-min-width): Move here
20617 from window.c. Add defcustoms and rewrite doc-strings.
20618 (resize-mini-window, resize-window): New functions.
20619 (adjust-window-trailing-edge, enlarge-window, shrink-window):
20620 Move here from window.c.
20621 (maximize-window, minimize-window): New functions.
20622 (delete-window, delete-other-windows, split-window): Move here
20623 from window.c.
20624 (window-split-min-size): New function.
20625 (split-window-keep-point): Mention split-window-above-each-other
20626 instead of split-window-vertically.
20627 (split-window-above-each-other, split-window-vertically):
20628 Rename split-window-vertically to split-window-above-each-other
20629 and provide defalias for old definition.
20630 (split-window-side-by-side, split-window-horizontally):
20631 Rename split-window-horizontally to split-window-side-by-side
20632 and provide defalias for the old definition.
20633 (ctl-x-map): Move bindings for delete-window,
20634 delete-other-windows and enlarge-window here from window.c.
20635 Replace bindings for split-window-vertically and
20636 split-window-horizontally by bindings for
20637 split-window-above-each-other and split-window-side-by-side.
20638
20639 * cus-start.el (all): Remove entries for window-min-height and
20640 window-min-width. Add entries for window-splits and
20641 window-nest.
20642
20643 2011-06-09 Glenn Morris <rgm@gnu.org>
20644
20645 * calendar/appt.el (appt-mode-line): New function.
20646 (appt-check, appt-disp-window): Use it.
20647
20648 * files.el (hack-one-local-variable-eval-safep):
20649 Allow minor-modes with explicit +/-1 arguments.
20650
20651 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
20652
20653 * term/xterm.el (xterm): Add defgroup.
20654 (xterm-extra-capabilities): Add defcustom to supply known xterm
20655 capabilities, skip querying them, or query them (default).
20656 (terminal-init-xterm): Use it.
20657 (terminal-init-xterm-modify-other-keys): New function to set up
20658 modifyOtherKeys support to simplify `terminal-init-xterm'.
20659
20660 2011-06-09 Martin Rudalics <rudalics@gmx.at>
20661
20662 * window.el (resize-window-reset, resize-window-reset-1)
20663 (resize-subwindows-skip-p, resize-subwindows-normal)
20664 (resize-subwindows, resize-other-windows, resize-this-window)
20665 (resize-root-window, resize-root-window-vertically)
20666 (window-deletable-p, window-or-subwindow-p)
20667 (frame-root-window-p): New functions.
20668
20669 2011-06-09 Glenn Morris <rgm@gnu.org>
20670
20671 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
20672 (ange-ftp-get-files): Use it.
20673
20674 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
20675
20676 * mail/sendmail.el (mail-recover-1, mail-recover):
20677 * files.el (recover-file, recover-session):
20678 Handle dired-listing-switches not being just a single short option.
20679
20680 2011-06-09 Glenn Morris <rgm@gnu.org>
20681
20682 * calendar/appt.el (appt-display-message, appt-disp-window):
20683 Handle lists of appointments.
20684
20685 2011-06-08 Martin Rudalics <rudalics@gmx.at>
20686
20687 * window.el (one-window-p): Move down in code.
20688 Rewrite doc-string.
20689 (window-current-scroll-bars): Rewrite doc-string.
20690 Normalize live window argument.
20691 (walk-windows, get-window-with-predicate, count-windows):
20692 Rewrite doc-string. Use window-list-1.
20693 (window-in-direction-2, window-in-direction, get-mru-window):
20694 New functions.
20695
20696 2011-06-08 Reuben Thomas <rrt@sc3d.org>
20697
20698 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
20699 Doc fix (Bug#8713).
20700
20701 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
20702
20703 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
20704
20705 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
20706
20707 * loadhist.el (unload-feature-special-hooks):
20708 Add `comint-output-filter-functions'.
20709
20710 2011-06-08 Ivan Kanis <gnu@kanis.fr>
20711
20712 * calendar/appt.el (appt-check): Move some initializations into the let.
20713
20714 2011-06-08 Martin Rudalics <rudalics@gmx.at>
20715
20716 * window.el (window-height): Defalias to window-total-height.
20717 (window-width): Defalias to window-body-width.
20718
20719 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
20720
20721 * image-mode.el (image-toggle-animation): New command.
20722 (image-mode-map): Bind it to RET.
20723 (image-mode): Update message.
20724 (image-toggle-display-image): Avoid a spurious cache flush.
20725 (image-transform-rotation): Doc fix.
20726 (image-transform-properties): Return quickly in the normal case.
20727 (image-animate-loop): Rename from image-animate-max-time.
20728
20729 * image.el (image-animate-max-time): Move to image-mode.el.
20730 (create-animated-image): Remove unnecessary function.
20731 (image-animate): Rename from image-animate-start. New arg.
20732 (image-animate-stop): Remove; just use image-animate-timer.
20733 (image-animate-timer): Use car-safe.
20734 (image-animate-timeout): Rename argument.
20735
20736 2011-06-07 Martin Rudalics <rudalics@gmx.at>
20737
20738 * window.el (get-lru-window, get-largest-window): Move here from
20739 window.c. Rename first argument to ALL-FRAMES.
20740 Rephrase doc-strings.
20741 (get-buffer-window-list): Rewrite using window-list-1.
20742 Rephrase doc-string.
20743 (window-safe-min-height, window-safe-min-width): New constants.
20744 (window-size-ignore, window-min-size, window-min-size-1)
20745 (window-sizable, window-sizable-p, window-size-fixed-1)
20746 (window-size-fixed-p, window-min-delta-1, window-min-delta)
20747 (window-max-delta-1, window-max-delta, window-resizable)
20748 (window-resizable-p, window-total-height, window-total-width)
20749 (window-body-width): New functions.
20750 (window-full-height-p, window-full-width-p): Rewrite using
20751 window-total-size.
20752 (window-body-height): Rewrite using window-body-size.
20753
20754 2011-06-06 Martin Rudalics <rudalics@gmx.at>
20755
20756 * window.el (window-right, window-left, window-child)
20757 (window-child-count, window-last-child, window-any-p)
20758 (normalize-live-buffer, normalize-live-frame)
20759 (normalize-any-window, normalize-live-window)
20760 (window-iso-combination-p, window-iso-combined-p)
20761 (window-iso-combinations)
20762 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
20763 (windows-with-parameter, window-with-parameter)
20764 (window-atom-root, make-window-atom, window-atom-check-1)
20765 (window-atom-check, window-side-check, window-check):
20766 New functions.
20767 (ignore-window-parameters, window-sides, window-sides-vertical)
20768 (window-sides-slots): New variables.
20769 (window-size-fixed): Move down in code. Minor doc-string fix.
20770
20771 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
20772
20773 * comint.el (comint-dynamic-complete-as-filename)
20774 (comint-dynamic-complete-filename): Correctly call
20775 completion-in-region.
20776
20777 2011-06-05 Deniz Dogan <deniz@dogan.se>
20778
20779 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
20780 in last change.
20781
20782 2011-06-05 Deniz Dogan <deniz@dogan.se>
20783
20784 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
20785 (rcirc): Use it to prompt for encryption.
20786
20787 2011-06-05 Roland Winkler <winkler@gnu.org>
20788
20789 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
20790 (bibtex-search-entries): New command bound to C-c C-a.
20791 (bibtex-display-entries): New function.
20792
20793 2011-06-05 Roland Winkler <winkler@gnu.org>
20794
20795 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
20796 (bibtex-insert-kill): After yanking insert newline if necessary.
20797 (bibtex-initialize): Call bibtex-string-files-init only once.
20798 (bibtex-mode): Do not call easy-menu-add.
20799 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
20800 (bibtex-yank): Set arg properly if nil.
20801
20802 2011-06-05 Roland Winkler <winkler@gnu.org>
20803
20804 * textmodes/bibtex.el (bibtex-search-entry-globally):
20805 New variable.
20806 (bibtex-search-entry): Use it.
20807
20808 2011-06-05 Roland Winkler <winkler@gnu.org>
20809
20810 * textmodes/bibtex.el (bibtex-entry-format): New option
20811 sort-fields.
20812 (bibtex-format-entry, bibtex-reformat): Honor this option.
20813 (bibtex-parse-entry): Return fields in proper order.
20814
20815 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
20816
20817 * doc-view.el (doc-view-remove-if): Move computation of result out
20818 of `dolist' to silence misleading lexical-binding warning.
20819
20820 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
20821
20822 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
20823 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
20824
20825 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
20826
20827 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
20828 "SunOS 5.10".
20829
20830 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
20831
20832 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
20833 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
20834 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
20835 (tramp-parse-putty):
20836 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
20837 (tramp-completion-function-alist-ssh)
20838 (tramp-completion-function-alist-telnet)
20839 (tramp-completion-function-alist-su)
20840 (tramp-completion-function-alist-putty): Set `tramp-autoload'
20841 cookie.
20842
20843 * net/tramp-ftp.el:
20844 * net/tramp-sh.el:
20845 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
20846 load "tramp.el" `tramp-set-completion-function'.
20847
20848 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
20849
20850 * shell.el: Require and use pcomplete.
20851 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
20852 (shell-completion-vars): Set pcomplete-default-completion-function.
20853
20854 2011-06-04 Deniz Dogan <deniz@dogan.se>
20855
20856 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
20857 `memq' (Bug#8799).
20858
20859 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
20860
20861 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
20862
20863 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
20864
20865 * bs.el (bs--mark-unmark, bs--nth-wrapper):
20866 * mpc.el (mpc-select-extend, mpc-songpointer-context):
20867 * vc/log-view.el (log-view-beginning-of-defun):
20868 * vc/smerge-mode.el (smerge-apply-resolution-patch)
20869 (smerge-refine-forward, smerge-refine-chopup-region):
20870 Silence warning for unused `dotimes' counter variables.
20871
20872 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
20873
20874 * net/tramp.el (tramp-with-progress-reporter): Rename from
20875 with-progress-reporter. Use `declare'.
20876 * net/tramp-smb.el:
20877 * net/tramp-sh.el:
20878 * net/tramp-gvfs.el: Update all uses.
20879
20880 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
20881
20882 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
20883 buffer isn't killed before making it current.
20884
20885 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20886
20887 Silence various byte-compiler warnings.
20888 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
20889 `access-type' and new obsolescence format.
20890 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
20891 new format.
20892 (byte-compile-check-variable): New `access-type' argument.
20893 Only warn if the access-type is obsolete.
20894 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20895 (byte-compile-variable-set): Adjust callers.
20896 * help-fns.el (describe-variable): Adjust to new obsolescence format.
20897 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
20898 setting it as obsolete.
20899 * simple.el (minibuffer-completing-symbol):
20900 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
20901 access as obsolete.
20902 * minibuffer.el (minibuffer-completing-file-name): Don't make it
20903 obsolete yet.
20904 * international/quail.el (quail-mouse-choose-completion): Remove unused
20905 code referring to obsolete var.
20906 (quail-choose-completion-string): Remove.
20907 * server.el (server-clients-with, server-kill-buffer-query-function)
20908 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
20909 * proced.el (proced-send-signal):
20910 * emacs-lisp/lisp.el (lisp-complete-symbol):
20911 Replace completion-annotate-function with completion-extra-properties.
20912
20913 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20914
20915 * simple.el (goto-line): Use read-number.
20916 (overriding-map-is-bound): Remove.
20917 (saved-overriding-map): Change default.
20918 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
20919 Take the map as argument.
20920 (universal-argument, negative-argument, digit-argument): Use it.
20921 (restore-overriding-map): Adjust.
20922 (do-auto-fill): Use fill-forward-paragraph.
20923 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
20924
20925 * minibuffer.el (minibuffer-inactive-mode-map): New var.
20926 (minibuffer-inactive-mode): New major mode.
20927 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
20928 the *Messages* buffer" hack.
20929 (mouse-popup-menubar): Don't burp if the event is a normal key.
20930
20931 Miscellaneous tweaks.
20932 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
20933 lexical scoping as in subr.el's dolist and dotimes.
20934 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
20935 Silence compiler warning.
20936 * thingatpt.el (forward-whitespace): Trivial coding style fix.
20937 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
20938 * international/ccl.el (ccl-compile): Trivial simplification.
20939 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
20940 * emacs-lisp/testcover.el (testcover-end): Remove spurious
20941 `printflag' argument.
20942 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
20943 Purecopy the whole obsolescence data.
20944
20945 2011-06-01 Leo Liu <sdl.web@gmail.com>
20946
20947 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
20948 improve doc-string as suggested by Marco Pessotto
20949 <melmothx@gmail.com>.
20950 (rcirc-print): Fix last change.
20951
20952 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20953
20954 * minibuffer.el (complete-with-action): Return nil for the metadata and
20955 boundaries of non-functional tables.
20956 (completion-table-dynamic): Return nil for the metadata.
20957 (completion-table-with-terminator): Add default case, using
20958 complete-with-action.
20959 (completion--metadata): New function.
20960 (completion-all-sorted-completions, minibuffer-completion-help): Use it
20961 to try and avoid pathological performance problems.
20962 (completion--embedded-envvar-table): Return `category' metadata.
20963
20964 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
20965
20966 * subr.el (process-alive-p): New tiny convenience function.
20967
20968 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20969
20970 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
20971 content but also its previous major mode.
20972
20973 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
20974
20975 * emacs-lisp/debug.el (debug): Restore the previous content of the
20976 *Backtrace* buffer when we exit with C-M-c.
20977
20978 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20979
20980 * minibuffer.el: Add metadata method to completion tables.
20981 (completion-category-overrides): New defcustom.
20982 (completion-metadata, completion--field-metadata)
20983 (completion-metadata-get, completion--styles)
20984 (completion--cycle-threshold): New functions.
20985 (completion-try-completion, completion-all-completions):
20986 Add `metadata' argument to choose completion-styles.
20987 (completion--do-completion): Use metadata to choose cycling.
20988 (completion-all-sorted-completions): Use metadata for sorting.
20989 Remove :completion-cycle-penalty which is not needed any more.
20990 (completion--try-word-completion): Add `metadata' argument.
20991 (minibuffer-completion-help): Check metadata for annotation function
20992 and sorting.
20993 (completion-file-name-table): Return `category' metadata.
20994 (minibuffer-completing-file-name): Make obsolete.
20995 * simple.el (minibuffer-completing-symbol): Make obsolete.
20996 * icomplete.el (icomplete-completions): Pass new `metadata' param to
20997 completion-try-completion.
20998
20999 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21000
21001 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
21002
21003 2011-05-30 Leo Liu <sdl.web@gmail.com>
21004
21005 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
21006 (rcirc-print): Decode all incoming messages (bug#8744).
21007 (rcirc-decode-coding-system): Allow value nil for automatic coding
21008 system detection.
21009
21010 2011-06-01 Glenn Morris <rgm@gnu.org>
21011
21012 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
21013
21014 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21015
21016 * image.el (image-animate-max-time): Allow nil and t values.
21017 Default to nil.
21018 (create-animated-image): Doc fix.
21019 (image-animate-start): Remove second arg; just use
21020 image-animate-max-time.
21021 (image-animate-timeout): Doc fix. Args changed.
21022
21023 * image-mode.el (image-toggle-display-image): Ensure that the
21024 image spec passed to the animate timer is the same object as in
21025 the buffer's display property (Bug#6981).
21026 (image-transform-properties): Doc fix.
21027
21028 * image.el (image-animate-max-time): Default to nil.
21029
21030 2011-05-29 Martin Rudalics <rudalics@gmx.at>
21031
21032 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
21033 entire buffer list (Bug#8184).
21034
21035 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21036
21037 * image.el (imagemagick-types-inhibit)
21038 (imagemagick-register-types): Doc fix.
21039
21040 2011-05-29 Deniz Dogan <deniz@dogan.se>
21041
21042 * net/rcirc.el (rcirc): Use the user's stored encryption method by
21043 default.
21044
21045 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21046
21047 * select.el: Don't perform clipboard-manager saving in hooks;
21048 leave the hooks empty.
21049
21050 2011-05-28 Leo Liu <sdl.web@gmail.com>
21051
21052 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
21053 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
21054 (occur-edit-mode): New major mode (Bug#8463).
21055 (occur-after-change-function): New function.
21056 (occur-engine): Give Occur tags a read-only property.
21057
21058 2011-05-28 Kevin Ryde <user42@zip.com.au>
21059
21060 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
21061
21062 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21063
21064 * bindings.el (help-echo): Make the initial non-indicator dash
21065 empty on graphical terminals (Bug#7295).
21066
21067 * files.el (auto-mode-alist): Move config rule after the
21068 in-stripping one (Bug#8547).
21069
21070 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
21071
21072 * startup.el (normal-splash-screen): Remove gratuitous mode-line
21073 setting (Bug#8740).
21074
21075 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
21076
21077 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
21078 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
21079 (Bug#8539).
21080
21081 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21082
21083 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
21084
21085 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
21086
21087 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
21088 (hs-hide-block-at-point, hs-find-block-beginning)
21089 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
21090 (Bug#8279).
21091
21092 2011-05-28 Glenn Morris <rgm@gnu.org>
21093
21094 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
21095
21096 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21097
21098 * help-fns.el (describe-function-1): If the function is a derived
21099 major mode, print the parent mode.
21100
21101 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
21102 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
21103
21104 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
21105
21106 * minibuffer.el (completion--capf-wrapper): Check applicability before
21107 returning non-nil for non-exclusive completion data.
21108 * progmodes/etags.el (tags-completion-at-point-function):
21109 * info-look.el (info-lookup-completions-at-point): Mark as
21110 non-exclusive.
21111 (info-complete): Adjust accordingly.
21112
21113 * info-look.el: Convert to lexical-binding and completion-at-point.
21114 (info-lookup-completions-at-point): New function.
21115 (info-complete): Use it and completion-in-region.
21116
21117 2011-05-28 Drew Adams <drew.adams@oracle.com>
21118
21119 * isearch.el: Let M-e start with point at the first mismatched char.
21120 (isearch-fail-pos): New function.
21121 (isearch-edit-string): Use it.
21122
21123 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21124
21125 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21126
21127 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
21128
21129 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
21130 traversal functions for avl-trees.
21131 (avl-tree--stack): New struct.
21132 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
21133 (avl-tree-enter): Add optional `updatefun' arg.
21134 (avl-tree--do-enter): Add optional `updatefun' arg.
21135 Change return value.
21136 (avl-tree-delete): Add optional `test' and `nilflag' args.
21137 (avl-tree--do-delete): Add `test' and `nilflag' args.
21138 Change return value.
21139 (avl-tree-member): Add optional `nilflag'
21140 (avl-tree-member-p): New function.
21141 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
21142 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
21143 (avl-tree-stack-empty-p): New functions.
21144
21145 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
21146 avl-tree--del-balance1 and make it work both ways.
21147 (avl-tree--del-balance2): Remove.
21148 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
21149 make it work both ways.
21150 (avl-tree--enter-balance2): Remove.
21151 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
21152 New macros.
21153 (avl-tree--mapc, avl-tree-map): Add direction argument.
21154
21155 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
21156
21157 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
21158
21159 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
21160
21161 * select.el: Support clipboard managers with built-in function
21162 x-clipboard-manager-save, via delete-frame-functions and
21163 kill-emacs-hook.
21164 (xselect-convert-to-targets): Add MULTIPLE target to list.
21165 (xselect-convert-to-save-targets): New function.
21166
21167 2011-05-27 Kenichi Handa <handa@m17n.org>
21168
21169 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
21170 let-binding rfc2047-encode-encoded-words to nil.
21171
21172 2011-05-27 Glenn Morris <rgm@gnu.org>
21173
21174 * mail/emacsbug.el: Don't require url-util.
21175
21176 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
21177
21178 * files.el (set-auto-mode):
21179 Also respect mode: entries at the end of the file. (Bug#8586)
21180
21181 2011-05-26 Glenn Morris <rgm@gnu.org>
21182
21183 * files.el (hack-local-variables-prop-line, hack-local-variables):
21184 Downcase mode names, as seems to be traditional.
21185 (hack-local-variables, hack-local-variables-apply): Doc fixes.
21186
21187 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
21188 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
21189
21190 2011-05-25 Julien Danjou <julien@danjou.info>
21191
21192 * textmodes/rst.el (rst-define-level-faces): Do not define face
21193 symbol if it is already defined.
21194
21195 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
21196
21197 * play/5x5.el (5x5-new-game, 5x5-randomize):
21198 Reset 5x5-solver-output to nil when a new grid is cast.
21199 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
21200 these debugging traces, as defmacro breaks the compiled code.
21201
21202 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21203
21204 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21205
21206 2011-05-24 Leo Liu <sdl.web@gmail.com>
21207
21208 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
21209 (vc-bzr-sha1): Adapt.
21210
21211 * sha1.el: Remove. Function `sha1' is now builtin.
21212
21213 * bindings.el: Provide sha1 feature.
21214
21215 2011-05-24 Kenichi Handa <handa@m17n.org>
21216
21217 * mail/sendmail.el: Require `rfc2047'.
21218 (mail-insert-from-field): Do not perform RFC2047 encoding.
21219 (mail-encode-header): New function.
21220 (sendmail-send-it): Set buffer-file-coding-system of the work
21221 buffer to the return value of select-message-coding-system.
21222 Call mail-encode-header.
21223
21224 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
21225
21226 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
21227
21228 * mail/supercite.el (sc-default-cite-frame):
21229 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
21230
21231 2011-05-24 Glenn Morris <rgm@gnu.org>
21232
21233 * progmodes/python.el (brm-menu): Declare.
21234
21235 * emulation/viper.el (viper-set-hooks): Declare.
21236
21237 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
21238 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
21239 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
21240 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
21241 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
21242 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
21243
21244 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21245
21246 Add an :exit-function for completion-at-point.
21247
21248 * minibuffer.el (completion--done): New fun.
21249 (completion--do-completion): Use it. New arg `expect-exact'.
21250 (minibuffer-complete, minibuffer-complete-word): Don't output message,
21251 since completion--do-completion does it for us now.
21252 (minibuffer-force-complete): Use completion--done and
21253 completion--replace. Handle sole-completion case with more care.
21254 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
21255 (completion-extra-properties): New var.
21256 (completion-annotate-function): Make obsolete.
21257 (minibuffer-completion-help): Adjust accordingly.
21258 Use completion-list-insert-choice-function.
21259 (completion-at-point, completion-help-at-point):
21260 Bind completion-extra-properties.
21261 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
21262 * simple.el (completion-list-insert-choice-function): New var.
21263 (completion-setup-function): Preserve it.
21264 (choose-completion): Pay attention to it, shuffle the code a bit.
21265 (choose-completion-string): New arg `insert-function'.
21266
21267 * textmodes/bibtex.el: Convert to lexical binding.
21268 (bibtex-mode-map): Use completion-at-point.
21269 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
21270 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
21271 (bibtex-complete): Define as obsolete alias.
21272 (bibtex-complete-internal): Remove.
21273 (bibtex-format-entry): Remove unused sub-group in regexp.
21274 * shell.el (shell--command-completion-data)
21275 (shell-environment-variable-completion):
21276 * pcomplete.el (pcomplete-completions-at-point):
21277 * comint.el (comint--complete-file-name-data): Use :exit-function
21278 instead of completion-table-with-terminator so it also works for
21279 choose-completion.
21280
21281 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21282
21283 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
21284
21285 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
21286 (bug#8710).
21287
21288 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
21289
21290 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
21291
21292 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
21293 customization variable and implement: If non-nil, auto-fill will
21294 be inhibited while on topic's header line.
21295
21296 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
21297
21298 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
21299 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
21300 always have a solution in grid size = 5 cases.
21301 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
21302 (5x5-solver-output, 5x5-log-buffer): New vars.
21303 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
21304 Make these variables buffer local to achieve 5x5 multi-session-ness.
21305 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
21306 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
21307 (5x5-solve-suggest): New funs.
21308 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
21309 randomize a grid so that we ensure that there is always a solution.
21310 (5x5-make-random-grid): Allow other movement than flipping.
21311
21312 2011-05-23 Kevin Ryde <user42@zip.com.au>
21313
21314 * emacs-lisp/advice.el (ad-read-advised-function):
21315 Use `function-called-at-point' as the default, if it has
21316 advice and passes PREDICATE.
21317
21318 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21319
21320 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
21321 byte-compile-lambda if it's actually a lambda.
21322
21323 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
21324 Fix function quoting. Use backquote better.
21325
21326 2011-05-22 Yuanle Song <sylecn@gmail.com>
21327
21328 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
21329 matching (Bug#8516).
21330
21331 2011-05-22 Jari Aalto <jari.aalto@cante.net>
21332
21333 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
21334 different face (Bug#8178).
21335
21336 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
21337
21338 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
21339 defface (Bug#8144).
21340
21341 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21342
21343 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
21344 funcall as well (bug#8712). Warn when performing those conversions.
21345 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
21346
21347 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
21348
21349 2011-05-22 Glenn Morris <rgm@gnu.org>
21350
21351 * files.el (hack-local-variables-prop-line): Small simplifications.
21352 (hack-local-variables, hack-local-variables-prop-line):
21353 If MODE-ONLY, return the mode, rather than just `t'.
21354
21355 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
21356
21357 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
21358
21359 2011-05-21 Glenn Morris <rgm@gnu.org>
21360
21361 * files.el (hack-local-variables-prop-line, hack-local-variables):
21362 If only interested in the mode, don't bother doing the other stuff.
21363
21364 * image-mode.el (image-after-revert-hook):
21365 Redraw all frames on which the image is visible. (Bug#8567)
21366
21367 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
21368
21369 * wid-edit.el (widget-checklist-match-inline):
21370 Fix 2011-04-19 change. (Bug#8649)
21371
21372 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21373
21374 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
21375 Also allow singlespace after single-letter capitals followed by a dot.
21376
21377 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
21378 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
21379
21380 2011-05-20 Nix <nix@esperi.org.uk>
21381
21382 * files.el (basic-save-buffer-2):
21383 Fix handling of break-hardlink-on-save with non-existent files.
21384
21385 2011-05-19 Deniz Dogan <deniz@dogan.se>
21386
21387 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
21388 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
21389
21390 2011-05-19 Glenn Morris <rgm@gnu.org>
21391
21392 * progmodes/f90.el (f90-type-def-re):
21393 Handle "type, bind(c)". (Bug#8691)
21394
21395 * emacs-lisp/autoload.el (batch-update-autoloads):
21396 Set autoload-excludes by parsing loadup.el rather than Makefiles.
21397
21398 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
21399
21400 * net/tramp.el (tramp-process-actions): Set "first-password-request"
21401 property for the correct connection in case of multihops.
21402
21403 2011-05-18 Glenn Morris <rgm@gnu.org>
21404
21405 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
21406 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
21407
21408 Rationalize calendar handling of day and month abbrev-arrays.
21409 * calendar/calendar.el (calendar-customized-p): New function.
21410 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
21411 (calendar-day-name-array, calendar-month-name-array): Doc fix.
21412 Add :set function.
21413 (calendar-abbrev-length, calendar-day-abbrev-array)
21414 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
21415 (calendar-day-abbrev-array, calendar-month-abbrev-array):
21416 Elements may no longer be nil.
21417 (calendar-day-name, calendar-month-name):
21418 Update for changed nature of abbrev arrays.
21419 * calendar/diary-lib.el (diary-name-pattern):
21420 Update for changed nature of abbrev arrays.
21421 (diary-mark-entries-1): Update calendar-make-alist calls.
21422 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
21423 * calendar/cal-html.el (cal-html-day-abbrev-array):
21424 Simply inherit from calendar-day-abbrev-array.
21425
21426 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
21427
21428 * progmodes/grep.el (grep-mode): Disable default
21429 compilation-directory-matcher setting (bug#8684).
21430
21431 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
21432
21433 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
21434 instead of "head" and "tail". There were problems with SunOS 5.9,
21435 and it performs better.
21436
21437 2011-05-17 Glenn Morris <rgm@gnu.org>
21438
21439 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
21440
21441 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
21442 Replace obsolete function.
21443
21444 * shell.el (pcomplete-parse-arguments-function): Declare.
21445
21446 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
21447 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
21448 (appt-check): Doc fixes.
21449 (appt-disp-window-function, appt-delete-window-function):
21450 Remove needless special case in custom :type.
21451 (appt-display-count): Default to 0, not nil.
21452 (appt-check): Reset appt-display-count to 0, not nil.
21453
21454 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
21455
21456 * progmodes/python.el (python-font-lock-keywords):
21457 Add the Python 3.X keyword "nonlocal" (bug#8639).
21458
21459 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
21460
21461 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
21462
21463 2011-05-16 Kevin Ryde <user42@zip.com.au>
21464
21465 * info-look.el (makefile-automake-mode): New setups, looking in
21466 automake manual, then makefile-mode.
21467 (makefile-mode): Remove automake manual, have it just in
21468 makefile-automake-mode since there's various things different or
21469 not relevant to plain make.
21470 (makefile-mode): Remove "other-modes" non-existent automake-mode,
21471 believe a hypothetical automake-mode would go to makefile-mode,
21472 not the other way around.
21473
21474 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
21475
21476 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
21477 hunk-end tags (Bug#8672).
21478
21479 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
21480 vc-annotate-show-diff-revision-at-line (Bug#8671).
21481
21482 2011-05-14 Glenn Morris <rgm@gnu.org>
21483
21484 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
21485 in the middle of an existing one with multiple authors. (Bug#8645)
21486 (change-log-font-lock-keywords): Also handle multiple author lines
21487 with leading tabs. (Bug#8644)
21488
21489 * calendar/appt.el (appt-check): Rename some local variables.
21490 Some simplification/reordering.
21491
21492 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
21493 (feedmail-sendmail-f-doesnt-sell-me-out)
21494 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
21495 (feedmail-debug-sit-for, feedmail-queue-express-hook)
21496 (feedmail-queue-runner-message-sender): Set :version.
21497 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
21498 (bbdb-dwim-net-address, vm-mail): Declare.
21499 (feedmail-binmail-gnulinuxish-template):
21500 Rename from feedmail-binmail-linuxish-template.
21501 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
21502 Use insert-buffer-substring.
21503
21504 2011-05-14 Bill Carpenter <bill@carpenter.org>
21505
21506 * mail/feedmail.el (feedmail-patch-level): Increase.
21507 (feedmail-debug): New custom group.
21508 (feedmail-confirm-outgoing-timeout)
21509 (feedmail-sendmail-f-doesnt-sell-me-out)
21510 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
21511 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
21512 (feedmail-sender-line, feedmail-from-line)
21513 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
21514 (feedmail-spray-this-address)
21515 (feedmail-spray-address-fiddle-plex-list)
21516 (feedmail-queue-use-send-time-for-date)
21517 (feedmail-queue-use-send-time-for-message-id)
21518 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
21519 (feedmail-buffer-eating-function):
21520 Doc fixes.
21521 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
21522 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
21523 (feedmail-message-action-scroll-down): New functions.
21524 (feedmail-queue-directory, feedmail-queue-draft-directory):
21525 Use expand-file-name.
21526 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
21527 Remove C-v help entry.
21528 (feedmail-queue-buffer-file-name): New variable.
21529 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
21530 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
21531 (feedmail-message-action-send-strong, feedmail-message-action-edit)
21532 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
21533 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
21534 (feedmail-message-action-toggle-spray)
21535 (feedmail-run-the-queue-no-prompts)
21536 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
21537 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
21538 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
21539 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
21540 (feedmail-envelope-deducer, feedmail-fiddle-from)
21541 (feedmail-fiddle-sender, feedmail-default-date-generator)
21542 (feedmail-fiddle-date, feedmail-fiddle-message-id)
21543 (feedmail-fiddle-spray-address)
21544 (feedmail-fiddle-list-of-spray-fiddle-plexes)
21545 (feedmail-fiddle-list-of-fiddle-plexes)
21546 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
21547 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
21548 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
21549 Change default. Doc fix.
21550 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
21551 (feedmail-binmail-linuxish-template): New constant.
21552 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
21553 Respect feedmail-sendmail-f-doesnt-sell-me-out.
21554 (feedmail-send-it): Add debug call.
21555 Use feedmail-queue-buffer-file-name, and
21556 feedmail-send-it-immediately-wrapper.
21557 (feedmail-message-action-send): Add debug call.
21558 Use feedmail-send-it-immediately-wrapper.
21559 (feedmail-queue-express-to-queue): Add debug call.
21560 Run feedmail-queue-express-hook.
21561 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
21562 (feedmail-message-action-help-blat):
21563 Rename from feedmail-queue-send-edit-prompt-help-first.
21564 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
21565 Check line-endings. Handle errors better.
21566 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
21567 Doc fix. Add debug call.
21568 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
21569 Use feedmail-queue-send-edit-prompt-inner.
21570 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
21571 (feedmail-queue-send-edit-prompt-inner): New function, extracted
21572 from feedmail-queue-send-edit-prompt.
21573 (feedmail-queue-send-edit-prompt-help)
21574 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
21575 (feedmail-tidy-up-slug): Add debug call.
21576 Respect feedmail-queue-slug-suspect-regexp.
21577 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
21578 (feedmail-dump-message-to-queue): Add debug call.
21579 Expand queue-directory.
21580 (feedmail-dump-message-to-queue): Change message slightly.
21581 Use feedmail-say-chatter.
21582 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
21583 (feedmail-send-it-immediately-wrapper): New function.
21584 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
21585 Insert empty string rather than newline. Handle full-frame case.
21586 Use catch/throw. Use feedmail-say-chatter.
21587 (feedmail-fiddle-from): Try mail-host-address.
21588 (feedmail-default-message-id-generator): Doc fix.
21589 Bind system-time-locale. Handle missing end.
21590 (feedmail-fiddle-x-mailer): Add debug call.
21591 Handle feedmail-x-mailer-line being nil.
21592 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
21593 Add debug call. Use buffer-substring-no-properties.
21594 (feedmail-say-debug, feedmail-say-chatter): New functions.
21595 (feedmail-find-eoh): Give an explicit error.
21596
21597 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
21598
21599 * net/newst-treeview.el (newsticker-treeview-face): Change default
21600 family from helvetica to sans.
21601 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
21602 etc/images/newsticker.
21603
21604 * net/newst-reader.el (newsticker-feed-face): Change default
21605 family from helvetica to sans.
21606
21607 * net/newst-plainview.el (newsticker-new-item-face)
21608 (newsticker-old-item-face, newsticker-immortal-item-face)
21609 (newsticker-obsolete-item-face, newsticker-date-face)
21610 (newsticker-statistics-face): Change default family from
21611 helvetica to sans.
21612 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
21613 etc/images/newsticker.
21614
21615 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
21616 (newsticker--process-auto-mark-filter-match): Tell user about
21617 auto-marking.
21618
21619 2011-05-13 Didier Verna <didier@xemacs.org>
21620
21621 Common Lisp indentation improvements on defmethod and lambda-lists.
21622 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
21623 TODO entries.
21624 (lisp-lambda-list-keyword-parameter-indentation)
21625 (lisp-lambda-list-keyword-parameter-alignment)
21626 (lisp-lambda-list-keyword-alignment): New customizable user options.
21627 (lisp-indent-defun-method): Improve docstring.
21628 (extended-loop-p): Fix comment.
21629 (lisp-indent-lambda-list-keywords-regexp): New variable.
21630 (lisp-indent-lambda-list): New function.
21631 (lisp-indent-259): Use it.
21632 (lisp-indent-defmethod): Support for more than one
21633 method qualifier and properly indent methods lambda-lists.
21634 (defgeneric): Provide a missing common-lisp-indent-function property.
21635
21636 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21637
21638 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
21639 bounds for the empty string (bug#8667).
21640
21641 2011-05-13 Glenn Morris <rgm@gnu.org>
21642
21643 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
21644
21645 * mail/sendmail.el (sendmail-program): Try executable-find first.
21646 (sendmail-send-it): `sendmail-program' cannot be unbound.
21647
21648 * calendar/appt.el (appt-make-list): Simplify.
21649 (appt-time-msg-list): Doc fix.
21650 (appt-check): Change mode-line message at the time of the appointment.
21651
21652 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
21653
21654 * progmodes/ld-script.el (ld-script-keywords)
21655 (ld-script-builtins): Update keywords list.
21656
21657 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21658
21659 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
21660
21661 * shell.el (shell-completion-vars): New function.
21662 (shell-mode):
21663 * simple.el (read-shell-command): Use it.
21664 (blink-matching-open): No need for " [...]" in minibuffer-message.
21665
21666 2011-05-12 Glenn Morris <rgm@gnu.org>
21667
21668 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
21669 (appt-check): Simplify.
21670
21671 2011-05-12 Eli Zaretskii <eliz@gnu.org>
21672
21673 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
21674 literal "/dev/null".
21675
21676 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21677
21678 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
21679 Fix typo.
21680
21681 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
21682
21683 * progmodes/which-func.el (which-function):
21684 Use add-log-current-defun instead of add-log-current-defun-function,
21685 which might not be defined (Bug#8260).
21686
21687 2011-05-12 Glenn Morris <rgm@gnu.org>
21688
21689 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
21690 Let byte-compile-initial-macro-environment always take precedence.
21691
21692 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21693
21694 * net/rcirc.el: Add support for SSL/TLS connections.
21695 (rcirc-server-alist): New field `encryption'.
21696 (rcirc): Check `encryption' settings.
21697 (rcirc-connect): New arg `encryption'. Use open-network-stream.
21698 Merge make-local-variable into `set'.
21699 (rcirc--connection-open-p): New function.
21700 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
21701 the process is not a network process (e.g. running gnutls-cli).
21702 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
21703 Make rcirc-(en|de)code-coding-system local here.
21704 (rcirc-mode): Merge make-local-variable into `set'.
21705 (rcirc-parent-buffer): Make permanent buffer-local.
21706 (rcirc-multiline-minor-mode): Don't do it here.
21707 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
21708 there's no server buffer.
21709
21710 2011-05-11 Glenn Morris <rgm@gnu.org>
21711
21712 * newcomment.el (comment-kill): Prefix "unused" local.
21713
21714 * term/w32console.el (get-screen-color): Declare.
21715
21716 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
21717 Handle symbol elements of byte-compile-initial-macro-environment.
21718
21719 2011-05-10 Leo Liu <sdl.web@gmail.com>
21720
21721 * bookmark.el (bookmark-bmenu-mode-map):
21722 Bind bookmark-bmenu-search to `/'.
21723
21724 * mail/footnote.el: Convert to utf-8 encoding.
21725 (footnote-unicode-string, footnote-unicode-regexp): New variable.
21726 (Footnote-unicode): New function.
21727 (footnote-style-alist): Add unicode style to the list.
21728 (footnote-style): Doc fix.
21729
21730 2011-05-10 Jim Meyering <meyering@redhat.com>
21731
21732 Fix doubled-word typos.
21733 * international/quail.el (quail-insert-kbd-layout): and and -> and
21734 * kermit.el: and and -> and
21735 * net/ldap.el (ldap-search-internal): to to -> to
21736 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
21737 * progmodes/js.el (js-mode): and and -> and
21738 * textmodes/artist.el (artist-move-to-xy): at at -> at
21739 (artist-draw-region-trim-line-endings): if if -> if
21740 And Safetyc -> Safety.
21741 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
21742
21743 2011-05-10 Glenn Morris <rgm@gnu.org>
21744 Stefan Monnier <monnier@iro.umontreal.ca>
21745
21746 * files.el (hack-one-local-variable-eval-safep):
21747 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
21748
21749 2011-05-10 Glenn Morris <rgm@gnu.org>
21750
21751 * calendar/diary-lib.el (diary-list-entries-hook)
21752 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
21753 (diary-nongregorian-marking-hook, diary-list-entries)
21754 (diary-include-other-diary-files, diary-mark-entries)
21755 (diary-mark-included-diary-files): Doc fixes.
21756
21757 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
21758
21759 * misc.el: Require tabulated-list.el during compilation.
21760
21761 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
21762
21763 * progmodes/compile.el (compilation-start):
21764 Run compilation-filter-hook for the async case too.
21765 (compilation-filter-hook): Doc fix.
21766
21767 2011-05-09 Deniz Dogan <deniz@dogan.se>
21768
21769 * wdired.el: Remove outdated installation comment. Fix usage
21770 comment.
21771
21772 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
21773
21774 * misc.el: Implement new command `list-dynamic-libraries'.
21775 (list-dynamic-libraries--loaded-only-p): New variable.
21776 (list-dynamic-libraries--refresh): New function.
21777 (list-dynamic-libraries): New command.
21778
21779 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
21780
21781 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21782 Fix the ant regexp to handle end-line and end-column info from jikes.
21783 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
21784 higher priority to avoid clobbering by gnu.
21785
21786 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
21787
21788 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
21789 if the face has existing theme settings (Bug#8454).
21790
21791 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
21792
21793 * progmodes/perl-mode.el (perl-imenu-generic-expression):
21794 Only match variables declared via `my' or `our' (Bug#8261).
21795
21796 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
21797 special file names `.' and `..' (Bug#8259).
21798
21799 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
21800
21801 * progmodes/grep.el (grep-mode-font-lock-keywords):
21802 Remove buffer-changing entries.
21803 (grep-filter): New function.
21804 (grep-mode): Add it to compilation-filter-hook.
21805
21806 * progmodes/compile.el (compilation-filter-hook)
21807 (compilation-filter-start): New defvars.
21808 (compilation-filter): Call compilation-filter-hook prior to
21809 updating the process mark.
21810
21811 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
21812
21813 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
21814
21815 2011-05-07 Eli Zaretskii <eliz@gnu.org>
21816
21817 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
21818 mailclient-send-it even if window-system is nil. (Bug#8595)
21819
21820 * term/w32console.el (terminal-init-w32console):
21821 Call get-screen-color and use its output to set the frame
21822 background-mode. (Bug#8597)
21823
21824 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
21825
21826 Make bytecomp.el understand that defmethod defines funs (bug#8631).
21827 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
21828 New functions.
21829 (defgeneric, eieio--defmethod): Use them.
21830 (eieio-defgeneric): Remove.
21831 (defmethod): Call defgeneric in a way visible to the byte-compiler.
21832
21833 2011-05-07 Glenn Morris <rgm@gnu.org>
21834
21835 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
21836 Use let rather than let*.
21837 (timeclock-find-discrep): Remove unused local.
21838
21839 * calendar/diary-lib.el (diary-comment-start): Doc fix.
21840
21841 * calendar/appt.el (appt-time-msg-list): Doc fix.
21842
21843 2011-05-06 Noah Friedman <friedman@splode.com>
21844
21845 * apropos.el (apropos-print-doc): Only use
21846 emacs-lisp-docstring-fill-column when it is bound to an integer,
21847 per that variable's documentation.
21848
21849 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21850
21851 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
21852 and warnings are not silently discarded (e.g. use -d instead of -P).
21853
21854 2011-05-06 Glenn Morris <rgm@gnu.org>
21855
21856 * calendar/appt.el (appt-message-warning-time): Doc fix.
21857 (appt-warning-time-regexp): New option.
21858 (appt-make-list): Respect appt-message-warning-time.
21859
21860 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
21861 New options.
21862 (diary-add-to-list): Strip comments from the displayed string.
21863 (diary-mode): Set comment-start and comment-end.
21864
21865 * vc/diff-mode.el (smerge-refine-subst): Declare.
21866 (diff-refine-hunk): Don't require smerge-mode when compiling.
21867
21868 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
21869
21870 * simple.el (list-processes): Return nil as the docstring says.
21871
21872 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
21873
21874 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
21875 to "".
21876 (ange-ftp-write-region, ange-ftp-insert-file-contents)
21877 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
21878 determining of binary transfer. (Bug#7383)
21879
21880 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
21881
21882 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21883 Fix port computation bug. (Bug#8618)
21884
21885 2011-05-05 Glenn Morris <rgm@gnu.org>
21886
21887 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
21888
21889 * simple.el (shell-dynamic-complete-functions)
21890 (comint-dynamic-complete-functions): Declare.
21891
21892 * net/network-stream.el (gnutls-negotiate):
21893 * simple.el (tabulated-list-print): Fix declarations.
21894
21895 * progmodes/gud.el (syntax-symbol, syntax-point):
21896 Remove unnecessary and incorrect declarations.
21897
21898 * emacs-lisp/check-declare.el (check-declare-scan):
21899 Handle byte-compile-initial-macro-environment in bytecomp.el.
21900
21901 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21902
21903 Fix earlier half-done eieio-defmethod change (bug#8338).
21904 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
21905 Streamline and change calling convention.
21906 (defmethod): Adjust accordingly and simplify.
21907 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
21908 new eieio--defmethod.
21909 (slot-boundp): Minor CSE simplification.
21910
21911 2011-05-05 Milan Zamazal <pdm@zamazal.org>
21912
21913 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
21914 (glasses-make-readable): Use glasses-separate-capital-groups.
21915
21916 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
21917
21918 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
21919 (warning-series): Doc fix.
21920 (display-warning): Don't try to create the buffer if we just found it.
21921
21922 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
21923
21924 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
21925 (autoload-find-generated-file): New function.
21926 (generate-file-autoloads): Bind generated-autoload-file to
21927 buffer-file-name.
21928 (update-file-autoloads, update-directory-autoloads):
21929 Use autoload-find-generated-file. If called interactively, prompt for
21930 output file (Bug#7989).
21931 (batch-update-autoloads): Doc fix.
21932
21933 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
21934
21935 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
21936
21937 2011-05-04 Glenn Morris <rgm@gnu.org>
21938
21939 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
21940 function, so it follows changes in calendar-date-style.
21941 (diary-fancy-date-matcher): New function.
21942 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
21943 (diary-fancy-font-lock-fontify-region-function):
21944 Use diary-fancy-date-pattern as a function.
21945
21946 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
21947 non-numbers for `year' etc pseudo-variables. (Bug#8583)
21948
21949 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
21950
21951 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
21952 instead of positional arguments. Allow :keylist and :crlfiles
21953 arguments.
21954 (open-gnutls-stream): Call it.
21955
21956 * net/network-stream.el (network-stream-open-starttls): Adjust to
21957 call `gnutls-negotiate' with :process and :hostname arguments.
21958
21959 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
21960
21961 * minibuffer.el (completion--message): New function.
21962 (completion--do-completion, minibuffer-complete)
21963 (minibuffer-force-complete, minibuffer-complete-word): Use it.
21964 (completion--do-completion): Don't ignore completion-auto-help when in
21965 icomplete-mode.
21966
21967 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
21968 internal encoding (e.g. tibetan zero is not whitespace).
21969 (global-whitespace-mode): Prefer save-current-buffer.
21970 (whitespace-trailing-regexp): Remove useless save-match-data.
21971 (whitespace-empty-at-bob-regexp): Minor simplification.
21972
21973 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
21974
21975 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
21976
21977 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
21978
21979 * textmodes/ispell.el (ispell-add-per-file-word-list):
21980 Use `concat' to create string for insertion.
21981
21982 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21983
21984 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
21985 Avoid open-line which runs post-self-insert-hook.
21986 (bibtex-fill-entry): Remove unused `end' var.
21987
21988 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
21989
21990 * textmodes/ispell.el (ispell-add-per-file-word-list):
21991 Protect against `nil' value of `comment-start' (Bug#8579).
21992
21993 2011-05-03 Leo Liu <sdl.web@gmail.com>
21994
21995 * isearch.el (isearch-yank-pop): New command.
21996 (isearch-mode-map): Bind it to `M-y'.
21997 (isearch-forward): Mention it.
21998
21999 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22000
22001 * simple.el (minibuffer-complete-shell-command): Remove.
22002 (minibuffer-local-shell-command-map): Use completion-at-point.
22003 (read-shell-command): Setup completion vars here instead.
22004 (read-expression-map): Bind TAB to symbol completion.
22005
22006 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
22007 error directly rather via storing it into `results'.
22008
22009 2011-05-02 Leo Liu <sdl.web@gmail.com>
22010
22011 * vc/diff.el: Fix description.
22012
22013 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22014
22015 * server.el (server-eval-at): New function.
22016
22017 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
22018
22019 * net/network-stream.el (open-network-stream): Take a :nowait
22020 parameter and pass it on to `make-network-process'.
22021 (network-stream-open-plain): Ditto.
22022
22023 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
22024
22025 * faces.el (face-spec-set-match-display): Don't match toolkit
22026 options on terminal frames.
22027
22028 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22029
22030 * progmodes/pascal.el: Use lexical binding.
22031 (pascal-mode-map): Remove author preferences.
22032
22033 * pcomplete.el (pcomplete-std-complete): Don't abuse
22034 completion-at-point.
22035
22036 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22037
22038 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
22039 removing code that has been dead since 1991 or so.
22040
22041 * startup.el (command-line): When warning about "_emacs", use a
22042 delayed warning to allow the user to filter it out.
22043
22044 2011-04-28 Deniz Dogan <deniz@dogan.se>
22045
22046 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
22047 user has not joined.
22048
22049 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22050
22051 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
22052 aren't any completions at point.
22053
22054 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22055
22056 * subr.el (display-delayed-warnings): New function.
22057 (delayed-warnings-hook): New variable.
22058
22059 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22060
22061 * minibuffer.el (completion-at-point, completion-help-at-point):
22062 Don't presume that a given completion-at-point-function will always
22063 use the same calling convention.
22064
22065 * pcomplete.el (pcomplete-completions-at-point):
22066 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
22067 pcomplete-seen is non-nil.
22068 (pcomplete-comint-setup): Also recognize the new comint/shell
22069 completion functions.
22070 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
22071 pcomplete-seen is non-nil.
22072
22073 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
22074
22075 * calendar/icalendar.el (diary-lib): Add require statement.
22076 (icalendar--create-uid): Read out a uid from a text-property on
22077 the first character in the entry. This allows for code to add its
22078 own uid to the entry.
22079 (icalendar--convert-float-to-ical): Add export of
22080 `diary-float'-entries save for those with the optional DAY
22081 argument.
22082
22083 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
22084
22085 * subr.el (shell-quote-argument): Use alternate escaping strategy
22086 when we spot a variable reference in a string.
22087
22088 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22089
22090 * cus-start.el (all): Define customization for debug-on-event.
22091
22092 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22093
22094 * subr.el (shell-quote-argument): Escape correctly under Windows.
22095
22096 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22097
22098 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
22099
22100 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
22101
22102 * net/tramp.el (tramp-process-actions): Add POS argument.
22103 Delete region between POS and (pos).
22104
22105 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22106 Use `nil' position in `tramp-process-actions' call.
22107 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
22108
22109 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
22110 position in `tramp-process-actions' call.
22111
22112 * net/trampver.el: Update release number.
22113
22114 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22115
22116 * custom.el (defcustom): Obey lexical-binding.
22117
22118 Fix octave-inf completion problems reported by Alexander Klimov.
22119 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
22120 Inherit from octave-mode-syntax-table.
22121 (inferior-octave-mode): Set info-lookup-mode.
22122 (inferior-octave-completion-at-point): New function.
22123 (inferior-octave-complete): Use it and completion-in-region.
22124 (inferior-octave-dynamic-complete-functions): Use it as well, and use
22125 comint-filename-completion.
22126 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
22127 symbol elements which shouldn't be word elements.
22128 (octave-font-lock-keywords, octave-beginning-of-defun)
22129 (octave-function-header-regexp): Adjust regexps accordingly.
22130 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
22131
22132 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
22133
22134 * net/gnutls.el (gnutls-errorp): Declare before first use.
22135
22136 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22137
22138 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
22139 verify-error, and verify-hostname-error parameters. Check whether
22140 default trustfile exists before going to use it. Add missing
22141 argument to gnutls-message-maybe call. Return value.
22142 Reported by Claudio Bley <claudio.bley@gmail.com>.
22143 (open-gnutls-stream): Add usage example.
22144
22145 * net/network-stream.el (network-stream-open-starttls): Give host
22146 parameter to `gnutls-negotiate'.
22147 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
22148 * subr.el (shell-quote-argument): Escape correctly under Windows.
22149
22150 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
22151
22152 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
22153 Use correct match group (bug#8438).
22154
22155 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22156
22157 * emacs-lisp/package.el (package-built-in-p): Fix typo.
22158 (package-menu--generate): New arg specifying packages to show.
22159 (package-menu-refresh, package-menu-execute, list-packages):
22160 Callers changed.
22161 (package-show-package-list): New function, replacing deleted
22162 package--list-packages (renamed because it is non-internal).
22163
22164 * finder.el (finder-list-matches): Use package-show-package-list
22165 instead of deleted package--list-packages.
22166
22167 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
22168 Based on a previous implementation by Juanma Barranquero (Bug#8366).
22169 (vc-annotate-mode-map): Bind it to RET.
22170
22171 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
22172
22173 * progmodes/etags.el (next-file): Don't use set-buffer to change
22174 buffers (Bug#8478).
22175
22176 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22177
22178 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
22179
22180 * apropos.el (apropos-label-face): Avoid variable-pitch face.
22181 (apropos-accumulator): Doc fix.
22182 (apropos-function, apropos-macro, apropos-command)
22183 (apropos-variable, apropos-face, apropos-group, apropos-widget)
22184 (apropos-plist): Add face property.
22185 (apropos-symbols-internal): Fix indentation.
22186 (apropos-print): Simplify help, and recognize apropos-multi-type.
22187 (apropos-print-doc): Use button-type-get to extract the button's
22188 face property. Fill docstring (Bug#8352).
22189
22190 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
22191
22192 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
22193
22194 * play/mpuz.el (mpuz-silent): Doc fix.
22195 (mpuz-mode-map): Use mapc.
22196 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
22197 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
22198 Fix typos in docstrings.
22199
22200 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
22201 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
22202
22203 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
22204
22205 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
22206
22207 * minibuffer.el (completion--do-completion): Avoid the "Next char
22208 not unique" prompt if icomplete-mode is enabled (Bug#5849).
22209
22210 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
22211 mouse-2 into unread-command-events, it is interpreted correctly.
22212
22213 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
22214 (image-toggle-display): Doc fix.
22215
22216 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
22217
22218 * textmodes/page.el (what-page): Use line-number-at-pos to
22219 calculate line number (Bug#6825).
22220
22221 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22222
22223 * eshell/esh-mode.el (find-tag-interactive): Declare function.
22224 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
22225 Pass argument NO-DEFAULT to `find-tag-interactive'.
22226
22227 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22228
22229 Lexical-binding cleanup.
22230
22231 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
22232 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
22233 * progmodes/ada-prj.el (ada-prj-initialize-values)
22234 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
22235 (ada-prj-show-value):
22236 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
22237 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
22238 (antlr-invalidate-context-cache, antlr-options-menu-filter)
22239 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
22240 * progmodes/bug-reference.el (bug-reference-push-button):
22241 * progmodes/fortran.el (fortran-line-length):
22242 * progmodes/glasses.el (glasses-change):
22243 * progmodes/octave-mod.el (octave-fill-paragraph):
22244 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
22245 (python-pdbtrack-grub-for-buffer, python-sentinel):
22246 * progmodes/sql.el (sql-save-connection):
22247 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
22248 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
22249 Mark unused parameters.
22250
22251 * progmodes/compile.el (compilation--flush-directory-cache)
22252 (compilation--flush-parse, compile-internal): Mark unused parameters.
22253 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
22254 (compilation-next-error-function): Remove unused variable `timestamp'.
22255
22256 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
22257 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
22258
22259 * progmodes/dcl-mode.el (dcl-end-of-command):
22260 Remove unused variable `start'.
22261 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
22262 (dcl-option-value-basic, dcl-option-value-offset)
22263 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
22264 Mark unused parameters.
22265 (dcl-save-local-variable): Remove unused variable `val'.
22266 (mode): Declare.
22267
22268 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
22269 Mark unused parameters.
22270 (delphi-ignore-changes): Move before first use.
22271 (delphi-charset-token-at): Remove unused variable `start'.
22272 (delphi-else-start): Remove unused variable `if-count'.
22273 (delphi-comment-block-start, delphi-comment-block-end):
22274 Remove unused variable `kind'.
22275 (delphi-indent-line): Remove unused variable `new-point'.
22276
22277 * progmodes/ebrowse.el (ebrowse-files-list)
22278 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
22279 Mark unused parameters. Don't quote `lambda'.
22280 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
22281 Don't quote `lambda'.
22282 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
22283 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
22284 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
22285 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
22286 Use `ignore-errors'.
22287 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
22288 (ebrowse-view/find-file-and-search-pattern)
22289 (ebrowse-view/find-member-declaration/definition):
22290 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
22291 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
22292 Rename parameter PREFIX-ARG to PREFIX.
22293 (ebrowse-tags-read-name): Remove unused variables `start' and
22294 `member-info'.
22295 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
22296 to `tags-file'.
22297
22298 * progmodes/etags.el (local-find-tag-hook): Declare.
22299 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
22300 Mark unused parameters.
22301
22302 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
22303 (executable-interpret): Mark unused parameter.
22304
22305 * progmodes/flymake.el (flymake-process-sentinel)
22306 (flymake-after-change-function)
22307 (flymake-create-temp-with-folder-structure)
22308 (flymake-get-include-dirs-dot): Mark unused parameters.
22309 (flymake-safe-delete-directory): Remove unused variable `err'.
22310
22311 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
22312 (speedbar-timer-fn, speedbar-line-text)
22313 (speedbar-change-expand-button-char, speedbar-delete-subblock)
22314 (speedbar-center-buffer-smartly): Declare functions.
22315 (gdb-find-watch-expression): Remove unused variable `array'.
22316 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
22317 (gdb-starting): Mark unused parameters.
22318 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
22319 (gdb-table-string): Remove unused variable `res'.
22320 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
22321 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
22322 (gdb-display-buffer): Remove unused variable `cur-size'.
22323
22324 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
22325 allow lexical-binding compilation.
22326 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
22327 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
22328 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
22329 Mark unused parameters.
22330 (gud-gdb-marker-filter): Remove unused variable `match'.
22331 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
22332 lambda expressions and funcall them, instead of using `fset'.
22333
22334 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
22335 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
22336
22337 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
22338 variable `header-beg'; use `let'.
22339
22340 * progmodes/icon.el (indent-icon-exp): Remove unused variables
22341 `restart', `last-sexp' and `at-do'.
22342
22343 * progmodes/js.el (js--debug): Mark unused parameter.
22344 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
22345 (js--splice-into-items): Remove unused variable `item'.
22346 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
22347
22348 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
22349 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
22350 (makefile-complete): Remove unused variable `try'.
22351 (makefile-fill-paragraph, makefile-match-function-end):
22352 Mark unused parameters.
22353
22354 * progmodes/octave-inf.el (inferior-octave-complete):
22355 Remove unused variable `proc'.
22356 (inferior-octave-output-digest): Mark unused parameter.
22357
22358 * progmodes/perl-mode.el (perl-calculate-indent):
22359 Remove unused variable `err'.
22360
22361 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
22362 (prolog-indent-line): Mark unused parameters.
22363 (prolog-indent-line): Remove unused variable `beg'.
22364
22365 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
22366 (reporter-dont-compact-list): Declare.
22367
22368 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
22369 Remove unused variable `char'.
22370 (sh-debug): Mark unused parameter.
22371 (sh-get-indent-info): Remove unused variable `start'.
22372 (sh-calculate-indent): Remove unused variable `var'.
22373
22374 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
22375 (simula-electric-keyword): Remove unused variable `null'.
22376 (simula-search-backward, simula-search-forward): Remove unused
22377 variables `begin' and `end'.
22378
22379 * progmodes/vera-mode.el (vera-guess-basic-syntax):
22380 Remove unused variable `pos'.
22381 (vera-electric-tab, vera-comment-uncomment-region):
22382 Mark unused parameters.
22383 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
22384
22385 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
22386
22387 * emacs-lisp/package.el (package--builtins, package-alist)
22388 (package-load-descriptor, package-built-in-p, package-activate)
22389 (define-package, package-installed-p)
22390 (package-compute-transaction, package-buffer-info)
22391 (package--push): Doc fix. Distinguish more clearly between
22392 version strings and version lists.
22393
22394 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
22395
22396 Lexical-binding cleanup.
22397
22398 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
22399 (5x5-make-mutate-best):
22400 * play/fortune.el (fortune-in-buffer):
22401 * play/gomoku.el (gomoku-init-display):
22402 * play/solitaire.el (solitaire, solitaire-do-check):
22403 * play/tetris.el (tetris-default-update-speed-function):
22404 Mark unused parameters.
22405
22406 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
22407 (bubbles--shift): Remove unused variable `char-org'.
22408 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
22409 (bubbles--show-images): Remove unused variable `char'.
22410
22411 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
22412 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
22413 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
22414 (decipher-analyze-buffer): Use ?\s.
22415 (decipher-make-checkpoint): Remove unused variable `mapping'.
22416
22417 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
22418
22419 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
22420 Remove unused variable `result'; use `let'.
22421
22422 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
22423 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
22424 (gametree-children-shown-p, gametree-compute-reduced-score):
22425 Use `ignore-errors'.
22426
22427 * play/handwrite.el (ps-lpr-switches): Declare.
22428 (handwrite): Remove unused variables `pmin' and `lastp'.
22429
22430 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
22431
22432 * play/landmark.el (landmark-init-display)
22433 (landmark-update-naught-weights): Mark unused parameters.
22434 (landmark-y): Remove unused variable `noise'. Simplify.
22435 (landmark-human-plays): Remove unused variable `score'.
22436
22437 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
22438 (mpuz-try-proposal): Remove unused variable `game'.
22439
22440 * play/zone.el (life-patterns): Declare.
22441
22442 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
22443
22444 * vc/vc.el (ediff-vc-internal): Declare function.
22445
22446 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22447
22448 * shell.el: Use lexical-binding and std completion UI.
22449 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
22450 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
22451 comint-preoutput-filter-functions rather than on
22452 comint-output-filter-functions.
22453 (shell-command-completion, shell--command-completion-data)
22454 (shell-filename-completion, shell-environment-variable-completion)
22455 (shell-c-a-p-replace-by-expanded-directory): New functions.
22456 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
22457 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
22458 (shell-dynamic-complete-environment-variable): Use them.
22459 (shell-dynamic-complete-as-environment-variable)
22460 (shell-dynamic-complete-as-command): Remove.
22461 (shell-match-partial-variable): Match past point.
22462 * comint.el: Clean up use of completion-at-point-functions.
22463 (comint-completion-at-point): New function.
22464 (comint-mode): Use it completion-at-point-functions.
22465 (comint-dynamic-complete): Make it obsolete.
22466 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
22467 (comint-c-a-p-replace-by-expanded-history): New function.
22468 (comint-dynamic-complete-functions)
22469 (comint-replace-by-expanded-history): Use it.
22470 * minibuffer.el (completion-table-with-terminator): Allow dynamic
22471 termination strings. Try harder to avoid second try-completion.
22472 (completion-in-region-mode-map): Disable bindings that don't work yet.
22473
22474 * comint.el: Use lexical-binding. Require CL.
22475 (comint-dynamic-complete-functions): Use comint-filename-completion.
22476 (comint-completion-addsuffix): Tweak custom type.
22477 (comint-filename-completion, comint--common-suffix)
22478 (comint--common-quoted-suffix, comint--table-subvert)
22479 (comint--complete-file-name-data): New functions.
22480 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
22481 (comint-dynamic-list-filename-completions): Use them.
22482 (comint-dynamic-simple-complete): Make obsolete.
22483
22484 * minibuffer.el (completion-in-region-mode):
22485 Keep completion-in-region-mode--predicate global.
22486 (completion-in-region--postch):
22487 Assume completion-in-region-mode--predicate is not null.
22488
22489 * progmodes/flymake.el (flymake-start-syntax-check-process):
22490 Obey `dir'. Simplify.
22491
22492 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
22493 we're in VC after all.
22494
22495 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
22496
22497 * vc/vc.el (vc-diff-build-argument-list-internal)
22498 (vc-version-ediff, vc-ediff): New commands.
22499 (vc-version-diff): Use vc-diff-build-argument-list-internal.
22500
22501 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22502
22503 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
22504 add sanity check.
22505
22506 * obsolete/erc-hecomplete.el: Make obsolete.
22507 * obsolete/: Standardize obsolescence info in the header.
22508
22509 2011-04-20 Glenn Morris <rgm@gnu.org>
22510
22511 * calendar/solar.el (solar-horizontal-coordinates):
22512 Use the longitude argument rather than `calendar-longitude'.
22513 (solar-date-next-longitude): Remove unused locals.
22514
22515 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
22516
22517 * whitespace.el: New version 13.2.1.
22518
22519 2011-04-20 felix <EmacsWiki> (tiny change)
22520
22521 * whitespace.el (global-whitespace-mode): Keep highlight when
22522 switching between major modes on a file.
22523
22524 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
22525
22526 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
22527 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
22528 multi-line comments as well.
22529
22530 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
22531
22532 Lexical-binding cleanup.
22533
22534 * arc-mode.el (archive-mode-revert):
22535 * cmuscheme.el (scheme-interactively-start-process):
22536 * custom.el (custom-initialize-delay):
22537 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
22538 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
22539 * emacs-lock.el (emacs-lock-clear-sentinel):
22540 * ezimage.el (defezimage):
22541 * follow.el (follow-avoid-tail-recenter):
22542 * fringe.el (set-fringe-mode-1):
22543 * generic-x.el (bat-generic-mode-compile):
22544 * help-mode.el (help-info-variable, help-do-xref)
22545 (help-mode-revert-buffer):
22546 * help.el (view-emacs-todo):
22547 * iswitchb.el (iswitchb-completion-help):
22548 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
22549 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
22550 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
22551 * locate.el (locate-update):
22552 * longlines.el (longlines-encode-region)
22553 (longlines-after-change-function):
22554 * outline.el (outline-isearch-open-invisible):
22555 * ps-def.el (declare-function, charset-dimension, char-width)
22556 (encode-char):
22557 * ps-mule.el (ps-mule-plot-string):
22558 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
22559 (recentf-edit-list-select, recentf-edit-list-validate)
22560 (recentf-open-files-action):
22561 * rect.el (delete-whitespace-rectangle-line)
22562 (rectangle-number-line-callback):
22563 * register.el (window-configuration-to-register)
22564 (frame-configuration-to-register):
22565 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
22566 * select.el (xselect-convert-to-string, xselect-convert-to-length)
22567 (xselect-convert-to-targets, xselect-convert-to-delete)
22568 (xselect-convert-to-filename, xselect-convert-to-charpos)
22569 (xselect-convert-to-lineno, xselect-convert-to-colno)
22570 (xselect-convert-to-os, xselect-convert-to-host)
22571 (xselect-convert-to-user, xselect-convert-to-class)
22572 (xselect-convert-to-name, xselect-convert-to-integer)
22573 (xselect-convert-to-atom, xselect-convert-to-identity):
22574 * subr.el (declare, ignore, process-kill-without-query)
22575 (text-clone-maintain):
22576 * terminal.el (te-get-char, te-tic-sentinel):
22577 * tool-bar.el (tool-bar-make-keymap):
22578 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
22579 * type-break.el (type-break-mode, type-break-noninteractive-query):
22580 * view.el (View-back-to-mark):
22581 * wid-browse.el (widget-browse-action, widget-browse-widget)
22582 (widget-browse-widgets, widget-browse-sexp):
22583 * widget.el (define-widget-keywords):
22584 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
22585 Mark unused parameters.
22586
22587 * align.el (align-adjust-col-for-rule): Mark unused parameter.
22588 (align-areas): Remove unused variable `look'.
22589 (align-region): Remove unused variables `real-end' and `pos-list'.
22590
22591 * apropos.el (apropos-score-doc): Remove unused variable `i'.
22592
22593 * bindings.el (mode-line-modified, mode-line-remote):
22594 Mark unused parameters.
22595 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
22596
22597 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
22598 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
22599
22600 * comint.el (comint-history-isearch-pop-state)
22601 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
22602 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
22603 (comint-substitute-in-file-name): Doc fix.
22604
22605 * completion.el (cmpl-statistics-block): Mark unused parameter.
22606 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
22607 (save-completions-to-file, load-completions-from-file):
22608 Remove unused local variable `e'.
22609
22610 * composite.el (compose-chars): Remove unused variable `len'.
22611 (lgstring-insert-glyph): Remove unused variable `g'.
22612 (compose-glyph-string): Remove unused variables `ascent',
22613 `descent', `lbearing' and `rbearing'.
22614 (compose-glyph-string-relative): Remove unused variables
22615 `lbearing', `rbearing' and `wadjust'.
22616 (compose-gstring-for-graphic): Remove unused variables `header',
22617 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
22618 (compose-gstring-for-terminal): Remove unused variables `header'
22619 and `nchars'. Use `let', not `let*'.
22620
22621 * cus-edit.el (Custom-set, Custom-save, custom-reset)
22622 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
22623 (Custom-buffer-done, custom-buffer-create-internal)
22624 (custom-browse-visibility-action, custom-browse-group-tag-action)
22625 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
22626 (widget-magic-mouse-down-action, custom-toggle-parent)
22627 (custom-add-parent-links, custom-toggle-hide-variable)
22628 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
22629 (custom-toggle-hide-face, face, hook, custom-group-link-action)
22630 (custom-face-menu-create, custom-variable-menu-create, get)
22631 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
22632 (custom-reset-standard-save-and-update): Remove unused variable `value'.
22633 (customize-apropos): Remove unused variable `tests'.
22634 (custom-group-value-create): Remove unused variable `hidden-p'.
22635 (sort-fold-case): Declare.
22636
22637 * cus-theme.el (custom-reset-standard-faces-list)
22638 (custom-reset-standard-variables-list): Declare.
22639 (customize-create-theme, custom-theme-revert, custom-theme-write)
22640 (custom-theme-choose-mode, customize-themes, custom-theme-save):
22641 Mark unused parameters.
22642
22643 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
22644
22645 * delim-col.el (delimit-columns-max): Move defvar before first use.
22646
22647 * descr-text.el (describe-char-categories): Don't quote `lambda'.
22648 (describe-char): Don't quote `lambda'. Mark unused parameter.
22649
22650 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
22651 (auto-insert): Declare.
22652 (desktop-restore-file-buffer): Rename desktop-* parameters;
22653 mark unused ones.
22654 (desktop-create-buffer): Rename desktop-* parameters and bind them.
22655 (desktop-buffer): Rename desktop-* parameters.
22656
22657 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
22658 (dframe-reposition-frame-xemacs, dframe-help-echo)
22659 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
22660 Mark unused parameters.
22661
22662 * dired-aux.el (backup-extract-version-start, overwrite-query)
22663 (overwrite-backup-query, rename-regexp-query)
22664 (rename-non-directory-query): Declare.
22665 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
22666 (dired-add-entry): Remove unused variable `orig-file-name'.
22667 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
22668 Use parameter PRESERVE-TIME instead of accessing dynamic variable
22669 `dired-copy-preserve-time' directly.
22670 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
22671 (dired-insert-subdir-newpos): Rename unused variable `pos'.
22672
22673 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
22674 (dired-virtual-revert, dired-make-relative-symlink):
22675 Mark unused parameters.
22676 (manual-program): Declare.
22677 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
22678 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
22679 wrapped in `with-no-warnings' to avoid replacing one warning by another.
22680
22681 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
22682
22683 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
22684
22685 * echistory.el (electric-history-in-progress, Helper-return-blurb):
22686 Declare.
22687
22688 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
22689
22690 * electric.el (Electric-command-loop): Rename parameter
22691 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
22692
22693 * expand.el (expand-in-literal): Remove unused variable `here'.
22694
22695 * facemenu.el (facemenu-add-new-color):
22696 Remove unused variable `docstring'.
22697
22698 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
22699 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
22700 (face-attr-construct): Mark unused parameter. Doc fix.
22701 (read-color): Remove unused variable `hex-string'.
22702
22703 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
22704 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
22705 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
22706 (display-buffer-other-frame): Remove unused variable `old-window'.
22707 (kill-buffer-hook): Declare.
22708 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
22709 Mark unused parameters.
22710 (after-find-file): Pass 1 to `auto-save-mode', not t.
22711
22712 * files-x.el (auto-insert): Declare.
22713 (modify-file-local-variable-prop-line): Remove unused variable `val'.
22714
22715 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
22716 variable `buf'. Mark unused parameter.
22717 (find-lisp-insert-directory): Mark unused parameter.
22718
22719 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
22720 (format-encode-region): Remove unused variables `cur-buf' and `result'.
22721 (format-common-tail): Remove, unused.
22722 (format-deannotate-region): Remove unused variable `loc'.
22723 (format-annotate-region): Remove unused variable `p'.
22724 (format-annotate-single-property-change): Remove unused variables
22725 `default' and `tail'.
22726
22727 * forms.el (read-file-filter): Declare.
22728 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
22729
22730 * frame.el (frame-creation-function-alist): Mark unused parameter.
22731 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
22732
22733 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
22734 Remove unused parameters.
22735 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
22736 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
22737
22738 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
22739 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
22740 (hfy-prepare-tag-map): Mark unused parameters.
22741 (htmlfontify-buffer): Use `called-interactively-p'.
22742
22743 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
22744 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
22745 (ibuffer-do-occur): Mark unused parameters.
22746 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
22747 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
22748
22749 * ibuffer.el: Don't quote `lambda'.
22750 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
22751 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
22752 Mark unused parameters.
22753
22754 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
22755 (ido-completing-read): Mark unused parameters.
22756 (ido-copy-current-word): Mark unused parameters;
22757 remove unused variable `name'.
22758 (ido-sort-merged-list): Remove unused parameter `dirs'.
22759
22760 * ielm.el (ielm-input-sender): Mark unused parameter.
22761 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
22762 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
22763 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
22764 `ielm-string' as a dynamic variable accessible from the IELM prompt.
22765 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
22766
22767 * image-dired.el (image-dired-display-thumbs): Remove unused
22768 variables `curr-file' and `count'.
22769 (image-dired-remove-tag): Remove unused variable `start'.
22770 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
22771 variable `curr-file'
22772 (image-dired-rotate-original): Remove unused variable `temp-file'.
22773 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
22774 Remove unused variable `file'.
22775 (image-dired-gallery-generate): Remove unused variable `curr'.
22776 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
22777
22778 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
22779
22780 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
22781
22782 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
22783
22784 * isearch.el (minibuffer-history-symbol): Declare.
22785 (isearch-edit-string): Remove unused variable `err'.
22786 (isearch-message-prefix, isearch-message-suffix):
22787 Mark unused parameters.
22788
22789 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
22790
22791 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
22792
22793 * makesum.el (double-column): Remove unused variable `cnt'.
22794
22795 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
22796 (ido-ignore-item-temp-list): Declare.
22797
22798 * mouse-drag.el (mouse-drag-throw): Remove unused variables
22799 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
22800 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
22801 (mouse-drag-drag): Remove unused variables `mouse-delta' and
22802 `mouse-col-delta'.
22803
22804 * mouse-sel.el (mouse-extend-internal):
22805 Remove unused variable `orig-window-frame'.
22806
22807 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
22808 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
22809 Move declarations before first use.
22810 (pcomplete-opt): Mark unused parameters; doc fix.
22811
22812 * proced.el (proced-revert): Mark unused parameter.
22813 (proced-send-signal): Remove unused variable `err'.
22814
22815 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
22816 Rename parameter PREFIX-ARG to ARG.
22817 (ps-basic-plot-string, ps-basic-plot-whitespace):
22818 Mark unused parameters.
22819
22820 * replace.el (replace-count): Define.
22821 (occur-revert-function): Mark unused parameters.
22822 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
22823 (isearch-case-fold-search, isearch-string): Declare.
22824 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
22825 bind `case-fold-search'. Remove unused variables `beg' and `end',
22826 and simplify.
22827 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
22828 COUNT and bind `replace-count'.
22829 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
22830 to COUNT.
22831
22832 * savehist.el (print-readably, print-string-length): Declare.
22833
22834 * shadowfile.el (shadow-expand-cluster-in-file-name):
22835 Remove unused variable `cluster'.
22836 (shadow-copy-file): Remove unused variable `i'.
22837 (shadow-noquery, shadow-clusters, shadow-site-cluster)
22838 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
22839 (shadow-define-literal-group, shadow-define-regexp-group)
22840 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
22841
22842 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
22843 (shell): Use `called-interactively-p'.
22844 (shell-directory-tracker): Remove unused variable `chdir-failure'.
22845
22846 * simple.el (compilation-context-lines, comint-file-name-quote-list)
22847 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
22848 (delete-backward-char): Remove unused variable `ocol'.
22849 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
22850 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
22851 (event-apply-hyper-modifier, event-apply-shift-modifier)
22852 (event-apply-control-modifier, event-apply-meta-modifier):
22853 Mark unused parameters.
22854 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
22855 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
22856
22857 * speedbar.el (speedbar-ignored-directory-expressions)
22858 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
22859 (speedbar-find-file, speedbar-dir-follow)
22860 (speedbar-directory-buttons-follow, speedbar-tag-find)
22861 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
22862 (speedbar-buffers-line-directory, speedbar-buffer-click):
22863 Mark unused parameters.
22864 (speedbar-tag-file): Remove unused variable `mode'.
22865 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
22866
22867 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
22868
22869 * talk.el (talk): Remove unused variable `display'.
22870
22871 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
22872 (tar-write-region-annotate): Mark unused parameter.
22873
22874 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
22875 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
22876 Declare them, wrapped in `with-no-warnings' to avoid replacing one
22877 warning by another.
22878
22879 * time-stamp.el (time-stamp-string-preprocess):
22880 Remove unused variable `require-padding'.
22881
22882 * tree-widget.el (widget-glyph-enable): Declare.
22883 (tree-widget-action): Mark unused parameter.
22884
22885 * w32-fns.el (x-get-selection): Mark unused parameter.
22886 (autoload-make-program, generated-autoload-file): Declare.
22887
22888 * wdired.el (wdired-revert): Mark unused parameters.
22889 (wdired-xcase-word): Remove unused variable `err'.
22890
22891 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
22892 (whitespace-help-scroll): Remove unused variable `data-help'.
22893
22894 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
22895 (widget-image-insert, widget-after-change, default)
22896 (widget-default-format-handler, widget-default-notify)
22897 (widget-default-prompt-value, widget-info-link-action)
22898 (widget-url-link-action, widget-function-link-action)
22899 (widget-variable-link-action, widget-file-link-action)
22900 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
22901 (widget-field-prompt-internal, widget-field-action, widget-field-match)
22902 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
22903 (widget-insert-button-action, widget-delete-button-action, visibility)
22904 (widget-documentation-link-action, widget-documentation-string-action)
22905 (widget-const-prompt-value, widget-regexp-match, symbol)
22906 (widget-coding-system-prompt-value)
22907 (widget-key-sequence-value-to-external, sexp)
22908 (widget-sexp-value-to-internal, character, vector, cons)
22909 (widget-choice-prompt-value, widget-boolean-prompt-value)
22910 (widget-color--choose-action): Mark unused parameters.
22911 (widget-item-match-inline, widget-choice-match-inline)
22912 (widget-checklist-match, widget-checklist-match-inline)
22913 (widget-group-match): Rename parameter VALUES to VALS.
22914 (widget-field-value-set): Remove unused variable `size'.
22915 (widget-color-action): Remove unused variables `value' and `start'.
22916
22917 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
22918 variable `dir'. Doc fix.
22919 (windmove-find-other-window): Don't pass it.
22920
22921 * window.el (count-windows): Mark unused parameter.
22922 (bw-adjust-window): Remove unused variable `err'.
22923
22924 * woman.el (woman-file-name): Remove unused variable `default'.
22925 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
22926 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
22927 (global-font-lock-mode): Declare.
22928 (woman-decode-region): Mark unused parameter.
22929 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
22930
22931 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
22932 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
22933 (x-dnd-handle-moz-url): Remove unused variable `title'.
22934 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
22935
22936 * xml.el (xml-parse-tag, xml-parse-attlist):
22937 Remove unused variable `pos'.
22938
22939 2011-04-19 Glenn Morris <rgm@gnu.org>
22940
22941 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
22942 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
22943 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
22944 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
22945 * calendar/cal-html.el (cal-html-insert-minical):
22946 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
22947 (calendar-mark-date-pattern):
22948 Prefix "unused" locals.
22949
22950 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
22951 optional argument `style'.
22952
22953 * calendar/appt.el (appt-make-list):
22954 * calendar/cal-china.el (calendar-chinese-date-string):
22955 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
22956 (diary-hebrew-yahrzeit):
22957 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
22958 * calendar/calendar.el (calendar-generate-window):
22959 * calendar/time-date.el (time-to-days):
22960 Remove unused local variables.
22961
22962 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
22963
22964 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
22965 glyphless-char-display table.
22966 (tabulated-list-glyphless-char-display): New var.
22967
22968 2011-04-18 Sam Steingold <sds@gnu.org>
22969
22970 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
22971 to acknowledgments.
22972
22973 2011-04-17 Glenn Morris <rgm@gnu.org>
22974
22975 * calendar/diary-lib.el (diary-sexp-entry):
22976 * calendar/holidays.el (holiday-sexp):
22977 Set debug-on-error rather than the removed stack-trace-on-error.
22978
22979 2011-04-16 Glenn Morris <rgm@gnu.org>
22980
22981 * progmodes/f90.el: Use lexical-binding.
22982 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
22983
22984 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
22985
22986 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
22987 (mail-mode): Setup mailalias completion here instead.
22988 * mail/mailalias.el: Use lexical-binding.
22989 (pattern, mailalias-done): Declare dynamic.
22990 (mail-completion-at-point-function): New function, from mail-complete.
22991 (mail-complete): Use it.
22992 (mail-completion-expand): New function.
22993 (mail-get-names): Use it.
22994 (mail-directory, mail-directory-process, mail-directory-stream):
22995 Don't use `pattern' for lexically bound arg.
22996
22997 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
22998
22999 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
23000 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
23001 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
23002
23003 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
23004 (byte-save-window-excursion, byte-temp-output-buffer-setup)
23005 (byte-interactive-p): Define them again, for use when inlining
23006 old code.
23007
23008 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
23009
23010 * loadup.el: Use `string-to-number', not `string-to-int'.
23011
23012 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23013
23014 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
23015 gud-gdb-complete-command.
23016 (gud-gdb-completions): New function, from gud-gdb-complete-command.
23017 (gud-gdb-completion-at-point): New function.
23018 (gud-gdb-completions): Remove.
23019
23020 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
23021
23022 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
23023 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
23024 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
23025 whether `executable-find' is bound.
23026
23027 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
23028
23029 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23030
23031 * minibuffer.el (completion-in-region-mode-predicate)
23032 (completion-in-region-mode--predicate): New vars.
23033 (completion-in-region, completion-in-region--postch)
23034 (completion-in-region-mode): Use them.
23035 (completion--capf-wrapper): Also return the hook function.
23036 (completion-at-point, completion-help-at-point):
23037 Adjust and provide a predicate.
23038
23039 Preserve arg names for advice of subr and lexical functions (bug#8457).
23040 * help-fns.el (help-function-arglist): Consolidate the subr and
23041 new-byte-code cases. Add argument `preserve-names' to extract names
23042 from the docstring when needed.
23043 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
23044 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
23045 (ad-arglist): Use help-function-arglist's new arg.
23046 (ad-definition-type): Use cond.
23047
23048 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
23049
23050 * autorevert.el (auto-revert-handler):
23051 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
23052 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
23053 Don't quote lambda.
23054
23055 * image-mode.el (image-transform-set-scale):
23056 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
23057
23058 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23059
23060 * net/network-stream.el (network-stream-open-starttls): Only do
23061 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
23062 Upgrades via gnutls-cli are too slow to be done opportunistically.
23063
23064 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
23065
23066 * dframe.el (dframe-current-frame): Remove spurious quote.
23067
23068 2011-04-12 Glenn Morris <rgm@gnu.org>
23069
23070 * calendar/cal-tex.el (cal-tex-end-document):
23071 Try to automatically use latin1 input if needed.
23072
23073 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
23074 Don't try to cons a mark onto an empty element.
23075
23076 2011-04-11 Leo Liu <sdl.web@gmail.com>
23077
23078 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
23079 buffers.
23080 (ido-kill-buffer-at-head): Support killing virtual buffers.
23081
23082 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
23083
23084 * minibuffer.el (completion-show-inline-help): New var.
23085 (completion--do-completion, minibuffer-complete)
23086 (minibuffer-force-complete, minibuffer-complete-word):
23087 Inhibit minibuffer messages if completion-show-inline-help is nil.
23088
23089 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
23090 to avoid interference from inline help (Bug#5849).
23091
23092 2011-04-10 Leo Liu <sdl.web@gmail.com>
23093
23094 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
23095 Fix typo.
23096
23097 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
23098
23099 * image-mode.el (image-toggle-display-image): Signal an error if
23100 not in Image mode.
23101 (image-transform-mode, image-transform-resize)
23102 (image-transform-set-rotation): Doc fix.
23103 (image-transform-set-resize): Delete.
23104 (image-transform-set-scale, image-transform-fit-to-height)
23105 (image-transform-fit-to-width): Handle image-toggle-display-image
23106 and image-transform-resize directly.
23107
23108 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
23109
23110 * doc-view.el (doc-view-fit-width-to-window)
23111 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
23112 New functions for fitting the shown image to the Emacs window size.
23113 (doc-view-mode-map): Add bindings for the new functions.
23114
23115 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
23116
23117 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
23118 Fix typo in docstring.
23119
23120 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23121
23122 * files.el (file-size-human-readable): Produce one digit after
23123 decimal, like "ls -lh" does.
23124
23125 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
23126 the file size representation.
23127
23128 * simple.el (list-processes): If async subprocesses are not
23129 available, error out with a clear error message.
23130
23131 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
23132
23133 * help.el (help-form-show): New function, to be called from C.
23134 Put help-form output in a buffer named differently than *Help*.
23135
23136 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23137
23138 * files.el (file-size-human-readable): New function.
23139
23140 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
23141 computing the representation inline. Don't require `cl'.
23142
23143 2011-04-08 Glenn Morris <rgm@gnu.org>
23144
23145 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
23146
23147 * net/browse-url.el (browse-url-firefox):
23148 Test system-type, not system-configuration.
23149
23150 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
23151 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
23152 Use log-edit-empty-buffer-p. (Bug#7598)
23153
23154 * net/rlogin.el (rlogin-process-connection-type): Simplify.
23155 (rlogin-mode-map): Initialize in the defvar.
23156 (rlogin): Use ignore-errors.
23157
23158 * replace.el (occur-mode-map): Some fixes for menu items.
23159
23160 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
23161
23162 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
23163
23164 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23165
23166 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
23167 issuing unused warnings.
23168
23169 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
23170 macro directly.
23171
23172 * simple.el: Lisp reimplement of list-processes. Based on an
23173 earlier reimplementation by Leo Liu, but using tabulated-list.el.
23174 (process-menu-mode): New major mode.
23175 (list-processes--refresh, list-processes):
23176 (process-menu-visit-buffer): New functions.
23177
23178 * files.el (save-buffers-kill-emacs): Don't assume any return
23179 value of list-processes, which is undocumented anyway.
23180
23181 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23182
23183 * emacs-lisp/tabulated-list.el: New file.
23184
23185 * emacs-lisp/package.el: Use Tabulated List mode.
23186 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
23187 (package-menu-mode): Derive from tabulated-list-mode. Set up the
23188 table format using Tabulated List mode variables.
23189 (package--push): New macro, replacing package-list-maybe-add.
23190 (package-menu--generate): Use package--push. Renamed from
23191 package--generate-package-list.
23192 (package-menu-refresh, list-packages): Use it.
23193 (package-menu--print-info): Rename from package-print-package.
23194 Return insertion data instead of inserting it directly.
23195 (package-menu-describe-package, package-menu-execute):
23196 Use tabulated-list-get-id.
23197 (package-menu-mark-delete, package-menu-mark-install)
23198 (package-menu-mark-unmark, package-menu-backup-unmark)
23199 (package-menu-mark-obsolete-for-deletion):
23200 Use tabulated-list-put-tag.
23201 (package--list-packages, package-menu-revert)
23202 (package-menu-get-package, package-menu-get-version)
23203 (package-menu-sort-by-column): Functions deleted.
23204 (package-menu-package-list, package-menu-sort-key): Vars deleted.
23205 (package-menu--status-predicate, package-menu--version-predicate)
23206 (package-menu--name-predicate)
23207 (package-menu--description-predicate): Handle arguments in the
23208 Tabulated List format.
23209 (package-list-packages-no-fetch): Call list-packages.
23210
23211 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
23212
23213 * files.el (after-find-file-from-revert-buffer): Remove variable.
23214 (after-find-file): Don't bind it.
23215 (revert-buffer-in-progress-p): New variable.
23216 (revert-buffer): Bind it.
23217 Pass nil for `after-find-file-from-revert-buffer'.
23218
23219 * saveplace.el (save-place-find-file-hook): Use new variable
23220 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
23221
23222 2011-04-06 Glenn Morris <rgm@gnu.org>
23223
23224 * Makefile.in (AUTOGEN_VCS): New variable.
23225 (autoloads): Use $AUTOGEN_VCS.
23226
23227 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
23228 * calendar/calendar.el (calendar-mode-map):
23229 Check for toolkit scroll bars. (Bug#8305)
23230
23231 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23232
23233 * minibuffer.el (completion-in-region--postch)
23234 (completion-in-region-mode): Remove unnecessary messages.
23235
23236 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
23237
23238 * font-lock.el (font-lock-refresh-defaults):
23239 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
23240 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
23241
23242 * info.el (Info-directory-list, Info-read-node-name-2)
23243 (Info-split-parameter-string): Doc fixes.
23244 (Info-virtual-nodes): Reflow docstring.
23245 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
23246 (Info-apropos-toc-nodes, info-finder, Info-get-token)
23247 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
23248 Fix typos in docstrings.
23249 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
23250 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
23251 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
23252 (Info-restore-desktop-buffer): Mark unused parameters.
23253 (Info-directory-find-file, Info-directory-find-node)
23254 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
23255 (Info-virtual-index-find-node, Info-apropos-find-file)
23256 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
23257 Mark unused parameters; fix typos in docstrings.
23258 (Info-virtual-index): Remove unused local variable `nodename'.
23259
23260 2011-04-05 Deniz Dogan <deniz@dogan.se>
23261
23262 * net/rcirc.el: Update my e-mail address.
23263 (rcirc-mode-map): Remove M-o binding.
23264
23265 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23266
23267 * startup.el (command-line): Save the cursor's theme-face
23268 directly, instead of using face-override-spec.
23269
23270 * custom.el (load-theme): Minor optimization in assigning faces.
23271
23272 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23273
23274 * help-fns.el (describe-variable): Complete all variables having
23275 documentation, including keywords.
23276 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
23277
23278 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23279
23280 Convert to lexical-binding.
23281
23282 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
23283 (bs--get-marked-string, bs--get-modified-string)
23284 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
23285 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
23286 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
23287
23288 * ehelp.el (electric-help-execute-extended)
23289 (electric-help-ctrl-x-prefix):
23290 * hexl.el (hexl-revert-buffer-function):
23291 * linum.el (linum-after-change, linum-after-scroll):
23292 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
23293
23294 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
23295
23296 2011-04-04 Daiki Ueno <ueno@unixuser.org>
23297
23298 * epa-dired.el:
23299 * epa-mail.el:
23300 * epa-hook.el:
23301 * epa-file.el:
23302 * epa.el:
23303 * epg.el: Use lexical binding.
23304
23305 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
23306
23307 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
23308
23309 * textmodes/flyspell.el (flyspell-word): Recognize default
23310 dictionary case for flyspell-mark-duplications-exceptions.
23311 Use regexp matching for languages.
23312 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
23313 default dictionary (Bug#7926).
23314
23315 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
23316
23317 * emacs-lisp/package.el (package--with-work-buffer):
23318 Recognize https URLs.
23319
23320 * net/network-stream.el: Move from gnus/proto-stream.el.
23321 Change prefix to network-stream throughout.
23322 (open-protocol-stream): Merge into open-network-stream, leaving
23323 open-protocol-stream as an alias. Handle nil BUFFER args.
23324
23325 * subr.el (open-network-stream): Move to net/network-stream.el.
23326
23327 2011-04-02 Glenn Morris <rgm@gnu.org>
23328
23329 * find-dired.el (find-exec-terminator): New option.
23330 (find-ls-option): Test for -ls support.
23331 (find-ls-subdir-switches): Test for -b in find-ls-option.
23332 (find-dired, find-grep-dired): Doc fixes.
23333 (find-dired): Use find-exec-terminator.
23334
23335 * find-dired.el (find-ls-option, find-ls-subdir-switches)
23336 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
23337 (find-name-arg): Remove purecopy.
23338
23339 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
23340 (grep-compute-defaults): Check for `-exec COMMAND +' support.
23341 Set grep-find-use-xargs, grep-find-command, and grep-find-template
23342 accordingly. Don't add the null-device if not needed.
23343
23344 * files.el (save-some-buffers): Doc fix.
23345
23346 2011-04-02 Eli Zaretskii <eliz@gnu.org>
23347
23348 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
23349
23350 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
23351
23352 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
23353 Use `dolist' rather than `mapcar'.
23354
23355 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23356
23357 Add lexical binding.
23358
23359 * subr.el (apply-partially): Use new closures rather than CL.
23360 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
23361 (dolist, dotimes): Use slightly different expansion for lexical code.
23362 (functionp): Move to C.
23363 (letrec): New macro.
23364 (with-wrapper-hook): Use it and apply-partially instead of CL.
23365 (eval-after-load): Preserve lexical-binding.
23366 (save-window-excursion, with-output-to-temp-buffer): Turn them
23367 into macros.
23368
23369 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
23370
23371 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
23372 than the arglist.
23373 (help-add-fundoc-usage): Don't add `Not documented'.
23374 (help-function-arglist): Handle closures, subroutines, and new
23375 byte-code-functions.
23376 (help-make-usage): Remove leading underscores.
23377 (describe-function-1): Handle closures.
23378 (describe-variable): Use special-variable-p for completion.
23379
23380 * files.el (lexical-binding): Declare safe.
23381
23382 * emacs-lisp/pcase.el: Don't use destructuring-bind.
23383 (pcase--memoize): Rename from pcase-memoize. Change weakness.
23384 (pcase): Add `let' pattern.
23385 Change memoization so it actually works.
23386 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
23387 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
23388 <let>: New case.
23389
23390 * emacs-lisp/macroexp.el: Use lexical binding.
23391 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
23392 Don't convert ' to #' without checking that it's indeed quoting
23393 a lambda.
23394
23395 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
23396 Use eval-sexp-add-defvars.
23397 (eval-sexp-add-defvars): New fun.
23398
23399 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
23400
23401 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
23402 Don't autoload.
23403 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
23404 than the internal `byte-compile-lambda'.
23405 (defmethod): Don't hide code under quotes.
23406 (eieio-defmethod): New `code' argument.
23407
23408 * emacs-lisp/eieio-comp.el: Remove.
23409
23410 * emacs-lisp/edebug.el (edebug-eval-defun)
23411 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
23412 (edebug-toggle): Avoid `eval'.
23413
23414 * emacs-lisp/disass.el (disassemble-internal): Handle new
23415 `closure' objects.
23416 (disassemble-1): Handle new byte codes.
23417
23418 * emacs-lisp/cl.el (pushnew): Silence warning.
23419
23420 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
23421 (cl-byte-compile-throw): Remove.
23422 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
23423
23424 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
23425 closures.
23426
23427 * emacs-lisp/cconv.el: New file.
23428
23429 * emacs-lisp/bytecomp.el: Use lexical binding instead of
23430 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
23431 (byte-compile-initial-macro-environment):
23432 Handle declare-function here.
23433 (byte-compile--lexical-environment): New var.
23434 (byte-stack-ref, byte-stack-set, byte-discardN)
23435 (byte-discardN-preserve-tos): New lap codes.
23436 (byte-interactive-p): Don't use any more.
23437 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
23438 New macros.
23439 (byte-compile-lapcode): Use them and handle new lap codes.
23440 (byte-compile-obsolete): Remove.
23441 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
23442 (byte-compile-arglist-warn): Check late def of inlinable funs.
23443 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
23444 since they should have been expanded by now.
23445 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
23446 (byte-compile-from-buffer): Remove unused second arg.
23447 (byte-compile-preprocess): New function.
23448 (byte-compile-toplevel-file-form): New function to distinguish
23449 file-form calls from outside from file-form calls from hunk-handlers.
23450 (byte-compile-file-form): Simplify.
23451 (byte-compile-file-form-defsubst): Remove.
23452 (byte-compile-file-form-defmumble): Simplify now that
23453 byte-compile-lambda always returns a byte-code-function.
23454 (byte-compile): Preprocess.
23455 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
23456 Remove, not used any more.
23457 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
23458 (byte-compile-make-args-desc): New funs.
23459 (byte-compile-lambda): Handle lexical functions. Always return
23460 a byte-code-function.
23461 (byte-compile-reserved-constants): New var, to make up room for
23462 closed-over variables.
23463 (byte-compile-constants-vector): Obey it.
23464 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
23465 (byte-compile-macroexpand-declare-function): New function.
23466 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
23467 byte-code-functions.
23468 (byte-compile-form): Check obsolescence here.
23469 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
23470 (byte-compile-variable-ref): Remove.
23471 (byte-compile-dynamic-variable-op): New fun.
23472 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
23473 (byte-compile-variable-set): New funs.
23474 (byte-compile-discard): Add 2 args.
23475 (byte-compile-stack-ref, byte-compile-stack-set)
23476 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
23477 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
23478 macroexpand-all instead.
23479 (byte-compile-quote-form): Remove.
23480 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
23481 (byte-compile-bind, byte-compile-unbind): New funs.
23482 (byte-compile-let): Handle let* and lexical binding.
23483 (byte-compile-let*): Remove.
23484 (byte-compile-catch, byte-compile-unwind-protect)
23485 (byte-compile-track-mouse, byte-compile-condition-case):
23486 Handle a new :fun-body form, used for lexical scoping.
23487 (byte-compile-save-window-excursion)
23488 (byte-compile-with-output-to-temp-buffer): Remove.
23489 (byte-compile-defun): Simplify.
23490 (byte-compile-stack-adjustment): New fun.
23491 (byte-compile-out): Use it.
23492 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
23493
23494 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
23495 handler any more.
23496
23497 * emacs-lisp/byte-opt.el: Use lexical binding.
23498 (byte-inline-lapcode): Remove (to bytecomp).
23499 (byte-compile-inline-expand): Pay attention to inlining to/from
23500 lexically bound code.
23501 (byte-compile-unfold-lambda): Don't handle byte-code-functions
23502 any more.
23503 (byte-optimize-form-code-walker): Don't handle save-window-excursion
23504 any more and don't call compiler-macros.
23505 (byte-compile-splice-in-already-compiled-code): Remove.
23506 (byte-code): Don't inline any more.
23507 (disassemble-offset): Receive `bytes' as argument rather than via
23508 dynamic scoping.
23509 (byte-compile-tag-number): Declare before first use.
23510 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
23511 `return' even if make-spliceable.
23512 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
23513 obsolete interactive-p.
23514 (byte-optimize-lapcode): Optimize new lap-codes.
23515 Don't trip up on new form of `byte-constant' lap code.
23516
23517 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
23518
23519 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
23520
23521 * custom.el (custom-initialize-default, custom-declare-variable):
23522 Use `defvar'.
23523
23524 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
23525 New variables.
23526 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
23527 (COMPILE_FIRST): Add macroexp and cconv.
23528 * makefile.w32-in: Mirror changes in Makefile.in.
23529
23530 * vc/cvs-status.el:
23531 * vc/diff-mode.el:
23532 * vc/log-edit.el:
23533 * vc/log-view.el:
23534 * vc/smerge-mode.el:
23535 * textmodes/bibtex-style.el:
23536 * textmodes/css-mode.el:
23537 * startup.el:
23538 * uniquify.el:
23539 * minibuffer.el:
23540 * newcomment.el:
23541 * reveal.el:
23542 * server.el:
23543 * mpc.el:
23544 * emacs-lisp/smie.el:
23545 * doc-view.el:
23546 * dired.el:
23547 * abbrev.el: Use lexical binding.
23548
23549 2011-04-01 Eli Zaretskii <eliz@gnu.org>
23550
23551 * info.el (info-display-manual): New function.
23552
23553 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23554
23555 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
23556
23557 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
23558
23559 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
23560 an entry for that server in rcirc-authinfo. (Bug#8385)
23561
23562 2011-03-31 Glenn Morris <rgm@gnu.org>
23563
23564 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
23565
23566 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
23567
23568 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
23569
23570 * progmodes/python.el (python-default-interpreter)
23571 (python-python-command-args, python-jython-command-args)
23572 (python-which-shell, python-which-args, python-which-bufname)
23573 (python-file-queue, python-comint-output-filter-function)
23574 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
23575 variables and functions.
23576
23577 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
23578
23579 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
23580 (completion-in-region-mode): New minor mode.
23581 (completion-in-region): Use it.
23582 (completion-in-region--data, completion-in-region-mode-map): New vars.
23583 (completion-in-region--postch): New function.
23584 (completion--capf-misbehave-funs, completion--capf-safe-funs):
23585 New vars.
23586 (completion--capf-wrapper): New function.
23587 (completion-at-point): Use it to track well-behavedness of
23588 hook functions.
23589 (completion-help-at-point): New command.
23590
23591 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
23592
23593 * vc/add-log.el (add-change-log-entry): Don't use whitespace
23594 syntax class to search for whitespace on a single line
23595 (Message-ID: <4D938140.4030905@redhat.com>).
23596
23597 2011-03-30 Leo Liu <sdl.web@gmail.com>
23598
23599 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
23600 New commands.
23601 (edit-abbrevs-map): Bind them here.
23602 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
23603
23604 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
23605
23606 * allout.el (allout-hide-by-annotation, allout-flag-region):
23607 Reduce possibility of overlay leakage by making them volatile.
23608
23609 * allout-widgets.el (allout-widgets-tally): Define as nil so the
23610 hash is not shared between buffers. Mode initialization is
23611 responsible for giving it a useful starting value.
23612 (allout-item-span): Reduce possibility of overlay leakage by
23613 making them volatile.
23614 (allout-widgets-count-buttons-in-region): Add diagnostic function
23615 for tracking down button overlay leaks.
23616
23617 2011-03-29 Leo Liu <sdl.web@gmail.com>
23618
23619 * ido.el (ido-read-internal): Use the default history var
23620 minibuffer-history if no HISTORY is specified.
23621
23622 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
23623
23624 * net/imap.el (imap-shell-open, imap-process-connection-type):
23625 Use imap-process-connection-type for 'shell' streams as well as
23626 Kerberos, SSL, other subprocesses.
23627
23628 2011-03-28 Leo Liu <sdl.web@gmail.com>
23629
23630 * abbrev.el (abbrev-table-empty-p): New function.
23631 (prepare-abbrev-list-buffer): Place empty abbrev tables after
23632 nonempty ones. (Bug#5937)
23633
23634 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
23635
23636 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
23637
23638 2011-03-27 Leo Liu <sdl.web@gmail.com>
23639
23640 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
23641 for foreground and background colors.
23642 (ansi-color-make-color-map): Adapt.
23643
23644 2011-03-25 Leo Liu <sdl.web@gmail.com>
23645
23646 * midnight.el (midnight-time-float): Remove. Note it calculates
23647 the microsecond component incorrectly and seconds-to-time does the
23648 same job.
23649 Remove redundant (require 'timer).
23650
23651 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
23652 (ido-completions): Remove unused arguments. (Bug#8329)
23653
23654 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
23655
23656 * minibuffer.el (completion--flush-all-sorted-completions):
23657 Remove itself from hook.
23658 (completion-at-point): Let the functions perform the completion
23659 immediately and return nil or t.
23660 * comint.el (comint-dynamic-complete-functions): Now identical to
23661 completion-at-point-functions.
23662 (comint-dynamic-list-input-ring): Remove unused var `index'.
23663 (comint--match-partial-filename, comint--unquote&expand-filename):
23664 New funs, split from comint-match-partial-filename.
23665 (comint-dynamic-complete): Use completion-at-point.
23666 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
23667
23668 2011-03-24 Drew Adams <drew.adams@oracle.com>
23669
23670 * thingatpt.el: Support `defun'.
23671
23672 2011-03-23 Leo Liu <sdl.web@gmail.com>
23673
23674 * abbrevlist.el: Move to obsolete/abbrevlist.el.
23675
23676 * help-mode.el (help-mode-finish): Tweak regexp.
23677
23678 2011-03-23 Glenn Morris <rgm@gnu.org>
23679
23680 * eshell/esh-opt.el (eshell-eval-using-options):
23681 Do not bind unused local variable `eshell-option-stub'.
23682
23683 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
23684
23685 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
23686
23687 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
23688 keymap variable in `with-no-warnings' to avoid a warning when the
23689 keymap has been already `defconst'ed.
23690
23691 2011-03-22 Leo Liu <sdl.web@gmail.com>
23692
23693 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
23694 encode all chars in abbrevs; otherwise use emacs-mule or
23695 utf-8-emacs. (Bug#8308)
23696
23697 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
23698
23699 * simple.el (backward-delete-char-untabify):
23700 Avoid warning about using `delete-backward-char'.
23701
23702 * image.el (image-type-file-name-regexps): Make it variable.
23703 `imagemagick-register-types' modifies it, and the user may want
23704 to add new extensions for known image types.
23705 (imagemagick-register-types): Throw error if not using ImageMagick.
23706
23707 2011-03-22 Leo Liu <sdl.web@gmail.com>
23708
23709 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
23710 located before rcirc-prompt-end-marker.
23711 (rcirc-complete): Error if point is not after rcirc prompt.
23712 Handle the case when table is nil.
23713 (rcirc-user-authenticated): Define to fix compiler warning.
23714
23715 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
23716
23717 * custom.el (custom--inhibit-theme-enable): Make it affect only
23718 custom-theme-set-variables and custom-theme-set-faces.
23719 (provide-theme): Ignore custom--inhibit-theme-enable.
23720 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
23721 (custom-enabling-themes): Delete variable.
23722 (enable-theme): Accept only loaded themes as arguments.
23723 Ignore the special custom-enabled-themes variable.
23724 (custom-enabled-themes): Forbid themes from setting this.
23725 Eliminate use of custom-enabling-themes.
23726 (custom-push-theme): Quote "changed" custom var entry.
23727
23728 2011-03-21 Leo Liu <sdl.web@gmail.com>
23729
23730 * ido.el (ido-read-internal): Add ido-selected to history instead
23731 of user input.
23732
23733 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
23734
23735 * subr.el (deferred-action-list, deferred-action-function):
23736 Mark obsolete.
23737
23738 2011-03-21 Leo Liu <sdl.web@gmail.com>
23739
23740 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
23741 change on 2011-02-13 (bug#8309).
23742
23743 * minibuffer.el (read-file-name-function): Change default value.
23744 (read-file-name--defaults): Rename from read-file-name-defaults.
23745 (read-file-name-default): Rename from read-file-name.
23746 (read-file-name): Call read-file-name-function.
23747
23748 2011-03-21 Glenn Morris <rgm@gnu.org>
23749
23750 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
23751 Doc fixes.
23752
23753 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
23754
23755 * cus-theme.el: Add missing provide statement.
23756 (customize-create-theme): Extract theme value correctly.
23757 (custom-theme-visit-theme): Autoload.
23758 (customize-create-theme): Prompt before inserting default faces.
23759
23760 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
23761
23762 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
23763 units and musical notes.
23764
23765 2011-03-20 Leo Liu <sdl.web@gmail.com>
23766
23767 * ido.el (ido-read-internal): Use completing-read-default.
23768 (ido-completing-read): Fix compatibility with completing-read.
23769
23770 2011-03-20 Christian Ohler <ohler@gnu.org>
23771
23772 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
23773 (ert-delete-all-tests): Use `called-interactively-p' rather than
23774 `interactive-p'.
23775 (ert--make-xrefs-region): Respect END.
23776
23777 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
23778
23779 * dired-aux.el (dired-create-directory): Signal an error if the
23780 directory already exists (Bug#8246).
23781
23782 * facemenu.el (list-colors-display): Call list-faces-display
23783 inside with-help-window.
23784 (list-colors-print): Use display property to align the final
23785 column, instead of checking window-width.
23786
23787 2011-03-19 Eli Zaretskii <eliz@gnu.org>
23788
23789 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
23790 windows-nt systems.
23791 (emerge-protect-metachars): Quote correctly for ms-dos and
23792 windows-nt systems.
23793
23794 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
23795
23796 * info.el (info-initialize): Replace all uses of `:' with
23797 path-separator for compatibility with non-Unix systems.
23798 Cache quoting of path-separator. (Bug#8258)
23799
23800 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
23801
23802 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
23803 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
23804 (mouse-avoidance-mode): Fix typos in docstrings.
23805
23806 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
23807
23808 * startup.el (package-subdirectory-regexp): Move from package.el.
23809 Omit \\` and \\', and let callers add them.
23810
23811 * emacs-lisp/package.el (package-strip-version)
23812 (package-load-all-descriptors): Add \\` and \\' to
23813 package-subdirectory-regexp before using it.
23814 (package-untar-buffer): New arg DIR; ensure that file untars only
23815 into this expected directory. Remove superfluous delete-region.
23816 (package-unpack): Caller changed.
23817 (package-tar-file-info): Use package-subdirectory-regexp.
23818
23819 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
23820
23821 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
23822 diff-mode-shared-map (bug#8284).
23823 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
23824
23825 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
23826
23827 * calendar/time-date.el (format-seconds): Use assoc instead of
23828 assoc-string, since assoc-string doesn't exist in XEmacs.
23829
23830 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
23831
23832 * custom.el (custom-known-themes): Reflow docstring.
23833 (custom-theme-load-path): Fix typo in docstring.
23834 (load-theme): Fix typo in error message.
23835 (custom-available-themes, custom-variable-theme-value):
23836 Use `let', not `let*'.
23837
23838 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
23839
23840 * calc/README: Mention inclusion of musical notes.
23841
23842 * calc/calc-units.el (calc-lu-quant): Rename from
23843 `calc-logunits-quantity'.
23844 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
23845 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
23846 (calc-db): Rename from `calc-dblevel'.
23847 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
23848 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
23849 (calc-np): Rename from `calc-nplevel'.
23850 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
23851 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
23852 (calc-lu-plus): Rename from `calc-logunits-add'.
23853 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
23854 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
23855 (calc-lu-minus): Rename from `calc-logunits-sub'.
23856 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
23857 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
23858 (calc-lu-times): Rename from `calc-logunits-mul'.
23859 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
23860 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
23861 (calc-lu-divide): Rename from `calc-logunits-div'.
23862 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
23863 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
23864
23865 * calc/calc-ext.el (calc-init-extensions): Update the names of the
23866 functions being autoloaded.
23867
23868 * calc/calc.el (calc-lu-power-reference): Rename from
23869 `calc-logunits-power-reference'.
23870 (calc-lu-field-reference): Rename from
23871 `calc-logunits-field-reference'.
23872
23873 * calc/calc-help.el (calc-l-prefix-help):
23874 Mention musical note functions.
23875
23876 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
23877
23878 * minibuffer.el (completion-all-sorted-completions):
23879 Use :completion-cycle-penalty text property if present.
23880
23881 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
23882
23883 * allout.el (allout-yank-processing): Adjust for new rebulleting
23884 regime so bullet being yanked is used without prompting the user
23885 for a choice.
23886
23887 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
23888
23889 * startup.el (command-line): Warn the user that _emacs is deprecated.
23890
23891 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
23892
23893 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
23894 (delphi-verbose, delphi-comment-face, delphi-string-face)
23895 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
23896 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
23897 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
23898 (delphi-new-comment-line, delphi-font-lock-defaults)
23899 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
23900 Fix typos in docstrings.
23901
23902 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
23903
23904 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
23905 Invert the roles of character and string values for INSTEAD, so a
23906 string is used for the more common case of a defaulting prompt.
23907
23908 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
23909
23910 * progmodes/ruby-mode.el (ruby-backward-sexp):
23911 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
23912 * play/gamegrid.el (gamegrid-make-face):
23913 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
23914 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
23915 * notifications.el (notifications-notify):
23916 * net/xesam.el (xesam-search-engines):
23917 * net/quickurl.el (quickurl-list-insert):
23918 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
23919
23920 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
23921
23922 * startup.el (command-line): Update package subdirectory regexp.
23923
23924 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
23925
23926 * allout.el (allout-abbreviate-flattened-numbering)
23927 (allout-mode-deactivate-hook): Fix up obsolescence "date".
23928
23929 * subr.el (read-char-choice): Only show the cursor after the prompt,
23930 not after the answer.
23931
23932 2011-03-15 Kevin Ryde <user42@zip.com.au>
23933
23934 * help-fns.el (variable-at-point): Skip leading quotes, if any
23935 (bug#8253).
23936
23937 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
23938
23939 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
23940 warning message.
23941
23942 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
23943
23944 * shell.el (shell): When called interactively, offer to change the
23945 shell file name on remote hosts.
23946
23947 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
23948
23949 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
23950 integration for LDAP parameters. The host, base, user or binddn,
23951 and secret tokens can be specified in a netrc file, for instance.
23952 This is optional because an `auth-source' parameter must be
23953 specified in the search attributes.
23954
23955 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
23956
23957 * help.el (describe-mode): Link to the mode's definition (bug#8185).
23958
23959 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
23960
23961 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
23962 into declaration. Remove redundant and harmful binding.
23963
23964 2011-03-12 Eli Zaretskii <eliz@gnu.org>
23965
23966 * files.el (file-ownership-preserved-p): Pass `integer' as an
23967 explicit 2nd argument to `file-attributes'. If the file's owner
23968 is the Administrators group on Windows, and the current user is
23969 Administrator, consider that a match.
23970
23971 * server.el (server-ensure-safe-dir): Consider server directory
23972 safe on MS-Windows if its owner is the Administrators group while
23973 the current Emacs user is Administrator. Use `=' to compare
23974 numerical UIDs, since they could be integers or floats.
23975
23976 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
23977
23978 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
23979
23980 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
23981
23982 Sync with Tramp 2.2.1.
23983
23984 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
23985
23986 * net/trampver.el: Update release number.
23987
23988 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
23989
23990 * progmodes/compile.el (compilation--previous-directory): Fix up
23991 various nil/dead-marker mismatches (bug#8014).
23992 (compilation-directory-properties, compilation-error-properties):
23993 Don't call it at a position past the one we're about to change.
23994
23995 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
23996 Disable obsolescence warnings in the file that declares it.
23997
23998 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
23999
24000 * allout-widgets.el (allout-widgets-tally):
24001 Initialize allout-widgets-tally as a hash table rather than nil to
24002 prevent mode-line redisplay warnings. Also, clarify the module
24003 description and fix a comment typo.
24004
24005 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
24006
24007 * help-fns.el (describe-variable): Don't complete keywords.
24008 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
24009
24010 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
24011
24012 * emacs-lisp/package.el (package-version-join): Impose a standard
24013 string representation for pre/alpha/beta version lists.
24014 (package-unpack-single): Standardize the directory name by passing
24015 it through package-version-join.
24016 (package-strip-rcs-id): Accept any version string that does not
24017 signal an error in version-to-list.
24018
24019 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
24020
24021 * simple.el (delete-trailing-whitespace): Return nil for the
24022 benefit of `write-file-functions'.
24023
24024 2011-03-10 Glenn Morris <rgm@gnu.org>
24025
24026 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
24027
24028 * vc/vc-git.el (vc-git-program): New option.
24029 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
24030 (vc-git--call): Use it.
24031
24032 * eshell/esh-util.el (eshell-condition-case): Doc fix.
24033
24034 * cus-edit.el (Custom-newline): If no button at point, look
24035 for a subgroup button at start-of-line. (Bug#2298)
24036
24037 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
24038
24039 2011-03-10 Julien Danjou <julien@danjou.info>
24040
24041 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
24042 `cursor-type' is nil.
24043
24044 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
24045
24046 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
24047
24048 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
24049
24050 * allout.el: Change so yank of distinctive-bullet items
24051 preserves the existing header prefix, rebulleting it if necessary,
24052 rather than replacing it. This is necessary for proper operation
24053 of cooperative addons like allout-widgets.
24054 (allout-make-topic-prefix, allout-rebullet-heading):
24055 Change SOLICIT arg to INSTEAD, and interpret additionally a string
24056 value as alternate bullet to be used, instead of prompting the user
24057 for a bullet character.
24058
24059 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
24060
24061 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24062 Do not use `tramp-file-name-port', because this returns also
24063 `tramp-default-port'.
24064
24065 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
24066
24067 * net/rcirc.el (rcirc-handler-001): Remove useless
24068 with-rcirc-process-buffer.
24069 (rcirc-check-auth-status): Swap arguments to string-match.
24070
24071 2011-03-09 Glenn Morris <rgm@gnu.org>
24072
24073 * shell.el (shell-mode):
24074 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
24075
24076 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
24077 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
24078
24079 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24080
24081 * emacs-lisp/package.el (package-refresh-contents)
24082 (package-menu-execute): Use condition-case-no-debug.
24083
24084 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
24085
24086 * simple.el (shell-command-to-string): Use `process-file'.
24087
24088 * emacs-lisp/package.el (package-tar-file-info): Handle also
24089 remote files.
24090
24091 * emacs-lisp/package-x.el (package-upload-buffer-internal):
24092 Use `equal' for upload base check.
24093
24094 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
24095
24096 * textmodes/texinfo.el (texinfo-environments):
24097 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
24098
24099 2011-03-08 Glenn Morris <rgm@gnu.org>
24100
24101 * cus-start.el (cursor-in-non-selected-windows):
24102 Fix :set quoting oddness. (Bug#8192)
24103
24104 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
24105 in some setf expressions. (Bug#2159)
24106
24107 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24108
24109 * custom.el (custom-available-themes): Return themes in
24110 alphabetical order.
24111
24112 See ChangeLog.15 for earlier changes.
24113
24114 ;; Local Variables:
24115 ;; coding: utf-8
24116 ;; End:
24117
24118 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24119
24120 This file is part of GNU Emacs.
24121
24122 GNU Emacs is free software: you can redistribute it and/or modify
24123 it under the terms of the GNU General Public License as published by
24124 the Free Software Foundation, either version 3 of the License, or
24125 (at your option) any later version.
24126
24127 GNU Emacs is distributed in the hope that it will be useful,
24128 but WITHOUT ANY WARRANTY; without even the implied warranty of
24129 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24130 GNU General Public License for more details.
24131
24132 You should have received a copy of the GNU General Public License
24133 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.