]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Merge from emacs-24; up to 2012-12-19T19:51:40Z!monnier@iro.umontreal.ca
[gnu-emacs] / lisp / ChangeLog
1 2013-02-15 Michael Albinus <michael.albinus@gmx.de>
2
3 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4
5 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
6
7 * net/goto-addr.el (goto-address-fontify): Add start and end args.
8 (goto-address-fontify-region): Use them instead of narrowing, so
9 syntax-ppss has access to the whole buffer.
10
11 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
12
13 * progmodes/python.el: Explain how to restore "cc-mode"-like
14 forward-sexp movement in header documentation (Bug#13642).
15 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
16 comments and strings (GH bug 114).
17
18 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
19
20 * progmodes/python.el (python-info-current-defun): Fix current
21 defun detection (Bug#13618).
22
23 2013-02-15 Chong Yidong <cyd@gnu.org>
24
25 * xml.el (xml-parse-string): Fix typo in handling of bad character
26 references.
27
28 2013-02-15 Glenn Morris <rgm@gnu.org>
29
30 * play/fortune.el (fortune-compile): Simplify and fix previous change.
31
32 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
33
34 * net/tramp.el (tramp-debug-message): Add
35 `tramp-condition-case-unless-debug'.
36 (tramp-debug-on-error): New defvar.
37 (tramp-condition-case-unless-debug): New defun.
38 (tramp-file-name-handler): Use it.
39
40 2013-02-14 Juri Linkov <juri@jurta.org>
41
42 * info.el (Info-isearch-filter): Treat non-nil values of
43 `search-invisible' including its default value `open'
44 like the value `t' to match hidden text. (Bug#13402)
45
46 2013-02-14 Glenn Morris <rgm@gnu.org>
47
48 * help-fns.el (find-lisp-object-file-name): Give special treatment
49 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
50
51 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
52
53 * net/quickurl.el (quickurl-save-urls):
54 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
55
56 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
57
58 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
59 depth for unfinished percent literal. Not using it in the caller.
60 (ruby-move-to-block): Jump over multiline literals of all types,
61 ignoring code-looking contents inside them.
62 (ruby-add-log-current-method): Improve performance at the expense
63 of accuracy. `ruby-block-contains-point' is relatively slow, so
64 only use it for method and singleton class blocks.
65
66 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
67
68 Use ControlMaster where applicable. (Bug#13677)
69
70 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
71 replacing `tramp-detect-ssh-controlmaster'.
72 (tramp-default-method): Use it.
73
74 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
75 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
76 arguments.
77 [scpc, rsyncc]: Remove methods.
78 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
79 and "ssh2_old".
80 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
81 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
82
83 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
84
85 * emacs-lisp/package.el (package--initialized): Move before first use.
86
87 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
88
89 * icomplete.el (icomplete-hide-common-prefix): New user option.
90 (icomplete-first-match): New face.
91 (icomplete-completions): Correct handling of "complete but not
92 unique" (Bug#12638).
93
94 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
95
96 * descr-text.el (describe-char): Display the script (bug#13698).
97
98 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
99
100 * tmm.el: Use lexical-binding and current-active-maps.
101 (tmm-menubar): Use map-keymap and pcase.
102 (tmm--completion-table): New function.
103 (tmm-prompt): Use it to fix the menu order.
104 (tmm-get-keybind): Use current-active-maps.
105
106 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
107
108 Add dired-hide-details-mode. (Bug#6799)
109
110 * locate.el (locate-mode): Set parent mode property to dired-mode.
111
112 * find-dired.el (find-dired): Call dired-insert-set-properties on
113 initial information line. Set process mark on end of buffer.
114 (find-dired-sentinel):
115 Call dired-insert-set-properties on summary.
116
117 * dired.el (dired-hide-details-hide-symlink-targets)
118 (dired-hide-details-hide-information-lines): New options.
119 (dired-insert-directory):
120 Set properties after final treatment of output.
121 (dired-insert-set-properties):
122 Set dired-hide-details-* properties.
123 (dired-mode-map): Bind dired-hide-details-mode.
124 (dired-mode): Set buffer-invisibility-spec to a list.
125 (dired-next-line): Skip hidden lines.
126 (dired-previous-line): Use dired-next-line.
127 (dired-hide-details-mode): New minor mode.
128 (dired-hide-details-update-invisibility-spec): New function.
129
130 2013-02-13 Glenn Morris <rgm@gnu.org>
131
132 * play/yow.el: Move to obsolete/. (Bug#9384)
133
134 2013-02-13 Juri Linkov <juri@jurta.org>
135
136 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
137 to select `ediff-control-frame' and set input focus correctly on Xfce.
138 (Bug#12218)
139
140 2013-02-13 Juri Linkov <juri@jurta.org>
141
142 * image-mode.el (image-mode-map):
143 * doc-view.el (doc-view-mode-map):
144 * vc/ediff-util.el (ediff-setup-keymap):
145 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
146
147 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
148
149 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
150 performance. Instead of recalculating indentation fully for each
151 line, sum up indentation depth based only on visited lines.
152 (ruby-parse-partial): Increase the depth after "do" even when END
153 is right after it.
154 (ruby-parse-partial): When END is in the middle of a percent
155 literal, increase the depth if the delimiter chars belong to the
156 paren syntax class.
157
158 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
159
160 * play/fortune.el (fortune-compile): Also make the compiled file
161 if it does not exist at all, not just if it is old. (Bug#5338)
162
163 2013-02-13 Glenn Morris <rgm@gnu.org>
164
165 * emacs-lisp/package.el (package-menu-execute): Doc fix.
166
167 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
168
169 * lisp/emacs-lisp/package.el (package-menu-execute):
170 Add optional noquery argument. (Bug#13625)
171
172 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
173
174 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
175 if DIR exists and PARENTS is non-nil.
176
177 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
178
179 * progmodes/js.el (js--multi-line-declaration-indentation):
180 Silence byte-compiler warning.
181
182 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
183
184 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
185
186 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
187 only if it doesn't exist.
188
189 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Set
190 process marker.
191
192 2013-02-12 Tassilo Horn <tsdh@gnu.org>
193
194 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
195 UserInstallation when calling soffice to work around LibreOffice
196 bug 37531.
197
198 2013-02-12 Glenn Morris <rgm@gnu.org>
199
200 * files.el (basic-save-buffer):
201 Offer to create a non-existing directory. (Bug#3016)
202
203 * calc/calc-graph.el (calc-graph-show-dumb):
204 * calendar/calendar.el (calendar-mode-map):
205 * cus-edit.el (custom-mode-map):
206 * ehelp.el (electric-help-map):
207 * emulation/vip.el (vip-mode-map):
208 * epa.el (epa-key-list-mode-map):
209 * info.el (Info-mode-map):
210 * mail/rmail.el (rmail-mode-map):
211 * mail/rmailsum.el (rmail-summary-mode-map):
212 * man.el (Man-mode-map):
213 * net/newst-plainview.el (newsticker-mode-map):
214 * progmodes/cpp.el (cpp-edit-mode-map):
215 * progmodes/grep.el (grep-mode-map):
216 * progmodes/idlw-help.el (idlwave-help-mode-map):
217 * simple.el (special-mode-map):
218 * startup.el (splash-screen-keymap):
219 * view.el (view-mode-map):
220 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
221
222 2013-02-11 Elias Pipping <pipping@lavabit.com>
223
224 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
225 (bug#13679).
226
227 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
228
229 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
230
231 2013-02-11 Glenn Morris <rgm@gnu.org>
232
233 * vc/diff.el (diff-use-labels): New variable.
234 (diff-no-select): Use --label rather than -L, and first
235 check that it is supported. (Bug#11067)
236
237 * files.el (enable-dir-local-variables): New variable.
238 (hack-dir-local-variables): Respect enable-dir-local-variables.
239 * tutorial.el (help-with-tutorial):
240 Ignore directory-local variables. (Bug#11127)
241
242 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
243 (vc-svn-global-switches): ... to here. (Bug#13513)
244
245 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
246
247 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
248 Handle "foo (bar, default: xxx): " prompts.
249
250 2013-02-10 Chong Yidong <cyd@gnu.org>
251
252 * files.el (basic-save-buffer-1): Do not set
253 buffer-file-coding-system-explicit (Bug#4533).
254
255 * mail/emacsbug.el (report-emacs-bug): Change binding of
256 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
257
258 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
259
260 * calc/calc.el (calc-allow-units-as-numbers): New variable.
261 * calc/calc-units.el (calc-convert-units): Use new variable.
262
263 2013-02-09 Eli Zaretskii <eliz@gnu.org>
264
265 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
266
267 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
268 buffer-file-type.
269
270 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
271 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
272 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
273 coding-system-for-write instead.
274
275 * jka-compr.el (jka-compr-write-region): Don't bind
276 buffer-file-type.
277
278 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
279 buffer-file-type.
280
281 * files.el (file-name-buffer-file-type-alist): Remove defvar.
282 (insert-file-contents-literally): Remove reference to
283 file-name-buffer-file-type-alist.
284
285 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
286 make-obsolete.
287 (find-buffer-file-type-match, find-buffer-file-type): Remove.
288 (find-buffer-file-type-coding-system): Remove references to
289 find-buffer-file-type-match, find-buffer-file-type, and
290 buffer-file-type.
291 Don't put find-buffer-file-type-coding-system into
292 file-coding-system-alist.
293 (find-file-binary, find-file-text): Bind coding-system-for-read
294 instead of file-name-buffer-file-type-alist.
295
296 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
297
298 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
299 converter (Bug#13622).
300 (doc-view-unoconv-program): Make obsolete alias.
301 (doc-view-odf->pdf-converter-program): New variable.
302 (doc-view-odf->pdf-converter-function): New variable.
303 (doc-view-mode-p): Use it.
304 (doc-view-odf->pdf-converter-unoconv):
305 Rename from `doc-view-odf->pdf-converter-unoconv'.
306 (doc-view-odf->pdf-converter-soffice): New function.
307 (doc-view-convert-current-doc):
308 Use `doc-view-odf->pdf-converter-function'.
309
310 2013-02-09 Chong Yidong <cyd@gnu.org>
311
312 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
313 view-echo-area-messages (Bug#13340).
314
315 * help.el (view-echo-area-messages): Use display-buffer.
316
317 * dired-x.el (dired-do-run-mail): Prompt for confirmation
318 (Bug#13561).
319
320 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
321
322 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
323 Eval body right away, now that we do eager macroexpansion (bug#13605).
324
325 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
326 (fundamental-mode): Use run-mode-hooks.
327
328 * eshell/esh-proc.el (eshell/kill): Fix last change.
329 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
330
331 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
332
333 * eshell/esh-proc.el (eshell/kill): Rewrite.
334
335 * eshell/em-ls.el (show-almost-all): Declare.
336 (eshell-do-ls): Add support for -A argument.
337
338 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
339
340 * icomplete.el (icomplete-forward-completions)
341 (icomplete-backward-completions): Handle corner case (bug#13602).
342
343 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
344
345 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
346 be nil. Handle this. (Bug#13636)
347
348 2013-02-07 Richard Stallman <rms@gnu.org>
349
350 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
351 `save-buffer-coding-system'.
352
353 2013-02-07 Alan Mackenzie <acm@muc.de>
354
355 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
356 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
357 (c-parse-state-get-strategy): Don't return 'BOD any more.
358 (c-append-lower-brace-pair-to-state-cache):
359 Extra parameter HERE instead of narrowing.
360 Widen to top of buffer before searching backwards for a brace pair.
361 (c-state-push-any-brace-pair): Add HERE parameter to function call.
362 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
363 Narrow to parameter HERE, in place of being called narrowed.
364 (c-remove-stale-state-cache): Extra parameter HERE in place of
365 narrowing. Check there's an open brace in the cache before
366 searching for its match.
367 (c-invalidate-state-cache-1): Add HERE parameter to function call.
368 (c-parse-state-1): Don't narrow here for 'forward strategy,
369 instead passing extra parameter HERE to several functions.
370 Remove 'BOD strategy.
371
372 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
373
374 * emacs-lisp/package.el (describe-package-1): Tell what archive is
375 used to install the package.
376
377 2013-02-06 Glenn Morris <rgm@gnu.org>
378
379 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
380 if we can't get user input. (Bug#6567)
381
382 * startup.el (command-line): If simple.el is missing,
383 test and warn about for some possible causes.
384
385 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
386
387 * cus-start.el (all): Add ns-use-native-fullscreen.
388
389 2013-02-05 Glenn Morris <rgm@gnu.org>
390
391 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
392
393 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
394 Fix directory creation in fallback case.
395
396 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
397
398 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
399 (vc-update-change-log): Use dolist.
400
401 2013-02-04 Chong Yidong <cyd@gnu.org>
402
403 * thingatpt.el: Rewrite the URL detection routines, absorbing some
404 code from ffap.el.
405 (thing-at-point-beginning-of-url-regexp): New var.
406 (thing-at-point-uri-schemes): Update list of URI schemes.
407 (thing-at-point-url-regexp): Variable deleted.
408 (thing-at-point-markedup-url-regexp): Disallow newlines.
409 (thing-at-point-newsgroup-regexp)
410 (thing-at-point-newsgroup-heads)
411 (thing-at-point-default-mail-uri-scheme): New variables.
412 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
413 method to find the possible bounds of the URI at point.
414 New optional argument to find ill-formed URIs.
415 (thing-at-point-url-at-point): Rewrite. New arguments for finding
416 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
417 the scheme-adding heuristics from ffap-url-at-point.
418 (thing-at-point--bounds-of-well-formed-url): New function.
419 Do parens matching to decide whether to include parens in the URI
420 (Bug#9153).
421
422 * ffap.el: Require thingatpt.
423 (ffap-url-at-point): Delegate URI detection to thing-at-point.
424 All URI-valid characters are now recognized (Bug#5673).
425 (ffap-string-at-point): Use use-region-p.
426 (ffap-url-regexp): Extra character is handled by thing-at-point.
427 (ffap-string-at-point-mode-alist): Allow parentheses.
428 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
429 Convert to aliases; code moved to thingatpt.el.
430 (ffap-gnus-hook): Use setq-local.
431
432 2013-02-04 Glenn Morris <rgm@gnu.org>
433
434 * emacs-lisp/ert.el (ert--explain-format-atom):
435 Don't try to print non-characters as characters. (Bug#13543)
436
437 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
438
439 * net/tramp.el (tramp-debug-message): Extend function exclude list.
440 (tramp-backtrace): New defun.
441 (tramp-handle-insert-file-contents): Use `visit' when inserting
442 the local copy.
443
444 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
445 Use `remote-file-name-inhibit-cache'.
446
447 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
450 (bug#13614).
451
452 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
453 current-load-list (bug#13366).
454
455 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
456
457 * progmodes/compile.el (compilation-error-regexp-alist-alist):
458 Identify g++ template instantiation trace. (Bug#12287)
459 (compilation-mode-hook, compilation-start-hook)
460 (compilation-window-height): Simplify docstrings. (Bug#13379)
461
462 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
463
464 * mouse.el (mouse-drag-track): Always deactivate the mark before
465 running the final event's command since that command is in charge of
466 activating the mark if needed (bug#13523).
467
468 2013-02-02 Juri Linkov <juri@jurta.org>
469
470 * replace.el (perform-replace): Move let-bindings of isearch-*
471 variables deeper to the loop that searches for the next match.
472 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
473 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
474 (Bug#13579)
475
476 * isearch.el (isearch-search-fun-default): Check for null
477 first element of isearch-cmds as a precaution when it's used
478 with inactive isearch.
479
480 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
481
482 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
483 error when buffer in question is narrowed so position 1 is out of
484 visible part.
485
486 2013-02-02 Glenn Morris <rgm@gnu.org>
487
488 * textmodes/remember.el (remember-clipboard): Doc fix.
489
490 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
491
492 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
493 properties (bug#13179).
494
495 2013-02-02 Juri Linkov <juri@jurta.org>
496
497 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
498 instead of hard-coded default face `match'. (Bug#9438)
499
500 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
501
502 * vc/vc-arch.el (vc-arch-registered):
503 * vc/vc-bzr.el (vc-bzr-registered):
504 * vc/vc-cvs.el (vc-cvs-registered):
505 * vc/vc-git.el (vc-git-registered):
506 * vc/vc-hg.el (vc-hg-registered):
507 * vc/vc-mtn.el (vc-mtn-registered):
508 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
509 (Bug#13139)
510
511 * info.el (Info-next-reference, Info-prev-reference): Add numeric
512 prefix argument. (Bug#11656)
513
514 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
515
516 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
517
518 2013-02-01 Glenn Morris <rgm@gnu.org>
519
520 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
521 if the backend is known not to support it.
522
523 * imenu.el (imenu-default-create-index-function):
524 Tweak infinite loop test to check for forward motion as well as none.
525
526 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
527
528 * net/soap-client.el (soap-invoke): Encode the string for
529 `url-request-data' as UTF-8.
530 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
531
532 2013-02-01 Glenn Morris <rgm@gnu.org>
533
534 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
535
536 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
537
538 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
539
540 * net/tramp.el (tramp-tramp-file-p): Comment check for
541 `string-as-unibyte'. The function does not exist on XEmacs, and
542 likely we need another approach.
543
544 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
545 `tramp-gw-*' variables are bound.
546
547 2013-01-31 Glenn Morris <rgm@gnu.org>
548
549 * files.el (basic-save-buffer-2): Choose coding system for
550 writing the file before backing it up, to reduce delay between
551 backing up and writing the new version. (Bug#13522)
552
553 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
554
555 * simple.el (cycle-spacing): New command.
556 (just-one-space): Use it.
557
558 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
559
560 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
561 (opascal-newline-always-indents): Remove custom.
562 (opascal-tab, opascal-newline): Remove commands.
563 (opascal-new-comment-line): Insert "\n" instead of calling newline.
564 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
565 (opascal-save-match-data): Remove, use save-match-data instead.
566 (opascal-save-state): Use with-silent-modifications.
567
568 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
569 (bug#13585).
570
571 2013-01-30 Juri Linkov <juri@jurta.org>
572
573 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
574 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
575 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
576
577 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
578
579 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
580 column if we're just deleting the backslashes.
581 (makefile-fill-paragraph): Use eolp.
582
583 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
584
585 * autorevert.el (auto-revert-use-notify): Fix docstring.
586
587 2013-01-30 Leo Liu <sdl.web@gmail.com>
588
589 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
590
591 2013-01-30 Glenn Morris <rgm@gnu.org>
592
593 * mouse.el (mouse-drag-line): Avoid pushing same event onto
594 unread-command-events twice in some cases. This tries to implement
595 the 2012-07-26 changes in a different way. (Bug#13560)
596
597 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
598
599 * progmodes/python.el
600 (python-pdbtrack-comint-output-filter-function): Enhancements on
601 stacktrace detection. (thanks @gnovak)
602
603 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
604
605 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
606 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
607 Use defvar-local.
608 (jit-lock-register): Use setq-local.
609
610 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
611
612 * calc-units.el (math-default-units-table): Remove initial value.
613 (calc-convert-units): Treat expressions where all the units cancel as
614 if they didn't have units.
615
616 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
617
618 * net/tramp.el (tramp-process-connection-type): Fix docstring.
619 (tramp-completion-reread-directory-timeout): Fix type.
620 (tramp-connection-min-time-diff): New defcustom.
621
622 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
623
624 2013-01-30 Glenn Morris <rgm@gnu.org>
625
626 * imenu.el (imenu-default-create-index-function):
627 Put back a version of the infinite loop test removed 2013-01-23.
628
629 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
630
631 * progmodes/python.el (python-shell-parse-command):
632 Find python-shell-interpreter with modified environment.
633
634 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
635
636 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
637
638 2013-01-29 Alan Mackenzie <acm@muc.de>
639
640 Amend to fontify /regexp/s in actions correctly.
641 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
642 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
643 are no longer included.
644 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
645 What used to be these variables without "-line" in the name.
646 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
647 (c-awk-non-arith-op-bra-re): Now also matches {.
648 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
649 "return", and "case".
650 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
651 by /.
652 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
653 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
654
655 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
656
657 * autorevert.el (auto-revert-use-notify):
658 Use `custom-initialize-default' for initialization. (Bug#13583)
659
660 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
661
662 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
663 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
664 in `tramp-file-name-handler'.
665 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
666 compatibility.
667 (tramp-compute-multi-hops): Check, whether
668 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
669
670 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
671
672 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
673 (bug#13297).
674
675 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
676
677 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
678 checks made superfluous by the \_< operator.
679 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
680 temporarily) broken indentation.
681 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
682 Highlight nested constants, too. \_< broke that.
683
684 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
685
686 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
687 instead of "\\b".
688
689 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
690
691 * autorevert.el (auto-revert-handler): Notifications which result
692 from a saved file shall not be taken into account. (Bug#13557)
693
694 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
695
696 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
697 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
698 (lisp-mode): Pass t for it. (Bug#13556)
699
700 2013-01-25 Alan Mackenzie <acm@muc.de>
701
702 AWK Mode: Fix indentation bug at top level. Bug #12274.
703
704 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
705 just before CASE 5D.
706
707 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
708
709 * net/socks.el (socks-nslookup-host): Use string-to-number.
710
711 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
712
713 * autorevert.el (auto-revert-remote-files)
714 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
715 (auto-revert-notify-enabled, auto-revert-use-notify)
716 (auto-revert-notify-watch-descriptor-hash-list)
717 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
718 (auto-revert-notify-event-descriptor)
719 (auto-revert-notify-event-action)
720 (auto-revert-notify-event-file-name): Doc fix.
721 (global-auto-revert-mode): Reorder checks.
722 (auto-revert-notify-rm-watch): Respect changed values of
723 `auto-revert-notify-watch-descriptor-hash-list'.
724 (auto-revert-notify-add-watch): Check for
725 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
726 `inotify-add-watch'. Watch `default-directory' instead of
727 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
728 has a changed meaning now. (Bug#13540)
729 (auto-revert-notify-handler): Change implementation wrt events
730 returning from a directory.
731 (auto-revert-handler): Reorder implementation for checks of remote
732 files.
733 (auto-revert-buffers): Fix parentheses error.
734
735 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
736
737 * progmodes/python.el: Enhancements to header documentation about
738 skeletons. (Bug#5716)
739
740 * imenu.el (imenu-default-create-index-function): Remove useless
741 infinite loop check. (Bug#13438)
742
743 2013-01-25 Alan Mackenzie <acm@muc.de>
744
745 Fix a bug in the state cache mechanism. Refactor this a bit.
746
747 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
748 `cache-pos' element from the return value.
749 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
750 buffer to enable proper searching from beyond HERE. Amend the
751 test for detecting the sought brace pair. Amend the value written
752 to the "brace desert cache" when the brace isn't found.
753 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
754 and several other variables analogously.
755 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
756 parameter to a locally calculated variable.
757 (c-parse-state-1): Change the calling conventions to the two
758 defuns involving `cache-pos'.
759
760 2013-01-25 Chong Yidong <cyd@gnu.org>
761
762 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
763
764 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
765
766 * paren.el (show-paren-function): Make sure to set 'priority and
767 'face only if the overlay does exist.
768
769 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
770
771 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
772
773 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
774 basic attributes.
775 (tramp-sh-handle-set-file-acl): Improve error checking.
776
777 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
778
779 * doc-view.el (doc-view-display): Force mode line update until all
780 document is converted. Suggested by Stefan Monnier (Bug#13164).
781
782 2013-01-23 Bastien Guerry <bzg@gnu.org>
783
784 * paren.el (show-paren-function): Make sure an overlay exists
785 before trying to delete it. Also use `pos' as a position only
786 when it is an integer.
787
788 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
789
790 * play/gametree.el (gametree-break-line-here): Use point-marker.
791
792 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
793
794 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
795 Mark descriptive parts with `display' property.
796
797 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
798
799 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
800 New variable to map standard dict names to hunspell ones.
801 (ispell-set-spellchecker-params): Make sure specific dict names
802 are used for standard dicts with hunspell.
803
804 2013-01-21 Tassilo Horn <tsdh@gnu.org>
805
806 * textmodes/reftex-cite.el (reftex-format-citation): Add format
807 chars for note (%N) and url (%U).
808 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
809
810 2013-01-21 Juri Linkov <juri@jurta.org>
811
812 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
813 in addition to existing separate binding `meta f10' in `global-map'.
814 (Bug#13484)
815
816 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
817
818 Improve XEmacs compatibility.
819
820 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
821
822 * net/tramp-adb.el (top): Require `time-date'.
823 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
824 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
825 Use `tramp-file-name-handler'.
826 (tramp-adb-maybe-open-connection):
827 Use `tramp-compat-set-process-query-on-exit-flag'.
828
829 * net/tramp-sh.el (tramp-sh-handle-file-acl):
830 Use `tramp-compat-funcall'.
831
832 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
833 `tramp-compat-funcall'.
834
835 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
836
837 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
838 reimplementation using "adb shell command ..." instead of running
839 remote shell interactively.
840
841 2013-01-20 Glenn Morris <rgm@gnu.org>
842
843 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
844 Add native profiler menu entries.
845
846 * profiler.el (profiler-running-p): New function.
847 (profiler-cpu-profile): Use profiler-running-p.
848 (profiler-report-mode-map): Add some more menu entries.
849
850 2013-01-19 Glenn Morris <rgm@gnu.org>
851
852 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
853 fixes 2012-12-07 change. (Bug#13499)
854
855 2013-01-19 Leo Liu <sdl.web@gmail.com>
856
857 * dired.el (dired-get-marked-files): Prune erroneous values due to
858 last change. (Bug#13152)
859
860 2013-01-19 Glenn Morris <rgm@gnu.org>
861
862 * progmodes/etags.el (tags-table-check-computed-list):
863 Preserve point in tags buffer. (Bug#13412)
864
865 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
866
867 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
868 Chong Yidong <cyd@gnu.org>
869
870 * image-mode.el (image-next-file, image-previous-file):
871 New commands (Bug#8453).
872 (image-mode-map): Bind them to n and p.
873 (image-mode--images-in-directory): New helper function.
874
875 2013-01-19 Chong Yidong <cyd@gnu.org>
876
877 * image-mode.el (image-mode-fit-frame): Add a frame argument.
878 Suggested by Drew Adams (Bug#7730). Handle window decorations;
879 save and restore the old window configuration.
880
881 2013-01-18 Leo Liu <sdl.web@gmail.com>
882
883 * progmodes/js.el: Tweak autoload cookie for alias.
884
885 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
886
887 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
888 buffer local, again. This was lost with the fix on 2013-01-12.
889
890 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
891
892 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
893 order to support several eshell buffers in parallel.
894
895 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
896
897 * autorevert.el (auto-revert-use-notify): In the :set function, do
898 not modify `kill-buffer-hook'.
899 (auto-revert-notify-rm-watch):
900 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
901 (auto-revert-notify-add-watch): Do not call
902 `auto-revert-notify-rm-watch', but add it to a buffer local
903 `kill-buffer-hook'.
904
905 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
906
907 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
908 call to `eval' rather than a backquoted lambda.
909
910 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
911
912 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
913 to return an explicit nil.
914 (advice--remove-function): Change accordingly.
915
916 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
917 the use of nadvice.el.
918
919 * progmodes/which-func.el (which-function): Silence imenu errors
920 (bug#13433).
921
922 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
923
924 * progmodes/sql.el: (sql-imenu-generic-expression):
925 (sql-mode-font-lock-object-name): Match schema qualified names.
926 (sql-connect): Use string keys.
927 (sql-product-interactive): Wait for interpreter prompt.
928 (sql-comint-oracle): Set process coding based on NLS_LANG.
929
930 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
931
932 * progmodes/sql.el (sql-output-to-send): Remove, unused.
933 (sql-interactive-remove-continuation-prompt):
934 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
935
936 2013-01-14 Leo Liu <sdl.web@gmail.com>
937
938 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
939 (Bug#13420)
940
941 2013-01-14 Glenn Morris <rgm@gnu.org>
942
943 * progmodes/compile.el (compilation-error-regexp-alist-alist):
944 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
945
946 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
947
948 * progmodes/python.el (python-nav-end-of-statement):
949 Fix cornercase when handling multiline strings.
950
951 2013-01-13 Richard Stallman <rms@gnu.org>
952
953 * mail/sendmail.el (mail-position-on-field): Add doc string.
954
955 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
956 Get current message boundaries and pass them to
957 message-forward-make-body-mime. Minor style changes.
958
959 2013-01-13 Eli Zaretskii <eliz@gnu.org>
960
961 * cus-start.el (all): Avoid warnings about
962 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
963
964 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
965
966 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
967
968 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * jit-lock.el (jit-lock-debug-mode): New minor mode.
971 (jit-lock--debug-fontifying): New var.
972 (jit-lock--debug-fontify): New function.
973 * subr.el (condition-case-unless-debug): Don't prevent catching the
974 error, just let the debbugger run.
975 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
976 timer code and don't drop errors silently.
977
978 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
979
980 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
981 `permanent-local' property.
982 (auto-revert-notify-handler): Use `file-equal-p'.
983
984 2013-01-12 Eli Zaretskii <eliz@gnu.org>
985
986 * autorevert.el (auto-revert-notify-handler): Fix filtering of
987 file notification by ACTION. For filtering by file name, compare
988 only the non-directory part of the file name.
989
990 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
991
992 * autorevert.el: Use cl-lib instead of cl.
993
994 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
995 (vc-bzr-checkin): Use it.
996 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
997 will preserve match-data.
998
999 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
1000
1001 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
1002 (js--declaration-keyword-re): New var.
1003 (js--multi-line-declaration-indentation): New function.
1004 (js--proper-indentation): Use it.
1005
1006 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1007
1008 * calc/calc.el (calc-highlight-selections-with-faces)
1009 (calc-dispatch):
1010 * comint.el (comint-history-isearch-message):
1011 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
1012 * ffap.el (ffap-string-at-point-region, ffap-next)
1013 (ffap-string-at-point, ffap-string-around)
1014 (ffap-copy-string-as-kill, ffap-highlight-overlay)
1015 (ffap-literally):
1016 * font-lock.el (font-lock-keywords-alist)
1017 (font-lock-removed-keywords-alist):
1018 * help-mode.el (help-xref-symbol-regexp):
1019 * info.el (Info-find-emacs-command-nodes):
1020 * international/mule.el (add-to-coding-system-list):
1021 * isearch.el (isearch-message-function, isearch-fail-pos):
1022 * misearch.el (multi-isearch-next-buffer-function):
1023 * newcomment.el (comment-box):
1024 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
1025 (pr-setting-database):
1026 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
1027 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
1028 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
1029 (pike-font-lock-keywords-3):
1030 * progmodes/compile.el (compile):
1031 * progmodes/etags.el (tags-table-files)
1032 (tags-table-files-function, tags-included-tables-function):
1033 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
1034 (gdb-restore-windows):
1035 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
1036 (ps-n-up-filling-database):
1037 * server.el (server-buffer, server-log):
1038 * simple.el (newline, delete-backward-char, delete-forward-char)
1039 (minibuffer-history-isearch-message, kill-line, track-eol)
1040 (temporary-goal-column):
1041 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
1042 (flyspell-default-deplacement-commands):
1043 * textmodes/ispell.el (ispell-accept-output):
1044 * textmodes/sgml-mode.el (html-tag-help):
1045 * vc/compare-w.el (compare-ignore-whitespace)
1046 (compare-ignore-case, compare-windows-dehighlight):
1047 * vc/diff.el (diff):
1048 * whitespace.el (whitespace-point)
1049 (whitespace-font-lock-refontify, whitespace-bob-marker)
1050 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
1051
1052 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
1053
1054 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
1055 (auto-revert-notify-rm-watch): Ignore errors.
1056 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
1057 inotify, and '(size last-write-time) for w32notify.
1058 Set buffer-local `auto-revert-use-notify' to nil when adding a file
1059 watch fails - this is a fallback to the file modification check.
1060 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
1061 (auto-revert-notify-event-action)
1062 (auto-revert-notify-event-file-name): New defuns.
1063 (auto-revert-notify-handler): Use them. Implement first
1064 plausibility checks.
1065 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
1066
1067 2013-01-11 Julien Danjou <julien@danjou.info>
1068
1069 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
1070 max are almost equal. Also return the correct value for V which is
1071 already between 0 and 1.
1072
1073 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1074
1075 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
1076
1077 2013-01-11 Eli Zaretskii <eliz@gnu.org>
1078
1079 * autorevert.el (auto-revert-notify-rm-watch)
1080 (auto-revert-notify-add-watch): Fix typos in w32notify function
1081 names.
1082
1083 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1084
1085 * autorevert.el (auto-revert-notify-enabled): Move up.
1086 (auto-revert-use-notify): New defcustom.
1087 (auto-revert-mode, global-auto-revert-mode)
1088 (auto-revert-notify-add-watch, auto-revert-handler)
1089 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
1090 `auto-revert-notify-enabled'.
1091
1092 2013-01-10 Elias Pipping <pipping@exherbo.org>
1093
1094 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
1095 * doc-view.el (doc-view-document->bitmap):
1096 Use doc-view-single-page-converter-function instead of
1097 single-page-converter arg; adjust callers.
1098
1099 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
1100
1101 * progmodes/which-func.el (which-function): Understand Semantic's use
1102 of overlays in imenu--index-alist.
1103
1104 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
1105
1106 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
1107 (Man-man-k-use-anchor): New var.
1108 (Man-parse-man-k): New function.
1109 (Man-completion-table): Use it.
1110 (man): Flush the completion cache between uses.
1111
1112 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
1113
1114 * autorevert.el: Add file watch support.
1115 (auto-revert-notify-enabled): New defconst.
1116 (auto-revert-notify-watch-descriptor-hash-list)
1117 (auto-revert-notify-watch-descriptor)
1118 (auto-revert-notify-modified-p): New defvars.
1119 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
1120 (auto-revert-notify-handler): New defuns.
1121 (auto-revert-mode, global-auto-revert-mode): Remove file watches
1122 when mode is disabled.
1123 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
1124 (auto-revert-buffers): Add file watches for active buffers.
1125
1126 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1127
1128 * cus-start.el (toplevel): Only allow float values for
1129 scroll-up-aggressively and scroll-down-aggressively.
1130 Allow any number for line-spacing.
1131
1132 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
1135 (doc-view-pdf->png-converter-function): Use mupdf if available.
1136 (doc-view-djvu->png-converter-function)
1137 (doc-view-ps->png-converter-function): Remove.
1138 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
1139 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
1140 (doc-view-already-converted-p): Adjust accordingly.
1141 (doc-view-mode-p): Simplify.
1142 (doc-view-enlarge): Use setq-local.
1143 (doc-view-pdf->png-converter-ghostscript)
1144 (doc-view-djvu->png-converter-ddjvu)
1145 (doc-view-pdf->png-converter-mupdf): Rework to call
1146 doc-view-start-process directly.
1147 (doc-view-pdf/ps->png): Simplify accordingly.
1148 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
1149 (doc-view-document->bitmap): Rename from doc-view-document->png.
1150 (doc-view-convert-current-doc): Merge pdf and djvu cases.
1151 (doc-view-set-slice-from-bounding-box): Fix completion table.
1152 (doc-view-mode): Use add-hook for after-revert-hook.
1153
1154 2013-01-10 Glenn Morris <rgm@gnu.org>
1155
1156 * emacs-lisp/authors.el (authors-ignored-files)
1157 (authors-valid-file-names, authors-renamed-files-alist):
1158 Add some more entries.
1159
1160 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
1161
1162 * image-mode.el (image-mode-winprops): Don't throw away the fallback
1163 `t' pseudo-window entry.
1164
1165 2013-01-10 Alan Mackenzie <acm@muc.de>
1166
1167 Fix bugs in the c-parse-state mechanism. Reuse some markers
1168 instead of continually generating new ones.
1169
1170 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
1171 (c-state-old-cpp-end-marker): New variables.
1172 (c-append-lower-brace-pair-to-state-cache): Start a backward
1173 search for "}" definitively outside CPP constructs.
1174 (c-remove-stale-state-cache): Inform the caller of a need to
1175 search back for a brace pair in certain circumstances.
1176 (c-state-maybe-marker): New macro.
1177 (c-parse-state): Reuse markers when appropriate.
1178
1179 2013-01-10 Glenn Morris <rgm@gnu.org>
1180
1181 * simple.el (execute-extended-command): Doc fix.
1182 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
1183
1184 2013-01-10 Chong Yidong <cyd@gnu.org>
1185
1186 * faces.el (read-face-name): Doc fix.
1187
1188 2013-01-10 Roland Winkler <winkler@gnu.org>
1189
1190 * emacs-lisp/crm.el: Allow any regexp for separators.
1191 (crm-default-separator): All spaces around the default comma separator.
1192 (crm--completion-command): New macro.
1193 (crm-completion-help, crm-complete, crm-complete-word): Use it.
1194 (crm-complete-and-exit): Handle non-single-char separators.
1195
1196 2013-01-09 Elias Pipping <pipping@lavabit.com>
1197
1198 * doc-view.el: Add support for DjVu (bug#13164).
1199 (doc-view-djvu->png-converter-function): New config var.
1200 (doc-view-single-page-converter-function, doc-view--image-type)
1201 (doc-view--image-file-extension): New vars.
1202 (doc-view-mode): Initialize them.
1203 (doc-view-goto-page): Use them.
1204 (doc-view-mode-p): Add support for ddjvu.
1205 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
1206 (doc-view-set-up-single-converter): New funs.
1207 (doc-view-pdf/ps->png): Extend for djvu.
1208 (doc-view-document->png): Rename from doc-view-pdf->png.
1209 (doc-view-convert-current-doc): Handle djvu.
1210 (doc-view-insert-image, doc-view-display)
1211 (doc-view-already-converted-p): Don't hardcode png.
1212 (doc-view-set-doc-type): Recognize djvu docs.
1213
1214 2013-01-09 Elias Pipping <pipping@lavabit.com>
1215
1216 * doc-view.el: Add support for mupdf converter (bug#13164).
1217 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
1218 (doc-view-ps->png-converter-function): New config vars.
1219 (doc-view-pdf->png-converter-ghostscript)
1220 (doc-view-ps->png-converter-ghostscript)
1221 (doc-view-pdf->png-converter-mupdf): New functions.
1222 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
1223
1224 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
1225
1226 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
1227 first in session cache: When `tramp-own-remote-path' is in
1228 `tramp-remote-path', the remote path is only set in the session
1229 cache.
1230
1231 2013-01-09 Glenn Morris <rgm@gnu.org>
1232
1233 * emacs-lisp/trace.el (trace-function-foreground)
1234 (trace-function-background): Doc fix.
1235
1236 2013-01-09 Juri Linkov <juri@jurta.org>
1237
1238 * international/mule-cmds.el (read-char-by-name): Move let-binding
1239 of completion-ignore-case around completing-read to fix regression
1240 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
1241 `string-match-p' using the nil value of `case-fold-search' and
1242 `completion-ignore-case' in `completion-pcm--all-completions'.
1243 (Bug#12615).
1244
1245 2013-01-09 Glenn Morris <rgm@gnu.org>
1246
1247 * progmodes/compile.el (compilation-parse-errors):
1248 Fix typo. (Bug#13369)
1249
1250 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1251
1252 * comint.el (comint-send-input): Check size of buffer before
1253 waiting for process output, in case already accepted. (Bug#13290)
1254
1255 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
1256
1257 Spelling fixes.
1258 * net/tramp-adb.el (tramp-adb-get-toolbox):
1259 Fix misspelling of 'unknown'.
1260
1261 2013-01-08 Juri Linkov <juri@jurta.org>
1262
1263 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1264 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1265 Use underline style wave on terminals that support it. (Bug#13000)
1266
1267 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1268
1269 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
1270 the predicate returns nil.
1271
1272 * simple.el: Use lexical-binding.
1273 (primitive-undo): Use pcase.
1274 (minibuffer-history-isearch-push-state): Use a closure.
1275
1276 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1277
1278 * simple.el (primitive-undo): Move from undo.c.
1279
1280 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1281
1282 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
1283 (cvs-mode-remove-handled): Use it (bug#13380).
1284
1285 * emacs-lisp/nadvice.el (advice--tweak): New function.
1286 (advice--remove-function, advice--subst-main): Use it.
1287
1288 * emacs-lisp/advice.el: Update commentary.
1289
1290 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
1291
1292 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1293 Remove spurious entry.
1294
1295 2013-01-08 Glenn Morris <rgm@gnu.org>
1296
1297 * net/tramp.el (tramp-default-host-alist): Add :version.
1298
1299 2013-01-08 Juri Linkov <juri@jurta.org>
1300
1301 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
1302 single completion. (Bug#12456)
1303 (info--manual-names): Expand node completions into an explicit list
1304 before appending it to another list. Filter out internal buffers
1305 with the leading space in the buffer name. (Bug#10771)
1306
1307 2013-01-08 Juri Linkov <juri@jurta.org>
1308
1309 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
1310 that defaults to the Top node.
1311 (Info-goto-node, Info-read-node-name): Doc fix to mention that
1312 the short format (FILENAME) goes to the Top node.
1313 (Info-build-node-completions): Rename arg `file' to `filename'.
1314 (Bug#13365)
1315
1316 2013-01-07 Bastien Guerry <bzg@gnu.org>
1317
1318 * menu-bar.el (menu-bar-search-documentation-menu):
1319 Use `apropos-user-option' and fix the help message.
1320
1321 2013-01-07 Bastien Guerry <bzg@gnu.org>
1322
1323 * apropos.el (apropos-do-all): Update docstring.
1324 (apropos-user-option-button): New face.
1325 (apropos-user-option): Rename from `apropos-variable' and update
1326 docstring.
1327 (apropos-variable): Rewrite, now show all variables by default.
1328 (apropos-print): Mention "User option" instead of "Variable" when
1329 printing doc for user options. (Bug#13276)
1330
1331 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
1332
1333 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1334 Handle filename correctly, when parsing "source -> target" symlink
1335 output.
1336 (tramp-adb-handle-set-file-times): New defun.
1337
1338 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
1339
1340 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
1341 advice list when the interactive-spec of ad-Advice-* changes.
1342
1343 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
1344
1345 * wid-edit.el (widget-default-get): Work for inlined elements.
1346 (Bug#12670)
1347
1348 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
1349
1350 * net/tramp.el (tramp-default-host-alist): New defcustom.
1351 (tramp-find-host): Use it.
1352 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
1353 `eshell-directory-change-hook'.
1354
1355 * net/tramp-adb.el (top): Add adb specific entry in
1356 `tramp-default-host-alist'.
1357 (tramp-adb-file-name-host): Remove function.
1358 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1359 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
1360
1361 * net/tramp-sh.el: Move eshell integration code to tramp.el.
1362
1363 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
1364
1365 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
1366
1367 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
1368
1369 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
1370 consist of more than one digit.
1371 (tramp-adb-file-name-handler-alist):
1372 Use `tramp-handle-file-exists-p' consistently.
1373 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
1374 (tramp-adb-handle-file-exists-p): Remove function.
1375 (tramp-adb-file-name-host): New defun.
1376 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
1377 Use it.
1378 (tramp-adb-maybe-open-connection): Set "remote-path" property.
1379
1380 2013-01-06 Chong Yidong <cyd@gnu.org>
1381
1382 * vc/vc.el (vc-next-action): Detect buffer modifications
1383 conflicting with locking VCS operation (Bug#11490).
1384
1385 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
1386
1387 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
1388
1389 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
1390 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
1391
1392 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
1393
1394 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
1395 parsing of ls output using regular expression (handle filenames
1396 with spaces). Use virtual device number.
1397 (tramp-do-parse-file-attributes-with-ls): New defun (Code
1398 cleanup).
1399
1400 2013-01-04 Daiki Ueno <ueno@gnu.org>
1401
1402 * epg.el: Silence byte-compiler warnings.
1403 (epg--start): Use delete-char instead of delete-backward-char.
1404 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
1405
1406 2013-01-04 Daiki Ueno <ueno@gnu.org>
1407
1408 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
1409 Suggested by Eli Zaretskii <eliz@gnu.org>.
1410
1411 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
1412
1413 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
1414 non-negative integers. Otherwise, the default values are used.
1415 (tramp-convert-file-attributes): Convert uid and gid to integers.
1416
1417 2013-01-04 Glenn Morris <rgm@gnu.org>
1418
1419 * term.el (term-handle-colors-array): Ensure face attributes
1420 are fully specified, not nil. (Bug#13337)
1421
1422 * term.el (term-default-fg-color, term-default-bg-color):
1423 Fix custom type.
1424
1425 * progmodes/etags.el (tags-compression-info-list): Doc fix.
1426 (tag-find-file-of-tag-noselect): Check auto-compression-mode
1427 rather than 'jka-compr being loaded. (Bug#13338)
1428
1429 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
1430
1431 * icomplete.el (icomplete-completions):
1432 Honor icomplete-prospects-height once more following
1433 2012-11-29 changes. (Bug#13224)
1434
1435 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1436
1437 * subr.el (internal--called-interactively-p--get-frame): Find aliases
1438 of called-interactively-p as well (bug#13237).
1439
1440 * view.el (view--enable, view--disable): Rename from view-mode-enable
1441 and view-mode-disable and assume it's called from view-mode.
1442 (view-mode-enable, view-mode-disable): Redefine as obsolete
1443 compatibility layer above view-mode.
1444 (view-mode-enter): Call `view-mode'.
1445
1446 * files.el (after-find-file): Call `view-mode'.
1447
1448 * doc-view.el (doc-view-scale-internally): New var.
1449 (doc-view-enlarge, doc-view-insert-image): Obey it.
1450
1451 2013-01-03 Daiki Ueno <ueno@gnu.org>
1452
1453 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
1454 exist. (Bug#13344)
1455
1456 2013-01-03 Glenn Morris <rgm@gnu.org>
1457
1458 * mail/rmail.el (rmail-set-header-1): Ignore case.
1459 Handle multi-line headers. (Bug#13330)
1460
1461 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
1462 Handle paragraph starting at beginning of buffer.
1463
1464 * subr.el (eval-after-load): Don't purecopy the form, so that it
1465 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
1466
1467 * emacs-lisp/byte-run.el (defun): Place cl declarations
1468 after any interactive spec. (Bug#13265)
1469
1470 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1471
1472 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
1473 defun. Don't check for DECL if DOCSTRING isn't a string.
1474 (defun): Likewise.
1475
1476 2013-01-02 Glenn Morris <rgm@gnu.org>
1477
1478 * eshell/em-cmpl.el (eshell-pcomplete):
1479 More thoroughly imitate pcomplete. (Bug#13293)
1480
1481 * files.el (parse-colon-path): Doc fix. (Bug#12351)
1482 Return nil for empty path elements. (Bug#13296)
1483
1484 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
1485
1486 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
1487 order to improve efficiency (Based on Daniel Colascione's
1488 <dancol@dancol.org> patch). (Bug#13182)
1489
1490 2013-01-02 Glenn Morris <rgm@gnu.org>
1491
1492 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
1493
1494 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
1495
1496 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
1497 neither DOCSTRING nor DECL was given. (Bug#13316)
1498
1499 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
1500
1501 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
1502 `error' call.
1503 (tramp-do-copy-or-rename-file): Ignore errors when calling
1504 `set-file-extended-attributes'.
1505
1506 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1507 Add handler for `file-acl'.
1508 (tramp-smb-handle-file-acl): New defun.
1509
1510 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
1511
1512 * calc/README: Mention ISO 8601 week-numbering dates.
1513
1514 2013-01-01 Martin Rudalics <rudalics@gmx.at>
1515
1516 * view.el (view-mode-enable): New argument run-view-mode-hook.
1517 Run view-mode-hook only when it's non-nil (Bug#13315).
1518 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
1519 argument t.
1520
1521 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
1522
1523 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
1524 (No device connected, invalid device name). (Bug #13299)
1525
1526 2012-12-31 Martin Rudalics <rudalics@gmx.at>
1527
1528 * window.el (window-resizable--p): Rename to window-resizable-p.
1529 (window-resize-no-error): New function.
1530
1531 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
1532 broken in fix from 2012-12-28.
1533
1534 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
1535
1536 * subr.el (special-form-p): Don't signal errors on undef aliases.
1537
1538 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
1539
1540 * calc/calc-forms.el (math-parse-date): Try using
1541 `math-parse-iso-date' when it looks like it might be needed.
1542 Allow times of 24:00.
1543 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
1544 of 24:00.
1545
1546 2012-12-30 Glenn Morris <rgm@gnu.org>
1547
1548 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
1549 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
1550 (rmail-summary-displayed, rmail-summary): Declare.
1551 (mairix-rmail-display): Just require rmail.
1552
1553 2012-12-30 Chong Yidong <cyd@gnu.org>
1554
1555 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
1556 check for the tarball contents.
1557
1558 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
1559
1560 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
1561 tarfile content listings (Bug#13136).
1562
1563 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
1564
1565 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
1566 Insert the undecoded text of the message being forwarded. (Bug#9521)
1567
1568 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
1569
1570 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
1571 integers, if they are real numbers. (Bug#13282)
1572
1573 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
1574 Return `t' on success.
1575
1576 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1577 Add handler for `set-file-selinux-context'.
1578
1579 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
1580
1581 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
1582 (tramp-sh-handle-set-file-acl): Return `t' on success.
1583
1584 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1585
1586 * files.el (backup-buffer-copy, basic-save-buffer-2):
1587 If set-file-extended-attributes fails, fall back on set-file-modes
1588 instead of signaling an error. (Bug#13298)
1589 (basic-save-buffer): Likewise.
1590
1591 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1592
1593 * progmodes/python.el: Support other commands triggering
1594 python-indent-line so indentation cycling continues to work.
1595 (python-indent-trigger-commands): New defcustom.
1596 (python-indent-line): Use it.
1597
1598 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1599
1600 * progmodes/python.el (python-shell-send-region): Add blank lines
1601 for non sent code so backtraces remain correct.
1602
1603 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
1604
1605 * progmodes/python.el: Remove cl dependency.
1606 (python-syntax-count-quotes): Replace incf call.
1607 (python-fill-string): Replace setf call.
1608
1609 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
1610
1611 * info.el (info-other-window): New arg, for consistency with info.
1612
1613 2012-12-28 Martin Rudalics <rudalics@gmx.at>
1614
1615 * mail/rmail.el (rmail-maybe-display-summary):
1616 Rewrite (Bug#13066).
1617
1618 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
1619
1620 * epg.el (epg--start): Modify process-environment locally.
1621
1622 2012-12-28 Daiki Ueno <ueno@gnu.org>
1623
1624 * epg.el: Support pinentry-curses.
1625 Suggested by Werner Koch in
1626 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
1627 (epg-agent-file, epg-agent-mtime): New variable.
1628 (epg--start): Record the modified time of gpg-agent socket file,
1629 to restore Emacs frame after pinentry-curses termination.
1630 (epg-wait-for-completion): Restore Emacs frame here.
1631
1632 2012-12-27 Juri Linkov <juri@jurta.org>
1633
1634 * info.el (Info-file-completions): New variable.
1635 (Info-read-node-name-1): Complete node names in the Info file
1636 when a file name is given. Call `Info-build-node-completions'
1637 with a file name.
1638 (Info-build-node-completions): Add new arg `file'. When it is
1639 non-nil, visit it in a temporary buffer and cache its completions in
1640 `Info-current-file-completions'. Move most of the function body to
1641 `Info-build-node-completions-1'.
1642 (Info-build-node-completions-1): New function with the body from
1643 `Info-build-node-completions'. (Bug#12456)
1644
1645 2012-12-27 Juri Linkov <juri@jurta.org>
1646
1647 * frame.el (frame-maximization-style): Remove user option.
1648 (cycle-frame-maximized): Remove function.
1649 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
1650 (toggle-frame-fullscreen): New command bound to <f11> instead of
1651 `toggle-frame-maximized'.
1652 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
1653
1654 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
1655
1656 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
1657
1658 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1659 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1660 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
1661 for `file-accessible-directory-p'. (Bug#13275)
1662
1663 2012-12-27 Sam Steingold <sds@gnu.org>
1664
1665 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
1666 continuations, see <http://stackoverflow.com/questions/3582436>.
1667
1668 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
1669
1670 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
1671 "module" and "def" to have indentation before them.
1672 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
1673
1674 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
1675
1676 2012-12-27 Alan Mackenzie <acm@muc.de>
1677
1678 Speed up fontification where there's large brace blocks.
1679 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
1680 to a call of c-beginning-of-decl-1.
1681
1682 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
1683
1684 * comint.el (comint-adjust-window-point): New function.
1685 (comint-postoutput-scroll-to-bottom):
1686 Call comint-adjust-window-point (Bug#13248).
1687
1688 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
1689
1690 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
1691 Rakefile regexp.
1692 (auto-mode-alist): Associate .gemspec files with ruby-mode
1693 (https://bugs.ruby-lang.org/issues/5453).
1694
1695 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
1696
1697 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
1698 Suppress coloring, if possible (required for BusyBox based systems like
1699 CyanogenMod).
1700 (tramp-adb-handle-file-attributes)
1701 (tramp-adb-handle-insert-directory)
1702 (tramp-adb-handle-file-name-all-completions): Use it.
1703 (tramp-adb-get-toolbox): New defun. Check for remote shell
1704 implementation (BusyBox or Toolbox).
1705
1706 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
1707
1708 * startup.el (initial-buffer-choice): Allow function as value
1709 (Bug#13251).
1710 (command-line-1): Handle case where initial-buffer-choice
1711 specifies a function.
1712 * server.el (server-execute): Handle case where
1713 initial-buffer-choice specifies a function.
1714
1715 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
1716
1717 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
1718 its own function.
1719 (smtpmail-try-auth-methods): Forget the user name/password if the
1720 login is unsuccessful (bug#12424).
1721
1722 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
1723
1724 * notifications.el (notifications-notify): Protect body with
1725 `with-demoted-errors'.
1726
1727 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1728 Check properties of remote device. Restart connection, if there is a
1729 change.
1730
1731 2012-12-21 Chong Yidong <cyd@gnu.org>
1732
1733 * sort.el (sort-subr): Doc fix (Bug#13056).
1734
1735 2012-12-21 Bastien Guerry <bzg@gnu.org>
1736
1737 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
1738
1739 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
1740
1741 * simple.el (process-file): Overwrite stderr file, if exists.
1742
1743 2012-12-21 Daiki Ueno <ueno@gnu.org>
1744
1745 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
1746 (epg-error): Set `error-message' property.
1747
1748 2012-12-21 Chong Yidong <cyd@gnu.org>
1749
1750 * international/mule-cmds.el (read-char-by-name): Signal an error
1751 if the user does not supply a valid character (Bug#13177).
1752
1753 * simple.el (transpose-subr-1): Preserve marker positions by
1754 changing the insertion sequence (Bug#13122).
1755
1756 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1757
1758 * simple.el (kill-region): Deactivate mark even for empty regions
1759 (Bug#13169).
1760
1761 2012-12-21 Chong Yidong <cyd@gnu.org>
1762
1763 * help-fns.el (describe-variable): Make sure we get the right
1764 buffer name (Bug#13105). Suggested by Kelly Dean.
1765
1766 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
1767
1768 * comint.el (comint-redirect-previous-input-string): New variable.
1769 (comint-redirect-setup, comint-redirect-cleanup)
1770 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
1771 (comint-redirect-preoutput-filter): Fix verbose message.
1772
1773 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
1774
1775 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
1776 is too long for Tramp. See discussion in
1777 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
1778
1779 * progmodes/compile.el (compilation-start): Remove line escape
1780 template.
1781
1782 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1783
1784 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
1785 Adjust comment.
1786
1787 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
1788
1789 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
1790 following non-comment text (bug#13207).
1791 (lm-header-multiline): Continuation lines need to be indented more than
1792 the first line.
1793 (lm-homepage): New function.
1794 (lm-with-file): Don't be confused if narrowing is in effect.
1795
1796 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
1797
1798 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
1799 very beginning of a hunk (e.g. killing the first line).
1800
1801 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
1802
1803 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
1804 and text properties from returned ACL string.
1805 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
1806 for "setfacl" command.
1807
1808 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
1809
1810 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
1811 `tramp-cleanup-this-connection', when the process has died.
1812 (Bug#13151)
1813
1814 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1815
1816 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
1817
1818 2012-12-17 Kevin Ryde <user42@zip.com.au>
1819
1820 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
1821
1822 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
1823
1824 Add support for preserving ACL entries of files.
1825
1826 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
1827 `set-file-acl' handlers.
1828
1829 * net/tramp-adb.el (tramp-adb-handle-copy-file):
1830 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1831
1832 * net/tramp-compat.el (tramp-compat-copy-file):
1833 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1834
1835 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1836 Add `file-acl' and `set-file-acl' handlers.
1837 (tramp-gvfs-handle-copy-file):
1838 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1839 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
1840 New defuns.
1841
1842 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1843 Add `file-acl' and `set-file-acl' handlers.
1844 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
1845 (tramp-sh-handle-set-file-acl): New defuns.
1846 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
1847 Handle PRESERVE-EXTENDED-ATTRIBUTES.
1848
1849 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1850 Add `file-acl' and `set-file-acl' handlers.
1851 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
1852
1853 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
1854
1855 * help-macro.el (make-help-screen): Instead of switch-to-buffer
1856 use pop-to-buffer with NORECORD argument t. As buffer name, use
1857 *Metahelp* with a leading space (Bug#13190).
1858
1859 2012-12-16 Romain Francoise <romain@orebokech.com>
1860
1861 * files.el (file-extended-attributes)
1862 (set-file-extended-attributes): New functions.
1863 (backup-buffer): Use them to handle both SELinux context and ACL
1864 entries.
1865 (backup-buffer-copy): Work with an alist of extended attributes,
1866 rather than an SELinux context.
1867 (basic-save-buffer-2): Ditto.
1868
1869 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
1870
1871 * battery.el (battery-bsd-apm): New function.
1872
1873 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
1874
1875 * calc/calc.el (calc-standard-date-formats): Adjust one of the
1876 standard date formats.
1877
1878 2012-12-15 Juri Linkov <juri@jurta.org>
1879
1880 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
1881 `isearch-insert-char-by-name'.
1882 (with-isearch-suspended): New defmacro with body mostly from
1883 `isearch-edit-string' except the part that sets
1884 `isearch-new-string' and `isearch-new-message'.
1885 (isearch-edit-string): Use new macro `with-isearch-suspended' with
1886 body that sets `isearch-new-string' and `isearch-new-message'.
1887 (isearch-insert-char-by-name): New command.
1888 * international/mule-cmds.el (read-char-by-name): Let-bind
1889 `enable-recursive-minibuffers' to t.
1890 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
1891
1892 2012-12-15 Juri Linkov <juri@jurta.org>
1893
1894 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
1895 (Bug#13175)
1896
1897 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
1898
1899 * dired-x.el (dired-guess-shell-command): Put colon at the end of
1900 the prompt. (Bug#13045)
1901
1902 2012-12-14 Glenn Morris <rgm@gnu.org>
1903
1904 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
1905 Try to include filename in non-bytecomp warning. (Bug#13132)
1906
1907 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1908
1909 Fix permissions bugs with setgid directories etc. (Bug#13125)
1910 * files.el (backup-buffer): Don't rely on 9th output of
1911 file-attributes, as it's now a placeholder. Instead, use the new
1912 optional arg of file-ownership-preserved-p.
1913 (file-ownership-preserved-p): New optional arg GROUP.
1914 Fix mishandling of setuid directories that would cause this
1915 function to return t when it should have returned nil.
1916 Document what happens if the file does not exist, and when
1917 it's not known whether the ownership will be preserved.
1918 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
1919 Likewise.
1920 (tramp-get-local-gid): Use group-gid for integer, as that's
1921 faster and more reliable.
1922
1923 2012-12-14 Julien Danjou <julien@danjou.info>
1924
1925 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
1926 Update keywords list, data type and PL/pgSQL.
1927
1928 2012-12-14 Dave Abrahams <dave@boostpro.com>
1929
1930 * vc/ediff-util.el (ediff-buffer-type): New function.
1931 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
1932 rather than taking it as as argument.
1933 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
1934
1935 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
1936
1937 * json.el: Add pretty-print option (bug#12634).
1938 (json-encoding-separator, json-encoding-default-indentation)
1939 (json--encoding-current-indentation, json-encoding-pretty-print)
1940 (json-encoding-lisp-style-closings): New vars.
1941 (json--with-indentation): New macro.
1942 (json-encode-hash-table, json-encode-alist, json-encode-plist)
1943 (json-encode-array): Use it to obey json-encoding-pretty-print.
1944 (json-pretty-print-buffer, json-pretty-print): New commands.
1945
1946 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
1947
1948 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1949 Extract `ruby-syntax-propertize-expansions'.
1950 (ruby-syntax-propertize-expansions): Only change syntax on
1951 certain string delimiters, to punctuation. This way the common
1952 functions like forward-word and thing-at-point still work.
1953 (ruby-match-expression-expansion): Improve readability.
1954 (ruby-block-contains-point): New function.
1955 (ruby-add-log-current-method): Handle several edge cases.
1956
1957 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
1958
1959 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
1960 unload-feature finishes even when aborting an ongoing edebug session.
1961 Also, do not worry about edebug-mode, unload-feature takes care of it.
1962
1963 2012-12-13 Andreas Schwab <schwab@suse.de>
1964
1965 * net/tls.el (tls-program): Update customize type.
1966
1967 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
1968
1969 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
1970 (edebug-setup-hook, cl-read-load-hooks): Use it.
1971 (edebug-unload-function): New function. (Bug#13163)
1972
1973 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
1974
1975 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
1976 Otherwise, there could be errors in autoloading. (Bug#13151)
1977
1978 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
1979
1980 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
1981 sequences.
1982
1983 2012-12-13 Alan Mackenzie <acm@muc.de>
1984
1985 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
1986 * progmodes/cc-engine.el (c-backward-comments): Add code to work
1987 around `forward-comment' not recognizing ^M as whitespace.
1988
1989 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
1990
1991 * progmodes/python.el (python-skeleton-class)
1992 (python-skeleton-def): Do not add space after defun name.
1993
1994 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
1995
1996 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
1997 (cl--symbol-function): Remove (now that funbound is like nil).
1998
1999 2012-12-12 Glenn Morris <rgm@gnu.org>
2000
2001 * button.el (button--area-button-p): Fix typo.
2002
2003 2012-12-12 Sam Steingold <sds@gnu.org>
2004
2005 * frame.el (frame-maximization-style): New user option.
2006 (toggle-frame-maximized): Toggle frame maximization according to
2007 `frame-maximization-style', bound to <f11>.
2008 (cycle-frame-maximized): Cycle between all maximization styles and
2009 non-maximized frame, bound to shift-<f11>.
2010
2011 2012-12-12 David Cadé <codename68@gmail.com>
2012
2013 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
2014
2015 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
2016
2017 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
2018 (eieio-override-prin1): Don't quote kewords and booleans.
2019 (object-write) <eieio-default-superclass>: Don't put closing parens
2020 on new line, avoid needless empty lines, align values that are objects
2021 with the slot keyword (instead of beginning on the same line).
2022 (eieio-list-prin1): Align value with slot keyword; increase
2023 eieio-print-depth before printing members of the list.
2024
2025 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2026
2027 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
2028 a display text-property.
2029 (report-emacs-bug-hook): Don't bother deleting it any more.
2030
2031 * hilit-chg.el (highlight-save-buffer-state): Delete.
2032 Use with-silent-modifications instead.
2033 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
2034
2035 * button.el: Handle buttons in display text-properties.
2036 (button--area-button-p, button--area-button-string):
2037 Use (STRING . STRING-POS) representation instead of just STRING.
2038
2039 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2040
2041 * makefile.w32-in (compile4-SH): Fix a typo that caused term
2042 subdirectory be skipped.
2043
2044 2012-12-11 Glenn Morris <rgm@gnu.org>
2045
2046 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
2047
2048 * progmodes/f90.el (f90-line-continued, f90-indent-region):
2049 Treat preprocessor lines embedded in continuations like comments.
2050 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
2051
2052 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
2053
2054 * calc/calc.el (calc-standard-date-formats): Add more date
2055 formats.
2056 * calc/calc-forms.el (math-parse-iso-date): New function.
2057 (math-parse-date): Use `math-parse-iso-date' when appropriate.
2058 (math-parse-iso-date-validate): Add extra error checking.
2059 (calc-date-notation): Add ability to access new date formats.
2060
2061 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2062
2063 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
2064 font-lock as well as when there's no text-property.
2065
2066 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
2067
2068 * hi-lock.el: Refine the choice of default face.
2069 (hi-lock-keyword->face): New function. Use it wherever we used
2070 cadadadr instead.
2071 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
2072 (hi-lock--last-face): Remove var.
2073 (hi-lock--unused-faces): New var to replace it.
2074 (hi-lock-read-face-name): Use/maintain it.
2075 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
2076 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
2077 if it has another face.
2078
2079 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2080
2081 * subr.el (w32notify-handle-event): New function.
2082 (inotify-handle-event): Doc fix.
2083
2084 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2085
2086 * subr.el (inotify-event-p, inotify-handle-event): New functions.
2087
2088 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
2089
2090 * simple.el (just-one-space): Doc fix.
2091
2092 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2093
2094 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
2095
2096 2012-12-10 Le Wang <l26wang@gmail.com>
2097
2098 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
2099 narrowed buffer (bug#12361).
2100
2101 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
2102
2103 * vc/vc-hooks.el (vc-state): Doc fix.
2104
2105 2012-12-10 Glenn Morris <rgm@gnu.org>
2106
2107 * mail/rmail.el (rmail-maybe-display-summary):
2108 Preserve buffer, in case select-window changes it. (Bug#13066)
2109
2110 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2111
2112 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
2113 cl-load-hook where they belong.
2114
2115 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
2116
2117 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
2118
2119 2012-12-09 Eli Zaretskii <eliz@gnu.org>
2120
2121 Parallelize byte compilation on MS-Windows.
2122 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
2123 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
2124 (WINS_BASIC): Define as concatenation of the above.
2125 (compile): Subdivide into 4 separate and independent jobs that can
2126 be run in parallel.
2127 (compile0-CMD, compile0-SH): New targets for compiling
2128 COMPILE_FIRST files, which are prerequisites for the rest of the
2129 byte-compilation.
2130 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
2131 New targets for parallel compilation with cmd.exe.
2132 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
2133 compiling under a Unixy shell.
2134
2135 2012-12-09 Chong Yidong <cyd@gnu.org>
2136
2137 * simple.el (set-mark-default-inactive): Delete this
2138 accidentally-introduced option.
2139 (set-mark-command, exchange-point-and-mark): Remove calls.
2140
2141 2012-12-09 Glenn Morris <rgm@gnu.org>
2142
2143 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
2144 Respect a defcustom's :set function, if appropriate. (Bug#109)
2145 (eval-defun): Doc fix.
2146
2147 2012-12-08 Juri Linkov <juri@jurta.org>
2148
2149 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
2150 (Info-fontify-node, Info-bookmark-make-record): Remove the
2151 file extension from Info-current-file (Bug#13016).
2152
2153 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2154
2155 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
2156 point, still provide some default.
2157 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
2158 names, since we don't use it right now. Actually return the list.
2159 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
2160
2161 2012-12-07 Chong Yidong <cyd@gnu.org>
2162
2163 * novice.el (disabled-command-function): Remove a spurious help
2164 xref (Bug#13043). Suggested by Kelly Dean.
2165
2166 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
2167 syntax is specified (Bug#13025).
2168
2169 * info.el (Info-set-mode-line): Remove the file extension from
2170 Info-current-file if there is one (Bug#13016).
2171
2172 2012-12-07 Glenn Morris <rgm@gnu.org>
2173
2174 * mail/rmail.el (rmail-mime-decoded): New permanent local.
2175 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
2176 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
2177 and rmail-mime-decoded. (Bug#9841)
2178
2179 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
2180 (batch-unrmail, unrmail): Doc fixes.
2181 (unrmail): Respect unrmail-mbox-format.
2182 * mail/rmail.el (rmail-mbox-format): New option.
2183 (rmail-show-message-1): Respect rmail-mbox-format.
2184
2185 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
2186
2187 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
2188
2189 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2190
2191 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
2192 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
2193 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
2194 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
2195 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
2196 (cl-progv): Don't rely on dynamic scoping to find the body.
2197 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
2198 (cl--proclaims-deferred): Rename from the "cl-" prefix.
2199 (cl-declaim): Use backquotes.
2200 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
2201 Use "cl--" prefix for the object's tag.
2202
2203 * ses.el: Use advice-add/remove.
2204 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
2205 (copy-region-as-kill, yank): Use advice-add.
2206 (ses-unload-function): Use advice-remove.
2207
2208 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
2209
2210 * button.el: Make them work in header-lines (bug#12817).
2211 (button-map): Add bindings for header-line and mode-line use.
2212 (button-get, button-put, button-label): `button' may now be a string.
2213 (button-activate): Don't make it a defsubst.
2214 (button--area-button-p, button--area-button-string): New functions.
2215 (make-text-button): Fix the return value when `beg' was a string.
2216 (push-button): Handle the mode-line case.
2217
2218 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2219
2220 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
2221 (sql-signum): Remove. Use `cl-signum' instead.
2222 (sql-read-passwd): Remove; use read-passwd instread.
2223 (sql-get-login-ext): Use read-string.
2224 (sql-get-login): Use dolist and pcase.
2225 (sql--completion-table): Rename from sql-try-completion.
2226 Use complete-with-action.
2227 (sql-mode): Don't change abbrev-all-caps globally.
2228 (sql-connect): Don't rely on dynamic scoping for `new-name'.
2229 (sql-postgres-completion-object): Initialize vars in their `let'.
2230 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
2231 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
2232 (sql-comint-interbase): Use a single append, without setq.
2233 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
2234
2235 * hi-lock.el: Rework the default face and the serialize regexp code.
2236 (hi-lock--auto-select-face-defaults): Remove.
2237 (hi-lock-string-serialize-serial): Remove.
2238 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
2239 make weak.
2240 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
2241 equal string.
2242 (hi-lock-set-pattern): Adjust accordingly.
2243 (hi-lock--regexps-at-point): Simplify accordingly.
2244 (hi-lock--auto-select-face-defaults): Remove.
2245 (hi-lock--last-face): New var to replace it.
2246 (hi-lock-read-face-name): Rewrite (bug#11095).
2247 (hi-lock-unface-buffer): Arrange for the face to be the next default.
2248
2249 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
2250
2251 * net/tramp.el (tramp-replace-environment-variables):
2252 Hide compiler warning.
2253 (tramp-file-name-for-operation): Remove `executable-find',
2254 `start-process', `call-process' and `call-process-region'.
2255
2256 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
2257
2258 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
2259 compatibility.
2260
2261 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
2262
2263 2012-12-06 Chong Yidong <cyd@gnu.org>
2264
2265 * ffap.el (ffap-replace-file-component): Fix typo.
2266
2267 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2268
2269 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
2270 fix open-paren-like token test (bug#12785).
2271
2272 2012-12-06 Glenn Morris <rgm@gnu.org>
2273
2274 * mail/rmailsum.el (rmail-new-summary): Tweak for
2275 rmail-maybe-display-summary changing buffer. (Bug#13066)
2276
2277 2012-12-06 Juri Linkov <juri@jurta.org>
2278
2279 * info.el (Info-fontify-node): Don't hide the last newline.
2280 (Bug#12272)
2281
2282 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
2283
2284 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
2285 so as to enable message-read-from-minibuffer to expand mail aliases.
2286
2287 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2288
2289 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
2290 the `intangible' property.
2291 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
2292
2293 2012-12-05 Deniz Dogan <deniz@dogan.se>
2294
2295 * net/rcirc.el (rcirc-urls): Update documentation.
2296 (rcirc-condition-filter): New function.
2297 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
2298 and exclude consecutive duplicate URLs (Bug#6082).
2299
2300 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
2301
2302 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2303 Check return code of copy command.
2304
2305 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
2306 Use group `tramp'. Add version.
2307
2308 2012-12-05 Chong Yidong <cyd@gnu.org>
2309
2310 * ffap.el (ffap-url-regexp): Don't require matching at front of
2311 string (Bug#4952).
2312 (ffap-url-p): If only a substring matches, return that.
2313 (ffap-url-at-point): Use the return value of ffap-url-p.
2314 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
2315 (find-file-at-point, dired-at-point, dired-at-point-prompter)
2316 (ffap-guess-file-name-at-point): Likewise.
2317 (ffap-replace-file-component): Fix typo.
2318
2319 * info.el (info-display-manual): Add existing Info buffers, whose
2320 files may not be in Info-directory-list, to the completion.
2321 (info--manual-names): New helper function.
2322
2323 2012-12-05 Glenn Morris <rgm@gnu.org>
2324
2325 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
2326 New functions, for detecting and resolving conflicts. (Bug#10709)
2327
2328 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
2329
2330 * hi-lock.el (hi-lock-auto-select-face): New user variable.
2331 (hi-lock-auto-select-face-defaults): New buffer local variable.
2332 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
2333 (hi-lock-unface-buffer): Prompt user with useful defaults.
2334 With prefix arg, unhighlight all hi-lock patterns in buffer.
2335
2336 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
2337
2338 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
2339
2340 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
2341
2342 * Makefile.in (TRAMP_SRC):
2343 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
2344
2345 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
2346
2347 * net/tramp-adb.el: New package.
2348
2349 2012-12-04 Chong Yidong <cyd@gnu.org>
2350
2351 * terminal.el: Move to obsolete/.
2352
2353 * longlines.el: Move to obsolete/.
2354
2355 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2356 Remove code referring to longlines mode.
2357
2358 2012-12-03 Juri Linkov <juri@jurta.org>
2359
2360 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
2361
2362 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2363
2364 * textmodes/ispell.el (ispell-init-process)
2365 (ispell-start-process, ispell-internal-change-dictionary):
2366 Make sure personal dictionary name is expanded after initial
2367 `default-directory' value. Use expanded strings for
2368 keep/restart checks and for value (Bug#13019).
2369
2370 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2371
2372 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
2373
2374 2012-12-03 Leo Liu <sdl.web@gmail.com>
2375
2376 * files.el (dir-locals-read-from-file): Check file non-empty
2377 before reading. (Bug#13038)
2378
2379 2012-12-03 Glenn Morris <rgm@gnu.org>
2380
2381 * jka-cmpr-hook.el (jka-compr-get-compression-info):
2382 Remove any version extension before checking filename. (Bug#13006)
2383 (jka-compr-compression-info-list): Belated :version bump.
2384
2385 2012-12-03 Chong Yidong <cyd@gnu.org>
2386
2387 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
2388
2389 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
2390 (buffer-menu): Doc fix (Bug#12294).
2391
2392 2012-12-03 Roland Winkler <winkler@gnu.org>
2393
2394 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
2395 of diary-show-all-entries in the diary buffer (Bug#12994).
2396
2397 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
2398
2399 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
2400 "<STDIN>". This is binary safe.
2401
2402 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
2403
2404 * calc/calc-forms.el (math-absolute-from-iso-dt)
2405 (math-date-to-iso-dt, math-parse-iso-date-validate)
2406 (math-iso-dt-to-date): New functions.
2407 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
2408 (math-fd-isoweekday): New variables.
2409 (calc-date-notation, math-parse-standard-date, math-format-date)
2410 (math-format-date-part): Add support for more formatting codes.
2411
2412 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
2413
2414 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
2415 current buffer's file name when called interactively (Bug#12488).
2416
2417 2012-12-02 Juri Linkov <juri@jurta.org>
2418
2419 * info.el (info-display-manual): Don't clobber an existing Info
2420 buffer (Bug#10770). Add completion (Bug#10771).
2421
2422 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
2423
2424 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
2425 before using it for comparison (Bug#5297).
2426
2427 2012-12-01 Jari Aalto <jari.aalto@cante.net>
2428
2429 * textmodes/css-mode.el (css-current-defun-name): New function.
2430 (css-mode): Use it.
2431
2432 * textmodes/sgml-mode.el (html-current-defun-name): New function.
2433 (html-mode): Use it.
2434
2435 2012-12-01 Chong Yidong <cyd@gnu.org>
2436
2437 Modularize add-log-current-defun (Bug#2224).
2438 Suggested by Jari Aalto.
2439
2440 * vc/add-log.el (add-log-current-defun-function): Doc fix.
2441 (add-log-current-defun): Move mode-specific code to other files.
2442 (add-log-lisp-like-modes, add-log-c-like-modes)
2443 (add-log-tex-like-modes): Variables deleted.
2444
2445 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
2446 (lisp-mode-variables): Use it.
2447
2448 * progmodes/cc-mode.el (c-common-init):
2449 * progmodes/cperl-mode.el (cperl-mode): Set a value for
2450 add-log-current-defun-function.
2451
2452 * progmodes/m4-mode.el (m4-current-defun-name): New function.
2453 (m4-mode): Use it.
2454
2455 * progmodes/perl-mode.el (perl-current-defun-name): New.
2456 (perl-mode): Use it.
2457
2458 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
2459 Use lisp-current-defun-name.
2460
2461 * textmodes/tex-mode.el (tex-current-defun-name): New.
2462 (tex-common-initialization): Use it.
2463
2464 * textmodes/texinfo.el (texinfo-current-defun-name): New.
2465 (texinfo-mode): Use it.
2466
2467 2012-12-01 Chong Yidong <cyd@gnu.org>
2468
2469 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
2470 * progmodes/autoconf.el (autoconf-mode):
2471 * progmodes/js.el (js-mode):
2472 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
2473 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
2474 * progmodes/perl-mode.el (perl-mode):
2475 * progmodes/sh-script.el (sh-mode, sh-set-shell):
2476 * textmodes/css-mode.el (css-mode):
2477 * textmodes/sgml-mode.el (html-mode, sgml-mode)
2478 (sgml-tags-invisible, sgml-guess-indent):
2479 * textmodes/tex-mode.el (tex-common-initialization)
2480 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
2481 (doctex-mode, plain-tex-mode, latex-mode):
2482 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
2483
2484 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
2485
2486 * vc/vc-hg.el (vc-hg-next-revision):
2487 Ensure use of default "tip" output format. (Bug#6968)
2488
2489 2012-12-01 Kim F. Storm <storm@cua.dk>
2490
2491 * startup.el (fancy-startup-tail): Add a clickable link
2492 (Bug#2176).
2493
2494 2012-12-01 Chong Yidong <cyd@gnu.org>
2495
2496 * startup.el (fancy-startup-tail): Improve the message about
2497 auto-save files (Bug#2176).
2498
2499 * files.el (recover-session): Improve the descriptive message, and
2500 use substitute-command-keys.
2501
2502 2012-12-01 Glenn Morris <rgm@gnu.org>
2503
2504 * ido.el (ido-file-internal):
2505 Handle other-window, other-frame for dired. (Bug#13036)
2506
2507 2012-11-30 Glenn Morris <rgm@gnu.org>
2508
2509 * icomplete.el (icomplete-separator): Fix :version.
2510
2511 2012-11-30 Chong Yidong <cyd@gnu.org>
2512
2513 * shell.el (shell): For C-u M-x shell, use an inactive shell
2514 buffer as the default (Bug#1975).
2515 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
2516 (shell-mode): Use them to reapply ansi colorization if Shell mode
2517 is re-enabled.
2518
2519 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
2520
2521 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
2522
2523 2012-11-30 Samuel Bronson <naesten@gmail.com>
2524
2525 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
2526 flag to xargs, for compatibility with BSD xargs (Bug#11703).
2527
2528 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
2529
2530 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
2531 by move-to-column (Bug#3234).
2532
2533 2012-11-30 Chong Yidong <cyd@gnu.org>
2534
2535 * longlines.el (longlines-wrap-line, longlines-encode-region):
2536 Preserve text properties (Bug#1425).
2537
2538 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2539
2540 * vc/vc.el (vc-register): Allow registering a file which is
2541 already registered with a different backend (Bug#10589).
2542
2543 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
2544 Stefan Monnier <monnier@iro.umontreal.ca>
2545
2546 * icomplete.el: Change separator; add ido-style commands.
2547 (icomplete-show-key-bindings): Remove custom var.
2548 (icomplete-get-keys): Remove function.
2549 (icomplete-forward-completions, icomplete-backward-completions):
2550 New commands.
2551 (icomplete-minibuffer-map): New var.
2552 (icomplete-minibuffer-setup): Use it.
2553 (icomplete-exhibit): Don't delay if the list of completions is known.
2554 (icomplete-separator): New custom.
2555 (icomplete-completions): Use it.
2556 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
2557 (minibuffer-force-complete-and-exit): New command.
2558 (minibuffer--complete-and-exit): New function extracted from
2559 minibuffer-complete-and-exit.
2560 (minibuffer-complete-and-exit): Use it.
2561
2562 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
2563 error message when the file doesn't exist (bug#12974).
2564
2565 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2566
2567 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
2568
2569 2012-11-29 Glenn Morris <rgm@gnu.org>
2570
2571 * files.el (hack-dir-local-variables): Warn if try to set
2572 coding via dir-locals, since it doesn't work. (Bug#7169)
2573
2574 Add desktop support for restoring vc-dir buffers. (Bug#10606)
2575 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
2576 Set buffer-local value of desktop-save-buffer.
2577 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
2578 New functions.
2579 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
2580 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
2581
2582 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
2583 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
2584 Doc fix.
2585 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
2586 Doc fixes.
2587
2588 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
2589
2590 * calc/calc-forms.el (calc-date-notation): Fix regexp
2591 used to find time codes. Fix symbol for seconds.
2592
2593 2012-11-27 Glenn Morris <rgm@gnu.org>
2594
2595 * emacs-lisp/derived.el (derived-mode-make-docstring):
2596 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
2597
2598 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2599
2600 * textmodes/table.el (table-insert): Don't use `symbol-name' on
2601 lexically scoped variables (bug#13005).
2602
2603 2012-11-27 Glenn Morris <rgm@gnu.org>
2604
2605 * vc/vc-hooks.el (vc-mistrust-permissions):
2606 Default to t, to avoid data-loss. (Bug#11490)
2607
2608 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
2609
2610 * progmodes/python.el (python-indent-guess-indent-offset):
2611 If indentation is guessed make python-indent-offset buffer-local.
2612
2613 Fix Imenu regression.
2614 * progmodes/python.el (python-nav-beginning-of-defun):
2615 Fix forward movement when statement(s) separates point from defun.
2616 (python-imenu-prev-index-position): New function.
2617
2618 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2619
2620 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
2621
2622 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
2623 Don't set buffer-file-type. Return nil. (Bug#12989)
2624
2625 2012-11-27 Glenn Morris <rgm@gnu.org>
2626
2627 * hippie-exp.el (hippie-expand-try-functions-list):
2628 Re-autoload it. (Bug#12982)
2629
2630 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2631
2632 * descr-text.el (describe-char-padded-string):
2633 Call internal-char-font only on GUI frames. (Bug#11964)
2634
2635 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
2636
2637 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
2638 and obsoletion message.
2639
2640 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
2641
2642 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
2643 the constructs to keep outside of the `cl-block' (bug#12977).
2644
2645 2012-11-27 Chong Yidong <cyd@gnu.org>
2646
2647 * mouse.el (mouse-drag-line): Even if the line is not draggable,
2648 keep reading until we get the up-event anyway, in order to process
2649 the up-event for mouse-1-click-follows-link (Bug#12971).
2650
2651 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
2652
2653 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
2654 base function is not yet defined (bug#12965).
2655 (ad-activate-advised-definition): Use ad-compile-function.
2656 (ad-activate): Use cond.
2657
2658 2012-11-25 Leo Liu <sdl.web@gmail.com>
2659
2660 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
2661 (Bug#12979)
2662
2663 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2664
2665 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
2666 reftex-section-info-function in order to be compatible with
2667 Texinfo integration.
2668
2669 * textmodes/reftex.el (reftex-section-pre-regexp)
2670 (reftex-section-post-regexp, reftex-section-info-function):
2671 New variable.
2672 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
2673 reftex-section-post-regexp, and reftex-section-info-function in order
2674 to be compatible with Texinfo integration.
2675
2676 * textmodes/reftex-toc.el (reftex-toc-promote-action):
2677 use reftex-section-pre-regexp variable in order to be compatible with
2678 Texinfo integration.
2679
2680 2012-11-25 Chong Yidong <cyd@gnu.org>
2681
2682 * faces.el: Make face-spec-set more analogous to setq.
2683 (face-spec-set): Change the third arg to specify whether this
2684 function is being called via defface, customize, or a third party.
2685 Set the appropriate symbol properties. Clear the override spec if
2686 setting via Custom. Initialize face if necessary. (Bug#4988)
2687 (face-spec-recalc): Allow theme faces to completely replace the
2688 defface spec, in the same way as custom faces (Bug#8454).
2689
2690 * cus-face.el (custom-declare-face): Move face initialization to
2691 face-spec-set.
2692 (custom-theme-set-faces): Don't initialize the face name here, as
2693 that is now done in face-spec-set.
2694
2695 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
2696 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
2697 Simplify by using the new arg to face-spec-set.
2698
2699 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
2700 reset face-override-spec too, and use custom-declare-face.
2701
2702 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
2703
2704 * term/ns-win.el (ns-initialize-window-system): Move creation of
2705 fontsets here (Bug#11964).
2706
2707 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
2708
2709 * ses.el (ses-rename-cell): Correct bug on mode-line update after
2710 cell renaming.
2711
2712 2012-11-24 Chong Yidong <cyd@gnu.org>
2713
2714 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
2715 obsolete.
2716
2717 * custom.el (custom-theme-set-variables): Use a topological sort
2718 for ordering by custom dependencies (Bug#12952).
2719 (custom--sort-vars, custom--sort-vars-1): New functions.
2720
2721 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
2722
2723 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
2724 lexical-binding (bug#12938).
2725
2726 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
2727
2728 * image-mode.el (image-transform-check-size): Use assertions only
2729 for images of type imagemagick.
2730
2731 Otherwise no error, image-transform-fit-to-{width,height} is
2732 silently ignored, as before. Doc fix.
2733
2734 2012-11-24 Chong Yidong <cyd@gnu.org>
2735
2736 * faces.el (color-defined-p): Doc fix (Bug#12853).
2737
2738 2012-11-24 Juri Linkov <juri@jurta.org>
2739
2740 * dired.el (dired-mark): Add optional arg `interactive'.
2741 Check for `use-region-p' if `interactive' is non-nil.
2742 (dired-unmark, dired-flag-file-deletion): Add optional arg
2743 `interactive'. Call `dired-mark' with the arg `interactive'.
2744 (Bug#10624)
2745
2746 * wdired.el: Revert 2012-10-17 change partly and replace it with
2747 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
2748 (wdired-finish-edit): Add marks for new file names to
2749 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
2750 after `revert-buffer'.
2751 (wdired-do-renames): Remove calls to `dired-remove-file',
2752 `dired-add-file', `dired-add-entry'. (Bug#11795)
2753
2754 2012-11-24 Alan Mackenzie <acm@muc.de>
2755
2756 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
2757
2758 Fix bugs in the state cache. Enhance a debugging mechanism.
2759 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
2760 "brace at column zero" strategy for C++.
2761 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
2762 (c-parse-state-point): New variable.
2763 (c-record-parse-state-state): Record old parse state with
2764 `copy-tree'. Record previous value of point.
2765 (c-debug-parse-state-double-cons): New debugging function.
2766 (c-debug-parse-state): Call the above new function.
2767 (c-toggle-parse-state-debug): Output a confirmatory message.
2768
2769 * progmodes/cc-mode.el (c-before-change, c-after-change):
2770 Call c-invalidate-state-cache from `c-before-change' instead of
2771 `c-after-change'.
2772
2773 2012-11-23 Chong Yidong <cyd@gnu.org>
2774
2775 * find-cmd.el (find-constituents): Add executable, ipath,
2776 readable, samefile, writable, daystart, regextype (Bug#12856).
2777
2778 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
2779
2780 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
2781
2782 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
2783
2784 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
2785 definition. This fixes a bootstrap failure.
2786 (calc-gregorian-switch): In menu, put dates before regions.
2787 This is easier to follow, lines up better in the menu, and lets us
2788 coalesce regions that switch at the same time. Give country
2789 names, not "Vatican", as that's better for non-expert users.
2790 Use names that are stable between the date of switch and now, e.g.,
2791 Bohemia and Moravia (which existed then and now) and not
2792 Czechoslovakia (which didn't exist then and doesn't exist now).
2793 What is now the U.S. mostly did not switch at the same time as
2794 Britain, so omit the U.S. Correct spelling of "Britain".
2795 Catholic Switzerland was too much of a mess, so omit it.
2796
2797 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
2798
2799 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
2800 after the variable is changed.
2801
2802 2012-11-21 Daniel Colascione <dancol@dancol.org>
2803
2804 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
2805 in SQL declarations for font-lock.
2806 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
2807
2808 2012-11-21 Glenn Morris <rgm@gnu.org>
2809
2810 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
2811 (face-italic-p): Add optional argument "inherit".
2812
2813 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
2814 Remove -p suffix from names, for consistency with other set-face-*.
2815 (set-face-inverse-video): Fix interactive spec.
2816 * play/gamegrid.el (gamegrid-make-mono-tty-face):
2817 * textmodes/table.el (table--update-cell-face):
2818 Use set-face-inverse-video rather than now obsolete alias.
2819
2820 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2821
2822 * simple.el (line-move): Don't call line-move-partial if
2823 scroll-conservatively is in effect. (Bug#12927)
2824
2825 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2826
2827 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
2828 Fallback on completion-at-point rather than
2829 pcomplete-expand-and-complete, and only if pcomplete actually failed.
2830 (eshell-cmpl-initialize): Setup completion-at-point.
2831
2832 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
2833
2834 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
2835
2836 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
2837
2838 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
2839 are remote, check out-of-band property for both.
2840
2841 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2842
2843 * window.el (switch-to-buffer): Re-add the warning that was lost in the
2844 code rewrite.
2845
2846 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2847
2848 More minor time fixes.
2849 * calendar/time-date.el: Commentary fix.
2850 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
2851 too much other code depends on (0 0) time stamps.
2852 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
2853 Add a couple of FIXME comments.
2854
2855 Minor cleanup for times as lists of four integers.
2856 * files.el (dir-locals-directory-cache):
2857 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
2858 Doc fixes.
2859 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
2860 * ps-bdf.el (bdf-file-newer-than-time):
2861 Process four-integers time stamps, not two. Doc fixes.
2862
2863 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2864
2865 * uniquify.el (uniquify-managed): Use defvar-local.
2866 (rename-buffer, create-file-buffer): Advise with advice-add.
2867 (uniquify-unload-function): Unadvise accordingly.
2868
2869 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
2870 (trace-buffer): Don't purecopy.
2871 (trace-entry-message, trace-exit-message): Add `context' arg.
2872 (trace--timer): New var.
2873 (trace-make-advice): Adjust for use in nadvice.
2874 Add `context' argument. Delay `display-buffer' via a timer.
2875 (trace-function-internal): Use advice-add.
2876 (trace--read-args): New function.
2877 (trace-function-foreground, trace-function-background): Use it.
2878 (trace-function): Rename to trace-function-foreground and redefine as
2879 an alias to that new name.
2880 (untrace-function, untrace-all): Adjust to the use of nadvice.
2881
2882 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
2883
2884 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
2885
2886 * subr.el (called-interactively-p-functions): New var.
2887 (internal--called-interactively-p--get-frame): New macro.
2888 (called-interactively-p, interactive-p): Rewrite in Lisp.
2889 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
2890 (called-interactively-p-functions): Use it.
2891 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
2892 (called-interactively-p-functions): Use it.
2893 * allout.el (allout-called-interactively-p): Don't assume
2894 called-interactively-p is a subr.
2895
2896 2012-11-20 Glenn Morris <rgm@gnu.org>
2897
2898 * profiler.el (profiler-report-mode-map): Add a menu.
2899 No need to bind `q' because we derive from special-mode.
2900 (profiler-report-find-entry): Handle calls from the menu-bar.
2901
2902 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
2903
2904 * emacs-lisp/byte-run.el (defun-declarations-alist):
2905 Allow a compiler-macro to be a lambda expression.
2906
2907 * progmodes/python.el: Use cl-lib. Move var declarations outside of
2908 eval-when-compile.
2909 (python-syntax-context): Add compiler-macro.
2910 (python-font-lock-keywords): Simplify with De Morgan.
2911
2912 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
2913
2914 * files.el (load-file): Require match in minibuffer selection, as was
2915 the case in Emacs-20 before we changed the spec to allow .elc files
2916 (bug#12935).
2917
2918 * json.el: Don't require cl since we don't use it.
2919 * color.el: Don't require cl.
2920 (color-complement): `caddr' -> `nth 2'.
2921
2922 * calendar/time-date.el (time-to-seconds): De-obsolete.
2923
2924 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
2925
2926 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
2927 year numbers.
2928 (math-date-to-julian-dt): Adjust the initial approximation for the
2929 year to deal with the new definition of the DATE.
2930
2931 2012-11-19 Daniel Colascione <dancol@dancol.org>
2932
2933 * term/w32-win.el (cygwin-convert-path-from-windows):
2934 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
2935
2936 2012-11-18 Chong Yidong <cyd@gnu.org>
2937
2938 * filecache.el (file-cache--read-list): New function.
2939 (file-cache-add-directory-list, file-cache-add-file-list)
2940 (file-cache-delete-file-list, file-cache-delete-directory-list):
2941 Use it to read a list of files or directories (Bug#12846).
2942 (file-cache-add-file, file-cache-add-directory)
2943 (file-cache-delete-file-list, file-cache-delete-file-regexp)
2944 (file-cache-delete-directory): Print an message.
2945
2946 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
2947
2948 * calc/calc-forms.el (math-date-to-dt): Use integer date when
2949 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
2950
2951 2012-11-18 Glenn Morris <rgm@gnu.org>
2952
2953 * image.el (insert-image, insert-sliced-image): Doc fix.
2954
2955 2012-11-18 Chong Yidong <cyd@gnu.org>
2956
2957 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
2958 (Bug#12810).
2959
2960 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
2961
2962 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
2963 response when the target file is in a subdirectory (Bug#12757).
2964
2965 2012-11-18 Chong Yidong <cyd@gnu.org>
2966
2967 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
2968
2969 2012-11-18 Glenn Morris <rgm@gnu.org>
2970
2971 * emacs-lisp/cl-lib.el (face-underline-p):
2972 Use set-face-underline rather than the alias set-face-underline-p.
2973
2974 * window.el (with-temp-buffer-window): Doc fix.
2975 * subr.el (with-output-to-temp-buffer):
2976 Add doc xref to with-temp-buffer-window.
2977
2978 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2979
2980 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
2981 * calc/calc.el (math-format-date-cache): Declare.
2982
2983 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2984
2985 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
2986 It also uses January 1, 1 AD as its day number 1.
2987 * calc/calc-forms.el (math-julian-date-beginning)
2988 (math-julian-date-beginning-int): Implement this.
2989
2990 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2991
2992 * descr-text.el (quail-find-key):
2993 * dired.el (desktop-file-name):
2994 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
2995 * generic-x.el (comint-mode, comint-exec):
2996 * image-dired.el (widget-forward):
2997 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
2998 (speedbar-change-expand-button-char)
2999 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
3000 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
3001 * printing.el (easy-menu-add-item, easy-menu-remove-item)
3002 (widget-field-action, widget-value-set):
3003 * speedbar.el (imenu--make-index-alist):
3004 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
3005 (ring-length, ring-insert):
3006 * vcursor.el (compare-windows-skip-whitespace):
3007 * woman.el (dired-get-filename):
3008 Declare functions.
3009
3010 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
3011
3012 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
3013
3014 * calc/calc.el (calc-gregorian-switch): New variable.
3015
3016 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
3017 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
3018 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
3019 (math-leap-year-p): Add option to distinguish between Julian
3020 and Gregorian calendars.
3021 (math-day-number): Use `math-day-in-year' to do the computations.
3022 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
3023 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
3024 to do the computations.
3025 (math-date-to-dt): Use `math-date-to-julian-dt' and
3026 `math-date-to-gregorian-dt' to do the computations.
3027 (calcFunc-weekday, math-format-date-part): Use the new version of
3028 the DATE to determine the weekday.
3029 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
3030 when necessary.
3031
3032 2012-11-17 Eli Zaretskii <eliz@gnu.org>
3033
3034 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
3035 Cygwin; otherwise use 'file:'. (Bug#12914)
3036 (cygwin-convert-path-from-windows): Declare, to avoid
3037 byte-compiler warnings.
3038
3039 2012-11-17 Andreas Politz <politza@fh-trier.de>
3040
3041 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
3042 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
3043 prefix and negative numeric prefix args (Bug#12795).
3044
3045 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
3046
3047 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
3048 Don't signal an error with a score that is too low to add to the
3049 list of top scores. (Bug#12779)
3050
3051 2012-11-17 Chong Yidong <cyd@gnu.org>
3052
3053 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
3054
3055 * filecache.el (file-cache-add-file): Handle relative file name in
3056 the argument (Bug#12694).
3057
3058 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
3059
3060 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
3061
3062 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3063
3064 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
3065
3066 * emacs-lisp/cl-lib.el: Set more meaningful version number.
3067
3068 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3069
3070 * window.el (enlarge-window, shrink-window): Don't mention return
3071 value in doc-string (Bug#12896).
3072 (window--display-buffer): Don't resize frames - it won't work
3073 with all window managers and defeat pop-up-frame-alist.
3074 (display-buffer-alist): In doc-string explain that CONDITION can
3075 be a function and which arguments are passed to it (Bug#12854).
3076 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
3077 expressions (Bug#12854).
3078 (display-buffer): Pass ACTION argument to
3079 display-buffer-assq-regexp.
3080
3081 2012-11-16 Glenn Morris <rgm@gnu.org>
3082
3083 * window.el (fit-frame-to-buffer-bottom-margin)
3084 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
3085
3086 * faces.el (face-underline-p): Use face-attribute-specified-or.
3087
3088 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
3089
3090 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
3091
3092 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3093
3094 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
3095
3096 2012-11-16 Glenn Morris <rgm@gnu.org>
3097
3098 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
3099 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
3100
3101 * faces.el (face-underline-p): Doc fix. Handle :underline being
3102 things other than `t' (a string, a list).
3103 (face-inverse-video-p): Doc fix.
3104 (set-face-underline): Rename it back from set-face-underline-p.
3105 Doc fix. Allow interactive input of values other than t.
3106 (read-face-attribute): Apply formatting to :underline,
3107 since like :box and :stipple it can take list values.
3108
3109 * term.el (ansi-term): Don't let C-x escape-char binding
3110 clobber the more standard C-c binding. (Bug#12842)
3111
3112 * subr.el (set-temporary-overlay-map): Doc fix.
3113
3114 2012-11-16 Martin Rudalics <rudalics@gmx.at>
3115
3116 * window.el (record-window-buffer)
3117 (display-buffer-record-window): When copying the markers to
3118 window-point preserve window-point-insertion-type. (Bug#12588)
3119
3120 2012-11-16 Glenn Morris <rgm@gnu.org>
3121
3122 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
3123 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
3124 Use new names for hooks rather than obsolete aliases.
3125
3126 2012-11-15 Daniel Colascione <dancol@dancol.org>
3127
3128 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
3129 prefix instead of "file:" so that when FILE-NAME begins with "//",
3130 as it does when the target file is on a network share, url-handler
3131 isn't confused.
3132
3133 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3134
3135 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
3136 a preactivated advice from an old advice.el; they're not compatible!
3137
3138 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
3139
3140 * emacs-lisp/nadvice.el (advice--make-interactive-form):
3141 Fix string-spec case.
3142
3143 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
3144
3145 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3146
3147 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
3148 (advice--buffer-local-function-sample): New var.
3149 (advice--set-buffer-local, advice--buffer-local): New functions.
3150 (add-function, remove-function): Use them.
3151
3152 2012-11-15 Drew Adams <drew.adams@oracle.com>
3153
3154 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
3155
3156 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3157
3158 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
3159 potential binding of print-gensym to t, and prettify (back)quotes in
3160 case they appear in args's default values (bug#12884).
3161
3162 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3163
3164 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
3165 (advice-eval-interactive-spec): New function.
3166 (advice--make-interactive-form): Support around advice (bug#12844).
3167
3168 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
3169
3170 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
3171 more strict. Add docstring.
3172 (ruby-expression-expansion-re): Extract from
3173 `ruby-match-expression-expansion'.
3174 (ruby-syntax-propertize-function): After everything else, search
3175 for expansions in string literals, mark their insides as
3176 whitespace syntax and save match data for font-lock.
3177 (ruby-font-lock-keywords): Use the 2nd group from expression
3178 expansion matches.
3179 (ruby-match-expression-expansion): Use the match data saved to the
3180 text property in ruby-syntax-propertize-function.
3181
3182 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3183
3184 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
3185 (bug#12879).
3186
3187 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3188
3189 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
3190 start/end keyword a bit harder. Works with different values of N.
3191 Add more comments.
3192 (ruby-end-of-block): Update accordingly.
3193
3194 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3195
3196 * woman.el (woman-file-name): Don't mess with unread-command-events
3197 (bug#12861).
3198
3199 * emacs-lisp/advice.el: Layer on top of nadvice.el.
3200 Remove out of date self-require hack.
3201 (ad-do-advised-functions): Use simple `dolist'.
3202 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
3203 (ad-advice-definition): Redefine as functions.
3204 (ad-advice-classes): Move before first use.
3205 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
3206 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
3207 (ad--defalias-fset): Remove functions.
3208 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
3209 (ad-get-orig-definition): Rewrite.
3210 (ad-make-advised-definition-docstring): Change base docstring.
3211 (ad-real-orig-definition): Rewrite.
3212 (ad-map-arglists): Change name of called function.
3213 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
3214 (ad-make-advised-definition): Simplify.
3215 (ad-assemble-advised-definition): Tweak for new calling context.
3216 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
3217 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
3218 function and call ad-activate if needed.
3219 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
3220 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
3221 (ad-compile-function): Compile ad-Advice-*.
3222 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
3223 (ad-start-advice, ad-stop-advice): Remove.
3224
3225 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3226
3227 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
3228 period before class method names, not after. Remove handling of
3229 one impossible case. Add comments.
3230
3231 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3232
3233 * emacs-lisp/advice.el: Remove support for freezing.
3234 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
3235 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
3236 Remove support for `freeze'.
3237
3238 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
3239 override the default.
3240 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
3241 cl--dotimes/dolist.
3242 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
3243 `cl' is loaded.
3244
3245 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
3246 from add-advice.
3247 (advice--strip-macro): New function.
3248 (advice--defalias-fset): Use them to handle macros.
3249 (advice-add): Use them.
3250 (advice-member-p): Correctly handle macros.
3251
3252 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3253
3254 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3255 Never font-lock the beginning of singleton class as heredoc.
3256
3257 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3258
3259 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
3260
3261 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
3262
3263 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
3264 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
3265 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
3266
3267 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
3268
3269 Fix end-of-defun misbehavior.
3270 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
3271 python-beginning-of-defun-function. Handle nested defuns
3272 correctly.
3273 (python-nav-end-of-defun): Rename from
3274 python-end-of-defun-function. Ensure forward movement.
3275 (python-info-current-defun): Reimplement to work as intended
3276 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
3277 parent defuns as soon as possible.
3278
3279 2012-11-13 Glenn Morris <rgm@gnu.org>
3280
3281 * progmodes/flymake.el (flymake-error-bitmap)
3282 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
3283 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
3284
3285 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
3286
3287 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
3288 backward, always stop at indentation. Reverts the change from
3289 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
3290
3291 2012-11-13 Glenn Morris <rgm@gnu.org>
3292
3293 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
3294 Add ibuffer-filter-by-derived-mode.
3295
3296 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
3297 the same name shadowing each other.
3298
3299 * window.el (with-temp-buffer-window): Doc tweak.
3300
3301 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
3302
3303 * help.el (temp-buffer-max-height):
3304 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
3305 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
3306
3307 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
3308
3309 * emacs-lisp/nadvice.el: New package.
3310 * subr.el (special-form-p): New function.
3311 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
3312 (elp-all-instrumented-list): Remove var.
3313 (elp-not-profilable): Remove elp-wrapper.
3314 (elp-profilable-p): Use autoloadp and special-form-p.
3315 (elp--advice-name): New const.
3316 (elp-instrument-function): Use advice-add.
3317 (elp--instrumented-p): New predicate.
3318 (elp-restore-function): Use advice-remove.
3319 (elp-restore-all, elp-reset-all): Use mapatoms.
3320 (elp-set-master): Use elp--instrumented-p.
3321 (elp--make-wrapper): Rename from elp-wrapper, return a function
3322 suitable for advice-add. Use cl-inf.
3323 (elp-results): Use mapatoms+elp--instrumented-p.
3324 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
3325 (debug-function-list): Remove var.
3326 (debug): Rename arg, and then let-bind it explicitly inside.
3327 (debugger-setup-buffer): Rename arg.
3328 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
3329 (debugger-frame-number): Adjust to new debug-on-entry setup.
3330 (debug--implement-debug-on-entry): Rename from
3331 implement-debug-on-entry, add argument.
3332 (debugger-special-form-p): Remove, use special-form-p instead.
3333 (debug-on-entry): Use advice-add.
3334 (debug--function-list): New function.
3335 (cancel-debug-on-entry): Use it, along with advice-remove.
3336 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
3337 (debugger-list-functions): Use debug--function-list instead of
3338 debug-function-list.
3339 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
3340 (ad-special-form-p): Remove, use special-form-p instead.
3341 (ad-set-advice-info): Use add-function and remove-function.
3342 (ad--defalias-fset): Adjust accordingly.
3343
3344 2012-11-10 Glenn Morris <rgm@gnu.org>
3345
3346 * mail/emacsbug.el (report-emacs-bug-tracker-url)
3347 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
3348 (report-emacs-bug-create-existing-bugs-buffer)
3349 (report-emacs-bug-parse-query-results)
3350 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
3351
3352 * term.el (term-default-fg-color, term-default-bg-color):
3353 Make obsolete, rather than just saying "deprecated" in the doc.
3354
3355 * term.el (term): Rename from `term-face'.
3356 (term-current-face, ansi-term-color-vector)
3357 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
3358 Update all users.
3359
3360 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
3361
3362 * server.el (server-create-window-system-frame): Handle Nextstep
3363 specially (Bug#12780).
3364
3365 2012-11-10 Glenn Morris <rgm@gnu.org>
3366
3367 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
3368 Unautoload, and make obsolete. (Bug#7449)
3369
3370 2012-11-10 Chong Yidong <cyd@gnu.org>
3371
3372 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
3373 rename from diff-remove-trailing-whitespace (Bug#12831).
3374
3375 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3376
3377 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
3378 miscompilation of trace.el.
3379
3380 2012-11-10 Glenn Morris <rgm@gnu.org>
3381
3382 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
3383
3384 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3385
3386 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
3387 (bug#12812).
3388
3389 2012-11-10 Chong Yidong <cyd@gnu.org>
3390
3391 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
3392 a defcustom with an appropriate :set function.
3393 (minibuffer-default--in-prompt-regexps): New function.
3394
3395 2012-11-10 Glenn Morris <rgm@gnu.org>
3396
3397 * emacs-lisp/cl.el (define-setf-expander, defsetf)
3398 (define-modify-macro): Doc fixes.
3399
3400 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
3401 (gv-define-simple-setter): Update doc of `fix-return'.
3402
3403 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3404
3405 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
3406 twice when `fix-return' is set (bug#12813).
3407
3408 * emacs-lisp/cl.el (defsetf): Pass the third arg to
3409 gv-define-simple-setter (bug#12812).
3410
3411 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
3412 (bug#12756).
3413
3414 2012-11-10 Glenn Morris <rgm@gnu.org>
3415
3416 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
3417
3418 * emacs-lisp/cl-extra.el (cl-prettyexpand):
3419 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
3420 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
3421 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
3422
3423 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
3424
3425 2012-11-10 Leo Liu <sdl.web@gmail.com>
3426
3427 * ido.el (ido-set-matches-1): Improve flex matching performance by
3428 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
3429
3430 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3431
3432 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
3433 (ad--defalias-fset): New function.
3434 (ad-safe-fset): Remove.
3435 (ad-make-freeze-definition): Use cl-letf*.
3436
3437 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3438
3439 * subr.el (dolist): Don't bind VAR in RESULT.
3440
3441 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
3442 (fset, documentation): Don't save real def since we don't advise.
3443 (ad-do-advised-functions): Remove problematic `result-form'.
3444 (ad-safe-fset): `ad-real-fset' => `fset'.
3445 (ad-read-advised-function): Don't assume that ad-do-advised-functions
3446 uses CL's dolist internally.
3447 (ad-arglist): Remove unused arg `name'.
3448 (ad-docstring, ad-make-advised-docstring):
3449 `ad-real-documentation' => `documentation'.
3450 (warning-suppress-types): Declare.
3451 (ad-set-arguments): Simple CSE.
3452 (ad-recover-normality): Sanity check.
3453
3454 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
3455 (funcall '(lambda ..) ..) into ((lambda ..) ..).
3456
3457 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
3458
3459 * ses.el: symbol to coordinate mapping is made by symbol property
3460 `ses-cell'. This means that the same mapping is done for all SES
3461 sheets. That is good enough for cells with standard A1 names, but
3462 not for named cell. So a hash map is added for the latter.
3463 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
3464 (ses-sym-rowcol): Use hashmap for named cell.
3465 (ses-is-cell-sym-p): New defun.
3466 (ses-decode-cell-symbol): New defun.
3467 (ses-create-cell-variable): Add cell to hashmap when name is not
3468 A1-like.
3469 (ses-rename-cell): Check that cell new name is not already in
3470 spreadsheet with the use of ses-is-cell-sym-p
3471 (ses-rename-cell): Use hash map for named cells, but accept also
3472 renaming back to A1-like.
3473
3474 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3475
3476 * emacs-lisp/advice.el: Use new dynamic docstrings.
3477 (ad-make-advised-definition-docstring, ad-advised-definition-p):
3478 Use dynamic-docstring-function instead of ad-advice-info.
3479 (ad--make-advised-docstring): New function extracted from
3480 ad-make-advised-docstring.
3481 (ad-make-advised-docstring): Use it.
3482 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
3483 from sql-help.
3484 (sql-help): Use it with dynamic-docstring-function.
3485
3486 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
3487
3488 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3489
3490 * files.el (hack-one-local-variable--obsolete): New function.
3491 (hack-one-local-variable): Use it for obsolete settings.
3492
3493 * subr.el (locate-user-emacs-file): If both old and new name exist, use
3494 the new name.
3495
3496 * progmodes/js.el (js--filling-paragraph): New var.
3497 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
3498 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
3499 less sneaky.
3500
3501 2012-11-08 Julien Danjou <julien@danjou.info>
3502
3503 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
3504 `auto-mode-alist' (Bug#12835).
3505
3506 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3507
3508 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
3509 (perl--prettify-symbols-alist): New const.
3510 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
3511 New functions.
3512 (perl-font-lock-keywords-2): Use them.
3513 (perl-electric-noindent-p): New function.
3514 (perl-mode): Use it to set up electric-indent-mode.
3515 (perl-electric-terminator, perl-indent-command): Mark obsolete.
3516 (perl-mode-map): Remove bindings for them.
3517 (perl-imenu-generic-expression, perl-outline-level):
3518 Match functions&packages in column>0.
3519
3520 * env.el (env--substitute-vars-regexp): New const.
3521 (substitute-env-vars): Use it. Add `only-defined' arg.
3522 * net/tramp.el (tramp-replace-environment-variables): Use it.
3523
3524 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3525 Byte-compile *before* eval in eval-and-compile.
3526 (byte-compile-log-warning): Remove redundant inhibit-read-only.
3527 (byte-compile-file-form-autoload): Don't hide actual definition.
3528 (byte-compile-maybe-guarded): Accept `functionp' as well.
3529
3530 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
3531
3532 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
3533
3534 * notifications.el (notifications-get-server-information-method):
3535 New defconst.
3536 (notifications-get-capabilities): Fix docstring.
3537 (notifications-get-server-information): New defun.
3538
3539 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3540
3541 * textmodes/ispell.el (ispell-region): Standard re-indent for better
3542 readability.
3543
3544 * textmodes/ispell.el: Experimental support for support debugging.
3545 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
3546 buffer for ispell.
3547 (ispell-print-if-debug): New function to print stuff to
3548 `ispell-debug-buffer' if debugging is enabled.
3549 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
3550 show some debugging info.
3551 (ispell-buffer-with-debug): New function that creates a debugging
3552 buffer and calls `ispell-buffer' with debugging enabled.
3553
3554 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
3555 comment in autoconf mode. (Bug#12768)
3556
3557 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3558
3559 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
3560 frame-first-window, frame-root-window, frame-selected-window,
3561 minibuffer-selected-window, minibuffer-window,
3562 window-absolute-pixel-edges, window-at, window-body-height,
3563 window-body-width, window-display-table, window-combination-limit,
3564 window-frame, window-fringes, window-inside-absolute-pixel-edges,
3565 window-inside-edges, window-inside-pixel-edges, window-left-child,
3566 window-left-column, window-margins, window-next-buffers,
3567 window-next-sibling, window-new-normal, window-new-total,
3568 window-normal-size, window-parameter, window-parameters, window-parent,
3569 window-pixel-edges, window-point, window-prev-buffers,
3570 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
3571 window-start, window-text-height, window-top-child, window-top-line,
3572 window-total-height, window-total-width and window-use-time to the list
3573 of functions without side-effects.
3574 (toplevel): Add window-valid-p to the list of error-free functions
3575 without side-effects.
3576
3577 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3578
3579 * textmodes/ispell.el (ispell-program-name):
3580 Update spellchecker parameters when customized.
3581
3582 2012-11-04 Glenn Morris <rgm@gnu.org>
3583
3584 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
3585
3586 2012-11-04 Chong Yidong <cyd@gnu.org>
3587
3588 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
3589 same-window-* variables.
3590
3591 2012-11-04 Juri Linkov <juri@jurta.org>
3592
3593 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
3594 (isearch-describe-key, isearch-describe-mode): Use a display
3595 action instead of binding same-window-* variables (Bug#10040).
3596
3597 2012-11-03 Glenn Morris <rgm@gnu.org>
3598
3599 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
3600 Rename handler properties back from cl-- to cl-. (Bug#12788)
3601
3602 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
3603
3604 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3605
3606 * term/pc-win.el: Don't load term/internal from here.
3607
3608 * loadup.el: Load term/internal from here.
3609
3610 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
3611
3612 * progmodes/python.el (inferior-python-mode): Fix hang in
3613 jit-lock (Bug#12645).
3614
3615 2012-11-03 Martin Rudalics <rudalics@gmx.at>
3616
3617 * window.el (switch-to-visible-buffer)
3618 (switch-to-buffer-preserve-window-point): Fix doc-strings.
3619
3620 2012-11-03 Glenn Morris <rgm@gnu.org>
3621
3622 * emacs-lisp/cl-lib.el (cl--random-time):
3623 Rename from cl-random-time. (Bug#12773)
3624 (cl--gensym-counter, cl--random-state): Update callers.
3625 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
3626
3627 2012-11-03 Chong Yidong <cyd@gnu.org>
3628
3629 * cus-start.el: Make cursor-type customizable (Bug#11633).
3630
3631 2012-11-02 Glenn Morris <rgm@gnu.org>
3632
3633 * filecache.el: No need to load find-lisp when compiling.
3634 (find-lisp-find-files): Autoload it.
3635 (file-cache-add-directory-recursively): Don't require find-lisp.
3636
3637 * image.el (image-type-from-file-name): Trivial simplification.
3638
3639 * emacs-lisp/bytecomp.el (byte-compile-eval):
3640 Decouple "noruntime" and "cl-functions" warnings.
3641
3642 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
3643
3644 * play/gomoku.el (gomoku-display-statistics): Update mode line
3645 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
3646
3647 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3648
3649 * window.el (quit-restore-window): If the window has been
3650 created on an existing frame and ended up as the sole window on
3651 that frame, do not delete it (Bug#12764).
3652
3653 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
3654
3655 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3656 Rename from sh--inside-arithmetic-expression, handle more cases
3657 (bug#11263).
3658
3659 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
3660 (sh-font-lock-open-heredoc): Use it (bug#12770).
3661
3662 2012-10-30 Glenn Morris <rgm@gnu.org>
3663
3664 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
3665
3666 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
3667
3668 2012-10-29 Chong Yidong <cyd@gnu.org>
3669
3670 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
3671 function key is stored in a keyboard macro (Bug#4894).
3672
3673 * thingatpt.el (number-at-point): Apply a thing-at-point property.
3674
3675 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3676
3677 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
3678 header comments".
3679 (diff-unified->context, diff-context->unified)
3680 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
3681
3682 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
3683
3684 * files.el (find-alternate-file): Only ask one question (bug#12487).
3685
3686 2012-10-29 Chong Yidong <cyd@gnu.org>
3687
3688 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
3689 Suggested by Dan Nicolaescu (Bug#6326).
3690
3691 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
3692
3693 * startup.el (fancy-about-screen): Don't message (Bug#12680).
3694
3695 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
3696
3697 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
3698
3699 * face-remap.el (face-remap-add-relative): Handle the case where a
3700 face-remapping-alist entry is a cons cell (Bug#12762).
3701
3702 2012-10-29 Kevin Ryde <user42@zip.com.au>
3703
3704 * woman.el (woman-parse-numeric-value): Handle picas correctly
3705 (Bug#12639).
3706
3707 2012-10-29 Glenn Morris <rgm@gnu.org>
3708
3709 * emacs-lisp/cl.el (defsetf): Doc fix.
3710
3711 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
3712
3713 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
3714 syntax to the matching opener, if any (bug#12547).
3715 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
3716 matching open as a "case-(".
3717 (sh-smie-rc-grammar): Add a corresponding rule for it.
3718
3719 2012-10-28 Daniel Hackney <dan@haxney.org>
3720
3721 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
3722 "PKGNAME-autoloads.el" in case we created it.
3723
3724 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3725
3726 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
3727 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
3728 (completion--twq-all): Disable too-strict assertions.
3729
3730 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
3731
3732 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3733
3734 * profiler.el (profiler-report-make-entry-part): Fix help-echo
3735 text to match the real keybindings.
3736
3737 2012-10-27 Juri Linkov <juri@jurta.org>
3738
3739 * wdired.el (wdired-keep-marker-rename): New defcustom.
3740 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
3741 (Bug#11795)
3742
3743 * dired.el (dired-keep-marker-rename): Add reference to
3744 `wdired-keep-marker-rename' in the docstring.
3745 Add default character value ?R to display initially in
3746 Customization UI instead of ?@.
3747
3748 2012-10-27 Martin Rudalics <rudalics@gmx.at>
3749
3750 * window.el (display-buffer): In doc-string describe
3751 window-height and window-width alist entries.
3752
3753 * time.el (display-time-world): Restore fit-window-to-buffer
3754 behavior.
3755
3756 2012-10-27 Chong Yidong <cyd@gnu.org>
3757
3758 * subr.el (insert-buffer-substring-as-yank): Doc fix.
3759
3760 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
3761
3762 * minibuffer.el (completion-category-overrides): New completion
3763 category `bookmark' (bug#11131).
3764
3765 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
3766
3767 * emacs-lisp/advice.el (ad-assemble-advised-definition):
3768 Silence bogus compiler warnings for ad-do-it.
3769
3770 * bookmark.el (bookmark-completing-read): Set the completion category
3771 to `bookmark' (bug#11131).
3772
3773 2012-10-26 Bastien <bzg@altern.org>
3774 Stefan Monnier <monnier@iro.umontreal.ca>
3775
3776 * face-remap.el: Use lexical-binding.
3777 (text-scale-adjust): Improve docstring. Use itself for the temporary
3778 overlay-map bindings, so as to repeat the "Use..." message each time.
3779
3780 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
3781
3782 * emacs-lisp/macroexp.el (macroexp--expand-all):
3783 Obey byte-compile-warning-enabled-p (bug#12486).
3784
3785 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
3786 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
3787
3788 2012-10-26 Martin Rudalics <rudalics@gmx.at>
3789
3790 * mouse.el (mouse-drag-line): Move last form into preceding when
3791 clause (Bug#12731).
3792
3793 * help.el (resize-temp-buffer-window): Fix doc-string.
3794
3795 2012-10-25 David Engster <deng@randomsample.de>
3796
3797 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
3798 Remove. This feature is already integrated in imenu.
3799
3800 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
3801 always loaded. Require `speedbar' unconditionally.
3802
3803 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
3804
3805 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
3806
3807 * minibuffer.el (minibuffer-force-complete): Fix thinko.
3808
3809 * net/ldap.el (ldap-search-internal): The official ldif format starts
3810 with a "version: 1" header (bug#12724).
3811
3812 * emacs-lisp/package.el (package-installed-p): Warn if not ready
3813 (bug#12721).
3814
3815 2012-10-25 Glenn Morris <rgm@gnu.org>
3816
3817 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
3818
3819 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3820
3821 * minibuffer.el (minibuffer-force-complete): Use one more marker
3822 for the temporary-overlay-map command (bug#12619).
3823
3824 2012-10-24 Chong Yidong <cyd@gnu.org>
3825
3826 * time.el (display-time-world-mode): Derive from special-mode.
3827 (display-time-world): Use display-buffer (Bug#12708).
3828 (display-time-world-mode-map): Variable deleted.
3829 (display-time-world-display): Wrap the final delete-char inside
3830 inhibit-read-only.
3831
3832 2012-10-24 Chong Yidong <cyd@gnu.org>
3833
3834 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
3835 Doc fix.
3836
3837 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
3838
3839 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
3840
3841 * minibuffer.el (completion--all-sorted-completions-location): New var.
3842 (completion--cache-all-sorted-completions)
3843 (completion--flush-all-sorted-completions): Use it.
3844 (completion-in-region, completion-in-region--postch)
3845 (completion-at-point, completion-help-at-point): Use markers in
3846 completion-in-region--data (bug#12619).
3847
3848 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3849
3850 * progmodes/compile.el (compilation-start): Try to handle common
3851 quoting of `cd' argument (bug#12640).
3852
3853 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
3854 (bug#12671).
3855
3856 2012-10-23 Glenn Morris <rgm@gnu.org>
3857
3858 * progmodes/gud.el (gud-menu-map):
3859 Check gdb-active-process is bound. (Bug#12358)
3860
3861 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3862
3863 * repeat.el (repeat): Set real-this-command (bug#12232).
3864
3865 * htmlfontify.el (hfy-post-html-hook):
3866 * filesets.el (filesets-cache-fill-content-hook):
3867 * arc-mode.el (archive-extract-hook):
3868 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
3869 * net/rcirc.el (rcirc-sentinel-functions)
3870 (rcirc-receive-message-functions, rcirc-activity-functions)
3871 (rcirc-print-functions):
3872 * net/dbus.el (dbus-event-error-functions):
3873 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
3874 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
3875 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
3876 * term/sun.el (sun-raw-prefix-hooks):
3877 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
3878
3879 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
3880
3881 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
3882 Set `tramp-chunksize' to 1. This improves the performance.
3883 (tramp-smb-wait-for-output): Add timeout to
3884 `tramp-accept-process-output' calls.
3885
3886 2012-10-23 Chong Yidong <cyd@gnu.org>
3887
3888 * faces.el (font-list-limit): Define as an obsolete variable.
3889
3890 * startup.el (command-line):
3891 * cus-start.el: Don't refer to font-list-limit.
3892
3893 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
3894
3895 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
3896
3897 * subr.el (internal-temp-output-buffer-show): Rename from
3898 temp-output-buffer-show, since previously compiled files expect this name.
3899
3900 2012-10-23 Glenn Morris <rgm@gnu.org>
3901
3902 * image.el (image-type-from-file-name): If multiple types match,
3903 return the first one that is supported. (Bug#9045)
3904
3905 2012-10-22 Glenn Morris <rgm@gnu.org>
3906
3907 * image.el (imagemagick-enabled-types): Doc fix.
3908
3909 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
3910
3911 * progmodes/which-func.el (which-func-current): The hash-table may have
3912 an explicit nil (bug#12338).
3913
3914 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
3915
3916 * electric.el (electric-pair-delete-selection-self-insert-function):
3917 Rename to electric-pair-will-use-region, return a boolean.
3918 (electric-pair-mode): Adjust accordingly. Don't require delsel.
3919
3920 * delsel.el (delete-selection-helper): Use a function instead of a hook.
3921 (delete-selection-pre-hook): Use use-region-p.
3922 (delete-selection-self-insert-function): Remove.
3923 (self-insert-command): Obey self-insert-uses-region-functions.
3924 (self-insert-iso): Revert to previous setting, since we don't actually
3925 know what that command does.
3926 (delete-selection-self-insert-hooks): Remove.
3927
3928 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
3929
3930 * delsel.el (delete-selection-helper): New function, extracted from
3931 delete-selection-pre-hook.
3932 (delete-selection-pre-hook): Use it.
3933 (delete-selection-self-insert-function): New function.
3934 (delete-selection-self-insert-hooks): New hook.
3935 (self-insert-command, self-insert-iso): Use it.
3936 * electric.el (electric-pair-syntax): New function, extracted from
3937 electric-pair-post-self-insert-function.
3938 (electric-pair-post-self-insert-function): Use it.
3939 (electric-pair-delete-selection-self-insert-function): New function.
3940 (electric-pair-mode): Require delsel and setup
3941 delete-selection-self-insert-hooks (bug#11520).
3942
3943 2012-10-20 Chong Yidong <cyd@gnu.org>
3944
3945 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
3946 no changes to show (Bug#12586).
3947
3948 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
3949 list explicitly (Bug#12571).
3950
3951 2012-10-20 Arne Jørgensen <arne@arnested.dk>
3952
3953 * progmodes/flymake.el (flymake-create-temp-inplace):
3954 Use file-truename.
3955
3956 2012-10-20 Eli Zaretskii <eliz@gnu.org>
3957
3958 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
3959
3960 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
3961
3962 * calc/calc-units.el (math-extract-units): Properly extract powers
3963 of units.
3964
3965 2012-10-20 Daniel Colascione <dancol@dancol.org>
3966
3967 * frame.el (make-frame): Set x-display-name as we used to in order
3968 to unbreak creating an X11 frame from an Emacs daemon started
3969 without a display.
3970
3971 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3972
3973 * minibuffer.el (minibuffer-force-complete): Make the next completion use
3974 the same completion-field (bug#12221).
3975
3976 2012-10-19 Martin Rudalics <rudalics@gmx.at>
3977
3978 * emacs-lisp/debug.el (debug): Record height of debugger window
3979 also when debugger will be back (Bug#8789).
3980
3981 2012-10-18 Chong Yidong <cyd@gnu.org>
3982
3983 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3984 Convert to defcustom.
3985 (gdb-get-source-file): Don't bind pop-up-windows.
3986
3987 * progmodes/gud.el (gud-display-line): Don't specially re-use
3988 other frames for the gdb-mi case (Bug#12648).
3989
3990 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
3991
3992 * emacs-lisp/advice.el: Clean up commentary a bit.
3993 (ad-do-advised-functions, ad-with-originals): Use `declare'.
3994 (byte-code-function-p): Never redefine.
3995
3996 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
3997
3998 2012-10-18 Glenn Morris <rgm@gnu.org>
3999
4000 * dired.el (dired-sort-toggle): Some ls implementations only allow
4001 a single option string. (Bug#12666)
4002
4003 * minibuffer.el (completion-cycle-threshold): Doc fix.
4004
4005 2012-10-17 Kenichi Handa <handa@gnu.org>
4006
4007 * international/mule.el (set-keyboard-coding-system):
4008 Recover input meta mode when the new coding system doesn not use 8-bit.
4009 Supply TERMINAL arg to set-input-meta-mode.
4010
4011 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
4012
4013 * wdired.el (wdired-old-marks): New variable.
4014 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
4015 (wdired-do-renames): Move point with renamed file and don't lose
4016 mark status (Bug#11795).
4017
4018 2012-10-16 Juri Linkov <juri@jurta.org>
4019
4020 * replace.el (query-replace-help): Mention multi-buffer replacement
4021 keys in the Help message. (Bug#12655)
4022
4023 2012-10-15 Chong Yidong <cyd@gnu.org>
4024
4025 * emacs-lisp/byte-run.el (defsubst): Doc fix.
4026
4027 2012-10-14 Eli Zaretskii <eliz@gnu.org>
4028
4029 * window.el (display-buffer): Doc fix.
4030
4031 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4032 Adjust the msft regexp to the output of Studio 2010, and move msft
4033 before edg-1. See the discussion on emacs-devel,
4034 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
4035 for the details.
4036
4037 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
4038
4039 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
4040 (oset): Move uses of object-class-fast macro after its definition.
4041
4042 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
4043
4044 2012-10-13 Chong Yidong <cyd@gnu.org>
4045
4046 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
4047 enabled, re-enable it (Bug#11963).
4048
4049 2012-10-13 Martin Rudalics <rudalics@gmx.at>
4050
4051 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
4052 non-nil, restore window configuration (Bug#12623).
4053
4054 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4055
4056 * help-fns.el (describe-variable, describe-function-1):
4057 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
4058
4059 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
4060
4061 2012-10-12 Glenn Morris <rgm@gnu.org>
4062
4063 * mail/rmailsum.el (rmail-header-summary):
4064 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
4065
4066 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
4067
4068 * progmodes/python.el (python-mode-map):
4069 Replace subtitute-key-definition with proper command remapping.
4070 (python-nav--up-list): Fix behavior for blocks on the same level.
4071
4072 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4073
4074 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
4075
4076 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
4077 changes to the format of load-history.
4078
4079 * international/mule-cmds.el (read-char-by-name): Move let-binding of
4080 completion-ignore-case in case that var is buffer-local (bug#12615).
4081
4082 2012-10-11 Kenichi Handa <handa@gnu.org>
4083
4084 * international/eucjp-ms.el: Re-generated.
4085
4086 2012-10-10 Kenichi Handa <handa@gnu.org>
4087
4088 * select.el (xselect--encode-string): If a coding is specified for
4089 selection, and that is compatible with COMPOUND_TEXT, use it.
4090
4091 2012-10-10 Martin Rudalics <rudalics@gmx.at>
4092
4093 * window.el (switch-to-buffer-preserve-window-point): New option.
4094 (switch-to-buffer):
4095 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
4096
4097 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4098
4099 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
4100 Don't document nil as a useful value (bug#12583).
4101
4102 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
4103
4104 * net/tramp.el (tramp-debug-message):
4105 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
4106 (with-tramp-progress-reporter): Rename from
4107 `tramp-with-progress-reporter'.
4108 (with-tramp-file-property, with-tramp-connection-property):
4109 Move from tramp-cache.el, rename from `with-file-property' and
4110 `with-connection-property', respectively.
4111
4112 * net/tramp-cache.el: Remove `with-file-property' and
4113 `with-connection-property'.
4114
4115 * net/tramp.el:
4116 * net/tramp-gvfs.el:
4117 * net/tramp-sh.el:
4118 * net/tramp-smb.el: Adapt callees.
4119
4120 * net/trampver.el: Update release number.
4121
4122 2012-10-09 Glenn Morris <rgm@gnu.org>
4123
4124 * w32-fns.el (set-message-beep):
4125 * term/w32-win.el (set-message-beep): Update declarations.
4126
4127 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
4128
4129 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
4130 (mode-line-widen, mode-line-input-method-map)
4131 (mode-line-coding-system-map, mode-line-remote)
4132 (mode-line-unbury-buffer, mode-line-bury-buffer)
4133 (mode-line-next-buffer, mode-line-previous-buffer):
4134 Replace save-selected-window+select-window => with-selected-window.
4135
4136 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
4137 * progmodes/cc-vars.el (bq-process): Remove, unused.
4138
4139 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
4140
4141 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
4142
4143 Implemented `backward-up-list'-like navigation.
4144 * progmodes/python.el (python-nav-up-list)
4145 (python-nav-backward-up-list): New functions.
4146 (python-mode-map): Define substitute key for backward-up-list to
4147 python-nav-backward-up-list.
4148
4149 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4150
4151 * progmodes/python.el (python-fill-paragraph): Rename from
4152 python-fill-paragraph-function. Fixed fill-paragraph for
4153 decorators (Bug#12605).
4154
4155 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4156
4157 * progmodes/python.el (python-shell-output-filter): Handle extra
4158 carriage return in OSX (Bug#12409).
4159
4160 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4161
4162 Fix shell handling of unbalanced quotes and parens in output.
4163 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
4164 (python-syntax-propertize-function): Use it.
4165 (python-shell-output-syntax-table): New var.
4166 (inferior-python-mode): Prevent unbalanced parens/quotes from
4167 previous output mess with current input context.
4168
4169 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4170
4171 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
4172 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
4173
4174 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
4175
4176 * ffap.el (ffap-replace-file-component): Support Tramp file name
4177 syntax, not only ange-ftp's one.
4178
4179 2012-10-08 Glenn Morris <rgm@gnu.org>
4180
4181 * cus-start.el (message-log-max): Set :version.
4182
4183 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
4184
4185 2012-10-08 Martin Rudalics <rudalics@gmx.at>
4186
4187 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
4188 the minibuffer window (Bug#10851).
4189
4190 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
4191
4192 Enhancements on forward-sexp movement.
4193 * progmodes/python.el (python-nav-beginning-of-statement)
4194 (python-nav-end-of-statement): Return point-marker.
4195 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
4196 (python-info-current-symbol)
4197 (python-info-statement-starts-block-p): Rename from
4198 python-info-beginning-of-block-p.
4199 (python-info-statement-ends-block-p): Rename from
4200 python-info-end-of-block-p.
4201 (python-info-beginning-of-statement-p)
4202 (python-info-end-of-statement-p)
4203 (python-info-beginning-of-block-p, python-info-end-of-block-p):
4204 New functions.
4205
4206 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
4207
4208 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
4209 frame-selected-windows.
4210
4211 2012-10-08 Daniel Colascione <dancol@dancol.org>
4212
4213 * battery.el (battery-status-function): Check for
4214 w32-battery-status itself, not system-time windows-nt.
4215
4216 * frame.el: Require cl-lib.
4217 (display-format-alist): New variable mapping frame types to
4218 functions that initialize them.
4219 (window-system-for-display): New function: interprets
4220 display-format-alist.
4221 (make-frame-on-display): Remove existing display-selection logic
4222 and just forward to make-frame, which will now DTRT.
4223 (make-frame): Restructure to use window-system-for-display to
4224 figure out how to create a frame on a given display.
4225 (display-mouse-p): Look for frame-type w32, not a particular
4226 system-type.
4227
4228 * loadup.el: Load w32 lisp code when we have the w32 feature.
4229
4230 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
4231 system-type windows-nt.
4232
4233 * server.el (server-create-window-system-frame): Look for window
4234 type.
4235 (server-proces-filter): Only force a window system when windows-nt
4236 _and_ w32. Explain why.
4237
4238 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
4239 of window systems we configure for the mode.
4240
4241 * startup.el (command-line): Mark window system is initialized
4242 after we've done it.
4243
4244 * common-win.el (x-select-text): Look for w32, not windows-nt.
4245
4246 * ns-win.el: Require cl-lib. Add ourselves to
4247 display-format-alist.
4248 (ns-initialize-window-system): Assert we're not initialized twice.
4249
4250 * w32-win.el: Enable lexical binding; require cl-lib; add
4251 ourselves to display-format-alist.
4252 (w32-handle-dropped-file): Convert incoming dropped files from
4253 Windows paths to Cygwin ones before passing them on to the rest of
4254 Emacs.
4255 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
4256 (w32-initialize-window-system): Assert we're not initialized twice.
4257
4258 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
4259 (x-initialize-window-system): Assert we're not initialized twice.
4260
4261 * w32-common-fns.el: New File.
4262 (w32-version, w32-using-nt, w32-get-clipboard-data)
4263 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4264 (w32-charset-info-alist, x-last-selected, text)
4265 (x-get-selection-value, x-selection-value): Move here.
4266
4267 * w32-fns.el: Require w32-common-fns.
4268 (w32-version, w32-using-nt, w32-get-clipboard-data)
4269 (w32-set-clipboard-data, x-set-selection, x-get-selection)
4270 (w32-charset-info-alist, x-last-selected, text)
4271 (x-get-selection-value, x-selection-value): Move to
4272 w32-common-fns.
4273
4274 * w32-vars.el:
4275 (w32-allow-system-shell, w32-system-shells): Define only in
4276 non-cygwin case.
4277
4278 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4279
4280 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
4281 (read-passwd): Remove a few more potential sources of leaks.
4282
4283 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4284
4285 * progmodes/python.el (inferior-python-mode)
4286 (python-shell-make-comint): Fix initialization of local
4287 variables copied from parent buffer.
4288
4289 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4290
4291 * term/ns-win.el (ns-read-file-name): Update declaration to match
4292 nsfns.m.
4293 (ns-respond-to-change-font): Change fontsize separatly so we are sure
4294 it is set when font is acted upon.
4295
4296 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4297
4298 Enhancements to indentation.
4299 * progmodes/python.el (python-indent-context): Give priority to
4300 inside-string context. Make comments indentation markers.
4301 (python-indent-region): Do not mess with strings, unless it's the
4302 enclosing set of quotes.
4303
4304 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
4305
4306 * window.el (internal--before-save-selected-window)
4307 (internal--after-save-selected-window): New functions extracted from
4308 save-selected-window. Make sure we return the `alist' we construct.
4309 (save-selected-window): Use them.
4310
4311 * textmodes/tex-mode.el (tex-recenter-output-buffer):
4312 Use with-selected-window.
4313
4314 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
4315 forms that define macros (bug#12593).
4316
4317 2012-10-07 Kenichi Handa <handa@gnu.org>
4318
4319 * international/mule-conf.el (compound-text-with-extensions):
4320 Add :mime-charset property as x-ctext.
4321
4322 2012-10-07 Stefan Merten <smerten@oekonux.de>
4323
4324 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4325 (rst-indent-literal-normal, rst-indent-literal-minimized)
4326 (rst-indent-comment): Correct :version tag.
4327 (rst-official-cvs-rev): Correct version string.
4328
4329 2012-10-07 Glenn Morris <rgm@gnu.org>
4330
4331 * mail/rmailmm.el (rmail-mime-process-multipart):
4332 Do not confuse a multipart message with an epilogue
4333 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
4334
4335 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
4336
4337 Fix shell output retrieval and comint-prompt-regexp init.
4338 * progmodes/python.el (inferior-python-mode):
4339 (python-shell-make-comint): Fix initialization of
4340 comint-prompt-regexp from copied file local variables.
4341 (python-shell-fetched-lines): Remove var.
4342 (python-shell-output-filter-in-progress): Rename from
4343 python-shell-fetch-lines-in-progress.
4344 (python-shell-output-filter-buffer): Rename from
4345 python-shell-fetch-lines-string.
4346 (python-shell-fetch-lines-filter): Delete function.
4347 (python-shell-output-filter): New function.
4348 (python-shell-send-string-no-output): Use them.
4349
4350 2012-10-07 Glenn Morris <rgm@gnu.org>
4351
4352 * hi-lock.el (hi-lock-process-phrase):
4353 Try to make it less fragile. (Bug#7161)
4354
4355 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
4356
4357 2012-10-06 Glenn Morris <rgm@gnu.org>
4358
4359 * ehelp.el (electric-help-mode): Use help-mode rather than
4360 non-existent mode `help'.
4361 (electric-help-map): Use button-buffer-map. (Bug#10917)
4362
4363 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
4364 (reftex-create-bibtex-footer): Fix custom types.
4365
4366 * progmodes/sh-script.el (sh-indent-after-continuation):
4367 Add explicit :group.
4368
4369 * textmodes/rst.el (rst-preferred-decorations)
4370 (rst-shift-basic-offset): Clarify obsolescence versions.
4371
4372 * profiler.el (profiler): Add missing group :version tag.
4373 * avoid.el (mouse-avoidance-banish-position):
4374 * proced.el (proced-renice-command):
4375 * calc/calc.el (calc-ensure-consistent-units):
4376 * calendar/icalendar.el (icalendar-import-format-uid):
4377 * net/tramp.el (tramp-save-ad-hoc-proxies):
4378 * progmodes/bug-reference.el (bug-reference-bug-regexp):
4379 * progmodes/flymake.el (flymake-error-bitmap)
4380 (flymake-warning-bitmap, flymake-fringe-indicator-position):
4381 * progmodes/sh-script.el (sh-indent-after-continuation):
4382 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
4383 (verilog-before-save-font-hook, verilog-after-save-font-hook):
4384 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
4385 (vhdl-array-index-record-field-in-sensitivity-list)
4386 (vhdl-indent-comment-like-next-code-line):
4387 * textmodes/reftex-vars.el (reftex-ref-style-alist)
4388 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
4389 (reftex-cite-key-separator, reftex-create-bibtex-header)
4390 (reftex-create-bibtex-footer):
4391 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
4392 (rst-indent-literal-normal, rst-indent-literal-minimized)
4393 (rst-indent-comment): Add missing custom :version tags.
4394
4395 * calendar/timeclock.el (timeclock-modeline-display):
4396 Add missing obsolete alias for renamed user option.
4397
4398 * strokes.el (strokes-modeline-string):
4399 * emulation/crisp.el (crisp-mode-modeline-string):
4400 * eshell/esh-mode.el (eshell-status-in-modeline):
4401 Aliases to defcustoms must come before the defcustom.
4402
4403 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
4404 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
4405 (cal-tex-cursor-week-monday): Doc fixes.
4406 (cal-tex-cursor-week2-summary): Doc fix.
4407 Rename from cal-tex-cursor-week-at-a-glance.
4408
4409 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
4410 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
4411
4412 * calendar/calendar.el (calendar-mode-map):
4413 Add cal-tex-cursor-week2-summary.
4414
4415 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
4418
4419 * subr.el (read-passwd-map): New var.
4420 (read-passwd): Use `read-string' again.
4421 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
4422
4423 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
4424
4425 * register.el (append-to-register, prepend-to-register):
4426 Deactivate mark, as does `copy-to-register' (bug#12389).
4427
4428 2012-10-06 Chong Yidong <cyd@gnu.org>
4429
4430 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
4431
4432 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4433
4434 * international/characters.el: Fix simple mistake ((car chars) ->
4435 elt), delete duplicated code.
4436
4437 2012-10-06 Glenn Morris <rgm@gnu.org>
4438
4439 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
4440
4441 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
4442
4443 * color.el (color-hsl-to-rgb): Fix incorrect results for
4444 small and large hue values. (Bug#12559)
4445
4446 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
4447
4448 Enhancements to docstring formatting when filling paragraphs.
4449 * progmodes/python.el (python-fill-docstring-style): Rename from
4450 python-fill-string-style. Added new style.
4451 (python-fill-string): Use new style. Better checks for
4452 docstrings.
4453
4454 2012-10-05 Glenn Morris <rgm@gnu.org>
4455
4456 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
4457
4458 * color.el (color-name-to-rgb, color-rgb-to-hex)
4459 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
4460 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
4461 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4462 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
4463
4464 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
4465
4466 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
4467
4468 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
4469 to get the correct size across symlinks.
4470
4471 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
4472
4473 2012-10-04 Juri Linkov <juri@jurta.org>
4474
4475 * replace.el (query-replace-interactive): Declare obsolete.
4476 (query-replace-read-from): Add the last incremental search string
4477 to the list of default values accessible via M-n.
4478 (map-query-replace-regexp): Use `read-regexp'.
4479 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4480 (map-query-replace-regexp, replace-string, replace-regexp):
4481 Fix docstrings to replace mentions of `query-replace-interactive'
4482 with alternatives. (Bug#12526)
4483
4484 2012-10-04 Juri Linkov <juri@jurta.org>
4485
4486 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
4487 (dired-pop-to-buffer): Declare obsolete.
4488 (dired-mark-pop-up): Doc fix.
4489
4490 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
4491
4492 Allow user to set docstring style for fill-paragraph.
4493 * progmodes/python.el
4494 (python-fill-comment-function, python-fill-string-function)
4495 (python-fill-decorator-function, python-fill-paren-function):
4496 Remove :safe for defcustoms.
4497 (python-fill-string-style): New defcustom
4498 (python-fill-paragraph-function): Enhance context detection.
4499 (python-fill-string): Honor python-fill-string-style settings.
4500
4501 2012-10-04 Martin Rudalics <rudalics@gmx.at>
4502
4503 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
4504 after setting its buffer (Bug#10805).
4505
4506 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
4507
4508 Fix cornercase for string syntax.
4509 * progmodes/python.el (python-syntax-propertize-function):
4510 Simplify and enhance the regexp for unescaped quotes. Now it also
4511 matches quotes in weird situations like the single quote in
4512 "something\"'".
4513 (python-syntax-stringify): Simplify num-quotes detecting code.
4514
4515 2012-10-03 Glenn Morris <rgm@gnu.org>
4516
4517 * help-macro.el (three-step-help):
4518 Revert 2012-09-29 change. (Bug#12567)
4519
4520 2012-10-03 Martin Rudalics <rudalics@gmx.at>
4521
4522 * menu-bar.el (kill-this-buffer): Don't do anything when
4523 `menu-frame' is not alive or visible (Bug#8184).
4524
4525 * emacs-lisp/debug.el (debug): When quitting the debugger window
4526 restore current buffer (Bug#12502).
4527
4528 2012-10-02 Chong Yidong <cyd@gnu.org>
4529
4530 * progmodes/hideif.el (hif-lookup, hif-defined):
4531 Handle semantic-c-takeover-hideif.
4532
4533 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4534
4535 Change sampling interval units from ms to ns.
4536 * profiler.el (profiler-sampling-interval): Change units
4537 from ms to ns, multiplying the default by 1000000 so that
4538 it remains 1 ms.
4539 (profiler-report-cpu-line-format): Give enough room for
4540 the maximum counters on 64-bit hosts.
4541 (profiler-report-render-calltree-1): Call them "CPU samples",
4542 not "Time (ms)", since they are not milliseconds now (and
4543 never really were).
4544
4545 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4546
4547 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
4548 Fix querying BBDB for entries without a last name (Bug#11580).
4549
4550 2012-10-02 Chong Yidong <cyd@gnu.org>
4551
4552 * emacs-lisp/eieio.el: Restore Version header.
4553
4554 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4555
4556 * vc/diff-mode.el (diff--auto-refine-data): New var.
4557 (diff-hunk): Use it to delay refinement.
4558 (diff-mode): Remove overlays when we turn off font-lock.
4559
4560 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
4561 (table-initialize-table-fixed-width-mode)
4562 (table-set-table-fixed-width-mode): Remove functions.
4563 (table-command-list): Move initialization into declaration.
4564 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
4565 (table-with-cache-buffer): Use `declare'.
4566 (table-span-cell): Simplify via CSE.
4567 (table-fixed-width-mode): Use define-minor-mode.
4568 (table-call-interactively, table-funcall, table-apply): Remove.
4569 (table-function): New function, to replace them.
4570
4571 * bookmark.el (bookmark-search-pattern): Remove var.
4572 (bookmark-read-search-input): Remove function.
4573 (bookmark-bmenu-search): Reimplement using a minibuffer.
4574
4575 * faces.el (modeline): Remove obsolete face name.
4576
4577 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
4578 and give a non-nil default value.
4579 (add-change-log-entry): Simplify accordingly.
4580
4581 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
4582
4583 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
4584 (vc-git-log-edit-toggle-amend): New function.
4585 (vc-git-log-edit-toggle-signoff): New function.
4586 (vc-git-log-edit-mode): New major mode.
4587 (vc-git-log-edit-mode-map): Keymap for it.
4588 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
4589
4590 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
4591 header names.
4592 (log-edit-toggle-header): New function.
4593 (log-edit-extract-headers): Accept function values in HEADERS alist.
4594
4595 2012-10-01 David Engster <deng@randomsample.de>
4596
4597 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
4598 from symbol property and change message to be more consistent with
4599 Emacs proper.
4600 (eieio-describe-generic): Add filename for each implementation.
4601 Fix indices for generic and normal methods.
4602 (eieio-method-def, eieio-class-def): New buttons.
4603 (eieio-help-find-method-definition)
4604 (eieio-help-find-class-definition): New functions.
4605 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
4606 class, constructor and method definitions.
4607
4608 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
4609 information in symbol property.
4610 (scoped-class): Remove.
4611 (eieio-slot-name-index, call-next-method): Check if it is bound.
4612
4613 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
4614
4615 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
4616 (eieio-custom-mode): New major mode.
4617 (eieio-customize-object): Use it.
4618
4619 2012-10-01 Eric Ludlam <zappo@gnu.org>
4620
4621 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
4622 specifying the expected class, and whether subclassing is allowed.
4623 (eieio-persistent-convert-list-to-object):
4624 (eieio-persistent-validate/fix-slot-value)
4625 (eieio-persistent-slot-type-is-class-p): New functions.
4626 (eieio-named::slot-missing): Doc fix.
4627
4628 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
4629 Stop using unused publd variable.
4630
4631 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
4632 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
4633 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
4634 (eieio-speedbar-handle-click): Do not specify a class for the
4635 method. Fixes method invocation order problems with EDE.
4636
4637 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4638
4639 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
4640 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
4641
4642 2012-10-01 Karl Fogel <kfogel@red-bean.com>
4643
4644 * bookmark.el (bookmark-version-control): Give tags in the
4645 :type choices (Bug#12309), and improve doc string.
4646 (bookmark-write-file): Bind `print-circle' to `t' to allow
4647 circular custom bookmark types. (Bug#12503)
4648
4649 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4650
4651 Revert the FOLLOW-SYMLINKS change for file-attributes.
4652 * files.el (remote-file-name-inhibit-cache, after-find-file):
4653 * time.el (display-time-file-nonempty-p): Undo last change.
4654
4655 * profiler.el (profiler-sampling-interval): Change default back to 1.
4656 See Stefan Monnier in
4657 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
4658
4659 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
4660
4661 Shell output catching a la gud-gdb.
4662 * progmodes/python.el (python-shell-fetch-lines-in-progress)
4663 (python-shell-fetch-lines-string, python-shell-fetched-lines):
4664 New Vars.
4665 (python-shell-fetch-lines-filter): New function.
4666 (python-shell-send-string-no-output): Use them.
4667
4668 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
4669
4670 * profiler.el (profiler-sampling-interval): Rename from
4671 profiler-sample-interval.
4672 (profiler-sampling-interval): Default to 10.
4673 (profiler-find-profile): New command (was profiler-find-log).
4674 (profiler-find-profile-other-window): New command.
4675 (profiler-find-profile-other-frame): New command.
4676 (profiler-profile): Introduce API-level data structure.
4677
4678 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4679
4680 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4681 * files.el (remote-file-name-inhibit-cache):
4682 * time.el (display-time-file-nonempty-p): Use it.
4683 * files.el (after-find-file): Don't chase links before calling
4684 file-exists-p, as file-exists-p already does the right thing.
4685
4686 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
4687
4688 Merge from standalone RefTeX repository.
4689
4690 The following ChangeLog entries are shortened versions of the
4691 original ones with file paths adapted. A not so strongly edited
4692 version of the original ChangeLog can be found in the commit log.
4693
4694 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
4695 (reftex-arg-cite): Use `reftex-cite-key-separator'.
4696 Correctly handle new value type returned by `reftex-citation'.
4697
4698 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
4699 that entries with whitespace at various places are found.
4700 Doc fix. Include entries that are cross-referenced from cited entries.
4701 Include @String definitions in the resulting bib file. Add header
4702 and footer defined in `reftex-create-bibtex-header' and
4703 `reftex-create-bibtex-footer'.
4704 (reftex-do-citation): Make it possible again to insert
4705 non-existent entries. Save match data when asking for optional
4706 arguments. Return all keys, not just the first one.
4707 (reftex-all-used-citation-keys): Fix regexp to correctly extract
4708 all citations in the same line.
4709 (reftex-parse-bibtex-entry): Accept additional optional argument
4710 `raw' and keep quotes or braces if it is non-nil. Match fields
4711 containing hyphens besides word constituents.
4712 (reftex-get-string-refs): New function.
4713 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
4714 and ask if it should be reread in case it did.
4715 (reftex-pop-to-bibtex-entry)
4716 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
4717 entries with spaces or tabs in front of arguments.
4718 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4719 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
4720 Match entries containing numbers and symbol constituents.
4721 (reftex-do-citation, reftex-figure-out-cite-format):
4722 Use `reftex-cite-key-separator'.
4723
4724 * textmodes/reftex-dcr.el: Move provide statement to end of file.
4725 (reftex-mouse-view-crossref): Explain why point is set.
4726
4727 * textmodes/reftex-global.el: Whitespace changes.
4728
4729 * textmodes/reftex-index.el: Move provide statement to end of
4730 file.
4731 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
4732 (reftex-index-visit-phrases-buffer): Set marker when visiting
4733 buffer. This allows for returning from the phrases file to the
4734 file one was just editing instead of the file where the last
4735 phrases was added from.
4736 (reftex-index-phrases-syntax-table): New variable. Give ?\"
4737 punctuation syntax as it usually is not used as string quote in
4738 TeX-related modes and may occur unmatched. The change also
4739 prevents fontification of quoted content.
4740 (reftex-index-phrases-mode): Use it.
4741
4742 * textmodes/reftex-parse.el (reftex-parse-from-file):
4743 Move backward one char if a `\' was matched after a section macro.
4744 (reftex-parse-from-file): Use beginning of match instead of end as
4745 bound.
4746
4747 * textmodes/reftex-ref.el: Adapt creation of
4748 `reftex-<package>-<macro>' functions to new structure of
4749 `reftex-ref-style-alist'.
4750 (reftex-reference): Use `reftex-ref-style-list' function.
4751 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
4752 reference macro if `reftex-ref-macro-prompt' is non-nil.
4753 (reftex-reference): Pass refstyle to `reftex-format-special'.
4754 Determine reference macro by looking at
4755 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
4756 Use only one special format function.
4757 (reftex-varioref-vref, reftex-fancyref-fref)
4758 (reftex-fancyref-Fref): Remove definitions. The functions are now
4759 generated from `reftex-ref-style-alist'.
4760 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
4761 Remove.
4762 (reftex-format-special): New function.
4763
4764 * textmodes/reftex-sel.el
4765 (reftex-select-cycle-ref-style-internal): Adapt to new structure
4766 of `reftex-ref-style-alist'. Remove code for testing macro type.
4767 (reftex-select-toggle-varioref)
4768 (reftex-select-toggle-fancyref): Remove.
4769 (reftex-select-cycle-ref-style-internal)
4770 (reftex-select-cycle-ref-style-forward)
4771 (reftex-select-cycle-ref-style-backward): New functions.
4772 (reftex-select-label-map): Use `v' and `V' for general cycling
4773 through reference styles. Add `p' for switching between number
4774 and page reference types.
4775
4776 * textmodes/reftex-toc.el (reftex-re-enlarge):
4777 Call `enlarge-window' only if there is something to do because in Emacs
4778 the horizontal version throws an error even if the parameter is 0.
4779
4780 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
4781 (reftex-plug-into-AUCTeX): Doc fix.
4782 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
4783 string. Adapt to new name.
4784 (reftex-ref-style-alist): Change structure so that it is not
4785 possible to use multiple different package names within a style.
4786 Remove the symbols for symbols for macro type distinction.
4787 Add characters for macro selection.
4788 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
4789 (reftex-create-bibtex-footer): New variables.
4790 (reftex-format-ref-function): Mention third argument of special
4791 format function.
4792 (reftex-ref-style-alist, reftex-ref-style-default-list):
4793 New variables.
4794 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
4795 to new implementation. Mark as obsolete. Add compatibility code
4796 for honoring the variable values in case they are set.
4797 (reftex-cite-format-builtin, reftex-bibliography-commands):
4798 Add support for ConTeXt.
4799 (reftex-format-ref-function, reftex-format-cite-function):
4800 Fix custom type.
4801 (reftex-cite-key-separator): New variable.
4802
4803 * textmodes/reftex.el (reftex-syntax-table-for-bib)
4804 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
4805 `reftex-syntax-table' because parens have to retain their paren
4806 syntax in order for parsing of BibTeX entries like @book(...) to
4807 work.
4808 (reftex-in-comment): Do not error out if `comment-start-skip' is
4809 not set. Deal correctly with escaped comment characters.
4810 (reftex-tie-multifile-symbols): Add doc string.
4811 Initialize `reftex-ref-style-list'.
4812 (reftex-untie-multifile-symbols): Add doc string.
4813 (reftex-add-index-macros): Doc fix.
4814 (reftex-ref-style-activate, reftex-ref-style-toggle)
4815 (reftex-ref-style-list): New functions.
4816 (reftex-mode-menu): Use them. Adapt to new structure of
4817 `reftex-ref-style-alist'.
4818 (reftex-select-with-char): Kill the RefTeX Select buffer when
4819 done.
4820 (reftex-remove-if): New function.
4821 (reftex-erase-all-selection-and-index-buffers)
4822 (reftex-mode-menu): Reference styles are now computed from
4823 `reftex-ref-style-alist'. Fix typo.
4824 (reftex-report-bug): New function.
4825 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
4826 algorithms with O(n log n). Introduce optional argument SORT (not
4827 yet used).
4828
4829 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
4830
4831 Enhancements for triple-quote string syntax.
4832 * progmodes/python.el (python-syntax-propertize-function):
4833 Match both quote cases in one regexp.
4834 (python-syntax-stringify): Handle matches properly.
4835
4836 2012-09-30 Juri Linkov <juri@jurta.org>
4837
4838 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
4839 to nil around the call to `insert' to prevent
4840 directory time modification by lock_file. (Bug#2295)
4841 * tar-mode.el (tar-summarize-buffer): Idem.
4842
4843 2012-09-30 Juri Linkov <juri@jurta.org>
4844
4845 * facemenu.el (list-colors-sort): Add option "Luminance".
4846 (list-colors-sort-key): Implement it.
4847
4848 * vc/diff-mode.el (diff-refine-removed):
4849 * vc/ediff-init.el (ediff-fine-diff-A):
4850 * vc/smerge-mode.el (smerge-refined-removed):
4851 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
4852
4853 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4854
4855 * term/ns-win.el (x-file-dialog): New function.
4856
4857 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4858
4859 * ido.el (ido-max-directory-size): Default to nil; the current
4860 default is small for POSIX systems, and impractical on Windows 7
4861 now that lstat returns directory sizes for NTFS.
4862
4863 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4864
4865 In buffer display functions handle window-height/window-width
4866 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
4867 * window.el (window--display-buffer): New argument ALIST.
4868 Obey window-height and window-width alist entries.
4869 (window--try-to-split-window): New argument ALIST.
4870 Bind window-combination-limit to t when the window's size shall be
4871 changed and window-combination-limit equals `window-size'.
4872 (display-buffer-in-atom-window)
4873 (display-buffer-in-major-side-window)
4874 (display-buffer-in-side-window, display-buffer-same-window)
4875 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4876 (display-buffer-pop-up-window, display-buffer-below-selected)
4877 (display-buffer-at-bottom, display-buffer-in-previous-window)
4878 (display-buffer-use-some-window): Adjust all callers of
4879 window--display-buffer and window--try-to-split-window.
4880 (fit-frame-to-buffer): New option.
4881 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
4882 is non-nil.
4883 (display-buffer-in-major-side-window): Evaluate window-height /
4884 window-width alist entries.
4885
4886 * help.el (temp-buffer-resize-frames)
4887 (temp-buffer-resize-regexps): Remove options.
4888 (temp-buffer-resize-mode): Adjust doc-string.
4889 (resize-temp-buffer-window): Don't consult
4890 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
4891 temp-buffer-resize-frames.
4892
4893 * dired.el (dired-mark-pop-up):
4894 Call display-buffer-below-selected with a fit-window-to-buffer alist
4895 entry.
4896
4897 2012-09-30 Chong Yidong <cyd@gnu.org>
4898
4899 * server.el (server-host): Document the security implications.
4900 (server-auth-key): Doc fix.
4901
4902 * startup.el (initial-buffer-choice): Doc fix.
4903
4904 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
4905
4906 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
4907 restriction change.
4908
4909 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
4910
4911 * help-fns.el (help-fns--obsolete): Fix last change.
4912
4913 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4914
4915 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
4916 (minor-mode-map-alist): Remove redundant code.
4917
4918 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
4919 visited in a buffer.
4920 (cvs-insert-visited-file): New function.
4921 (find-file-hook): Use it.
4922
4923 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
4924
4925 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
4926 chose face.
4927 (log-edit-empty-buffer-p): Don't require a space after a header.
4928
4929 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
4930
4931 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
4932
4933 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
4934 a proper minor-mode.
4935
4936 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
4937
4938 2012-09-29 Glenn Morris <rgm@gnu.org>
4939
4940 * winner.el (winner-mode): Remove variable (let define-minor-mode
4941 handle it).
4942 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
4943 Doc fixes.
4944 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
4945 (winner-mode): Use define-minor-mode.
4946
4947 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
4948 the full definition in loaddefs, rather than duplicating it.
4949
4950 * help-macro.el (three-step-help): No need to autoload defcustom.
4951
4952 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4953 (inferior-lisp-program, inferior-lisp-load-command)
4954 (inferior-lisp-prompt, inferior-lisp-mode-hook):
4955 No need to autoload defcustoms.
4956
4957 * hippie-exp.el (hippie-expand-try-functions-list)
4958 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
4959 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
4960 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
4961 (hippie-expand-only-buffers): No need to autoload defcustoms.
4962 * progmodes/vhdl-mode.el (vhdl-line-expand):
4963 Explicitly load hippie-exp, so it does not get autoloaded
4964 while hippie-expand-try-functions-list is let-bound.
4965
4966 2012-09-28 Glenn Morris <rgm@gnu.org>
4967
4968 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
4969
4970 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
4971 Only "cl.el" counts as cl these days.
4972
4973 2012-09-28 Juri Linkov <juri@jurta.org>
4974
4975 Display archive errors in the echo area instead of inserting
4976 to the file buffer.
4977
4978 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
4979 to STDERR-TEST that can be a regexp matching a successful output.
4980 Create a temporary file and redirect stderr to it. Search for
4981 STDERR-TEST in the stderr output and display it in the echo area
4982 if no match is found.
4983 (archive-extract-by-file): New function like
4984 `archive-extract-by-stdout' but extracting archives to files
4985 and looking for successful matches in stdout. Function body is
4986 mostly copied from `archive-rar-extract'.
4987 (archive-rar-extract): Use `archive-extract-by-file'.
4988 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
4989
4990 2012-09-28 Leo Liu <sdl.web@gmail.com>
4991
4992 * pcomplete.el (pcomplete-show-completions):
4993 Use minibuffer-message to make pcomplete usable in minibuffer.
4994
4995 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
4996
4997 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4998
4999 * type-break.el: Use lexical-binding.
5000 (type-break-mode): Use define-minor-mode.
5001
5002 * emacs-lisp/pcase.el (pcase--mark-used): New.
5003 (pcase--u1): Use it (bug#12512).
5004
5005 * custom.el (load-theme): Set buffer-file-name so the load is recorded
5006 in load-history with the right file name.
5007
5008 2012-09-28 Tassilo Horn <tsdh@gnu.org>
5009
5010 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
5011 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
5012 (doc-view-get-bounding-box): Make bounding box slicing work for
5013 ODF and DVI documents.
5014
5015 2012-09-28 Glenn Morris <rgm@gnu.org>
5016
5017 * type-break.el (type-break-mode, type-break-interval)
5018 (type-break-good-rest-interval, type-break-keystroke-threshold):
5019 No need to autoload.
5020 (type-break-good-rest-interval, type-break-keystroke-threshold):
5021 Add :set-after.
5022
5023 2012-09-28 Chong Yidong <cyd@gnu.org>
5024
5025 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
5026 Add :version tag.
5027
5028 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5029
5030 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
5031
5032 2012-09-27 Glenn Morris <rgm@gnu.org>
5033
5034 * faces.el (x-display-name): Declare (for without-x builds).
5035
5036 * linum.el (linum-format): Don't autoload it. Improve :type.
5037
5038 * progmodes/tcl.el: Don't require outline when compiling.
5039 (outline-regexp, outline-level): Declare.
5040 * textmodes/sgml-mode.el: Don't require outline when compiling.
5041 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
5042
5043 * term.el (term-ansi-reset):
5044 Try setting term-ansi-face-already-done to nil. (Bug#11785)
5045
5046 * vc/vc.el (vc-next-action): Only gripe about committing read-only
5047 files for RCS and SCCS. (Bug#9781)
5048
5049 2012-09-27 Chong Yidong <cyd@gnu.org>
5050
5051 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
5052 change; value should be t.
5053
5054 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
5055
5056 * image-mode.el: Use lexical-binding.
5057 (image-mode-winprops): Use t to stand for the window of
5058 a buffer that's not displayed.
5059 * doc-view.el (doc-view-new-window-function): Handle the new
5060 t in winprops.
5061 (doc-view-enlarge): Make it a real nop if the size is not changed.
5062 (doc-view-display): Handle the case where the buffer is not (yet?)
5063 displayed in any window.
5064 (doc-view-saved-settings): New var.
5065 (doc-view-mode): Use it.
5066 (doc-view-fallback-mode): Set it.
5067
5068 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
5069 Set lexical-binding.
5070 (minibuffer-eldef-shorten-default): New var.
5071 (minibuffer-default-in-prompt-regexps): Use it for new default.
5072 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
5073
5074 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5075
5076 * international/uni-bidi.el:
5077 * international/uni-category.el:
5078 * international/uni-name.el:
5079 * international/uni-numeric.el: Regenerate.
5080
5081 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5082 Stefan Monnier <monnier@iro.umontreal.ca>
5083
5084 * profiler.el: New file.
5085
5086 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
5087
5088 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
5089 (testcover-reinstrument): Simplify with CSE.
5090
5091 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5092
5093 * window.el (temp-buffer-window-setup): Fix typo in docstring.
5094
5095 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
5096
5097 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
5098 (verilog-auto-input, verilog-auto-insert-lisp)
5099 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
5100 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
5101 (verilog-auto-unused, verilog-auto-wire)
5102 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
5103 newline. Reported by Andrew Jones.
5104 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
5105 Reported by Brad Dobbie.
5106 (verilog-batch-delete-trailing-whitespace):
5107 Create verilog-batch-delete-trailing-whitespace.
5108 Reported by Brad Dobbie.
5109 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
5110 parameters from another module. Reported by Dan Katz.
5111 (verilog-auto, verilog-auto-assign-modport)
5112 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
5113 AUTOINOUTMODPORT for UVM interface module shell generation.
5114 Reported by Brad Dobbie.
5115 (verilog-auto-inst-interfaced-ports): Make default nil, as more
5116 standard behavior.
5117 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
5118 Reported by Matt Martin.
5119
5120 2012-09-25 Martin Rudalics <rudalics@gmx.at>
5121
5122 * window.el (window--resize-child-windows): When resizing child
5123 windows proportionally, process them in reverse order to
5124 preserve the "when splitting a window the new one gets the odd
5125 line" behavior.
5126 (window--resize-root-window-vertically): When resizing the
5127 minibuffer window try to affect only windows at the bottom of the
5128 frame. (Bug#12419)
5129
5130 2012-09-25 Chong Yidong <cyd@gnu.org>
5131
5132 * subr.el (declare): Doc fix.
5133
5134 * help-fns.el (help-fns--obsolete): Handle macros properly.
5135
5136 2012-09-25 Chong Yidong <cyd@gnu.org>
5137
5138 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
5139 this function obsolete.
5140
5141 * calendar/cal-x.el (calendar-two-frame-setup)
5142 (calendar-only-one-frame-setup, calendar-one-frame-setup):
5143 * calendar/calendar.el (american-calendar, european-calendar)
5144 (calendar-for-loop):
5145 * comint.el (comint-dynamic-simple-complete)
5146 (comint-dynamic-complete-as-filename, comint-unquote-filename):
5147 * desktop.el (desktop-load-default):
5148 * dired-x.el (dired-omit-here-always)
5149 (dired-hack-local-variables, dired-default-directory):
5150 * emacs-lisp/derived.el (derived-mode-class):
5151 * emacs-lisp/timer.el (timer-set-time-with-usecs):
5152 * emacs-lock.el (toggle-emacs-lock):
5153 * epa.el (epa-display-verify-result):
5154 * epg.el (epg-sign-keys, epg-start-sign-keys)
5155 (epg-passphrase-callback-function):
5156 * eshell/esh-util.el (eshell-for):
5157 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
5158 (eshell-add-to-window-buffer-names):
5159 * files.el (locate-file-completion):
5160 * imenu.el (imenu-example--create-c-index)
5161 (imenu-example--create-lisp-index)
5162 (imenu-example--lisp-extract-index-name)
5163 (imenu-example--name-and-position):
5164 * international/mule-cmds.el (princ-list):
5165 * international/mule-diag.el (decode-codepage-char):
5166 * international/mule-util.el (detect-coding-with-priority):
5167 * iswitchb.el (iswitchb-read-buffer):
5168 * mail/mailalias.el (mail-complete):
5169 * mail/sendmail.el (mail-sent-via):
5170 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
5171 (mouse-major-mode-menu):
5172 * password-cache.el (password-read-and-add):
5173 * pcomplete.el (pcomplete-parse-comint-arguments):
5174 * progmodes/sh-script.el (sh-maybe-here-document):
5175 * replace.el (query-replace-regexp-eval):
5176 * savehist.el (savehist-load):
5177 * simple.el (choose-completion-delete-max-match):
5178 * term.el (term-dynamic-simple-complete):
5179 * vc/ediff-init.el (ediff-check-version):
5180 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
5181 * vc/vc.el (vc-diff-switches-list):
5182 * view.el (view-return-to-alist-update): Likewise.
5183
5184 * subr.el (eval-next-after-load, makehash, insert-string)
5185 (assoc-ignore-representation, assoc-ignore-case): Use declare to
5186 mark obsolete.
5187 (mode-line-inverse-video): Variable deleted.
5188
5189 * international/mule-util.el (string-to-sequence): Remove.
5190
5191 * calendar/calendar.el (calendar-version):
5192 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
5193 (icalendar-convert-diary-to-ical):
5194 * cus-edit.el (custom-mode):
5195 * ansi-color.el (ansi-color-unfontify-region):
5196 * international/latin1-disp.el (latin1-char-displayable-p):
5197 * progmodes/cwarn.el (turn-on-cwarn-mode):
5198 * progmodes/which-func.el (which-func-update-1):
5199 Use define-obsolete-function-alias.
5200
5201 * net/newst-backend.el (newsticker-cache-filename):
5202 * net/newst-treeview.el (newsticker-groups-filename):
5203 Fix incorrect obsolescence declaration.
5204
5205 * allout.el (allout-passphrase-hint-string): Likewise.
5206 (allout-init): Use a declare form to mark obsolete.
5207
5208 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
5209 this applies to functions.
5210
5211 * iswitchb.el (iswitchb-read-buffer): Move code of
5212 iswitchb-define-mode-map here, and delete that obsolete function.
5213
5214 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
5215 font-lock-reference-face.
5216
5217 2012-09-25 Glenn Morris <rgm@gnu.org>
5218
5219 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
5220 Doc fixes.
5221
5222 * eshell/em-term.el (eshell-term-name):
5223 Default to term-term-name. (Bug#12485)
5224
5225 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5226
5227 * progmodes/python.el (python-shell-send-buffer): Better handling
5228 of "if __name__ == '__main__':" conditionals when sending the buffer.
5229
5230 2012-09-24 Glenn Morris <rgm@gnu.org>
5231
5232 * eshell/esh-cmd.el (eshell-find-alias-function):
5233 Tighten up file-name regexp. (Bug#12499)
5234
5235 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
5236
5237 Enhancements for triple-quote string syntax.
5238 * progmodes/python.el (python-quote-syntax): Remove.
5239 (python-syntax-propertize-function): New value.
5240 (python-syntax-count-quotes, python-syntax-stringify):
5241 New functions.
5242
5243 2012-09-24 Chong Yidong <cyd@gnu.org>
5244
5245 * mail/supercite.el (sc-version): Remove obsolete function.
5246 (sc-describe): Don't mark as obsolete, since it is bound.
5247 (sc-submit-bug-report): Remove.
5248
5249 * vc/log-edit.el (cvs-changelog-full-paragraphs)
5250 (cvs-commit-buffer-require-final-newline): Remove.
5251 (log-edit-require-final-newline)
5252 (log-edit-changelog-full-paragraphs): Default to t.
5253
5254 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
5255 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
5256 * vc/vc.el (vc-checkout-carefully): Likewise.
5257
5258 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
5259 (emerge-version): Remove.
5260
5261 * progmodes/compile.el (compile-internal): Remove.
5262 (compilation-parse-errors-function): Fix typo.
5263
5264 * international/mule.el (set-char-table-default): Remove.
5265 (set-coding-priority, make-coding-system, generic-char-p)
5266 (charset-list, charset-bytes, charset-id): Use declare to mark
5267 functions as obsolete.
5268
5269 * vc/pcvs-defs.el (cvs-buffer-name-alist)
5270 (cvs-invert-ignore-marks): Remove references to obsolete vars.
5271 * vc/vc-hooks.el (vc-default-registered): Don't use
5272 vc-master-templates.
5273
5274 * font-lock.el (font-lock-reference-face):
5275 Use define-obsolete-variable-alias.
5276
5277 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
5278 * calendar/calendar.el (calendar-font-lock-keywords):
5279 * calendar/diary-lib.el (diary-font-lock-keywords)
5280 (diary-fancy-font-lock-keywords):
5281 * textmodes/reftex-sel.el (reftex-insert-docstruct):
5282 * textmodes/reftex-index.el (reftex-insert-index):
5283 * textmodes/reftex-cite.el (reftex-format-bib-entry):
5284 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5285 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
5286 * progmodes/prolog.el (prolog-font-lock-keywords):
5287 * progmodes/idlwave.el (idlwave-idl-keywords):
5288 * progmodes/ada-mode.el (ada-font-lock-keywords):
5289 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
5290
5291 2012-09-24 Glenn Morris <rgm@gnu.org>
5292
5293 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
5294
5295 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
5296
5297 * progmodes/python.el (python-indent-line): More consistent cursor
5298 movement behavior.
5299
5300 2012-09-23 Stefan Merten <smerten@oekonux.de>
5301
5302 * textmodes/rst.el: Fix compiler warning.
5303
5304 2012-09-23 Roland Winkler <winkler@gnu.org>
5305
5306 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
5307 Transcribe also LaTeX hyphenation.
5308 (bibtex-reformat): Bug fix. Do not quote twice the elements of
5309 bibtex-reformat-previous-options.
5310
5311 2012-09-23 Roland Winkler <winkler@gnu.org>
5312
5313 * proced.el (proced-renice-command): New variable.
5314 (proced-marked-processes): New function.
5315 (proced-with-processes-buffer): New macro.
5316 (proced-send-signal): Use them.
5317 (proced-renice): New command bound to r.
5318
5319 2012-09-23 Roland Winkler <winkler@gnu.org>
5320
5321 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
5322 ibuffer-saved-filter-groups has one element, shortcut the call of
5323 completing-read. (Bug#12331)
5324
5325 2012-09-23 Chong Yidong <cyd@gnu.org>
5326
5327 * bindings.el (mode-line-toggle-read-only):
5328 * bs.el (bs-toggle-readonly):
5329 * buff-menu.el (Buffer-menu-toggle-read-only):
5330 * dired.el (dired-toggle-read-only):
5331 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
5332
5333 2012-09-23 Chong Yidong <cyd@gnu.org>
5334
5335 * image.el (image-type-available-p): Adapt to init-image-library
5336 argument changes.
5337
5338 2012-09-22 Juri Linkov <juri@jurta.org>
5339
5340 * dired.el (dired-mode-map): Add [remap read-only-mode] for
5341 `dired-toggle-read-only'. (Bug#12462)
5342
5343 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5344
5345 * subr.el (temp-output-buffer-show): New function.
5346 (with-output-to-temp-buffer): Call temp-output-buffer-show
5347 instead of internal-temp-output-buffer-show.
5348
5349 2012-09-22 Chong Yidong <cyd@gnu.org>
5350
5351 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
5352 (Bug#12462).
5353
5354 * repeat.el (repeat): Doc fix (Bug#12348).
5355
5356 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
5357 (Bug#10909).
5358
5359 * simple.el (shell-command-on-region): Doc fix.
5360 (read-only-mode): Doc fix.
5361
5362 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5363
5364 * emacs-lisp/timer.el (run-with-idle-timer)
5365 (timer-activate-when-idle): Warn against reinvoking an idle timer
5366 from within its own timer action. (Bug#12447)
5367
5368 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5369
5370 * cus-start.el (window-combination-limit): Add new optional
5371 values.
5372 * window.el (temp-buffer-window-show)
5373 (window--try-to-split-window): Handle new values of
5374 window-combination-limit (Bug#1806).
5375 (split-window): Test window-combination-limit for t instead of
5376 non-nil.
5377 (display-buffer-at-bottom): New buffer display action function.
5378 * help.el (temp-buffer-resize-regexps): New option.
5379 (temp-buffer-resize-mode): Rewrite doc-string.
5380 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
5381 Don't resize reused window. Suggested by Glenn Morris.
5382
5383 2012-09-22 Stefan Merten <smerten@oekonux.de>
5384
5385 * textmodes/rst.el: Revamp section title faces.
5386 (rst-official-version)
5387 (rst-package-emacs-version-alist): Sync with official version
5388 V1.4.0.
5389 (rst-faces-defaults, rst-set-level-default)
5390 (rst-level-face-max, rst-level-face-base-color)
5391 (rst-level-face-base-light, rst-level-face-format-light)
5392 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
5393 (rst-adornment-faces-alist): Match new setup.
5394 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
5395 (rst-level-5, rst-level-6): New faces.
5396
5397 2012-09-22 Chong Yidong <cyd@gnu.org>
5398
5399 * simple.el (undo): Handle indirect buffers (Bug#8207).
5400
5401 2012-09-21 Leo Liu <sdl.web@gmail.com>
5402
5403 IDO: Disable match re-ordering for buffer switching.
5404 * ido.el (ido-buffer-disable-smart-matches): New variable.
5405 (ido-set-matches-1): Use it. (Bug#2042)
5406
5407 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
5408
5409 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
5410 Fix 2011-05-17 change. (Bug#12418)
5411
5412 2012-09-21 Leo Liu <sdl.web@gmail.com>
5413
5414 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
5415
5416 2012-09-21 Glenn Morris <rgm@gnu.org>
5417
5418 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
5419 Be more robust about locating simple.el.
5420
5421 2012-09-21 Glenn Morris <rgm@gnu.org>
5422
5423 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
5424
5425 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
5426
5427 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
5428
5429 2012-09-20 Juri Linkov <juri@jurta.org>
5430
5431 * replace.el (query-replace-read-from): Use `read-regexp' instead
5432 of `read-from-minibuffer' when `regexp-flag' is non-nil.
5433 (occur-read-primary-args): Use `read-regexp' instead of
5434 `read-string'.
5435 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
5436 `read-from-minibuffer'.
5437 * isearch.el (isearch-occur): Use `read-regexp' instead of
5438 `read-string'.
5439 * dired.el (dired-read-regexp): Use `read-regexp' instead of
5440 `read-from-minibuffer'.
5441 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
5442 of `read-string'. (Bug#7567)
5443
5444 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
5445 and allow accepting a list of strings prepended to a list of
5446 standard default values. Doc fix. (Bug#12321)
5447
5448 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
5449
5450 * replace.el (read-regexp): Don't add ": " when PROMPT already
5451 ends with a colon and space. (Bug#12321)
5452
5453 2012-09-20 Tassilo Horn <tsdh@gnu.org>
5454
5455 * doc-view.el (doc-view-display): Better fix for the cl-assertion
5456 error.
5457
5458 2012-09-20 Stefan Merten <smerten@oekonux.de>
5459
5460 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
5461 Fixes feature request bug#11711.
5462 (rst-mode): Create `imenu-create-index-function'.
5463 (rst-get-stripped-line): Delete after refactoring.
5464 (rst-section-tree, rst-section-tree-rec)
5465 (rst-section-tree-point): Refactor and document properly.
5466 (rst-imenu-find-adornments-for-position)
5467 (rst-imenu-convert-cell, rst-imenu-create-index):
5468 New function.
5469
5470 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5471
5472 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
5473 (macroexp--expand-all): Use it.
5474 (macroexp--funcall-and-return): Remove by folding it into its sole
5475 caller (macroexp--warn-and-return).
5476 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
5477 Use macroexp--obsolete-warning.
5478
5479 * calc/calc.el: Fix last change by removing the whole chunk, since it
5480 was only needed back when Calc was not bundled.
5481
5482 2012-09-20 Martin Rudalics <rudalics@gmx.at>
5483
5484 * emacs-lisp/debug.el (debug): Restore assignment to
5485 debugger-old-buffer removed on 2012-09-08.
5486
5487 2012-09-20 Juri Linkov <juri@jurta.org>
5488
5489 * dired-aux.el (dired-diff): Remove (require 'diff) since
5490 `diff-latest-backup-file' is now autoloaded.
5491
5492 2012-09-20 Chong Yidong <cyd@gnu.org>
5493
5494 * vc/diff.el (diff-latest-backup-file): Autoload.
5495
5496 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5497
5498 * calc/calc.el: Remove redundant autoload shape check.
5499 (sel-mode): Don't defvar.
5500 (calc-get-stack-element): Add `sel-mode' arg instead.
5501 (calc-top, calc-top-list): Pass it this additional argument.
5502 * calc/calc-store.el (calc-store-map):
5503 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
5504 (calc-map-equation, calc-outer-product, calc-inner-product):
5505 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
5506
5507 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
5508
5509 2012-09-19 Juri Linkov <juri@jurta.org>
5510
5511 * dired-aux.el (dired-diff): Add (require 'diff) because
5512 `diff-latest-backup-file' is not autoloaded.
5513 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
5514 of `dired-get-filename' to t to not report error when there is
5515 no default file on the current line.
5516
5517 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
5518
5519 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
5520 macroexp--eval-if-compile.
5521 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
5522 (macroexp--expand-all): Use them (bug#12371).
5523
5524 * doc-view.el (doc-view-guess-paper-size)
5525 (doc-view-scale-bounding-box): Fix unbound `caddr'.
5526
5527 2012-09-19 Tassilo Horn <tsdh@gnu.org>
5528
5529 New feature: set optimal slice from BoundingBox information.
5530 * doc-view.el (doc-view-mode-map): Add keybinding.
5531 (doc-view-menu): Add menu entry.
5532 (doc-view-set-slice): Adapt docstring.
5533 (doc-view-get-bounding-box, doc-view-guess-paper-size)
5534 (doc-view-scale-bounding-box)
5535 (doc-view-set-slice-from-bounding-box): New functions.
5536 (doc-view-paper-sizes): New defvar.
5537
5538 2012-09-19 Glenn Morris <rgm@gnu.org>
5539
5540 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
5541 (byte-compile-log-warning): Autoload. (Bug#12371)
5542
5543 * calendar/calendar.el (calendar-american-month-header)
5544 (calendar-european-month-header, calendar-iso-month-header)
5545 (calendar-month-header): New options.
5546 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
5547 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
5548
5549 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5550
5551 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
5552
5553 2012-09-18 Juri Linkov <juri@jurta.org>
5554
5555 * dired-aux.el (dired-diff): Restore original functionality of
5556 getting the default value, but keep new feature of using the
5557 latest existing backup file (`diff-latest-backup-file').
5558
5559 2012-09-18 Juri Linkov <juri@jurta.org>
5560
5561 * dired.el (dired-mark): If the region is active in Transient Mark
5562 mode, mark all files in the active region. Doc fix.
5563 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
5564 Doc fix. (Bug#10624)
5565
5566 2012-09-18 Juri Linkov <juri@jurta.org>
5567
5568 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
5569 attributes for M-n are pulled from the file at point.
5570 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
5571 Suggested by Drew Adams. (Bug#10624)
5572
5573 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
5574
5575 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
5576 whitespace after "end".
5577 (ruby-do-end-to-brace): Collapse block to one line if it fits
5578 within fill-column.
5579
5580 2012-09-18 Martin Rudalics <rudalics@gmx.at>
5581
5582 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
5583 value.
5584 (debug): Don't remove debugger window when debugger is expected
5585 to be back.
5586
5587 2012-09-18 Chong Yidong <cyd@gnu.org>
5588
5589 * custom.el (defface): Doc fix.
5590
5591 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
5592
5593 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
5594
5595 * progmodes/compile.el (compilation-start): Use compilation-always-kill
5596 to initialize query-on-exit; then test that instead (bug#12288).
5597
5598 2012-09-17 Stefan Merten <smerten@oekonux.de>
5599
5600 * textmodes/rst.el: Add support for `testcover'.
5601 (rst-defcustom-testcover, rst-testcover-add-compose)
5602 (rst-testcover-add-1value): New functions.
5603 (rst-portable-mark-active-p): Replace by `use-region-p'.
5604 (rst-update-section, rst-classify-adornment)
5605 (rst-find-title-line): Mark `1value' forms.
5606 (rst-classify-adornment): Remove superfluous form.
5607 (rst-update-section, rst-get-adornments-around)
5608 (rst-adornment-complete-p, rst-get-next-adornment)
5609 (rst-adjust, rst-promote-region)
5610 (rst-display-adornments-hierarchy, rst-straighten-adornments)
5611 (rst-find-pfx-in-region, rst-section-tree-rec)
5612 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
5613 (rst-toc-node, rst-toc, rst-forward-section)
5614 (rst-iterate-leftmost-paragraphs)
5615 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
5616 (rst-bullet-list-region)
5617 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
5618 (rst-compile-find-conf, rst-compile)
5619 (rst-repeat-last-character): Fix style.
5620
5621 2012-09-17 Chong Yidong <cyd@gnu.org>
5622
5623 * comint.el (comint--complete-file-name-data): Don't add a space
5624 if the status is `sole'; that adds a gratuitous space in the
5625 completion-cycling case (Bug#12092).
5626
5627 * pcomplete.el (pcomplete-completions-at-point): Likewise.
5628
5629 2012-09-17 Richard Stallman <rms@gnu.org>
5630
5631 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
5632 only in the mime-shown mode, not in raw mode.
5633 (rmail-mime): Toggle off mime by displaying the message without
5634 mime processing. (Bug#12305)
5635
5636 * mail/rmail.el (rmail-retry-failure):
5637 Turn off mime processing first. (Bug#12037)
5638
5639 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
5640
5641 2012-09-17 Chong Yidong <cyd@gnu.org>
5642
5643 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
5644 (shell-dynamic-complete-functions): Convert to defcustom.
5645 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
5646
5647 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
5648 * comint.el (comint-prompt-read-only):
5649 * custom.el (defcustom):
5650 * hi-lock.el (hi-lock-mode):
5651 * ibuffer.el (ibuffer-formats):
5652 * ielm.el (ielm-prompt-read-only):
5653 * novice.el (disable-command):
5654 * saveplace.el (toggle-save-place):
5655 * speedbar.el (speedbar-supported-extension-expressions):
5656 * startup.el (auto-save-list-file-prefix, init-file-user)
5657 (after-init-hook, inhibit-startup-echo-area-message):
5658 * strokes.el (strokes-help):
5659 * time-stamp.el (time-stamp):
5660 * calendar/calendar.el (calendar, diary-file):
5661 * calendar/diary-lib.el (diary-mail-entries, diary)
5662 (diary-list-entries-hook):
5663 * calendar/holidays.el (holidays, calendar-holidays):
5664 * calendar/lunar.el (lunar-phases):
5665 * calendar/solar.el (sunrise-sunset):
5666 * emulation/edt.el (edt-load-keys):
5667 * emulation/viper.el (viper-mode):
5668 * eshell/em-alias.el (eshell-command-aliases-list):
5669 * eshell/esh-util.el (eshell-convert-numeric-arguments):
5670 * international/ogonek.el (ogonek-information):
5671 * net/tramp-cmds.el (tramp-bug):
5672 * net/quickurl.el (quickurl-reread-hook-postfix):
5673 * play/decipher.el (decipher-font-lock-keywords):
5674 * progmodes/cc-styles.el (c-set-style):
5675 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
5676 * progmodes/inf-lisp.el (inferior-lisp-prompt):
5677 * progmodes/octave-mod.el (octave-mode):
5678 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
5679 * progmodes/verilog-mode.el (verilog-read-defines):
5680 * textmodes/two-column.el (2C-mode): Likewise.
5681
5682 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
5683
5684 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
5685 that holds many addresses.
5686
5687 2012-09-16 Chong Yidong <cyd@gnu.org>
5688
5689 * align.el (align-areas): Call the indication function with
5690 positions instead of markers for arguments (Bug#12343).
5691
5692 * files.el (parse-colon-path): Use split-string (Bug#12351).
5693
5694 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
5695 (display-buffer-function): Mark as obsolete.
5696
5697 * progmodes/compile.el (compilation-parse-errors): Accept list
5698 values similar to font-lock-keywords (Bug#12136).
5699 Suggested by Oleksandr Manzyuk.
5700 (compilation-error-regexp-alist): Doc fix.
5701
5702 2012-09-15 Glenn Morris <rgm@gnu.org>
5703
5704 * version.el (emacs-bzr-version-bzr): New function.
5705 (emacs-bzr-get-version): Add optional EXTERNAL argument.
5706
5707 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
5708 checkouts, check the parent dirstate matches the branch.
5709 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
5710 empty string.
5711
5712 * version.el (emacs-bzr-version): Doc fix.
5713 (emacs-bzr-version-dirstate): New function.
5714 (emacs-bzr-get-version): For lightweight checkouts, if the parent
5715 is local try and check that it matches the branch. If not, just
5716 use dirstate information. (Bug#12441)
5717
5718 2012-09-14 Juri Linkov <juri@jurta.org>
5719
5720 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
5721 (Bug#12399)
5722
5723 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
5724
5725 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
5726
5727 * emacs-lisp/edebug.el: Miscellaneous cleanup.
5728 Remove obsolete byte-compiler hack that tried to silence some warnings.
5729 (edebug-submit-bug-report): Remove.
5730 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
5731 Remove aliases, use the un-prefixed name instead.
5732 (edebug-pop-to-buffer): Consider other frames.
5733 (edebug-original-read):: Make it more obvious that it's always defined.
5734 (edebug--make-form-data-entry, edebug--form-data-name)
5735 (edebug--form-data-begin, edebug--form-data-end): Rename from the
5736 single-dashed name, and implement with cl-defstruct.
5737 (edebug-set-form-data-entry): Use the standard accessors.
5738 (edebug-make-top-form-data-entry): Use push.
5739 (edebug-no-match): Drop useless `funcall'.
5740 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
5741 to functions.
5742 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
5743 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
5744 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
5745 (easy-menu-define, with-custom-print): Remove redundant specs.
5746 (edebug-outside-overriding-local-map)
5747 (edebug-outside-overriding-terminal-local-map): Remove, unused.
5748 (edebug--display): Bind unread-command-events directly to nil rather
5749 than binding it to unread-command-events and later setting it to nil.
5750 (edebug--display): Kill edebug-eval-buffer here...
5751 (edebug--recursive-edit): ...rather than here.
5752 Bind standard-output and standard-input.
5753 (edebug-eval): Check cl-macroexpand-all is fboundp.
5754 (edebug-temp-display-freq-count): Fix last change.
5755
5756 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
5757 * subr.el (noreturn, 1value): Add `debug' spec.
5758 * emacs-lisp/advice.el: Require cl-lib.
5759 (ad-copy-tree): Remove, use copy-tree instead.
5760 (ad-dolist): Remove use dolist or cl-dolist instead.
5761 (ad-do-return): Remove, use cl-return instead.
5762 (defadvice): Add `debug' spec.
5763
5764 2012-09-13 Juri Linkov <juri@jurta.org>
5765
5766 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
5767 (Bug#12399)
5768
5769 2012-09-13 Glenn Morris <rgm@gnu.org>
5770
5771 * calc/calc.el (math-compose-expr):
5772 * calc/calc-ext.el (math-compose-expr):
5773 * progmodes/cc-defs.el (cl-macroexpand-all):
5774 * progmodes/cc-langs.el (delete-duplicates, mapcan)
5775 (cl-macroexpand-all): Update declarations.
5776
5777 * vc/vc.el: No need to require ediff.
5778 (ediff-load-version-control): Declare.
5779 (ediff-vc-internal): Fix declaration.
5780 (vc-version-ediff): Require ediff.
5781
5782 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5783
5784 Use a more backwards-compatible timer format (Bug#12430).
5785 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
5786 being right after USECS, as that better supports old code that
5787 inadvisedly looked directly at the timer vector.
5788
5789 2012-09-13 Kenichi Handa <handa@gnu.org>
5790
5791 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
5792 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
5793 `coding-priority' property of these language environment.
5794
5795 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5796
5797 Fix glitches caused by addition of psec to timers (Bug#12430).
5798 * image.el (image-animate-timer):
5799 * time.el (display-time-world-timer):
5800 Use timer--function and timer--args rather than raw access to
5801 timer vector.
5802
5803 2012-09-13 Glenn Morris <rgm@gnu.org>
5804
5805 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
5806 If not compiling a file, try using load-file-name.
5807
5808 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
5809
5810 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
5811 Fix last change.
5812 (edebug-update-eval-list): Use `push'.
5813
5814 * emacs-lisp/edebug.el: Use lexical-binding.
5815 Remove the "edebug-" prefix from non-dynamically-scoped variables.
5816 Mark unused args with underscore.
5817 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
5818 (edebug-form-data): Use defvar-local.
5819 (edebug-make-before-and-after-form, edebug-make-after-form):
5820 Use backquote.
5821 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
5822 Not dynamically scoped any more.
5823 (edebug--enter-trace): Add arguments `function' and `args'.
5824 Rename from edebug-enter-trace.
5825 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
5826 (edebug--update-coverage): Add `after-index' and `value' args.
5827 Rename from edebug-update-coverage.
5828 (edebug-slow-after): Call it accordingly.
5829 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
5830 edebug-recursive-edit.
5831 (edebug--display): Call it accordingly. Add args `value',
5832 `offset-index', and `arg-mode'. Rename from edebug-display.
5833 (edebug-debugger, edebug): Call it accordingly.
5834 (edebug-eval-display-list): Use dolist.
5835
5836 2012-09-12 Juri Linkov <juri@jurta.org>
5837
5838 * info.el (Info-search): Don't check for isearch-mode and
5839 isearch-regexp before let-binding search-spaces-regexp to
5840 Info-search-whitespace-regexp.
5841 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
5842 search-whitespace-regexp if isearch-lax-whitespace or
5843 isearch-regexp-lax-whitespace is non-nil.
5844 (Info-mode): Don't set local variable search-whitespace-regexp.
5845 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
5846
5847 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5848
5849 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
5850 (debugger-env-macro): Remove support for unread-command-char.
5851
5852 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
5853 the temporary map re-appearing on emulation-mode-map-alists.
5854
5855 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
5856 since 22.1.
5857
5858 * ehelp.el (with-electric-help): Accept functions in
5859 electric-help-form-to-execute.
5860 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
5861 And replace unread-command-char -> unread-command-events.
5862
5863 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
5864
5865 Sync with Tramp 2.2.6.
5866
5867 * net/tramp.el (tramp-accept-process-output): Don't use
5868 JUST-THIS-ONE in the XEmacs case.
5869
5870 * net/trampver.el: Update release number.
5871
5872 2012-09-12 Martin Rudalics <rudalics@gmx.at>
5873
5874 * emacs-lisp/debug.el (debugger-previous-window-height):
5875 New variable.
5876 (debug): When debugger-jumping-flag is non-nil try to restore
5877 height of debugger window. (Bug#8789)
5878
5879 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5880
5881 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
5882 overriding-local-map and pre/post-command-hook here.
5883 (edebug-recursive-edit): Do it here instead (bug#12345).
5884 (edebug-outside-unread-command-char): Remove all uses of
5885 unread-command-char.
5886
5887 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
5888 inhibit-debugger is bound instead.
5889
5890 2012-09-11 Bastien Guerry <bzg@gnu.org>
5891
5892 * subr.el (set-temporary-overlay-map): Add a docstring.
5893 (Bug#12346)
5894
5895 2012-09-11 Bastien Guerry <bzg@gnu.org>
5896
5897 * minibuffer.el (completion-table-subvert): Fix docstring.
5898 (Bug#12347)
5899
5900 2012-09-11 Bastien Guerry <bzg@gnu.org>
5901
5902 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
5903
5904 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
5905
5906 * progmodes/sql.el: Version 3.1
5907 (sql-db2-escape-newlines): New variable.
5908 (sql-escape-newlines-filter): Use it.
5909
5910 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
5911
5912 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
5913
5914 2012-09-10 Dan Nicolaescu <dann@gnu.org>
5915
5916 * vc/diff-mode.el (diff-mode-menu):
5917 Bind diff-remove-trailing-whitespace.
5918
5919 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
5920
5921 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
5922 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
5923 (emacs-lisp-byte-code-mode): New functions.
5924 (eval-sexp-add-defvars): Don't skip defvars in column >0.
5925 (eval-defun-2): Remove bogus interactive spec.
5926 (lisp-indent-line): Remove redundant whole-exp code, now done in
5927 indent-according-to-mode.
5928 (save-match-data): Remove redundant indent data.
5929
5930 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
5931 Use `declare'.
5932
5933 2012-09-09 Juri Linkov <juri@jurta.org>
5934
5935 * replace.el (replace-regexp-lax-whitespace): New defcustom.
5936 (replace-lax-whitespace, query-replace-regexp)
5937 (query-replace-regexp-eval, replace-regexp): Doc fix.
5938 (perform-replace, replace-highlight): Let-bind
5939 isearch-lax-whitespace to replace-lax-whitespace and
5940 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
5941
5942 * isearch.el (isearch-query-replace): Let-bind
5943 replace-lax-whitespace to isearch-lax-whitespace and
5944 replace-regexp-lax-whitespace to
5945 isearch-regexp-lax-whitespace. (Bug#10885)
5946
5947 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5948
5949 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
5950
5951 2012-09-09 Alan Mackenzie <acm@muc.de>
5952
5953 * progmodes/cc-engine.el (c-state-cache-init):
5954 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
5955 (c-record-parse-state-state):
5956 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
5957
5958 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
5959
5960 * register.el (register-separator): Rename from
5961 separator-register. All uses changed. Doc fix.
5962 (register): Fix version.
5963
5964 2012-09-09 Chong Yidong <cyd@gnu.org>
5965
5966 * replace.el (query-replace-map): Bind four new symbols for
5967 requesting window scrolling.
5968
5969 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
5970 query-replace-map (Bug#8948).
5971
5972 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
5973
5974 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
5975 since they are now in query-replace-map.
5976
5977 * window.el (scroll-other-window-down): Make the arg optional.
5978
5979 2012-09-09 Chong Yidong <cyd@gnu.org>
5980
5981 * files.el (hack-local-variables-confirm): Use quit-window to kill
5982 the *Local Variables* buffer.
5983
5984 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
5985
5986 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
5987 not just expect to be at its beginning. Adjust callees.
5988 Succeed when do-end block has no space before the pipe character.
5989 (ruby-brace-to-do-end): When the original block is one-liner,
5990 convert to multiline. Reindent the result.
5991
5992 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
5993
5994 * register.el (register): New group.
5995 (separator-register): New user option.
5996 (increment-register): Route it to `append-to-register', if
5997 register contains text. Implication is that `C-x r +' can now be
5998 used for appending to a text register (bug#12217).
5999 (append-to-register, prepend-to-register): Add separator based on
6000 `separator-register'.
6001
6002 2012-09-08 Alan Mackenzie <acm@muc.de>
6003
6004 AWK Mode: make auto-newline work when there's "==" in the pattern.
6005 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
6006 correctly.
6007 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
6008 Test more rigorously for "=" token.
6009
6010 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
6011
6012 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
6013 Only fail when reached LIMIT.
6014
6015 2012-09-08 Chong Yidong <cyd@gnu.org>
6016
6017 * dired.el (dired-mode-map): Don't bind M-=.
6018
6019 * dired-aux.el (dired-diff): Use backup file as default.
6020
6021 2012-09-08 Drew Adams <drew.adams@oracle.com>
6022
6023 * subr.el (add-to-history): Fix delete usage (Bug#12314).
6024
6025 2012-09-08 Chong Yidong <cyd@gnu.org>
6026
6027 * subr.el (syntax-after, syntax-class): Doc fix.
6028
6029 2012-09-08 Martin Rudalics <rudalics@gmx.at>
6030
6031 * window.el (display-buffer-in-previous-window): New buffer
6032 display action function.
6033
6034 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
6035 (debugger-previous-window): New variable.
6036 (debug): Rewrite using display-buffer-in-previous-window,
6037 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
6038
6039 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6040
6041 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
6042
6043 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
6044
6045 * progmodes/python.el (python-shell-send-string):
6046 When default-directory is remote, create temp file on remote
6047 filesystem.
6048 (python-shell-send-file): When file is remote, pass local view of
6049 file paths to remote Python interpreter. (Bug#12340)
6050
6051 2012-09-07 Chong Yidong <cyd@gnu.org>
6052
6053 * window.el (switch-to-buffer): Doc fix (Bug#12181).
6054
6055 * files.el (after-find-file): Don't fail on a read-only buffer if
6056 require-final-newline is `visit' or `visit-save' (Bug#11156).
6057
6058 * subr.el (read-char-choice): Allow quitting via ESC ESC.
6059
6060 * userlock.el (ask-user-about-supersession-threat):
6061 Use read-char-choice (Bug#12093).
6062
6063 2012-09-07 Chong Yidong <cyd@gnu.org>
6064
6065 * subr.el (buffer-narrowed-p): New function.
6066
6067 * ses.el (ses-widen):
6068 * simple.el (count-words--buffer-message):
6069 * net/browse-url.el (browse-url-of-buffer): Use it.
6070
6071 * simple.el (count-words-region): Don't signal an error if there
6072 is a non-nil prefix arg and the mark is not set.
6073
6074 * help.el (describe-key-briefly): Allow the message to be seen
6075 when invoked from the minibuffer (Bug#7014).
6076
6077 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6078
6079 * progmodes/ruby-mode.el (ruby-end-of-defun)
6080 (ruby-beginning-of-defun): Simplify, allow indentation before
6081 block beginning and end keywords.
6082 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
6083 (ruby-end-of-defun): Expect that the point is at the beginning of
6084 the defun.
6085
6086 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6087
6088 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
6089 (bug#12367).
6090 (cl--make-usage-args): Strip _ from argument names.
6091
6092 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6093
6094 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
6095 obsolete alias speedbar-key-map.
6096 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
6097 (vhdl-index-menu-init): Don't use obsolete variable
6098 font-lock-maximum-size.
6099
6100 2012-09-06 Chong Yidong <cyd@gnu.org>
6101
6102 * frame.el (window-system-version): Mark as obsolete.
6103
6104 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
6105 of obsolete variable speedbar-key-map.
6106
6107 2012-09-06 Juri Linkov <juri@jurta.org>
6108
6109 * replace.el (replace-lax-whitespace): New defcustom.
6110 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6111 (replace-string, replace-regexp): Mention it in docstrings.
6112 (perform-replace, replace-highlight): Let-bind
6113 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
6114 to the values of replace-lax-whitespace and regexp-flag.
6115 Don't let-bind search-whitespace-regexp. (Bug#10885)
6116
6117 * isearch.el (isearch-query-replace): Let-bind
6118 replace-lax-whitespace instead of let-binding
6119 replace-search-function and replace-re-search-function.
6120 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
6121 and isearch-regexp-lax-whitespace to lazy-highlight variables.
6122 (isearch-toggle-symbol): Set isearch-regexp to nil
6123 in isearch-word mode (like in isearch-toggle-word).
6124
6125 2012-09-06 Juri Linkov <juri@jurta.org>
6126
6127 * replace.el (replace-search-function)
6128 (replace-re-search-function): Set default values to nil.
6129 (perform-replace): Let-bind isearch-related variables based on
6130 replace-related values, call `isearch-search-fun' and let-bind
6131 the result to `search-function'. Remove code that sets
6132 `search-function' and `search-string' separately for
6133 `delimited-flag'.
6134 (replace-highlight): Add new argument `delimited-flag' and
6135 rename other arguments to the names used in `perform-replace'.
6136 Let-bind `isearch-word' to the argument `delimited-flag'.
6137 (Bug#10885, bug#10887)
6138
6139 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
6140
6141 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
6142 ruby-beginning-of-indent, simplify, allow all keywords to have
6143 indentation before them.
6144 (ruby-beginning-of-indent): Adjust for above. Search until the
6145 found point is not inside a string or comment.
6146 (ruby-font-lock-keywords): Allow symbols to start with "@"
6147 character, give them higher priority than variables.
6148 (ruby-syntax-propertize-function)
6149 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
6150 matchers. Expression expansions are not comments when inside a
6151 string, and there comment syntax status is irrelevant.
6152 (ruby-match-expression-expansion): New function. Check that
6153 expression expansion is inside a string, and it's not escaped.
6154 (ruby-font-lock-keywords): Use it.
6155
6156 2012-09-05 Martin Rudalics <rudalics@gmx.at>
6157
6158 * help.el (temp-buffer-max-height): New default value.
6159 (temp-buffer-resize-frames): New option.
6160 (resize-temp-buffer-window): Optionally resize frame.
6161
6162 * window.el (fit-frame-to-buffer-bottom-margin): New option.
6163 (fit-frame-to-buffer): New function.
6164
6165 2012-09-05 Glenn Morris <rgm@gnu.org>
6166
6167 * emulation/cua-rect.el (cua--init-rectangles):
6168 * textmodes/picture.el (picture-mode-map):
6169 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
6170 like forward-char and backward-char. (Bug#12317)
6171
6172 2012-09-05 Leo Liu <sdl.web@gmail.com>
6173
6174 * progmodes/flymake.el (flymake-warning-re): New variable.
6175 (flymake-parse-line): Use it.
6176
6177 2012-09-05 Glenn Morris <rgm@gnu.org>
6178
6179 * calendar/holidays.el (holiday-christian-holidays):
6180 Rename an entry. (Bug#12289)
6181
6182 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6183
6184 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
6185 (bug#12222).
6186
6187 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6188
6189 * loadup.el: Load macroexp. Remove hack.
6190 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
6191 (macroexp--expand-all): Use it to get better warnings.
6192 (macroexp--backtrace, macroexp--trim-backtrace-frame)
6193 (internal-macroexpand-for-load): New functions.
6194 (macroexp--pending-eager-loads): New var.
6195 (emacs-startup-hook): New hack to replace one in loadup.el.
6196 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
6197 (cl--compiler-macro-cXXr): Move to top, before they can be used.
6198 (cl-psetf): Simplify.
6199 (cl-defstruct): Add indent rule.
6200
6201 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6202
6203 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
6204 over `user-mail-address' for the SMTP MAIL FROM envelope.
6205 (smtpmail-via-smtp): Ditto.
6206
6207 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
6208
6209 * progmodes/ruby-mode.el: Clean up keybindings.
6210 (ruby-mode-map): Don't bind ruby-electric-brace,
6211 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
6212 backward-kill-word, reindent-then-newline-and-indent.
6213 (ruby-mark-defun): Remove.
6214 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
6215 (ruby-mode): Set local beginning-of-defun-function and
6216 end-of-defun-function values.
6217
6218 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6219
6220 * window.el (temp-buffer-window-setup-hook)
6221 (temp-buffer-window-show-hook): New hooks.
6222 (temp-buffer-window-setup, temp-buffer-window-show)
6223 (with-temp-buffer-window): New functions.
6224 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
6225 (special-display-popup-frame): Make sure the window used shows BUFFER.
6226
6227 * help.el (temp-buffer-resize-mode): Fix doc-string.
6228 (resize-temp-buffer-window): New optional argument WINDOW.
6229
6230 * files.el (recover-file, save-buffers-kill-emacs):
6231 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
6232
6233 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
6234
6235 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
6236 remote definition of `default-directory', ensure we can connect.
6237
6238 2012-09-02 Juri Linkov <juri@jurta.org>
6239
6240 Toggle whitespace matching mode with M-s SPC.
6241 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
6242
6243 * isearch.el (search-whitespace-regexp): Doc fix.
6244 Remove cons cell customization.
6245 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
6246 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
6247 New variables.
6248 (isearch-forward, isearch-forward-regexp): Doc fix.
6249 (isearch-toggle-lax-whitespace): New command.
6250 (search-forward-lax-whitespace, search-backward-lax-whitespace)
6251 (re-search-forward-lax-whitespace)
6252 (re-search-backward-lax-whitespace): New functions.
6253 (isearch-whitespace-regexp): Remove function.
6254 (isearch-query-replace): Let-bind replace-search-function and
6255 replace-re-search-function.
6256 (isearch-occur): Let-bind search-spaces-regexp according to the
6257 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
6258 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
6259 condition for C-q SPC.
6260 (isearch-search-fun-default): Use new functions mentioned above.
6261 (isearch-search-forward, isearch-search-backward): Remove functions.
6262 (isearch-search): Don't let-bind search-spaces-regexp.
6263 (isearch-lazy-highlight-space-regexp): Remove variable.
6264 (isearch-lazy-highlight-lax-whitespace)
6265 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
6266 (isearch-lazy-highlight-new-loop): Use them.
6267 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
6268
6269 2012-09-02 Chong Yidong <cyd@gnu.org>
6270
6271 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
6272
6273 2012-09-02 Glenn Morris <rgm@gnu.org>
6274
6275 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
6276
6277 2012-09-01 Glenn Morris <rgm@gnu.org>
6278
6279 * term.el: Tidy up menu definitions.
6280 (term-mode-map): Use easymenu for In/Out, Complete menus.
6281 (term-pager-break-map): Initialize in the defvar.
6282 (term-terminal-menu, term-signals-menu): Define with easymenu.
6283 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
6284 (term-pager-menu): New, extracted from term-process-pager.
6285 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
6286 (term-update-mode-line): Propertize line/char and page items.
6287 (term-process-pager): Move keymap initialization elsewhere.
6288
6289 2012-09-01 Martin Rudalics <rudalics@gmx.at>
6290
6291 * window.el (switch-to-prev-buffer): Handle additional values of
6292 BURY-OR-KILL argument. Don't switch in minibuffer window.
6293 (switch-to-next-buffer): Don't switch in minibuffer window.
6294 (quit-restore-window): New function based on quit-window.
6295 Handle additional values of former KILL argument.
6296 (quit-window): Call quit-restore-window with appropriate
6297 interpretation of KILL argument.
6298 (display-buffer-below-selected): New buffer display action
6299 function.
6300
6301 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
6302
6303 * minibuffer.el (completion-at-point-functions): Complete docstring
6304 (bug#12254).
6305
6306 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6307
6308 Better seed support for (random).
6309 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
6310 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
6311 * play/mpuz.el, play/tetris.el, play/zone.el:
6312 * calc/calc-comb.el (math-init-random-base):
6313 * play/blackbox.el (bb-init-board):
6314 * play/life.el (life):
6315 * server.el (server-use-tcp):
6316 * type-break.el (type-break):
6317 Remove unnecessary call to (random t).
6318 * net/sasl.el (sasl-unique-id-function):
6319 Change (random t) to (random), now that the latter is more random.
6320 * play/life.el (life-initialized): Remove no-longer-needed var.
6321
6322 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
6323
6324 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
6325 Consider frame's buffer predicate when choosing the buffer.
6326 (Bug#12081)
6327
6328 2012-08-30 Richard Stallman <rms@gnu.org>
6329
6330 * simple.el (special-mode-map): Delete binding for `z'.
6331
6332 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
6333
6334 * progmodes/compile.el (compilation-always-kill): Doc fix.
6335
6336 2012-08-30 Chong Yidong <cyd@gnu.org>
6337
6338 * window.el (display-buffer-reuse-frames): Make the obsolescence
6339 message more informative.
6340
6341 2012-08-30 Glenn Morris <rgm@gnu.org>
6342
6343 * paren.el (show-paren-delay):
6344 Add a :set function. Doc fix. (Bug#12297)
6345
6346 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
6347
6348 * progmodes/compile.el (compilation-always-kill): New var.
6349 (compilation-start): Use it.
6350
6351 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
6352
6353 * simple.el (read-only-mode): Move from files.el for bootstrapping.
6354 * files.el (read-only-mode): Move to simple.el.
6355
6356 * files.el (read-only-mode): New minor mode.
6357 (toggle-read-only): Use it and mark obsolete.
6358 (find-file--read-only):
6359 * vc/vc.el (vc-next-action, vc-checkout):
6360 * vc/vc-cvs.el (vc-cvs-checkout):
6361 * obsolete/vc-mcvs.el (vc-mcvs-update):
6362 * ffap.el (ffap--toggle-read-only): Update callers.
6363
6364 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
6365
6366 * eshell/esh-ext.el (eshell-external-command): Do not examine
6367 remote shell scripts.
6368 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
6369
6370 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
6371 "/usr/local/sbin".
6372
6373 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6374
6375 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
6376
6377 2012-08-28 Leo Liu <sdl.web@gmail.com>
6378
6379 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
6380 completion-at-point. (Bug#12220)
6381
6382 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
6383
6384 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
6385
6386 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
6389 be buffer-local; add delete-trailing-whitespace (bug#12259).
6390
6391 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
6392
6393 * progmodes/hideif.el (hif-compress-define-list):
6394 Fix typo. (Bug#11951)
6395
6396 2012-08-28 Dan Nicolaescu <dann@gnu.org>
6397
6398 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
6399 buffer local setting.
6400
6401 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
6402 rcirc-encode-coding-system.
6403
6404 2012-08-28 Leo Liu <sdl.web@gmail.com>
6405
6406 * net/rcirc.el (rcirc-split-message): New function.
6407 (rcirc-send-message): Use it. (Bug#12051)
6408
6409 2012-08-28 Juri Linkov <juri@jurta.org>
6410
6411 * info.el (Info-fontify-node): Hide empty lines at the end of
6412 the node. (Bug#12272)
6413
6414 2012-08-27 Drew Adams <drew.adams@oracle.com>
6415
6416 * dired.el (dired-pop-to-buffer): Make window start at beginning
6417 of buffer (Bug#12281).
6418
6419 2012-08-26 Chong Yidong <cyd@gnu.org>
6420
6421 * window.el (special-display-regexps, special-display-frame-alist)
6422 (special-display-buffer-names, special-display-function)
6423 (display-buffer-reuse-frames): Mark as obsolete.
6424
6425 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
6426
6427 * help.el (help-print-return-message): Don't treat
6428 display-buffer-reuse-frames specially.
6429
6430 2012-08-26 Chong Yidong <cyd@gnu.org>
6431
6432 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
6433 New variable, replacing gdb-frame-parameters.
6434 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
6435 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
6436 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
6437 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
6438 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
6439 the functions directly with gdb-display-buffer-other-frame-action.
6440 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
6441 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
6442 (gdb-display-stack-buffer, gdb-display-locals-buffer)
6443 (gdb-display-registers-buffer): Define directly.
6444 (def-gdb-display-buffer): Macro deleted.
6445 (gdb-display-buffer): Remove second and third args, callers don't
6446 use them. Defer to the default display-buffer behavior, apart
6447 from making windows dedicated.
6448 (gdb-setup-windows): Don't call display-buffer unnecessarily.
6449
6450 * progmodes/gud.el (gud-display-line): Just use display-buffer.
6451
6452 * window.el (display-buffer-pop-up-frame): Handle a
6453 pop-up-frame-parameters alist entry.
6454 (display-buffer): Document it.
6455
6456 2012-08-26 Chong Yidong <cyd@gnu.org>
6457
6458 * isearch.el (search-whitespace-regexp): Make string and nil
6459 values apply to both ordinary and regexp search. Allow a cons
6460 cell value to distinguish between the two.
6461 (isearch-whitespace-regexp, isearch-search-forward)
6462 (isearch-search-backward): New functions.
6463 (isearch-occur, isearch-search-fun-default, isearch-search)
6464 (isearch-lazy-highlight-new-loop): Use them.
6465 (isearch-forward, isearch-forward-regexp): Doc fix.
6466
6467 2012-08-26 Chong Yidong <cyd@gnu.org>
6468
6469 * faces.el (help-argument-name): Always inherit from italic
6470 (Bug#12213).
6471
6472 2012-08-25 Martin Rudalics <rudalics@gmx.at>
6473
6474 * window.el (window--even-window-heights): Even heights when
6475 WINDOW and the selected window form a vertical combination.
6476 (display-buffer-use-some-window): Provide that window used gets
6477 sized back by quit-window. (Bug#11880) and (Bug#12091)
6478
6479 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6480
6481 Fix file time stamp problem with bzr and CVS (Bug#12001).
6482 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
6483 in the file's time stamp, since the version control system loses
6484 that information.
6485
6486 2012-08-22 Juri Linkov <juri@jurta.org>
6487
6488 * info.el (Info-fontify-node): Hide the suffix of the
6489 Info file name in the header line. (Bug#12187)
6490
6491 2012-08-22 Glenn Morris <rgm@gnu.org>
6492
6493 * calendar/cal-tex.el (cal-tex-weekly-common):
6494 Restore leading blank page.
6495
6496 2012-08-22 Le Wang <l26wang@gmail.com>
6497
6498 * misc.el (forward-to-word, backward-to-word): Activate or extend
6499 the region under `shift-select-mode'. (Bug#12231)
6500
6501 2012-08-22 Bastien Guerry <bzg@gnu.org>
6502
6503 * progmodes/executable.el (executable-prefix): Set to "#!" instead
6504 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
6505 gives details on why the space is never needed.
6506
6507 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6508
6509 * window.el (walk-window-tree, window-with-parameter):
6510 New optional argument MINIBUF to control whether these functions
6511 should run on the minibuffer window.
6512 (window-at-side-list): Don't operate on minibuffer window.
6513 (window-in-direction): Simplify and rewrite doc-string.
6514 (window--size-ignore): Rename to window--size-ignore-p.
6515 Update callers.
6516 (display-buffer-in-atom-window, window--major-non-side-window)
6517 (window--major-side-window, display-buffer-in-major-side-window)
6518 (delete-side-window, display-buffer-in-side-window):
6519 New functions.
6520 (window--side-check, window-deletable-p, delete-window)
6521 (delete-other-windows, split-window): Handle side windows and
6522 atomic windows appropriately.
6523 (window--display-buffer): Call display-buffer-record-window also
6524 when the window buffer did not change.
6525
6526 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
6527
6528 * help-fns.el (help-fns--key-bindings):
6529 Abbreviate non-symbol remap targets. (Bug#12174)
6530
6531 2012-08-22 Martin Rudalics <rudalics@gmx.at>
6532
6533 * dired.el (dired-mark-remembered): Don't clobber point.
6534 (Bug#11795)
6535
6536 2012-08-22 Glenn Morris <rgm@gnu.org>
6537
6538 * progmodes/bug-reference.el (bug-reference): New custom group.
6539 (bug-reference-bug-regexp): Make it a defcustom.
6540
6541 2012-08-22 Daiki Ueno <ueno@unixuser.org>
6542
6543 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
6544 (js-paren-indent-offset, js-square-indent-offset)
6545 (js-curly-indent-offset): Add :safe (Bug#12257).
6546
6547 2012-08-22 Edward O'Connor <hober0@gmail.com>
6548
6549 * json.el (json-key-format): Add error properties.
6550 (json-encode-key): New function.
6551 (json-encode-hash-table, json-encode-alist, json-encode-plist):
6552 Use json-encode-key.
6553
6554 2012-08-22 Glenn Morris <rgm@gnu.org>
6555
6556 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
6557 (cal-tex-leftday, cal-tex-rightday): Remove functions.
6558 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
6559 Update for above change.
6560
6561 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
6562
6563 * cus-face.el (custom-face-attributes): Fix customize type for the
6564 :underline attribute. (Bug#11805)
6565
6566 2012-08-21 Martin Rudalics <rudalics@gmx.at>
6567
6568 * window.el (window-point-1, set-window-point-1): Remove.
6569 (window-in-direction, record-window-buffer)
6570 (set-window-buffer-start-and-point, split-window-below)
6571 (window--state-get-1, display-buffer-record-window):
6572 Replace calls to window-point-1 and set-window-point-1 by calls to
6573 window-point and set-window-point respectively.
6574
6575 2012-08-21 Glenn Morris <rgm@gnu.org>
6576
6577 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
6578 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
6579 Use it.
6580
6581 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
6582 (cal-tex-shortday): New function.
6583 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
6584 (cal-tex-cursor-filofax-daily): Use the above.
6585
6586 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
6587 New functions.
6588 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6589 (cal-tex-cursor-filofax-week): Use them.
6590
6591 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
6592 New constants.
6593 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
6594 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
6595
6596 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
6597 (cal-tex-end-document): Don't rely on buffer name.
6598
6599 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
6600 Use cal-tex-vspace.
6601 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
6602 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
6603 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
6604 Use cal-tex-arg.
6605
6606 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
6607 (cal-tex-cursor-week, cal-tex-cursor-week2)
6608 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
6609 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6610 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
6611 (cal-tex-insert-preamble, cal-tex-b-document)
6612 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
6613 Improve cal-tex-cmd usage.
6614
6615 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
6616 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
6617 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
6618 (cal-tex-weekly-paper): New function.
6619 (cal-tex-cursor-week, cal-tex-cursor-week2)
6620 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
6621 (cal-tex-cursor-day): Use it.
6622
6623 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
6624 (cal-tex-cursor-filofax-week): Remove leading blank page.
6625
6626 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6627 Add autoload cookie. For now at least, don't use color, since
6628 no other cal-tex function does.
6629
6630 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
6631 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
6632 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
6633
6634 2012-08-21 Juri Linkov <juri@jurta.org>
6635
6636 * info.el (Info-file-attributes): New variable.
6637 (info-insert-file-contents): Add file attributes to
6638 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
6639 `Info-toc-nodes' when previous modtime of the Info file is less
6640 than new modtime.
6641 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
6642 of info.el. (Bug#12230)
6643
6644 2012-08-20 Glenn Morris <rgm@gnu.org>
6645
6646 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
6647 * calendar/holidays.el (calendar-holiday-list):
6648 Report errors with display-warning rather than beep'n'sleep.
6649
6650 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
6651
6652 * net/tramp.el (tramp-accept-process-output): Accept only output
6653 from PROC. Otherwise, process filters and sentinels might be
6654 confused. (Bug#12145)
6655
6656 2012-08-20 Chong Yidong <cyd@gnu.org>
6657
6658 * descr-text.el (describe-text-properties-1): Use overlays-in to
6659 report on empty overlays (Bug#3322).
6660
6661 2012-08-20 Glenn Morris <rgm@gnu.org>
6662
6663 * mail/rmailout.el (rmail-output-read-file-name):
6664 Trap and report errors in rmail-output-file-alist elements.
6665
6666 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
6667 since most non-font-lock faces are not also variables).
6668
6669 2012-08-20 Edward Reingold <reingold@iit.edu>
6670
6671 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
6672 New function. (Bug12160)
6673
6674 2012-08-19 Glenn Morris <rgm@gnu.org>
6675
6676 * mail/rmailout.el (rmail-output-read-file-name):
6677 Fix previous change (when the alist is nil or does not match).
6678
6679 2012-08-19 Chong Yidong <cyd@gnu.org>
6680
6681 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
6682 (Bug#12228).
6683
6684 2012-08-18 Chong Yidong <cyd@gnu.org>
6685
6686 * simple.el (yank-handled-properties): New defcustom.
6687 (yank-excluded-properties): Add font-lock-face and category.
6688 (yank): Doc fix.
6689
6690 * subr.el (remove-yank-excluded-properties):
6691 Obey yank-handled-properties. The special handling of font-lock-face
6692 and category is now done this way, instead of being hard-coded.
6693 (insert-for-yank-1): Remove font-lock-face handling.
6694 (yank-handle-font-lock-face-property)
6695 (yank-handle-category-property): New function.
6696
6697 2012-08-17 Glenn Morris <rgm@gnu.org>
6698
6699 * mail/rmailout.el (rmail-output-read-file-name):
6700 Check rmail-output-file-alist against the full message body
6701 in the correct rmail buffer. (Bug#12214)
6702
6703 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
6704
6705 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6706 Eliminate superfluous prompt. (Bug#12203)
6707
6708 2012-08-17 Chong Yidong <cyd@gnu.org>
6709
6710 * mouse.el (mouse-appearance-menu): If x-select-font returns a
6711 font spec, set the font directly (Bug#3228).
6712
6713 2012-08-17 Martin Rudalics <rudalics@gmx.at>
6714
6715 * window.el (delete-window): Fix last fix.
6716
6717 2012-08-16 Martin Rudalics <rudalics@gmx.at>
6718
6719 * window.el (window-valid-p): Move to window.c.
6720 (window-child, window-child-count, window-last-child)
6721 (window-normalize-window, window-combined-p)
6722 (window-combinations, window-atom-root, window-min-size)
6723 (window-sizable, window-sizable-p, window-size-fixed-p)
6724 (window-min-delta, window-max-delta, window--resizable)
6725 (window--resizable-p, window-resizable, window-total-size)
6726 (window-full-height-p, window-full-width-p, window-body-size)
6727 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
6728 (minimize-window, window-deletable-p, delete-window)
6729 (delete-other-windows, set-window-buffer-start-and-point)
6730 (next-buffer, previous-buffer, split-window, balance-windows-2)
6731 (set-window-text-height, window-buffer-height)
6732 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
6733 (truncated-partial-width-window-p): Minor code adjustments.
6734 In doc-strings state whether the argument window has to denote a
6735 live, valid or any window.
6736
6737 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
6738
6739 * progmodes/subword.el (subword-forward-function)
6740 (subword-backward-function, subword-forward-regexp)
6741 (subword-backward-regexp): New variables.
6742 (subword-forward, subword-forward-internal, subword-backward-internal):
6743 Use new variables, eg so that different "word" definitions
6744 can be easily used. (Bug#11411)
6745
6746 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6747
6748 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
6749 for composite selectors.
6750 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
6751 operation just because we can't find a previous revision.
6752
6753 2012-08-15 Chong Yidong <cyd@gnu.org>
6754
6755 * frame.el (set-frame-font): Accept font objects.
6756
6757 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
6758
6759 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
6760
6761 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
6762
6763 * man.el (Man-overstrike-face, Man-underline-face)
6764 (Man-reverse-face): Remove variables.
6765 (Man-overstrike, Man-underline, Man-reverse): New faces.
6766 (Man-fontify-manpage): Use them instead of the variables.
6767 (Man-cleanup-manpage): Comment change.
6768 (Man-ansi-color-map): New variable.
6769 (Man-fontify-manpage): Use it.
6770 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
6771
6772 Implement ANSI SGR parameters 22-27 (bug#12146).
6773 * ansi-color.el (ansi-colors): Doc fix.
6774 (ansi-color-context, ansi-color-context-region): Doc fix.
6775 (ansi-color--find-face): New function.
6776 (ansi-color-apply, ansi-color-apply-on-region): Use it.
6777 Rename the local variable `face' to `codes' since it is now a list of
6778 ansi codes. Doc fix.
6779 (ansi-color-get-face): Remove.
6780 (ansi-color-parse-sequence): New function, derived from
6781 ansi-color-get-face.
6782 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
6783 codes 22-27.
6784
6785 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
6786
6787 * subr.el (read-passwd): Allow use from a minibuffer.
6788
6789 2012-08-14 Eli Zaretskii <eliz@gnu.org>
6790
6791 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
6792 inside comments and strings as identifiers.
6793
6794 * progmodes/gud.el (gud-tooltip-print-command): Quote the
6795 expression to evaluate. This allows to evaluate expressions with
6796 embedded whitespace.
6797 (gud-tooltip-tips): Add a blank before the newline in the
6798 message-box text, for the benefit of message-box emulation on
6799 MS-Windows.
6800
6801 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
6802 messages from GDB, pop them up in a tooltip to give feedback to
6803 user.
6804 (gdb-tooltip-print-1): Quote the expression to evaluate.
6805 This allows to evaluate expressions with embedded whitespace.
6806 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
6807 if the TTY name is nil or empty (which happens when communicating
6808 with the inferior via pipes, e.g. on MS-Windows).
6809 (gdb-internals): If GDB sends a "&\n" empty debugging message,
6810 don't send that to the GUD buffer.
6811
6812 2012-08-14 Glenn Morris <rgm@gnu.org>
6813
6814 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
6815 Optimize away setq-default with no args, as for setq. (Bug#12195)
6816
6817 2012-08-14 Chong Yidong <cyd@gnu.org>
6818
6819 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
6820
6821 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
6822 (Bug#12085).
6823
6824 2012-08-14 Glenn Morris <rgm@gnu.org>
6825
6826 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
6827
6828 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
6829
6830 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
6831 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6832 Use cached shell name.
6833
6834 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
6835
6836 * progmodes/python.el (python-shell-send-string):
6837 (python-shell-send-setup-code): Do not use `format' with `message'.
6838
6839 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
6840
6841 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
6842 (ruby-percent-literal-beg-re): New constant.
6843 (ruby-syntax-general-delimiters-goto-beg): Rename to
6844 `ruby-syntax-enclosing-percent-literal', improve literal type check.
6845 (ruby-syntax-propertize-general-delimiters): Rename to
6846 `ruby-syntax-propertize-percent-literal', it's a shorter and more
6847 popular term. Adjust comments everywhere.
6848 (ruby-syntax-propertize-percent-literal): Only propertize when not
6849 inside a simple string or comment. When the literal is unclosed,
6850 leave the text after it unpropertized.
6851 (ruby-syntax-methods-before-regexp): New constant.
6852 (ruby-syntax-propertize-function): Use it to recognize regexps.
6853 Don't look at the text after regexp, just use the whitelist.
6854
6855 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
6856
6857 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
6858 non-nil always load the compiled file if it exists. (Bug#12197)
6859
6860 2012-08-14 Chong Yidong <cyd@gnu.org>
6861
6862 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
6863 (hi-lock-set-pattern): When deciding whether to use font lock or
6864 overlays, look at font-lock-mode instead of font-lock-fontified
6865 (Bug#12168).
6866 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
6867 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
6868
6869 2012-08-14 Daiki Ueno <ueno@unixuser.org>
6870
6871 * subr.el (internal--after-with-selected-window): Fix typo
6872 (Bug#12193).
6873
6874 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
6875
6876 Use `completion-table-dynamic' for completion functions.
6877 * progmodes/python.el
6878 (python-shell-completion--do-completion-at-point)
6879 (python-shell-completion--get-completions):
6880 Remove functions.
6881 (python-shell-completion-complete-at-point): New function.
6882 (python-completion-complete-at-point): Use it.
6883
6884 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
6885
6886 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
6887 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
6888
6889 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
6890
6891 * subr.el (function-get): Refine `autoload' arg so it can also
6892 autoload functions for gv.el (bug#12191).
6893 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
6894 autoloads macros.
6895
6896 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
6897 Prefer pcase-let over destructuring-bind.
6898 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
6899 Also, remove whitespace as we go, rather than after accumulating the
6900 various places.
6901
6902 * subr.el (internal--before-with-selected-window)
6903 (internal--after-with-selected-window): Fix typo seleted->selected.
6904 (with-selected-window): Adjust callers.
6905 Reported by Dmitry Gutov <dgutov@yandex.ru>.
6906
6907 2012-08-13 Bastien Guerry <bzg@gnu.org>
6908
6909 * window.el (special-display-popup-frame): Minor docstring
6910 enhancement. (Bug#12172)
6911
6912 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
6913
6914 * tar-mode.el (tar-header-data-end): Only ignore size for files of
6915 type 1-6.
6916 (tar-header-block-summarize, tar-get-descriptor): Handle pax
6917 extended headers.
6918
6919 * files.el (hack-local-variables-filter): Remove useless eval.
6920
6921 2012-08-13 Martin Rudalics <rudalics@gmx.at>
6922
6923 * subr.el (with-selected-window): Fix last change.
6924
6925 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6926
6927 * subr.el (internal--before-with-seleted-window)
6928 (internal--after-with-seleted-window): New functions.
6929 (with-selected-window): Use them, to replace dependency on
6930 tty-top-frame.
6931
6932 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
6933
6934 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
6935 binding for `newline'.
6936 (ruby-move-to-block): When moving backward, stop at block opening,
6937 not indentation.
6938 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
6939 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
6940 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
6941 `ruby-toggle-block'.
6942
6943 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
6944
6945 * ibuffer.el (ibuffer-do-toggle-read-only):
6946 * dired.el (dired-toggle-read-only):
6947 * buff-menu.el (Buffer-menu-toggle-read-only):
6948 * bindings.el (mode-line-toggle-read-only):
6949 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
6950
6951 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
6952
6953 * descr-text.el (describe-char): Put the overlays over the
6954 "displayed as" character.
6955
6956 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
6957
6958 * calc/calc-units.el (math-default-units-table): Give an
6959 initial value.
6960 (math-put-default-units): Add options to put composite units and
6961 unit systems in the default units table.
6962 (calc-convert-units): Send composite units to
6963 `math-put-default-units' when appropriate.
6964
6965 2012-08-11 Glenn Morris <rgm@gnu.org>
6966
6967 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
6968
6969 * tutorial.el (help-with-tutorial):
6970 * emacs-lisp/copyright.el (copyright-update-directory):
6971 * emacs-lisp/autoload.el (autoload-find-generated-file)
6972 (autoload-find-file): Disable local eval: (for insurance).
6973
6974 * files.el (hack-local-variables-filter): If an eval: form is not
6975 known to be safe, and enable-local-variables is :safe, then ignore
6976 the form totally, as is done for non-eval forms. (Bug#12155)
6977 This is CVE-2012-3479.
6978
6979 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
6980
6981 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
6982 (rx-form): Simplify.
6983
6984 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
6985
6986 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
6987 ?, _, and : are symbol constituents, ! is not (but kinda should be).
6988 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
6989 (ruby-syntax-propertize-function): Adjust for changes in
6990 `ruby-syntax-propertize-heredoc'.
6991
6992 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
6993
6994 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
6995 binding (use `M-;' instead).
6996 (ruby-singleton-class-p): New function.
6997 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
6998
6999 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7000
7001 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
7002
7003 2012-08-10 Chong Yidong <cyd@gnu.org>
7004
7005 * progmodes/python.el (python-shell-get-process-name): Don't mess
7006 with same-window-buffer-names.
7007
7008 * eshell/eshell.el (eshell-add-to-window-buffer-names)
7009 (eshell-remove-from-window-buffer-names): Make obsolete.
7010 (eshell-buffer-name, eshell-unload-hook): Don't use them.
7011 (eshell): Just use pop-to-buffer-same-window instead.
7012
7013 2012-08-10 Chong Yidong <cyd@gnu.org>
7014
7015 * bindings.el: Bind M-= back to count-words-region.
7016
7017 * simple.el (count-words-region): Accept a prefix arg for acting
7018 on the entire buffer.
7019 (count-words--buffer-message): New helper function.
7020
7021 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
7022
7023 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
7024 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
7025 (event-start, event-end): Use posn-at-point to return a more
7026 informative posn.
7027 (posnp): New function.
7028 * mouse.el (popup-menu-normalize-position): Use it.
7029
7030 2012-08-10 Masatake YAMATO <yamato@redhat.com>
7031
7032 * mouse.el (popup-menu-normalize-position): New function.
7033 (popup-menu): Use `popup-menu-normalize-position' to normalize
7034 the form for POSITION argument.
7035
7036 * term/x-win.el (x-menu-bar-open):
7037 Use the value returend from (posn-at-point) as position
7038 passed to `popup-menu'.
7039
7040 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7041
7042 * calc/calccomp.el (math-compose-expr): Add extra argument
7043 indicating that parentheses should be put around products in
7044 denominators. Give multiplication precedence over division during
7045 composition.
7046
7047 2012-08-09 Chong Yidong <cyd@gnu.org>
7048
7049 * man.el (Man-switches, Man-sed-command, Man-awk-command)
7050 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
7051 (Man-untabify-command, manual-program): Convert to defcustom
7052 (Bug#10429).
7053
7054 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
7055
7056 * descr-text.el (describe-char): Don't insert extra newlines
7057 (Bug#10127).
7058
7059 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
7060 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
7061
7062 * align.el (align-region): Delete temporary markers (Bug#10047).
7063 Plus some code cleanups.
7064
7065 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7066
7067 * progmodes/python.el (python-pdbtrack-tracked-buffer)
7068 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
7069 (python-shell-internal-last-output): Use make-local-variable
7070 instead of make-variable-buffer-local.
7071
7072 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
7073
7074 * progmodes/python.el: Enhancements to forward-sexp.
7075 (python-nav-forward-sexp): Rename from
7076 python-nav-forward-sexp-function.
7077 (python-nav--forward-sexp, python-nav--backward-sexp):
7078 New functions.
7079
7080 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
7081
7082 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
7083 modes and simplification modes.
7084
7085 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7086
7087 * delsel.el (delete-selection-pre-hook): Don't propagate the
7088 file-supersession signals (bug#12161).
7089
7090 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7091
7092 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
7093 (cl-map-extents): Add compatibility aliases (bug#12135).
7094
7095 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
7096
7097 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
7098 tests by `ignore-error'.
7099 (tramp-find-shell): Open also a new shell, when cache is already
7100 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
7101
7102 2012-08-08 Juri Linkov <juri@jurta.org>
7103
7104 * bookmark.el: Add `defaults' property to the bookmark record.
7105 (bookmark-current-buffer): Doc fix.
7106 (bookmark-make-record): Add `defaults' property with default values
7107 to the bookmark record.
7108 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
7109 with `bookmark-insert-current-bookmark'.
7110 (bookmark-set): Get `defaults' property from the bookmark record
7111 and use it in `read-from-minibuffer'.
7112 (bookmark-insert-current-bookmark): Remove function.
7113
7114 * info.el (Info-bookmark-make-record): Add `defaults' property
7115 with values of canonical Info node name, the current Info file
7116 name and the current Info node name. (Bug#12107)
7117
7118 2012-08-08 Juri Linkov <juri@jurta.org>
7119
7120 * files.el (basic-save-buffer): Use `buffer-name' as the default
7121 of `read-file-name' when buffer is not visiting a file (bug#12128).
7122
7123 2012-08-08 Juri Linkov <juri@jurta.org>
7124
7125 * info.el (Info-isearch-search): Doc fix.
7126 (Info-search): Change search-failed message from "initial node" to
7127 "end of node" (bug#12078).
7128 (Info-isearch-search): Change `isearch-string-state' to
7129 `isearch--state-string'.
7130
7131 2012-08-08 Glenn Morris <rgm@gnu.org>
7132
7133 * language/persian.el: Remove file.
7134 * language/misc-lang.el: Move unique part of persian.el here.
7135 * loadup.el: Remove language/persian.
7136
7137 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
7138
7139 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
7140
7141 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
7142
7143 * progmodes/python.el: Fix defsubst warning.
7144 (python-syntax-context) Rename from python-info-ppss-context.
7145 (python-syntax-context-type): Rename from
7146 python-info-ppss-context-type.
7147 (python-syntax-comment-or-string-p): Rename from
7148 python-info-ppss-comment-or-string-p.
7149
7150 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
7151
7152 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
7153
7154 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
7155
7156 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
7157 a defcustom that is quoted with backquote.
7158
7159 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
7160 Fix handling of interactive spec when the body uses return.
7161 (math-do-arg-check, math-define-function-body): Use backquote forms.
7162 * calc/calc-ext.el (math-defcache): Likewise.
7163 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
7164 * allout.el (allout-new-exposure): Likewise.
7165 * calc/calcalg2.el (math-tracing-integral): Likewise.
7166 * info.el (Info-last-menu-item): Likewise.
7167 * emulation/vip.el (vip-loop): Likewise.
7168 * textmodes/artist.el (artist-funcall): Likewise.
7169 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
7170 Construct menu-item directly.
7171
7172 * progmodes/autoconf.el (font-lock-syntactic-keywords):
7173 Don't declare.
7174
7175 2012-08-07 Chong Yidong <cyd@gnu.org>
7176
7177 * simple.el (deactivate-mark): Preserve text properties when
7178 saving the primary selection (Bug#8384).
7179
7180 2012-08-07 Kevin Ryde <user42@zip.com.au>
7181
7182 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
7183 (woman-parse-numeric-value): On a bad .IP line, issue a warning
7184 and continue processing (Bug#12110).
7185
7186 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7187
7188 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
7189 syntax-propertize-function (bug#10095).
7190
7191 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7192
7193 * help-fns.el (help-fns--key-bindings, help-fns--signature)
7194 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
7195 describe-function-1.
7196 (describe-function-1): Use them. Move compiler macro after sig.
7197 (help-fns--compiler-macro): Use function-get. Assume we're already in
7198 standard-output. Adjust layout to new call order.
7199
7200 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
7201 re-binding a symbol that has a symbol-macro (bug#12119).
7202
7203 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
7204
7205 * language/persian.el: New file. (Bug#11812)
7206 * loadup.el: Add language/persian.el.
7207
7208 2012-08-06 Chong Yidong <cyd@gnu.org>
7209
7210 * window.el (window--maybe-raise-frame): New function.
7211 (window--display-buffer): Split off from here.
7212 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7213 (display-buffer-pop-up-window, display-buffer-use-some-window):
7214 Obey an inhibit-switch-frame action alist entry.
7215 (display-buffer): Update doc.
7216
7217 * replace.el (occur-after-change-function): Avoid losing focus by
7218 using the inhibit-switch-frame display parameter (Bug#12139).
7219
7220 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
7221
7222 Make internal shell process buffer names start with space.
7223 * progmodes/python.el (python-shell-make-comint): Add optional
7224 argument INTERNAL.
7225 (run-python-internal): Use it.
7226 (python-shell-internal-get-or-create-process): Check for new
7227 internal buffer names.
7228
7229 2012-08-06 Glenn Morris <rgm@gnu.org>
7230
7231 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
7232 Do less getting and setting of environment variables.
7233
7234 2012-08-05 Chong Yidong <cyd@gnu.org>
7235
7236 * proced.el (proced): Add substitution string to docstring to
7237 trigger autoloading of the proced library on C-h f (Bug#1768).
7238
7239 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7240 Don't show defvars which have no second argument (Bug#8638).
7241
7242 * imenu.el (imenu-generic-expression): Move documentation here
7243 from imenu--generic-function.
7244 (imenu--generic-function): Refer to imenu-generic-expression.
7245
7246 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
7247
7248 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
7249 indentation declaration.
7250 (viper-loop): Add indentation declaration (Bug#7025).
7251
7252 2012-08-05 Chong Yidong <cyd@gnu.org>
7253
7254 * help-fns.el (describe-variable): Add hyperlink for
7255 directory-local variables files. Improve buffer-local and
7256 permanent-local reporting; suggested by MON KEY (Bug#6644).
7257
7258 * help-mode.el (help-dir-local-var-def): New button type.
7259
7260 * files.el (kill-buffer-hook): Provide a defvar.
7261
7262 2012-08-05 Glenn Morris <rgm@gnu.org>
7263
7264 * eshell/esh-ext.el (eshell/addpath):
7265 Also update eshell-path-env. (Bug#12013)
7266
7267 2012-08-05 Chong Yidong <cyd@gnu.org>
7268
7269 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
7270
7271 * fringe.el (fringe-styles): Add docstring.
7272 (fringe--check-mode): New function.
7273 (set-fringe-mode, set-fringe-style): Use it.
7274 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
7275
7276 * files.el (set-auto-mode): Fix invalid setq call.
7277
7278 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
7279
7280 * isearch.el: Misc simplification; use defstruct.
7281 (isearch-mode-map): Dense maps now work like sparse ones.
7282 (isearch--state): New defstruct.
7283 (isearch-string-state, isearch-message-state, isearch-point-state)
7284 (isearch-success-state, isearch-forward-state)
7285 (isearch-other-end-state, isearch-word-state, isearch-error-state)
7286 (isearch-wrapped-state, isearch-barrier-state)
7287 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
7288 replaced by defstruct's accessors.
7289 (isearch--set-state): Rename from isearch-top-state and change
7290 calling convention.
7291 (isearch-push-state): Use new isearch--get-state.
7292 (isearch-toggle-word): Disable regexp when enabling word.
7293 (isearch-message-prefix): Remove unused arg _c-q-hack.
7294 (isearch-message-suffix): Remove unused arg _ellipsis.
7295
7296 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
7297
7298 * simple.el (list-processes--refresh): For a server use :host or
7299 :local as the address.
7300 (list-processes): Doc fix.
7301
7302 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
7303
7304 * lisp/mpc.el: Support password in host argument.
7305 (mpc--proc-connect): Parse and use new password element.
7306 Set mpc-proc variable instead of returning process.
7307 (mpc-proc): Adjust accordingly.
7308
7309 2012-08-03 Eli Zaretskii <eliz@gnu.org>
7310
7311 * whitespace.el (whitespace-display-mappings): Use Unicode
7312 codepoints, instead of emacs-mule codepoints. See
7313 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
7314 for the details.
7315
7316 * files.el (file-truename): Don't skip symlink-chasing part on
7317 windows-nt. Incorporate the resolution of 8+3 short aliases on
7318 Windows into the loop that recursively chases symlinks.
7319 Compare directory and its parent case-insensitively on MS-Windows and
7320 MS-DOS.
7321
7322 2012-08-03 Chong Yidong <cyd@gnu.org>
7323
7324 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
7325
7326 * sort.el (sort-regexp-fields): Doc fix.
7327
7328 2012-08-03 Tassilo Horn <tsdh@gnu.org>
7329
7330 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
7331 labels regex position point at the expected place.
7332
7333 2012-08-03 MON KEY <monkey@sandpframing.com>
7334
7335 * net/imap.el (imap-interactive-login, imap-authenticate)
7336 (imap-mailbox-lsub, imap-mailbox-list)
7337 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
7338 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
7339 (imap-parse-response): Doc fix.
7340
7341 2012-08-03 João Távora <joaotavora@gmail.com>
7342
7343 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
7344 if sexp scanning does not move point (Bug#5734).
7345
7346 2012-08-02 Tassilo Horn <tsdh@gnu.org>
7347
7348 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
7349 Add listings, minted, and ctable packages.
7350 (reftex-label-alist-builtin): Move listings, minted, and ctable
7351 entries before LaTeX.
7352 (reftex-label-alist): Docfix.
7353
7354 2012-08-02 Bastien Guerry <bzg@gnu.org>
7355
7356 * replace.el (occur): Fix docstring (bug#12122).
7357
7358 2012-08-02 Glenn Morris <rgm@gnu.org>
7359
7360 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
7361
7362 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
7363
7364 Obsolete alias inactivate-current-input-method-function (Bug#10150).
7365 * international/mule-cmds.el: Create
7366 inactivate-current-input-method-function as an obsolete alias for
7367 deactivate-current-input-method-function. See Katsumi Yamaoka in
7368 <http://bugs.gnu.org/10150#46>.
7369
7370 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
7371
7372 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
7373 of nested `if's.
7374
7375 2012-08-01 Glenn Morris <rgm@gnu.org>
7376
7377 * progmodes/autoconf.el (autoconf-definition-regexp):
7378 Add AH_TEMPLATE, adjust submatch numbering.
7379 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
7380 (autoconf-current-defun-function): Update for above change.
7381 (autoconf-current-defun-function): First skip to end of current word.
7382
7383 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
7384
7385 * calendar/cal-html.el (cal-html-insert-agenda-days):
7386 Fix typo. (Bug#12018)
7387
7388 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7389
7390 Shell processes: enhancements to startup and CEDET compatibility.
7391 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
7392 (python-shell-make-comint): accept-process-output at startup.
7393 (run-python-internal): Set inferior-python-mode-hook to nil.
7394 (python-shell-internal-get-or-create-process): call sit-for.
7395 (python-preoutput-result): Add obsolete alias.
7396 (python-shell-internal-send-string): Use it.
7397 (python-shell-send-setup-code): Remove call to
7398 accept-process-output.
7399
7400 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
7401
7402 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
7403 (Bug#12108)
7404
7405 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
7406
7407 * calc-mode.el (calc-basic-simplification-mode): Rename from
7408 `calc-limited-simplification-mode'.
7409 (calc-alg-simplification-mode): New function.
7410 (calc-set-simplify-mode): Adjust message.
7411
7412 * calc.el (calc-set-mode-line): Adjust mode line display for
7413 basic simplification mode.
7414
7415 * calc-help.el (calc-m-prefix-help): Update help message.
7416
7417 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
7418 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
7419
7420 2012-07-31 Bastien Guerry <bzg@gnu.org>
7421
7422 * man.el (man): Fix comment. (bug#12101)
7423
7424 2012-07-31 Martin Rudalics <rudalics@gmx.at>
7425
7426 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7427 Don't return a non-nil value when no suitable buffer was found.
7428
7429 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
7430
7431 * progmodes/python.el (run-python-internal): Disable font lock for
7432 internal shells.
7433
7434 2012-07-30 Stefan Merten <smerten@oekonux.de>
7435
7436 * textmodes/rst.el: Silence `checkdoc-ispell'.
7437 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
7438 (rst-official-version, rst-official-cvs-rev)
7439 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
7440 (rst-mode-map): New key binding.
7441
7442 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
7443
7444 Update .PHONY listings in makefiles.
7445 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
7446 autoloads, update-subdirs, updates, bzr-update, update-authors,
7447 compile-onefile, compile-calc, backup-compiled-files,
7448 compile-after-backup, compile-one-process, mh-autoloads,
7449 bootstrap-clean, distclean, maintainer-clean.
7450
7451 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
7452
7453 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
7454 (calc-set-mode-line): Don't display "AlgSimp ".
7455
7456 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7457 (calc-lim-simplify-mode): New function.
7458 (calc-set-simplify-mode): Default to 'alg.
7459 (calc-default-simplify-mode): Make algebraic simplifications
7460 the default.
7461
7462 * calc/calc-ext.el (calc-init-extensions): Remove binding for
7463 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
7464
7465 * calc/calc-help.el (calc-m-prefix-help): Change messages to
7466 indicate new simplification modes.
7467
7468 * calc/README: Mention new default simplification mode.
7469
7470 * calc/calc.el (math-normalize-error): New variable.
7471 (math-normalize): Set `math-normalize-error' to t
7472 when there's an error.
7473
7474 * calc/calc-alg.el (math-simplify): Don't simplify when
7475 `math-normalize' returns an error.
7476
7477 2012-07-29 Eli Zaretskii <eliz@gnu.org>
7478
7479 * international/mule-cmds.el (set-locale-environment): Revert last
7480 change, since display-graphic-p returns nil when this function is
7481 called during startup. Instead...
7482
7483 * term/w32console.el (terminal-init-w32console): ...setup the
7484 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
7485
7486 2012-07-29 Juri Linkov <juri@jurta.org>
7487
7488 * simple.el (goto-line): Don't display default line number in the
7489 prompt because it should be displayed by `read-number' (bug#9952).
7490 Add the current line number to the defaults of `goto-line' to
7491 allow its easier modification by users with `M-n' (bug#9201).
7492
7493 * subr.el (read-number): Support multiple default values like in
7494 other minibuffer reading functions. Replace `read' with
7495 `string-to-number' for consistency with `number-to-string'.
7496
7497 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
7498
7499 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
7500 * emulation/viper-init.el (viper-deactivate-input-method-action):
7501 Rename from viper-inactivate-input-method-action.
7502 (viper-deactivate-input-method):
7503 Rename from viper-inactivate-input-method.
7504 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
7505 * international/mule-cmds.el (deactivate-input-method):
7506 Rename from inactivate-input-method.
7507 Also run input-method-deactivate-hook.
7508 (deactivate-current-input-method-function):
7509 Rename from inactivate-current-input-method-function.
7510 (input-method-deactivate-hook): New hook.
7511 (input-method-inactivate-hook): Mark obsolete.
7512 (inactivate-input-method): Mark obsolete.
7513
7514 * international/quail.el (quail-activate):
7515 Also run quail-deactivate-hook.
7516 (quail-deactivate): Rename from quail-inactivate.
7517 * international/robin.el (robin-activate):
7518 Also run robin-deactivate-hook.
7519 (robin-deactivate): Rename from robin-inactivate.
7520
7521 2012-07-29 Chong Yidong <cyd@gnu.org>
7522
7523 * simple.el (indicate-copied-region): New function.
7524 (kill-ring-save): Split off from here.
7525
7526 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
7527 (kill-rectangle): Set deactivate-mark to t on read-only error.
7528
7529 * register.el (copy-to-register, copy-rectangle-to-register):
7530 Deactivate the mark, and use indicate-copied-region (Bug#10056).
7531 (append-to-register, prepend-to-register): Call indicate-copied-region.
7532
7533 2012-07-29 Juri Linkov <juri@jurta.org>
7534
7535 * simple.el (async-shell-command-buffer): New defcustom.
7536 (shell-command): Use it. (Bug#4719)
7537
7538 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7539
7540 * international/mule-cmds.el (set-locale-environment): In a
7541 console session on MS-Windows, set up keyboard and terminal
7542 encoding from the OEM codepage, not the ANSI codepage.
7543 (Bug#12055)
7544
7545 2012-07-28 Chong Yidong <cyd@gnu.org>
7546
7547 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
7548 gdb-get-location.
7549
7550 2012-07-28 Leo Liu <sdl.web@gmail.com>
7551
7552 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
7553 the alist (bug#12029).
7554
7555 2012-07-28 Eli Zaretskii <eliz@gnu.org>
7556
7557 * makefile.w32-in (custom-deps, finder-data, updates, compile)
7558 (compile-always, compile-first)
7559 ($(lisp)/calendar/cal-loaddefs.el)
7560 ($(lisp)/calendar/diary-loaddefs.el)
7561 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7562 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
7563 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
7564 instead of on update-subdirs.
7565 (bootstrap-clean): Delete $(lisp)/subdirs.el.
7566
7567 2012-07-28 Chong Yidong <cyd@gnu.org>
7568
7569 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
7570 directory if vc-deduce-backend returns nil (Bug#7350).
7571
7572 * simple.el (delete-trailing-lines): New option.
7573 (delete-trailing-whitespace): Obey it (Bug#11879).
7574
7575 2012-07-28 David Engster <deng@randomsample.de>
7576
7577 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
7578 Explanation of new 'symbol-qnames feature in doc-strings.
7579 (xml-maybe-do-ns): Return expanded names as plain symbols if
7580 'symbol-qnames was provided in XML-NS argument (Bug#11916).
7581 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
7582
7583 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7584
7585 Consistent completion in inferior python with emacs -nw.
7586 * progmodes/python.el (inferior-python-mode): replace "<tab>"
7587 binding in inferior-python-mode-map with "\t".
7588 (python-shell-completion-complete-at-point)
7589 (python-completion-complete-at-point): Remove interactive spec.
7590
7591 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7592
7593 * calc/calccomp.el (math-compose-expr): Undo previous change.
7594
7595 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
7596
7597 * progmodes/python.el (python-mode-map): Add keybinding for
7598 run-python.
7599 (python-shell-make-comint): Fix pop-to-buffer call.
7600 (run-python): Autoload. New arg SHOW.
7601 (python-shell-get-or-create-process): Do not pop python process
7602 buffer.
7603
7604 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
7605
7606 * notifications.el (notifications-on-action-signal)
7607 (notifications-on-closed-signal): Use also the bus address for the map.
7608 (notifications-notify, notifications-close-notification)
7609 (notifications-get-capabilities): Add optional argument BUS.
7610
7611 2012-07-27 Tassilo Horn <tsdh@gnu.org>
7612
7613 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
7614 Add support for the lstlisting and minted environments, and for the
7615 ctable macro.
7616 * textmodes/reftex.el (reftex-compile-variables): Also recognize
7617 labels written in keyvals syntax.
7618
7619 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
7620
7621 * calc/calccomp.el (math-compose-expr): Use parentheses when
7622 there is a product in the denominator of a fraction.
7623
7624 2012-07-26 Eli Zaretskii <eliz@gnu.org>
7625
7626 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
7627 ($(lisp)/calendar/diary-loaddefs.el)
7628 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
7629 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
7630 Fixes failures in parallel bootstrap because subdirs.el is being
7631 rewritten while the autoload files are built at the same time,
7632 which needs to load subdirs.el.
7633
7634 2012-07-26 Martin Rudalics <rudalics@gmx.at>
7635
7636 * mouse.el (popup-menu): Fix doc-string and re-indent code.
7637 (mouse-drag-line): Don't exit tracking when a switch-frame or
7638 switch-window event occurs (Bug#12006).
7639
7640 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7641
7642 * mouse.el (popup-menu): Fix last change.
7643
7644 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
7645
7646 Autoload from Lisp with more care. Follow aliases when looking for
7647 function properties.
7648 * subr.el (autoloadp): New function.
7649 (symbol-file): Use it.
7650 (function-get): New function.
7651 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
7652 autoload-do-load.
7653 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
7654 (lisp-indent-function):
7655 * emacs-lisp/gv.el (gv-get):
7656 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
7657 * emacs-lisp/byte-opt.el (byte-optimize-form):
7658 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
7659 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
7660 Use function-get.
7661 * emacs-lisp/cl.el: Don't propagate function properties any more.
7662
7663 * speedbar.el (speedbar-add-localized-speedbar-support):
7664 * emacs-lisp/disass.el (disassemble-internal):
7665 * desktop.el (desktop-load-file):
7666 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
7667 (describe-function-1):
7668 * emacs-lisp/find-func.el (find-function-noselect):
7669 * emacs-lisp/elp.el (elp-instrument-function):
7670 * emacs-lisp/advice.el (ad-has-proper-definition):
7671 * apropos.el (apropos-safe-documentation, apropos-macrop):
7672 * emacs-lisp/debug.el (debug-on-entry):
7673 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
7674 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
7675 * calc/calc.el (name): Use autoloadp & autoload-do-load.
7676
7677 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
7678
7679 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
7680 function, not an obsolete variable (Bug#12046).
7681
7682 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
7683
7684 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
7685
7686 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
7687
7688 * emacs-lisp/pp.el (pp-display-expression): Select old selected
7689 window only if it is still live (Bug#12034).
7690
7691 2012-07-25 Martin Rudalics <rudalics@gmx.at>
7692
7693 * subr.el (redirect-frame-focus): Add advertised calling
7694 convention (Bug#12030).
7695
7696 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
7697
7698 Prefer typical American spelling for "acknowledgment".
7699 * vc/add-log.el (change-log-acknowledgment): Rename from
7700 change-log-acknowledgement, with an alias for the old name.
7701
7702 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
7703
7704 * calc-alg.el (math-simplify-divide): Don't cross multiply
7705 in an equation when the lhs is a variable.
7706
7707 2012-07-24 Julien Danjou <julien@danjou.info>
7708
7709 * net/netrc.el (netrc-find-service-number, netrc-store-data):
7710 Remove, unused.
7711
7712 2012-07-23 Eli Zaretskii <eliz@gnu.org>
7713
7714 * startup.el (command-line): Don't display an empty user name in
7715 the error message about non-existent home directory, when
7716 init-file-user was set to an empty string. See
7717 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
7718 for the details and context.
7719
7720 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
7721
7722 * ses.el (ses-cell-formula-aset): New macro.
7723 (ses-cell-references-aset): New macro.
7724 (ses-cell-p): New function.
7725 (ses-rename-cell): Do no longer rely on complex operations like
7726 ses-cell-set-formula or ses-set-cell to change the cell and handle
7727 the undo at the same time, but rather use lower level new macros
7728 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
7729 the undo directly. Refresh the mode line.
7730
7731 2012-07-21 Leo Liu <sdl.web@gmail.com>
7732
7733 * progmodes/cc-cmds.el (c-defun-name):
7734 Use match-string-no-properties instead for consistency.
7735
7736 2012-07-20 Leo Liu <sdl.web@gmail.com>
7737
7738 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
7739 (Bug#7879)
7740
7741 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
7742
7743 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
7744
7745 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
7746 * progmodes/bug-reference.el, misearch.el: Provide themselves
7747 (bug#11915).
7748
7749 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
7750 of narrowed buffer (bug#11966).
7751
7752 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
7753
7754 * ses.el (ses-rename-cell): Set new name also in reference list of
7755 cells of which the renamed cell depends.
7756
7757 2012-07-20 Masatake YAMATO <yamato@redhat.com>
7758
7759 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
7760 to check whether menu-bar is shown or not. If not shown,
7761 show the menu-bar as a popup menu instead of using tmm.
7762 * mouse.el (popup-menu): Accept `point' as `position' argument.
7763
7764 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
7765
7766 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
7767 up inside string symbol literal (bug#11923).
7768
7769 2012-07-20 Eli Zaretskii <eliz@gnu.org>
7770
7771 * startup.el (fancy-startup-text): Read the whole tutorial, not
7772 just its first 256 bytes. Prevents gibberish in display of the
7773 tutorial title.
7774
7775 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
7776
7777 Drop idle buffer compaction due to an absence of the
7778 proved efficiency.
7779 * compact.el: Remove.
7780
7781 2012-07-19 Sam Steingold <sds@gnu.org>
7782
7783 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
7784 vc-bzr-pull & vc-bzr-merge-branch.
7785 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
7786 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
7787 for consistency with compilation-error-regexp-alist.
7788 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
7789 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
7790 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
7791 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
7792
7793 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
7794
7795 * emacs-lisp/chart.el: Use lexical-binding.
7796 (chart-emacs-storage): Don't hardcode the list of entries.
7797
7798 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7799
7800 Next round of tweaks caused by Fgarbage_collect changes.
7801 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
7802
7803 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
7804
7805 Compact buffers when idle.
7806 * compact.el: New file.
7807
7808 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
7809
7810 * subr.el (eventp): Presume that if it looks vaguely like an event,
7811 it's an event (bug#10190).
7812
7813 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
7814
7815 Enhancements to ppss related code (thanks Stefan).
7816 * progmodes/python.el (python-indent-context)
7817 (python-indent-calculate-indentation, python-indent-dedent-line)
7818 (python-indent-electric-colon, python-nav-forward-block)
7819 (python-mode-abbrev-table)
7820 (python-info-assignment-continuation-line-p): Simplify checks
7821 for ppss context.
7822 (python-info-continuation-line-p): Cleanup.
7823 (python-info-ppss-context): Do not catch 'quote.
7824 (python-info-ppss-context-type)
7825 (python-info-ppss-comment-or-string-p): Simplify.
7826
7827 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
7828
7829 * progmodes/python.el: Enhancements to eldoc support.
7830 (python-info-current-symbol): New function.
7831 (python-eldoc-at-point): Use python-info-current-symbol.
7832 (python-info-current-defun): Fix cornercase on first defun scan.
7833 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
7834 and signal error when no inferior python process is available.
7835
7836 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
7837
7838 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
7839 assume it's always t.
7840 (vc-git-registered): Remove caching, the function is only called
7841 once.
7842 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
7843
7844 2012-07-18 Chong Yidong <cyd@gnu.org>
7845
7846 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
7847
7848 * simple.el (count-words): Report on narrowing (Bug#9959).
7849
7850 * bindings.el: Bind M-= to count-words.
7851
7852 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
7853
7854 2012-07-18 Masatake YAMATO <yamato@redhat.com>
7855
7856 * progmodes/sh-script.el (sh-imenu-generic-expression):
7857 Capture a function with `function' keyword and without parentheses
7858 like "function FOO" (bug#11856).
7859
7860 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
7861
7862 * window.el (split-window-sensibly): Make WINDOW argument
7863 optional.
7864
7865 2012-07-18 Chong Yidong <cyd@gnu.org>
7866
7867 * subr.el (keyboard-translate): Doc fix (Bug#7261).
7868
7869 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
7870 and make C-x 8 RET exit isearch (Bug#11439).
7871
7872 * international/iso-transl.el: Move isearch-mode-map key
7873 definitions to isearch.el.
7874
7875 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
7876
7877 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
7878 (eieio-defclass): Use gv-define-setter when possible.
7879
7880 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
7881
7882 Reflect recent changes in Fgarbage_collect.
7883 * emacs-lisp/chart.el (chart-emacs-storage): Change to
7884 reflect new format of data returned by Fgarbage_collect.
7885
7886 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7887
7888 New utility functions + python-info-ppss-context fix (Bug#11910).
7889 * progmodes/python.el (python-info-beginning-of-block-statement-p)
7890 (python-info-ppss-comment-or-string-p): New functions.
7891 (python-info-ppss-context): Small fix for string check.
7892
7893 2012-07-17 Juri Linkov <juri@jurta.org>
7894
7895 * dired-aux.el (dired-do-async-shell-command): Doc fix.
7896 (dired-do-async-shell-command): Don't add `*' at the end of the
7897 command (Bug#11815).
7898 (dired-do-shell-command): Doc fix.
7899 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
7900 Join the individual commands using either "&" or ";" as the
7901 separator depending on the values of these trailing characters.
7902 At the end re-add the trailing "&". (Bug#10598)
7903
7904 * simple.el (async-shell-command): Sync the interactive spec with
7905 `shell-command'. Doc fix.
7906 (shell-command): Doc fix.
7907
7908 2012-07-17 Juri Linkov <juri@jurta.org>
7909
7910 * descr-text.el (describe-char): Fix format args. (Bug#10129)
7911
7912 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7913
7914 Final renames and doc fixes for movement commands (bug#11899).
7915 * progmodes/python.el (python-nav-beginning-of-statement):
7916 Rename from python-nav-statement-start.
7917 (python-nav-end-of-statement): Rename from
7918 python-nav-statement-end.
7919 (python-nav-beginning-of-block): Rename from
7920 python-nav-block-start.
7921 (python-nav-end-of-block): Rename from python-nav-block-end.
7922
7923 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7924
7925 * progmodes/python.el (python-shell-send-string-no-output):
7926 Allow accept-process-output to quit, keeping shell process ready for
7927 future interactions (Bug#11868).
7928
7929 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
7930
7931 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
7932
7933 * emacs-lisp/elint.el (elint-find-args-in-code):
7934 Use help-function-arglist, so as to handle lexical byte-code.
7935
7936 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
7937 change (bug#11826).
7938
7939 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
7940
7941 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
7942 Avoid spuriously marking the buffer as modified because of c-is-sws.
7943
7944 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
7945 as not-a-comment (bug#11946).
7946
7947 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
7948 for uninterned vars.
7949
7950 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
7951 Use read-event since we don't really want to read chars but bytes.
7952
7953 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
7954 $$..$$ but also $..$ using regexps (bug#11953).
7955 Use tex-verbatim for \url and \path.
7956 (tex-font-lock-keywords): Define as defconst like the others.
7957 (tex-common-initialization): Don't use font-lock-syntax-table any more.
7958
7959 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
7960
7961 * international/mule-cmds.el (ucs-insert): Make it an obsolete
7962 alias for insert-char.
7963
7964 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
7965
7966 * progmodes/python.el: Simplified imenu implementation.
7967 (python-nav-jump-to-defun): Remove command.
7968 (python-mode-map): Use `imenu' instead.
7969 (python-nav-list-defun-positions-cache)
7970 (python-imenu-include-defun-type, python-imenu-make-tree)
7971 (python-imenu-subtree-root-label, python-imenu-index-alist):
7972 Remove vars.
7973 (python-nav-list-defun-positions, python-nav-read-defun)
7974 (python-imenu-tree-assoc, python-imenu-make-element-tree)
7975 (python-imenu-make-tree, python-imenu-create-index):
7976 Remove functions.
7977 (python-mode): Update to interact with imenu by setting
7978 `imenu-extract-index-name-function' only.
7979
7980 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
7981
7982 * progmodes/python.el: Enhancements to navigation commands.
7983 (python-nav-backward-sentence)
7984 (python-nav-forward-sentence): Remove.
7985 (python-nav-backward-statement, python-nav-forward-statement)
7986 (python-nav-statement-start, python-nav-statement-end)
7987 (python-nav-backward-block, python-nav-forward-block)
7988 (python-nav-block-start, python-nav-block-end)
7989 (python-nav-forward-sexp-function)
7990 (python-info-current-line-comment-p)
7991 (python-info-current-line-empty-p): New functions.
7992 (python-indent-context): Use `python-nav-statement-start'.
7993
7994 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
7995
7996 * eshell/em-ls.el (eshell/ls): Use `apply'.
7997
7998 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
7999 multi-hops, instead of Tramp internals.
8000
8001 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
8002
8003 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
8004 when F1 and F2 are located on different hosts.
8005
8006 2012-07-14 Chong Yidong <cyd@gnu.org>
8007
8008 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
8009 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
8010 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
8011 (xterm-mouse--read-event-sequence-1000)
8012 (xterm-mouse--read-event-sequence-1006): New functions. For old
8013 mouse protocol, handle M-mouse-X events correctly.
8014 (xterm-mouse-event): New arg specifying mouse protocol.
8015 (turn-on-xterm-mouse-tracking-on-terminal)
8016 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
8017 sequence to toggle extended coordinates on newer XTerms.
8018 This appears to be harmless on terminals which do not support this.
8019
8020 2012-07-14 Leo Liu <sdl.web@gmail.com>
8021
8022 Add fringe bitmap indicators for flymake. (Bug#11253)
8023 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
8024 (flymake-make-overlay): New arg BITMAP.
8025 (flymake-error-bitmap, flymake-warning-bitmap)
8026 (flymake-fringe-indicator-position): New user variables.
8027
8028 * fringe.el: New bitmap exclamation-mark.
8029
8030 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
8031
8032 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
8033 also (Bug#7879).
8034
8035 2012-07-14 Chong Yidong <cyd@gnu.org>
8036
8037 * electric.el (electric-pair-post-self-insert-function): Fix pair
8038 insertion in empty-region case (Bug#11520).
8039
8040 2012-07-14 Chong Yidong <cyd@gnu.org>
8041
8042 * bindings.el: Consolidate ctl-x-r-map bindings.
8043 Bind copy-rectangle-as-kill to C-x r w.
8044
8045 * rect.el, register.el: Move bindings to bindings.el.
8046
8047 2012-07-14 Reuben Thomas <rrt@sc3d.org>
8048
8049 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
8050
8051 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
8052
8053 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
8054
8055 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
8056
8057 * bindings.el (top): Use `mapc' instead of `mapcar'.
8058
8059 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
8060
8061 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
8062
8063 * progmodes/sql.el (sql-comint): Suppress the check for program on
8064 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
8065 (Bug#11908)
8066
8067 2012-07-13 Chong Yidong <cyd@gnu.org>
8068
8069 * bindings.el: Assign a non-nil permanent-local property to
8070 per-buffer variables which lack a default value (Bug#11930).
8071
8072 * help-fns.el (describe-variable): In the "automatically becomes
8073 local" notice, take note of permanent-local variables.
8074
8075 2012-07-13 Chong Yidong <cyd@gnu.org>
8076
8077 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
8078 to allow printing the message when called from Lisp.
8079
8080 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8081 Remove toggle-read-only.
8082
8083 * bs.el (bs-toggle-readonly):
8084 * buff-menu.el (Buffer-menu-toggle-read-only):
8085 Remove with-no-warnings around toggle-read-only.
8086
8087 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
8088 Remove with-no-warnings around toggle-read-only.
8089 (ffap-read-only, ffap-read-only-other-window)
8090 (ffap-read-only-other-frame): Callers changed.
8091
8092 * help-mode.el: Don't require view package.
8093 (help-mode-finish): Set buffer-read-only instead of calling
8094 toggle-read-only.
8095
8096 * bindings.el (mode-line-toggle-read-only):
8097 * dired.el (dired-toggle-read-only):
8098 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
8099 with non-nil second arg.
8100
8101 * emacs-lisp/eieio-custom.el (eieio-customize-object):
8102 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
8103 directly.
8104
8105 2012-07-12 Eli Zaretskii <eliz@gnu.org>
8106
8107 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
8108 not incf.
8109
8110 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
8111
8112 More CL cleanups and reduction of use of cl.el.
8113 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
8114 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
8115 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
8116 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
8117 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
8118 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
8119 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
8120 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
8121 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
8122 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
8123 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
8124 * eshell/em-cmpl.el, eshell/em-banner.el:
8125 * calendar/parse-time.el: Use cl-lib.
8126 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
8127 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
8128 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
8129 * term/ns-win.el, term.el, shell.el, ps-samp.el:
8130 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
8131 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
8132 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
8133 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
8134 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
8135 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
8136 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
8137 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
8138 `lambda' rather than with `quote'.
8139 (eshell-do-opt): Adjust accordingly.
8140 (eshell-process-option): Simplify.
8141 * eshell/esh-var.el:
8142 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
8143 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
8144 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
8145 to `pcase--dontcare'.
8146 * emacs-lisp/cl.el (labels): Mark obsolete.
8147 (cl--letf, letf): Move to cl-lib.
8148 (cl--letf*, letf*): Remove.
8149 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
8150 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
8151 (cl-progv): Rewrite.
8152 (cl--letf, cl-letf): Move from cl.el.
8153 (cl-letf*): New macro.
8154 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
8155
8156 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
8157
8158 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
8159
8160 2012-07-11 Chong Yidong <cyd@gnu.org>
8161
8162 * vc/log-edit.el (log-edit-vc-backend): New variable.
8163 (log-edit): Doc fix.
8164
8165 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
8166 argument of log-edit to set up all local variables.
8167 (vc-start-logentry): New optional arg specifying VC backend.
8168
8169 * vc/vc.el (vc-checkin): Use it.
8170 (vc-deduce-fileset): Handle Log Edit buffers.
8171 (vc-diff): Make first argument optional too.
8172
8173 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
8174
8175 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
8176
8177 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
8178 command, just in case. The function is not needed anymore.
8179 (eshell-external-command): Do not call `eshell-remote-command'.
8180
8181 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
8182
8183 Reduce use of (require 'cl).
8184 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
8185 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
8186 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
8187 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
8188 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
8189 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
8190 * battery.el, avoid.el, abbrev.el: Use cl-lib.
8191 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
8192 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
8193 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
8194 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
8195 * calculator.el, autorevert.el, apropos.el: Don't require CL.
8196 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
8197 (byte-compile-unfold-bcf, byte-compile-check-variable):
8198 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
8199 (byte-compile-nilconstp):
8200 * emacs-lisp/autoload.el (make-autoload): Use pcase.
8201 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
8202
8203 * emacs-lisp/gv.el (cond): Make it a valid place.
8204 (if): Simplify slightly.
8205
8206 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
8207 (pcase--self-quoting-p): New function.
8208 (pcase--u1): Use it.
8209
8210 2012-07-10 Glenn Morris <rgm@gnu.org>
8211
8212 * emacs-lisp/authors.el (authors-fixed-entries):
8213 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
8214
8215 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
8216
8217 Rename configure.in to configure.ac (Bug#11603).
8218 * emacs-lisp/authors.el (authors-canonical-file-name):
8219 * progmodes/autoconf.el (autoconf-mode):
8220 Prefer configure.ac to configure.in.
8221
8222 2012-07-08 Chong Yidong <cyd@gnu.org>
8223
8224 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
8225 Implement the mouse-1-click-follows-link handling properly.
8226
8227 * info.el (Info-link-keymap): Use follow-link mechanism for
8228 header-line links (Bug#374).
8229
8230 * simple.el (deactivate-mark): Do not set the primary selection
8231 if another program has acquired it (Bug#11772).
8232
8233 2012-07-07 Kevin Ryde <user42@zip.com.au>
8234
8235 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
8236 (woman-decode-region): Replace escaped-escapes without destroying
8237 bold or underline (Bug#11552).
8238 (woman2-process-escapes): Handle nofill regions (Bug#11591).
8239
8240 2012-07-07 Chong Yidong <cyd@gnu.org>
8241
8242 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
8243 (interprogram-cut-function, interprogram-paste-function):
8244 Mention that we typically mean the clipboard.
8245
8246 2012-07-06 Glenn Morris <rgm@gnu.org>
8247
8248 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
8249
8250 * files.el (toggle-read-only): Restrict message to interactive use.
8251
8252 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
8253
8254 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
8255
8256 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
8257
8258 2012-07-06 Glenn Morris <rgm@gnu.org>
8259
8260 * Makefile.in (compile-one-process): Rename from "recompile".
8261
8262 * Makefile.in (bzr-update): "compile" is the same as "recompile
8263 autoloads", but parallelizable, so use that instead.
8264
8265 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
8266
8267 * window.el (quit-window): Always restore window height when
8268 it's saved in quit-restore parameter (Bug#11810).
8269
8270 2012-07-06 Glenn Morris <rgm@gnu.org>
8271
8272 * simple.el (kill-whole-line): Doc tweak.
8273
8274 2012-07-06 Eli Zaretskii <eliz@gnu.org>
8275
8276 * files.el (file-relative-name): Compare file names
8277 case-insensitively if on MS-Windows or MS-DOS, or if
8278 read-file-name-completion-ignore-case is non-nil. Don't use
8279 case-fold-search for this purpose. (Bug#11827)
8280
8281 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
8282
8283 * calendar/cal-dst.el (calendar-current-time-zone):
8284 Return calendar-current-time-zone-cache if non-nil.
8285
8286 2012-07-17 Masatake YAMATO <yamato@redhat.com>
8287 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
8288
8289 * calendar/cal-dst.el (calendar-current-time-zone):
8290 Return calendar-current-time-zone-cache if non-nil.
8291
8292 2012-07-06 Glenn Morris <rgm@gnu.org>
8293
8294 * Makefile.in (cvs-update): Remove old alias.
8295
8296 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
8297
8298 Sync with Tramp 2.2.6-pre.
8299
8300 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
8301 compatible declaration.
8302
8303 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8304 Protect `list-load-path-shadows' call.
8305
8306 * net/tramp-compat.el (top): Require packages, which aren't
8307 autoloaded anymore for XEmacs. Protect call of
8308 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
8309 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
8310 it hurts at least for SXEmacs.
8311 (tramp-compat-temporary-file-directory): In XEmacs, there is no
8312 standard-value for `temporary-file-directory'.
8313
8314 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
8315 Redirect stderr to /dev/null.
8316 (tramp-sh-handle-write-region): uid and gid can be floats.
8317 Reported by Russell Sim <russell.sim@gmail.com>.
8318 (tramp-sh-handle-vc-registered): Hide errors.
8319 (tramp-vc-file-name-handler): Use dummy results for `process-file'
8320 and `start-file-process'.
8321 (tramp-maybe-open-connection): Check also whether `non-essential'
8322 is bound.
8323
8324 2012-07-04 Chong Yidong <cyd@gnu.org>
8325
8326 * xml.el (xml--parse-buffer): Use xml-syntax-table.
8327 (xml-parse-tag): Likewise, and avoid changing entity tables.
8328 (xml-syntax-table): Define from scratch, making sure not to give
8329 x2000 and other Unicode spaces whitespace syntax, since those are
8330 not spaces in XML.
8331 (xml-parse-fragment): Delete unused function.
8332 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
8333 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
8334 (xml-entity-ref, xml-pe-reference-re)
8335 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
8336 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
8337 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
8338 (xml-entity-value-re): Use syntax references in regexps where
8339 possible; no need to define inside a let-binding.
8340 (xml-parse-dtd): Use xml-pe-reference-re.
8341 (xml-entity-or-char-ref-re): New defconst.
8342 (xml-parse-string, xml-substitute-special): Use it.
8343
8344 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8345
8346 * files.el (locate-dominating-file): Allow `name' to be a predicate.
8347 (find-file--read-only): New function.
8348 (find-file-read-only, find-file-read-only-other-window)
8349 (find-file-read-only-other-frame): Use it.
8350 (insert-file-contents-literally): Don't `fset'.
8351 (get-free-disk-space): Use locate-dominating-file.
8352
8353 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
8354 function is already compiled.
8355
8356 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
8357
8358 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
8359
8360 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
8361 files on the same host.
8362
8363 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
8364
8365 * help-fns.el (describe-function-1): Only call
8366 help-fns--autoloaded-p when we have a file name. (Bug#11848)
8367
8368 2012-07-03 Chong Yidong <cyd@gnu.org>
8369
8370 * xml.el: Protect parser against XML bombs.
8371 (xml-entity-expansion-limit): New variable.
8372 (xml-parse-string, xml-substitute-special): Use it.
8373 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
8374
8375 2012-07-03 Glenn Morris <rgm@gnu.org>
8376
8377 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8378 Allow linking to specific messages in debbugs reports (eg 123#5).
8379
8380 2012-07-02 Chong Yidong <cyd@gnu.org>
8381
8382 * xml.el: Fix entity and character reference expansion, allowing
8383 them to expand into markup as per XML spec.
8384 (xml-default-ns): New variable.
8385 (xml-entity-alist): Use XML spec definitions for lt and amp.
8386 (xml-parse-region): Make first two arguments optional.
8387 Discard text properties.
8388 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
8389 All callers changed.
8390 (xml-parse-tag): Call xml-parse-tag-1. For backward
8391 compatibility, this function should not modify buffer contents.
8392 (xml-parse-tag-1): Fix opening-tag regexp.
8393 (xml-parse-string): Rewrite, handling entity and character
8394 references properly.
8395 (xml--entity-replacement-text): Signal an error if a parameter
8396 entity is undefined.
8397
8398 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8399
8400 * comint.el (comint-output-filter): Filter out repeated prompts.
8401
8402 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
8403 and file-name-absolute-p.
8404 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
8405 internal calls.
8406
8407 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
8408
8409 Spelling fixes.
8410 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
8411 Rename from byte-compile--refiy-function. All uses changed.
8412
8413 2012-07-01 Chong Yidong <cyd@gnu.org>
8414
8415 * xml.el (xml--parse-buffer): New function. Move most of
8416 xml-parse-region here.
8417 (xml-parse-region): Copy region into a temporary buffer, since
8418 parameter entity substitution requires changing buffer contents.
8419 Use xml--parse-buffer.
8420 (xml-parse-file): Use xml--parse-buffer.
8421 (xml-parse-dtd): Make parameter entity substitution work right.
8422 Use proper regexps for ELEMENT declarations (Bug#7172).
8423
8424 2012-06-30 Glenn Morris <rgm@gnu.org>
8425
8426 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
8427
8428 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
8429 Remove outdated and unnecessary dbus declarations.
8430
8431 2012-06-30 Eli Zaretskii <eliz@gnu.org>
8432
8433 * emacs-lisp/timer.el (timer-until): Subtract results of
8434 float-time, instead of taking float-time of the result of
8435 time-subtract, since float-time signals an error for negative time
8436 arguments.
8437
8438 2012-06-30 Chong Yidong <cyd@gnu.org>
8439
8440 * xml.el (xml-*-re): Convert defvars into defconsts, and
8441 eval-and-compile them so eval-and-compile works on derivatives.
8442 (xml--entity-replacement-text): Use eval-and-comple.
8443
8444 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
8445
8446 * vc/vc-git.el (vc-git-registered): Use cache property
8447 `git-registered'.
8448 (vc-git-mode-line-string): Call `vc-working-revision' instead of
8449 `vc-git-working-revision' in order to benefit from the cache.
8450 (vc-git-root): Use cache property `git-root'. (Bug#11757)
8451
8452 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
8453
8454 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
8455 removed (likely outside Emacs). (Bug#11757)
8456
8457 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8458
8459 * emacs-lisp/cl-lib.el: Require macroexp.
8460
8461 2012-06-30 Chong Yidong <cyd@gnu.org>
8462
8463 * xml.el: Implement XML parameter entities.
8464 (xml-parameter-entity-alist): New variable.
8465 (xml-parse-region, xml-parse-fragment): Preserve previous values
8466 of xml-entity-alist and xml-parameter-entity-alist, so that
8467 repeated calls on different documents do not change them.
8468 (xml-parse-tag): Fix doctype regexp.
8469 (xml--entity-replacement-text): New function.
8470 (xml-parse-dtd): Use it. Don't handle system entities; doing that
8471 properly requires url retrieval which is unimplemented.
8472 (xml-escape-string): Doc fix.
8473
8474 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
8475
8476 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
8477
8478 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
8479
8480 * fringe.el (fringe-mode): Doc fix.
8481
8482 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
8483
8484 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
8485 is non-nil.
8486 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
8487 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
8488
8489 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
8490
8491 * calendar/cal-dst.el (calendar-current-time-zone):
8492 Return calendar-current-time-zone-cache if non-nil.
8493
8494 2012-06-29 Masatake YAMATO <yamato@redhat.com>
8495
8496 * progmodes/which-func.el (which-func-format):
8497 Add mouse-face. (Bug#11698)
8498
8499 2012-06-29 Leo Liu <sdl.web@gmail.com>
8500
8501 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
8502
8503 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8504
8505 * minibuffer.el (minibuffer-confirm-exit-commands):
8506 Add completion-at-point (bug#11725).
8507
8508 2012-06-29 Glenn Morris <rgm@gnu.org>
8509
8510 * progmodes/f90.el (f90-font-lock-keywords-2):
8511 Add some preprocessor elements. (Bug#10499)
8512
8513 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8514
8515 * progmodes/cperl-mode.el (cperl-update-syntaxification):
8516 Use syntax-propertize (bug#11739).
8517
8518 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
8519
8520 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
8521
8522 2012-06-28 Julien Danjou <julien@danjou.info>
8523
8524 * term.el (term-handle-colors-array): Use a set of new faces to
8525 color the terminal. Also uses :inverse-video property.
8526 (term-default-fg-color): Set to nil by default, deprecate in favor
8527 of `term-face'.
8528 (term-default-bg-color): Set to nil by default, deprecate in favor
8529 of `term-face'.
8530 (term-current-face): Use `term-face' by default.
8531 (term-bold-attribute): Variable deleted.
8532
8533 2012-06-28 Glenn Morris <rgm@gnu.org>
8534
8535 * simple.el (completion-list-mode-finish):
8536 Don't use toggle-read-only. (Since completion-list-mode has
8537 a special mode-class, it wasn't doing anything extra anyway.)
8538
8539 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8540
8541 Make inlining of other-mode interpreted functions work (bug#11799).
8542 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
8543 (byte-compile): Use it to fix compilation of lexical-binding closures.
8544 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
8545 function, if needed.
8546
8547 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
8548
8549 * help-mode.el (help-make-xrefs): Don't just withstand
8550 cyclic-variable-indirection but any error in documentation-property.
8551
8552 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
8553 memory use.
8554 * bindings.el (bindings--define-key): New function.
8555 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
8556 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
8557 * bindings.el: Use it to purecopy define-key bindings.
8558
8559 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
8560
8561 * emacs-lisp/cl.el (flet): Mark obsolete.
8562 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
8563 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
8564 * progmodes/js.el (js-c-fill-paragraph):
8565 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
8566 (ebrowse-switch-member-buffer-to-derived-class):
8567 * play/5x5.el (5x5-solver): Use cl-flet.
8568
8569 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
8570 (cl--symbol-function): New macro.
8571 (cl--letf, cl--letf*): Use it.
8572
8573 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
8574 Strip "toggle-" if any.
8575
8576 2012-06-27 Glenn Morris <rgm@gnu.org>
8577
8578 * info.el (Info-default-directory-list): Move here from paths.el.
8579 * paths.el: Remove file, which is now empty.
8580 * loadup.el: No longer load "paths".
8581
8582 * custom.el (custom-initialize-delay): Doc fix.
8583
8584 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
8585 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
8586 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
8587 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
8588 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
8589 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
8590 * eshell/eshell.el (eshell-defgroup): Remove alias.
8591
8592 2012-06-27 Chong Yidong <cyd@gnu.org>
8593
8594 * help.el (help-enable-auto-load): New variable.
8595
8596 * help-fns.el (help-fns--autoloaded-p): New function.
8597 (describe-function-1): Refer to a function as "autoloaded" if it
8598 was autoloaded at any time in the past. Perform autoloading if
8599 help-enable-auto-load is non-nil.
8600
8601 2012-06-26 Eli Zaretskii <eliz@gnu.org>
8602
8603 * makefile.w32-in (compile, compile-always): Depend on
8604 update-subdirs, not on subdirs.el. Otherwise, several different
8605 sub-targets of 'bootstrap' running in parallel could
8606 simultaneously write to subdirs.el, producing a garbled file.
8607
8608 2012-06-26 Sam Steingold <sds@gnu.org>
8609
8610 * files.el (file-name-base): New convenience function.
8611 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
8612 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
8613 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
8614 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
8615 * textmodes/ispell.el, textmodes/reftex-ref.el:
8616 * textmodes/tex-mode.el: Use it.
8617 Did not touch cedet and org because they are maintained elsewhere.
8618
8619 2012-06-26 Martin Rudalics <rudalics@gmx.at>
8620
8621 * calendar/calendar.el (calendar-exit): Don't try to delete or
8622 iconify last frame. See:
8623 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
8624
8625 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
8626
8627 * server.el (server-process-filter): Remember dir in the
8628 process's `server-client-directory' properties.
8629
8630 2012-06-24 Chong Yidong <cyd@gnu.org>
8631
8632 * xml.el (xml-parse-tag): Correctly handle comment embedded in
8633 non-tag text.
8634
8635 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
8636
8637 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
8638
8639 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8640
8641 * help-fns.el (describe-variable): Don't croak when doc is not found.
8642 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
8643 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
8644 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
8645 * emacs-lisp/smie.el (smie-next-sexp): CSE.
8646 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
8647 ((lambda ..) ..).
8648 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
8649
8650 2012-06-23 Chong Yidong <cyd@gnu.org>
8651
8652 * info.el (Info-mouse-follow-link): Accept symbol values of
8653 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
8654 (Info-fontify-node): Use Info-link-keymap for all navigation
8655 buttons, with link-args property to perform the desired action.
8656 (Info-link-keymap): Doc fix.
8657 (Info-next-link-keymap, Info-prev-link-keymap)
8658 (Info-up-link-keymap): Delete now-unused keymaps.
8659
8660 2012-06-23 Chong Yidong <cyd@gnu.org>
8661
8662 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
8663
8664 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
8665 system abbrevs.
8666
8667 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
8668
8669 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8670
8671 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
8672 (bug#11719).
8673
8674 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
8675 the requote function doesn't work properly (bug#11714).
8676
8677 2012-06-23 Glenn Morris <rgm@gnu.org>
8678
8679 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
8680
8681 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8682
8683 Further GV/CL cleanups.
8684 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
8685 gv-expander.
8686 (gv--defun-declaration): New function.
8687 (defun-declarations-alist): Use it.
8688 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
8689 (gv-place): Autoload.
8690 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
8691 original definition of dotimes and dolist.
8692 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
8693 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
8694 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
8695 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
8696 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
8697 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
8698 to the function's definition.
8699 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
8700 * window.el:
8701 * files.el:
8702 * faces.el:
8703 * env.el: Don't use CL.
8704
8705 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
8706
8707 Support higher-resolution time stamps (Bug#9000).
8708
8709 * calendar/time-date.el (with-decoded-time-value): New arg
8710 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
8711 (encode-time-value): New optional arg PICO. New type 3.
8712 (time-to-seconds) [!float-time]: Support the new picoseconds
8713 component if it's used.
8714 (seconds-to-time, time-subtract, time-add):
8715 Support ps-resolution time stamps as well.
8716
8717 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
8718 (timerp): Timer vectors now have length 9, not 8.
8719 (timer--time): Support new-style (4-part) time stamps.
8720 (timer-next-integral-multiple-of-time): Time stamps now have
8721 picosecond resolution, so take a bit more care about rounding.
8722 (timer-relative-time, timer-inc-time): New optional arg psecs.
8723 (timer-set-time-with-usecs): Set psecs to 0.
8724 (timer--activate): Check psecs component, too.
8725
8726 * proced.el (proced-time-lessp): Support ps-resolution stamps.
8727
8728 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8729
8730 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
8731 Move the non-essential binding to the post/pre-command-hook where it is
8732 more obviously correct.
8733
8734 * subr.el (read-passwd): Don't use a history at all.
8735 * savehist.el (savehist-save): Remove password saved accidentally
8736 because of the above bug.
8737
8738 2012-06-22 Bastien Guerry <bzg@gnu.org>
8739
8740 * files.el (toggle-read-only): Display a message telling whether
8741 the buffer is read-only or not (bug#11726).
8742
8743 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * emacs-lisp/gv.el: New file.
8746 * subr.el (push, pop): Extend to generalized variables.
8747 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
8748 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
8749 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
8750 gv-define-simple-setter, and gv-define-expander.
8751 Remove setf-methods defined in gv. Rename cl-setf -> setf.
8752 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
8753 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
8754 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
8755 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
8756 gv-letplace.
8757 (cl-defstruct): Don't define setf-method any more.
8758 * emacs-lisp/cl.el (flet): Don't autoload.
8759 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
8760 (define-setf-expander, defsetf, define-modify-macro)
8761 (cl-struct-setf-expander): Move from cl-lib.el.
8762 * emacs-lisp/syntax.el:
8763 * emacs-lisp/ewoc.el:
8764 * emacs-lisp/smie.el:
8765 * emacs-lisp/cconv.el:
8766 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
8767 (timer--time): Use gv-define-simple-setter.
8768 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
8769 to avoid coding-system problems in subr.el. Adjust all users.
8770 (macroexp--maxsize, macroexp-small-p): New functions.
8771 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
8772 * scroll-bar.el (scroll-bar-mode):
8773 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
8774 (normal-erase-is-backspace-mode): Don't use the `eq' place.
8775 * winner.el (winner-configuration, winner-make-point-alist)
8776 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
8777 * files.el (locate-file-completion-table): Avoid list*.
8778
8779 2012-06-22 Chong Yidong <cyd@gnu.org>
8780
8781 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
8782 (dired-create-files): Doc fix (Bug#11329).
8783 (dired-do-copy): Doc fix (Bug#11334).
8784 (dired-mark-read-string): Doc fix (Bug#11553).
8785
8786 * dired.el (dired-recursive-copies, dired-recursive-deletes):
8787 Doc fix (Bug#11326).
8788 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
8789 (dired-dwim-target): Doc fix.
8790
8791 * wdired.el (wdired-mode): Doc fix.
8792
8793 2012-06-22 Glenn Morris <rgm@gnu.org>
8794
8795 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
8796 (pcmpl-rpm-cache-stamp-file): New constant.
8797 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
8798 (pcmpl-rpm-packages): Optionally cache list of packages.
8799
8800 * pcmpl-rpm.el (pcmpl-rpm): New group.
8801 (pcmpl-rpm-query-options): New option.
8802 (pcmpl-rpm-packages): No need to inline it.
8803 Use pcmpl-rpm-query-options.
8804
8805 * calendar/calendar.el (calendar-in-read-only-buffer):
8806 Avoid some needless mode changes.
8807
8808 2012-06-21 Chong Yidong <cyd@gnu.org>
8809
8810 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
8811 (desktop-path): Remove . from the default value (Bug#10977).
8812 (desktop-read): Use user-emacs-directory if desktop-path is nil.
8813
8814 2012-06-20 Chong Yidong <cyd@gnu.org>
8815
8816 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
8817
8818 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
8819
8820 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
8821 (bug#11201).
8822
8823 2012-06-20 Chong Yidong <cyd@gnu.org>
8824
8825 * term.el (term-window-width): Handle the case of a missing right
8826 fringe (Bug#8837).
8827 (term-check-size): Use window-text-height (Bug#5445).
8828 (term-mode): Use define-derived-mode. Minor cleanups.
8829 Set font-lock-defaults (Bug#7692).
8830 (term-move-columns, term-insert-char, term-emulate-terminal)
8831 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
8832
8833 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
8834
8835 * net/ange-ftp.el (ange-ftp-get-passwd):
8836 Bind `enable-recursive-minibuffers'.
8837 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
8838
8839 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
8840
8841 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
8842
8843 2012-06-19 Glenn Morris <rgm@gnu.org>
8844
8845 * progmodes/python.el (python-mode): Derive from prog-mode.
8846
8847 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
8848
8849 * emulation/edt.el (edt-default-menu-bar-update-buffers)
8850 (edt-user-menu-bar-update-buffers): New functions.
8851 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
8852
8853 2012-06-19 Chong Yidong <cyd@gnu.org>
8854
8855 * subr.el (with-selected-window): Preserve the selected window's
8856 terminal's top-frame (Bug#4702).
8857
8858 * window.el (save-selected-window): Likewise.
8859
8860 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8861
8862 * progmodes/python.el (python-rx-constituents): Move backquote.
8863 (python-skeleton-define, python-define-auxiliary-skeleton):
8864 Use `declare'.
8865
8866 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
8867
8868 * minibuffer.el (read-file-name-default): Revert the patch from
8869 2012-06-17.
8870
8871 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
8872
8873 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
8874 (pcase--u1, pcase--q1): Don't use apply-partially.
8875
8876 2012-06-18 Glenn Morris <rgm@gnu.org>
8877
8878 * progmodes/python.el (python-proc, python-buffer)
8879 (python-send-receive, python-send-string): Fix obsolete versions.
8880
8881 2012-06-18 Martin Rudalics <rudalics@gmx.at>
8882
8883 * window.el (special-display-p): Completely remove stringp
8884 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
8885
8886 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
8887
8888 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
8889
8890 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
8891
8892 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
8893 * net/tramp-sh.el (tramp-maybe-open-connection):
8894 Throw if `non-essential' is non-nil.
8895
8896 2012-06-17 Martin Rudalics <rudalics@gmx.at>
8897
8898 * window.el (special-display-p): Signal an error if BUFFER-NAME
8899 is not a string (Bug#11713).
8900
8901 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
8902
8903 * progmodes/python.el (python-info-beginning-of-backslash):
8904 Rename from python-info-beginning-of-backlash, as a spelling fix.
8905
8906 2012-06-17 Chong Yidong <cyd@gnu.org>
8907
8908 * term.el (term-emulate-terminal): If term-check-size is called,
8909 move point to the process mark without resetting point (Bug#4635).
8910
8911 2012-06-17 Glenn Morris <rgm@gnu.org>
8912
8913 * international/mule-cmds.el (mule-menu-keymap)
8914 (set-language-environment, set-locale-environment): Doc tweaks.
8915
8916 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
8917
8918 * cus-face.el (custom-face-attributes): Add wave-style underline
8919 attribute.
8920 * faces.el (set-face-attribute): Update docstring to describe
8921 wave-style underline attribute.
8922
8923 2012-06-16 Chong Yidong <cyd@gnu.org>
8924
8925 * term/xterm.el (terminal-init-xterm): Discard input before
8926 querying background mode (Bug#10959).
8927
8928 2012-06-16 Stefan Merten <smerten@oekonux.de>
8929
8930 * textmodes/rst.el: Added and corrected some comments.
8931 (rst-re-alist-def): Improve symbol syntax.
8932 (rst-mode-syntax-table): Correct syntax entries.
8933 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8934 (rst-official-version, rst-official-cvs-rev): Update version
8935 information.
8936
8937 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
8938
8939 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
8940 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
8941
8942 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
8943
8944 * progmodes/python.el: New python.el merge.
8945 (python-guess-indent): Obsolete var.
8946 (python-indent-guess-indent-offset): New defcustom.
8947 (python-indent): Obsolete var.
8948 (python-indent-offset): New defcustom.
8949 (python-python-command, python-jython-command): Delete var.
8950 (python-shell-interpreter): New defcustom.
8951 (python-pdbtrack-do-tracking-p): Delete var.
8952 (python-pdbtrack-activate): New defcustom.
8953 (python-use-skeletons): Obsolete var.
8954 (python-skeleton-autoinsert): New defcustom.
8955 (inferior-python-filter-regexp, python-continuation-offset)
8956 (python-honour-comment-indentation, python-indent-string-contents)
8957 (python-jython-packages, python-mode-hook)
8958 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
8959 (python-shell-prompt-alist)
8960 (python-source-modes): Delete defcustoms.
8961 (python-check-buffer-name, python-eldoc-setup-code)
8962 (python-eldoc-string-code, python-ffap-setup-code)
8963 (python-ffap-string-code, python-fill-comment-function)
8964 (python-fill-decorator-function, python-fill-paren-function)
8965 (python-fill-string-function, python-imenu-include-defun-type)
8966 (python-imenu-make-tree, python-imenu-subtree-root-label)
8967 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
8968 (python-shell-compilation-regexp-alist)
8969 (python-shell-completion-module-string-code)
8970 (python-shell-completion-pdb-string-code)
8971 (python-shell-completion-setup-code)
8972 (python-shell-completion-string-code)
8973 (python-shell-enable-font-lock, python-shell-exec-path)
8974 (python-shell-extra-pythonpaths)
8975 (python-shell-internal-buffer-name, python-shell-interpreter-args)
8976 (python-shell-process-environment)
8977 (python-shell-prompt-block-regexp)
8978 (python-shell-prompt-output-regexp)
8979 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
8980 (python-shell-send-setup-max-wait, python-shell-setup-codes)
8981 (python-shell-virtualenv-path): New defcustoms.
8982 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
8983 (inferior-python-mode-syntax-table, python--prompt-regexp)
8984 (python-buffer, python-command python-python-command)
8985 (python-default-template, python-imports, python-indent-index)
8986 (python-indent-list, python-indent-list-length)
8987 (python-mode-running, python-pdbtrack-is-tracking-p)
8988 (python-preoutput-continuation, python-preoutput-leftover)
8989 (python-preoutput-result, python-preoutput-skip-next-prompt)
8990 (python-prev-dir/file, python-recursing)
8991 (python-saved-check-command, python-version-checked)
8992 (python-which-func-length-limit)
8993 (view-return-to-alist): Delete vars.
8994 (python-check-custom-command, python-dotty-syntax-table)
8995 (python-imenu-index-alist, python-indent-current-level)
8996 (python-indent-dedenters, python-indent-levels)
8997 (python-nav-beginning-of-defun-regexp)
8998 (python-nav-list-defun-positions-cache)
8999 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
9000 (python-shell-internal-buffer)
9001 (python-skeleton-available): New vars.
9002 (def-python-skeleton): Delete macro.
9003 (python-skeleton-define): New macro.
9004 (python-define-auxiliary-skeleton, python-rx): New macros.
9005 (python-insert-class): Delete command.
9006 (python-skeleton-class): New command.
9007 (python-insert-def): Delete command.
9008 (python-skeleton-def): New command.
9009 (python-insert-for): Delete command.
9010 (python-skeleton-for): New command.
9011 (python-insert-if): Delete command.
9012 (python-skeleton-if): New command.
9013 (python-insert-try/except, python-insert-try/finally): Delete commands.
9014 (python-skeleton-try): New command.
9015 (python-insert-while): Delete command.
9016 (python-skeleton-while): New command.
9017 (python-backspace): Delete command.
9018 (python-indent-dedent-line-backspace): New command.
9019 (python-electric-colon): Delete command.
9020 (python-indent-electric-colon): New command.
9021 (python-guess-indent): Delete command.
9022 (python-indent-guess-indent-offset): New command.
9023 (python-shift-left): Delete command.
9024 (python-indent-shift-left): New command.
9025 (python-shift-right): Delete command.
9026 (python-indent-shift-right): New command.
9027 (python-find-function): Delete command.
9028 (python-nav-jump-to-defun): New command.
9029 (python-next-statement): Delete command.
9030 (python-nav-forward-sentence): New command.
9031 (python-previous-statement): Delete command.
9032 (python-nav-backward-sentence): New command.
9033 (python-fill-paragraph): Delete command.
9034 (python-fill-paragraph-function): New command.
9035 (python-send-buffer): Delete command.
9036 (python-shell-send-buffer): New command.
9037 (python-send-defun): Delete command.
9038 (python-shell-send-defun): New command.
9039 (python-send-region, python-send-region-and-go): Delete commands.
9040 (python-shell-send-region)
9041 (python-shell-switch-to-shell): New commands.
9042 (python-send-string): Delete command.
9043 (python-shell-send-string): New command.
9044 (python-switch-to-python): Delete command.
9045 (python-shell-switch-to-shell): New command.
9046 (python-describe-symbol): Delete command.
9047 (python-eldoc-at-point): New command.
9048 (python--set-prompt-regexp, python-args-to-list)
9049 (python-after-info-look, python-check-version)
9050 (python-check-comint-prompt, python-find-imports)
9051 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
9052 (python-unload-function, python-expand-template)
9053 (python-maybe-jython, python-preoutput-filter)
9054 (python-pdbtrack-get-source-buffer)
9055 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
9056 (python-pdbtrack-toggle-stack-tracking)
9057 (python-pdbtrack-track-stack-file, python-initial-text)
9058 (python-first-word, python-comment-line-p, python-send-command)
9059 (python-setup-brm, python-sentinel, python-set-proc)
9060 (python-skip-out, python-input-filter, python-outdent-p)
9061 (python-outline-level, python-backslash-continuation-line-p)
9062 (python-end-of-block, python-end-of-statement, python-mark-block)
9063 (python-beginning-of-block, python-beginning-of-statement)
9064 (python-blank-line-p, python-beginning-of-string)
9065 (python-open-block-statement-p): Delete functions.
9066 (python-indent-line, python-indent-line-1): Delete functions.
9067 (python-indent-line): New function.
9068 (python-indentation-levels): Delete function.
9069 (python-indent-calculate-levels): New function.
9070 (python-proc): Delete function.
9071 (python-shell-get-process): New function.
9072 (python-send-receive): Delete function.
9073 (python-shell-send-string-no-output): New function.
9074 (python-module-path): Delete function.
9075 (python-ffap-module-path): New function.
9076 (python-completion-at-point)
9077 (python-symbol-completions): Delete functions.
9078 (python-completion-complete-at-point): New function.
9079 (python-load-file): Delete function.
9080 (python-shell-send-file): New function.
9081 (python-calculate-indentation): Delete function.
9082 (python-indent-calculate-indentation): New function.
9083 (python-skip-comments/blanks): Delete function.
9084 (python-util-forward-comment): New function.
9085 (python-continuation-line-p): Delete function.
9086 (python-info-continuation-line-p): New function.
9087 (python-which-func, python-current-defun): Delete function.
9088 (python-info-current-defun): New function.
9089 (python-beginning-of-defun): Delete function.
9090 (python-nav-beginning-of-defun): New function.
9091 (python-close-block-statement-p)
9092 (python-block-end-p): Delete function.
9093 (python-info-closing-block): New function.
9094 (python-comint-output-filter-function)
9095 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
9096 (python-fill-comment, python-fill-decorator, python-fill-paren)
9097 (python-fill-string, python-imenu-make-element-tree)
9098 (python-imenu-make-tree, python-imenu-tree-assoc)
9099 (python-indent-context, python-indent-dedent-line)
9100 (python-indent-line-function)
9101 (python-indent-post-self-insert-function)
9102 (python-indent-toggle-levels)
9103 (python-info-assignment-continuation-line-p)
9104 (python-info-beginning-of-backlash)
9105 (python-info-block-continuation-line-p)
9106 (python-info-closing-block-message)
9107 (python-info-line-ends-backslash-p)
9108 (python-info-looking-at-beginning-of-defun)
9109 (python-info-ppss-context, python-info-ppss-context-type)
9110 (python-nav-list-defun-positions, python-nav-read-defun)
9111 (python-nav-sentence-end, python-nav-sentence-start)
9112 (python-pdbtrack-comint-output-filter-function)
9113 (python-pdbtrack-set-tracked-buffer)
9114 (python-shell-calculate-exec-path)
9115 (python-shell-calculate-process-environment)
9116 (python-shell-completion--do-completion-at-point)
9117 (python-shell-completion--get-completions)
9118 (python-shell-completion-complete-at-point)
9119 (python-shell-completion-complete-or-indent)
9120 (python-shell-get-or-create-process)
9121 (python-shell-get-process-name)
9122 (python-shell-internal-get-or-create-process)
9123 (python-shell-internal-get-process-name)
9124 (python-shell-internal-send-string, python-shell-make-comint)
9125 (python-shell-parse-command, python-shell-send-setup-code)
9126 (python-skeleton-add-menu-items)
9127 (python-util-clone-local-variables, python-util-position)
9128 (run-python-internal, python-indentation-levels)
9129 (python-nav-beginning-of-defun)
9130 (python-completion-complete-at-point): New functions.
9131 (run-python): Change arguments. New API requirements.
9132
9133 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9134
9135 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
9136 (bug#11649).
9137
9138 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
9139 (macroexp--expand-all): Use it.
9140
9141 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
9142 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
9143 Use `cl-function' instead.
9144
9145 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
9146
9147 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
9148 Suggested by Stefan Monnier while discussing bug#11657.
9149
9150 2012-06-14 Sam Steingold <sds@gnu.org>
9151
9152 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
9153
9154 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
9155
9156 * play/doctor.el (doctor-doc): Remove parameter and use
9157 doctor-sent instead of sent.
9158 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
9159
9160 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9161
9162 * files.el: Require cl-lib.
9163 (file-name-non-special): Replace case -> cl-case.
9164
9165 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
9166
9167 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
9168 mapping from #' to function*.
9169
9170 2012-06-13 Chong Yidong <cyd@gnu.org>
9171
9172 * mouse.el (mouse-drag-track): Do not set the mark if the user
9173 releases the mouse without selecting anything (Bug#11588).
9174
9175 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9176
9177 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
9178 as well (bug#11646).
9179
9180 * loadup.el: Count byte-code functions as well.
9181
9182 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
9183 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
9184
9185 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
9186 (bug#11649). Add cl-defun and cl-defmacro.
9187
9188 2012-06-13 Drew Adams <drew.adams@oracle.com>
9189
9190 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9191 Fix last change.
9192
9193 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
9194
9195 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
9196 Otherwise, it blocks in batch mode.
9197
9198 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
9199
9200 * help-mode.el (bookmark-make-record-default): Declare.
9201
9202 2012-06-13 Chong Yidong <cyd@gnu.org>
9203
9204 * emacs-lisp/package.el (list-packages): Compute a list of
9205 packages that are newly-available since the last list-packages
9206 invocation.
9207 (package-menu--new-package-list): New var.
9208 (package-menu--generate, package-menu--print-info)
9209 (package-menu--status-predicate, package-menu-mark-install):
9210 Handle new status label "new".
9211
9212 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9213
9214 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
9215 conversion to backquotes.
9216
9217 2012-06-12 Chong Yidong <cyd@gnu.org>
9218
9219 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
9220 Rename from gud-inhibit-global-bindings.
9221
9222 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
9223
9224 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
9225 hook from nxml-glyph-set-hook.
9226
9227 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
9228 declaration.
9229
9230 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
9231
9232 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
9233 Convert to defcustom.
9234
9235 2012-06-12 Drew Adams <drew.adams@oracle.com>
9236
9237 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
9238 New functions.
9239 (help-mode): Use them.
9240
9241 2012-06-11 Glenn Morris <rgm@gnu.org>
9242
9243 * progmodes/fortran.el (fortran-font-lock-keywords-3):
9244 Use preprocessor face for directives.
9245 (fortran-directive-re): Doc fix.
9246
9247 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9248
9249 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
9250 conversion to backquotes (bug#11652).
9251
9252 Fix compiler-expansion of CL's cXXr functions (bug#11673).
9253 * emacs-lisp/cl-lib.el (cl--defalias): New function.
9254 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
9255 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
9256 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
9257 (cl-ninth, cl-tenth): Mark them as inlinable.
9258 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
9259 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
9260 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
9261 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
9262 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
9263 (cl-list*, cl-adjoin): Don't put an autoload manually.
9264 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
9265 (cl--compiler-macro-list*): Add autoload cookie.
9266 (cl--compiler-macro-cXXr): New function.
9267
9268 * help-fns.el (help-fns--compiler-macro): New function extracted from
9269 describe-function-1; follow aliases and use `compiler-macro' property.
9270 (describe-function-1): Use it.
9271
9272 2012-06-11 Chong Yidong <cyd@gnu.org>
9273
9274 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
9275 is uninstalled, if imagemagick is installed.
9276
9277 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9278
9279 * emacs-lisp/cl-lib.el: Use lexical-binding.
9280 (cl-map-extents, cl-maclisp-member): Remove.
9281 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
9282 (cl--set-substring, cl--block-wrapper, cl--block-throw)
9283 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
9284 * emacs-lisp/cl-extra.el: Use lexical-binding.
9285 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
9286 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
9287 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
9288 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
9289 * emacs-lisp/cl-seq.el: Use lexical-binding.
9290 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
9291 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
9292 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
9293 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
9294 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
9295 CL's internals.
9296
9297 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
9298
9299 Sync with Tramp 2.2.6-pre.
9300
9301 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
9302 `print-length' and `print-level' to nil, in order to avoid
9303 truncation. Reported by Christopher Schmidt
9304 <christopher@ristopher.com>.
9305
9306 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
9307
9308 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
9309 New defmacro.
9310 (tramp-compat-copy-directory): Add optional argument
9311 COPY-CONTENTS. It is not handled yet.
9312
9313 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
9314 (tramp-ftp-file-name-p): Simplify.
9315
9316 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
9317 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
9318 connection vector.
9319
9320 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
9321 (tramp-methods): Do not use `tramp-password-end-of-line'.
9322 (tramp-completion-function-alist-putty): Handle UNIX case.
9323 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
9324 (tramp-do-file-attributes-with-stat)
9325 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
9326 gid as real numbers. They could run out of integer range on cygwin.
9327 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
9328 (tramp-sh-handle-expand-file-name): Handle hops.
9329 (tramp-open-connection-setup-interactive-shell):
9330 Use `tramp-cleanup'. Move check for busyboxes ...
9331 (tramp-find-shell): ... here. Simplify implementation.
9332 Set "remote-shell" property also for alternative shells.
9333 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
9334 If failing, a regular file would be written otherwise.
9335 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
9336 (tramp-find-inline-encoding): Cache the coding commands in the
9337 process cache. Apply test command on the remote side, if defined.
9338 (tramp-find-inline-compress): Cache the compress commands in the
9339 process cache.
9340 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
9341 when requested. Handle hops.
9342 (tramp-current-connection): New defvar.
9343 (tramp-maybe-open-connection): Use `tramp-cleanup'.
9344 Throw `suppress', if there was a failed connection shortly before.
9345 Handle user interrupt. (Bug#10187)
9346 (tramp-get-inline-compress, tramp-get-inline-coding):
9347 Read connection properties from the process cache.
9348
9349 * net/tramp-smb.el (tramp-smb-server-version)
9350 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
9351 New defconsts.
9352 (tramp-smb-prompt): Extend for powershell prompt.
9353 (tramp-smb-file-name-handler-alist): Add handlers for
9354 `process-file', `shell-command' and `start-file-process'.
9355 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
9356 (tramp-smb-winexe-shell-command-switch): New defcustoms.
9357 (tramp-smb-file-name-p): Simplify.
9358 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
9359 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
9360 (tramp-smb-shell-quote-argument): New defuns.
9361 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
9362 Implement using "tar". By this, time-stamps are preserved.
9363 (tramp-smb-handle-copy-file): Handle also the case of directories.
9364 (tramp-smb-do-file-attributes-with-stat)
9365 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
9366 Use `tramp-get-connection-buffer').
9367 (tramp-smb-handle-rename-file): Use "rename", when source and
9368 target are on the same share.
9369 (tramp-smb-maybe-open-connection): Handle wrong passwords.
9370 Use `tramp-smb-server-version'.
9371 (tramp-smb-wait-for-output): Remove prompt.
9372
9373 * net/tramp.el (top): Require 'cl.
9374 (tramp-methods, tramp-rsh-end-of-line):
9375 Remove `tramp-password-end-of-line' from docstring.
9376 (tramp-save-ad-hoc-proxies): New defcustom.
9377 (tramp-completion-function-alist): Adapt docstring.
9378 (tramp-default-password-end-of-line): Remove defcustom.
9379 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
9380 (tramp-user-regexp, tramp-file-name-regexp-unified)
9381 (tramp-file-name-regexp-url): Extend regexp by hop separator.
9382 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
9383 (tramp-remote-file-name-spec-regexp): New defconst.
9384 (tramp-file-name-structure): Extend structure for hops.
9385 (tramp-get-method-parameter): Move up.
9386 (tramp-file-name-p, tramp-dissect-file-name)
9387 (with-parsed-tramp-file-name): Handle hops.
9388 (tramp-file-name-hop): New defun.
9389 (tramp-make-tramp-file-name): New optional arg HOP.
9390 (tramp-message-show-progress-reporter-message): New defvar.
9391 (tramp-with-progress-reporter): Use it. We cannot use
9392 `tramp-message-show-message' here, because this suppresses also
9393 error buffers.
9394 (tramp-error-with-buffer): Suppress buffer view, if
9395 `tramp-message-show-message' is nil.
9396 Use `tramp-get-connection-buffer'.
9397 (tramp-cleanup): New defun.
9398 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
9399 (tramp-file-name-handler): If `debug-on-error' is set, propagate
9400 an error unchanged.
9401 (tramp-completion-handle-file-name-all-completions): Handle hops.
9402 Fix an error when called from ido.
9403 (tramp-completion-dissect-file-name): Use better local variable
9404 name. Add hop to the vector.
9405 (tramp-handle-insert-file-contents): Use progress-reporter for the
9406 whole scenario.
9407 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
9408 to `t'.
9409 (tramp-check-for-regexp): Simplify search.
9410 (tramp-enter-password): Remove it. Move implementation ...
9411 (tramp-action-password): ... here.
9412 (tramp-mode-string-to-int, tramp-local-host-p)
9413 (tramp-make-tramp-temp-file, tramp-read-passwd)
9414 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
9415 Set tramp-autoload cookie.
9416
9417 * net/trampver.el: Update release number.
9418
9419 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9420 Michael Albinus <michael.albinus@gmx.de>
9421
9422 * net/tramp.el (tramp-set-completion-function): Fix docstring.
9423 (tramp-parse-group, tramp-parse-file)
9424 (tramp-parse-shostkeys-sknownhosts): New defuns.
9425 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
9426 (tramp-parse-shosts-group, tramp-parse-sconfig)
9427 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
9428 (tramp-parse-sknownhosts, tramp-parse-hosts)
9429 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
9430 Use them.
9431 (tramp-parse-passwd-group, tramp-parse-netrc-group)
9432 (tramp-parse-putty-group): Don't narrow.
9433 (tramp-parse-putty): Make a loop.
9434 (tramp-file-name-handler): Catch the `suppress' signal.
9435
9436 2012-06-11 Chong Yidong <cyd@gnu.org>
9437
9438 * image.el (imagemagick-register-types): Put the ImageMagick entry
9439 at the end of image-type-file-name-regexps.
9440
9441 2012-06-11 Johan Bockgård <bojohan@gnu.org>
9442
9443 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
9444 (pcase, pcase-let*, pcase-dolist): Use them.
9445
9446 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * emacs-lisp/pcase.el (pcase--let*): New function.
9449 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
9450 (pcase--expand): Use macroexp-let².
9451
9452 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9453
9454 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
9455 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
9456 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
9457 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
9458 * emacs-lisp/derived.el: Use pcase instead of `cl'.
9459 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
9460
9461 2012-06-10 Glenn Morris <rgm@gnu.org>
9462
9463 * mail/rmail.el (rmail-yank-current-message): Leave point at
9464 correct position. (Bug#11660)
9465
9466 2012-06-10 Chong Yidong <cyd@gnu.org>
9467
9468 * allout-widgets.el: Fix code header.
9469
9470 2012-06-10 Chong Yidong <cyd@gnu.org>
9471
9472 * cus-edit.el (customize-changed-options-previous-release):
9473 Bump to 24.1.
9474
9475 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
9476
9477 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
9478
9479 2012-06-09 Chong Yidong <cyd@gnu.org>
9480
9481 * ebuff-menu.el (electric-buffer-list): Preserve header line.
9482
9483 2012-06-09 Martin Rudalics <rudalics@gmx.at>
9484
9485 * window.el (special-display-popup-frame): Don't use
9486 window--display-buffer (Bug#11651).
9487
9488 2012-06-09 Eli Zaretskii <eliz@gnu.org>
9489
9490 Fix parallel builds: make sure loaddefs.el is not being written
9491 while Lisp files are compiled.
9492 (compile): Don't depend on 'mh-autoloads'.
9493 (compile-CMD, compile-SH): Depend on 'autoloads'.
9494 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
9495
9496 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
9497
9498 2012-06-09 Chong Yidong <cyd@gnu.org>
9499
9500 * face-remap.el (face-remap-add-relative, face-remap-set-base)
9501 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
9502 Doc fixes (Bug#11225).
9503
9504 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9505
9506 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
9507 a function if there's a clear indication that it has a compiler-macro.
9508 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
9509 (macro-declarations-alist): Add arglist to declaration functions.
9510 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
9511 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
9512 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
9513 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
9514 Also add autoload to find the compiler macro.
9515 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
9516 (cl--compiler-macro-member, cl--compiler-macro-assoc)
9517 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
9518 (cl--compiler-macro-get): New functions, replacing calls to
9519 cl-define-compiler-macro.
9520 (cl-typep) [compiler-macro]: Use macroexp-let².
9521
9522 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
9523
9524 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
9525 string properly, fixes Bug#11473.
9526
9527 2012-06-08 Chong Yidong <cyd@gnu.org>
9528
9529 * faces.el (set-face-attribute): Doc fix.
9530 (modify-face): Don't use :bold and :italic.
9531 (error, warning, success): Tweak definitions.
9532
9533 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
9534 (custom-modified, custom-set, custom-changed, custom-themed)
9535 (custom-saved, custom-button, custom-button-mouse)
9536 (custom-button-pressed, custom-state, custom-comment-tag)
9537 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
9538 (custom-group-subtitle): Use new-style face specs.
9539 (custom-invalid-face, custom-rogue-face, custom-modified-face)
9540 (custom-set-face, custom-changed-face, custom-saved-face)
9541 (custom-button-face, custom-button-pressed-face)
9542 (custom-documentation-face, custom-state-face)
9543 (custom-comment-face, custom-comment-tag-face)
9544 (custom-variable-tag-face, custom-variable-button-face)
9545 (custom-face-tag-face, custom-group-tag-face-1)
9546 (custom-group-tag-face): Remove obsolete face alias.
9547
9548 * epa.el (epa-validity-high, epa-validity-medium)
9549 (epa-validity-low, epa-mark, epa-field-name, epa-string)
9550 (epa-field-name, epa-field-body):
9551 * font-lock.el (font-lock-comment-face, font-lock-string-face)
9552 (font-lock-keyword-face, font-lock-builtin-face)
9553 (font-lock-function-name-face, font-lock-variable-name-face)
9554 (font-lock-type-face, font-lock-constant-face):
9555 * ido.el (ido-first-match, ido-only-match, ido-subdir)
9556 (ido-virtual, ido-indicator, ido-incomplete-regexp):
9557 * speedbar.el (speedbar-button-face, speedbar-file-face)
9558 (speedbar-directory-face, speedbar-tag-face)
9559 (speedbar-selected-face, speedbar-highlight-face)
9560 (speedbar-separator-face):
9561 * whitespace.el (whitespace-newline, whitespace-space)
9562 (whitespace-hspace, whitespace-tab, whitespace-trailing)
9563 (whitespace-line, whitespace-space-before-tab)
9564 (whitespace-space-after-tab, whitespace-indentation)
9565 (whitespace-empty):
9566 * emulation/cua-base.el (cua-global-mark):
9567 * eshell/em-prompt.el (eshell-prompt):
9568 * net/newst-plainview.el (newsticker-new-item-face)
9569 (newsticker-old-item-face, newsticker-immortal-item-face)
9570 (newsticker-obsolete-item-face, newsticker-date-face)
9571 (newsticker-statistics-face, newsticker-default-face):
9572 * net/newst-reader.el (newsticker-feed-face)
9573 (newsticker-extra-face, newsticker-enclosure-face):
9574 * net/newst-treeview.el (newsticker-treeview-face)
9575 (newsticker-treeview-new-face, newsticker-treeview-old-face)
9576 (newsticker-treeview-immortal-face)
9577 (newsticker-treeview-obsolete-face)
9578 (newsticker-treeview-selection-face):
9579 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
9580 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
9581 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
9582 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
9583 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
9584 (nxml-outline-active-indicator, nxml-outline-ellipsis):
9585 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
9586 (mpuz-text):
9587 * progmodes/vera-mode.el (vera-font-lock-number)
9588 (vera-font-lock-function, vera-font-lock-interface):
9589 * textmodes/table.el (table-cell): Use new-style face specs, and
9590 don't use the old :bold and :italic attributes.
9591
9592 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
9593 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
9594 (ebrowse-member-class, ebrowse-progress): Likewise.
9595 (ebrowse-tree-mark-face, ebrowse-root-class-face)
9596 (ebrowse-file-name-face, ebrowse-default-face)
9597 (ebrowse-member-attribute-face, ebrowse-member-class-face)
9598 (ebrowse-progress-face): Remove obsolete faces.
9599
9600 * progmodes/flymake.el (flymake-errline, flymake-warnline):
9601 Inherit from error and warning faces respectively.
9602
9603 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
9604 Likewise.
9605 (flyspell-incorrect-face, flyspell-duplicate-face):
9606 Remove obsolete aliases.
9607
9608 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
9609
9610 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9611 Avoid infloop.
9612
9613 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9614
9615 * startup.el (argv, argi): Make lexically scoped.
9616 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
9617 * emacs-lisp/cl-macs.el: Use lexical-binding.
9618 Rename cl-bind-* to cl--bind-*.
9619 * files.el: Don't require `cl' since it doesn't use it.
9620 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
9621
9622 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
9623
9624 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
9625 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
9626 instead of calling external sort utility.
9627 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
9628
9629 2012-06-08 Eli Zaretskii <eliz@gnu.org>
9630
9631 * descr-text.el (describe-char): Mention how to insert the
9632 character, if the current input method doesn't support it.
9633 See the discussion in this thread for the details:
9634 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
9635
9636 2012-06-08 Sam Steingold <sds@gnu.org>
9637
9638 * bindings.el (global-map): Bind XF86Forward to next-buffer and
9639 XF86Back to previous-buffer.
9640 (minibuffer-local-map): Bind them to next-history-element and
9641 previous-history-element respectively.
9642 * help-mode.el (help-mode-map): Bind them to help-go-forward and
9643 help-go-back respectively.
9644 * info.el (Info-mode-map): Bind them to Info-history-forward and
9645 Info-history-back respectively.
9646 These are the keys next to Up on the ThinkPad keyboard.
9647
9648 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9649
9650 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
9651 * emacs-lisp/cl-macs.el: Provide itself.
9652 (cl--labels-convert-cache): New var.
9653 (cl--labels-convert): New function.
9654 (cl-flet, cl-labels): New implementation with new semantics, relying on
9655 lexical-binding.
9656 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
9657 (cl-closure-vars, cl--function-convert-cache)
9658 (cl--function-convert): Move from cl-macs.el.
9659 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
9660 rename by removing the "cl-" prefix.
9661 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
9662
9663 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9664
9665 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
9666 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
9667 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
9668 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
9669 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
9670 (cl-hash-table-count): Add old compatibility aliases.
9671
9672 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
9673 Use macroexpand-all-environment instead.
9674 (cl--old-macroexpand): New var.
9675 (cl--sm-macroexpand): New function.
9676 (cl-symbol-macrolet): Use it during macro expansion.
9677 (cl--function-convert-cache): New var.
9678 (cl--function-convert): New function, extracted from
9679 cl-macroexpand-all.
9680 (cl-lexical-let): Use it.
9681
9682 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
9683 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
9684 (cl-member): Remove old alias.
9685
9686 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
9687 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
9688 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
9689 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
9690 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
9691 (cl-macroexpand-cmacs): Remove var.
9692 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
9693 Use macroexpand-all instead.
9694
9695 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9696
9697 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
9698 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
9699 (macroexp-copyable-p): New functions and macros.
9700 * emacs-lisp/edebug.el (edebug-unwrap):
9701 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
9702 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
9703 (pcase--let*): Remove.
9704 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
9705 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
9706 macroexp-const-p instead.
9707 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
9708
9709 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
9710 instead of "cl-" for internal definitions. Use macroexp-const-p.
9711 (cl-old-bc-file-form): Remove var.
9712 (cl-const-exprs-p): Remove fun.
9713 (cl-labels, cl-macrolet): Use backquote.
9714 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
9715 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
9716 (cl-define-setf-expander): Rename from cl-define-setf-method.
9717 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
9718
9719 * international/mule-cmds.el: Don't require CL.
9720 (view-hello-file): Don't use `letf'.
9721
9722 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9723
9724 * tmm.el (tmm-prompt): Use string-prefix-p.
9725 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
9726 (tmm-add-prompt): Use minibuffer-completion-help.
9727 (tmm-delete-map): Remove.
9728
9729 * subr.el (kbd): Make it its own function.
9730
9731 2012-06-07 Stefan Merten <smerten@oekonux.de>
9732
9733 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
9734 Silence compiler warnings. Fix versions.
9735 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
9736 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
9737 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
9738 (rst-package-emacs-version-alist): Correct Emacs version to
9739 represent major merge with upstream.
9740 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
9741
9742 2012-06-06 Glenn Morris <rgm@gnu.org>
9743
9744 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
9745 Only print environment variables if set.
9746
9747 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9748
9749 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
9750 (macroexp--cons): Rename from maybe-cons.
9751 (macroexp--accumulate): Rename from macroexp-accumulate.
9752 (macroexp--all-forms): Rename from macroexpand-all-forms.
9753 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
9754 (macroexp--expand-all): Rename from macroexpand-all-1.
9755
9756 2012-06-06 Sam Steingold <sds@gnu.org>
9757
9758 * calendar/calendar.el (calendar-in-read-only-buffer):
9759 Call `special-mode' to enable the standard read-only keybindings.
9760
9761 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9762
9763 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
9764 with "loading" messages (bug#11635).
9765
9766 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
9767
9768 * files.el (enable-remote-dir-locals): New option.
9769 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
9770
9771 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
9772 Ensure, that the temp directory is local.
9773
9774 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
9775 `temporary-file-directory'.
9776
9777 * progmodes/python.el (python-send-region): Ensure, that the
9778 temporary file is created also in the remote case.
9779
9780 2012-06-06 Glenn Morris <rgm@gnu.org>
9781
9782 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
9783 (vc-rcs-update-changelog): Use it.
9784
9785 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
9786
9787 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
9788 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
9789 (vc-sccs-diff): Replace use of the external vcdiff script.
9790
9791 2012-06-05 Glenn Morris <rgm@gnu.org>
9792
9793 * ledit.el: Move to obsolete/.
9794
9795 2012-06-05 Sam Steingold <sds@gnu.org>
9796
9797 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
9798 patch (Bug#11140).
9799
9800 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9801
9802 * emacs-lisp/cust-print.el: Move to obsolete.
9803
9804 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
9805 compiler-macro expansion.
9806
9807 Add native compiler-macro support.
9808 * emacs-lisp/macroexp.el (macroexpand-all-1):
9809 Support compiler-macros directly. Properly follow aliases and apply
9810 the compiler macros more thoroughly.
9811 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
9812 macroexpand now properly follows aliases.
9813 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
9814 (cl-compiler-macroexpand): Use new prop.
9815 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
9816
9817 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
9818
9819 2012-06-05 Martin Rudalics <rudalics@gmx.at>
9820
9821 * window.el (get-lru-window, get-mru-window, get-largest-window):
9822 New argument NOT-SELECTED to avoid picking the selected window.
9823 (window--display-buffer-1, window--display-buffer-2): Replace by
9824 new function window--display-buffer
9825 (display-buffer-same-window, display-buffer-reuse-window)
9826 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9827 Use window--display-buffer.
9828 (display-buffer-use-some-window): Remove temporary dedication
9829 hack by calling get-lru-window and get-largest-window with
9830 NOT-SELECTED argument non-nil. Call window--display-buffer.
9831
9832 2012-06-05 Glenn Morris <rgm@gnu.org>
9833
9834 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
9835 Replace external vcdiff script.
9836
9837 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
9838
9839 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
9840
9841 2012-06-04 Chong Yidong <cyd@gnu.org>
9842
9843 * image.el (imagemagick-types-inhibit): Revert last change.
9844 Add INFO and M.
9845 (imagemagick-enabled-types): Remove CIN and EPS*.
9846
9847 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
9848
9849 * emacs-lisp/cl-lib.el: Rename from cl.el.
9850 * emacs-lisp/cl.el: New compatibility file.
9851 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
9852 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
9853 to obey the "cl-" prefix.
9854 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
9855
9856 2012-06-03 Glenn Morris <rgm@gnu.org>
9857
9858 * emacs-lisp/authors.el (authors-aliases): Addition.
9859
9860 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
9861 Fix :version.
9862
9863 2012-06-03 Stefan Merten <smerten@oekonux.de>
9864
9865 * textmodes/rst.el: Add comments.
9866 (rst-transition, rst-adornment): New faces.
9867 (rst-adornment-faces-alist): Make default safe to reevaluate.
9868 Fixes
9869 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
9870 Improve customization tags.
9871 (rst-define-level-faces): Clarify meaning.
9872
9873 2012-06-03 Chong Yidong <cyd@gnu.org>
9874
9875 * progmodes/compile.el (compilation-mode-line-fail)
9876 (compilation-mode-line-run, compilation-mode-line-exit):
9877 New faces.
9878 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
9879
9880 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
9881
9882 * progmodes/which-func.el (which-func-update-ediff-windows):
9883 New function. Use it in ediff-select-hook (Bug#11478).
9884
9885 2012-06-03 Chong Yidong <cyd@gnu.org>
9886
9887 * bindings.el: Remove explicit help text from format-mode-line.
9888 It is now supplied by mode-line-default-help-echo.
9889 (mode-line-front-space, mode-line-end-spaces)
9890 (mode-line-misc-info): New variables.
9891 (mode-line-modes, mode-line-position): Move the default value to
9892 the variable definition.
9893 (mode-line-default-help-echo): New defcustom.
9894 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
9895 (mode-line-modified-help-echo): New functions.
9896 (mode-line-mule-info, mode-line-modified): Use them.
9897 (mode-line-eol-desc, propertized-buffer-identification):
9898 Consistency fixes for help text.
9899 (mode-line-coding-system-map): Allow using mouse-3 to invoke
9900 set-buffer-file-coding-system (Bug#289).
9901 (mode-line-mule-info-help-echo): Update help text.
9902
9903 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9904
9905 * simple.el (execute-extended-command): Set real-this-command
9906 (bug#11506).
9907
9908 2012-06-02 Chong Yidong <cyd@gnu.org>
9909
9910 Remove incorrect uses of "modeline" in comments, docstrings, and
9911 function/variable names (Bug#10329).
9912
9913 * cus-edit.el (mode-line):
9914 * dframe.el (dframe-mouse-hscroll):
9915 * emacs-lisp/re-builder.el:
9916 * emacs-lisp/easy-mmode.el (define-minor-mode):
9917 * frame.el (set-frame-name):
9918 * help.el (lookup-minor-mode-from-indicator):
9919 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
9920 * progmodes/cc-cmds.el (c-toggle-auto-newline)
9921 (c-toggle-hungry-state):
9922 * progmodes/antlr-mode.el (antlr-language-alist):
9923 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
9924 * progmodes/vhdl-mode.el (vhdl-mode):
9925 * progmodes/which-func.el (which-func, which-func-cleanup-function):
9926 * term/ns-win.el (ns-face-at-pos):
9927 * term/sup-mouse.el (sup-mouse-report):
9928 * textmodes/flyspell.el (flyspell-mode-line-string):
9929 * textmodes/ispell.el (ispell-highlight-face):
9930 * textmodes/reftex-global.el:
9931 * vc/vc-arch.el (vc-arch-mode-line-string):
9932 * vc/vc-cvs.el (vc-cvs-mode-line-string):
9933 * vc/vc-git.el (vc-git-mode-line-string):
9934 * vc/vc-hooks.el (vc-display-status)
9935 (vc-default-mode-line-string):
9936 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
9937
9938 * ansi-color.el (ansi-color-faces-vector): Change default faces.
9939
9940 * dired.el (dired-sort-set-mode-line): Rename from
9941 dired-sort-set-modeline. All callers changed.
9942
9943 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
9944 eshell-status-in-modeline.
9945
9946 * foldout.el (foldout-mode-line-string): Rename from
9947 foldout-modeline-string. All callers changed.
9948 (foldout-update-mode-line): Rename from foldout-update-modeline.
9949
9950 * subr.el (redraw-modeline): Make into obsolete alias.
9951
9952 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
9953 timeclock-modeline-display. Make old name an alias.
9954 (timeclock-update-mode-line): Likewise. All callers changed.
9955 (timeclock-mode-line-display): No need to check before using
9956 add-hook.
9957 (timeclock-relative, timeclock-day-over-hook)
9958 (timeclock-use-elapsed, timeclock-mode-string)
9959 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
9960
9961 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
9962 crisp-mode-modeline-string.
9963
9964 * play/solitaire.el (solitaire-build-mode-line): Rename from
9965 solitaire-build-modeline. All callers changed.
9966
9967 * play/zone.el (zone-hiding-mode-line): Rename from
9968 zone-hiding-modeline. All callers changed.
9969 (zone): Remove unusued `modeline-hidden-level' property.
9970
9971 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
9972 xscheme-modeline-initialize. All callers changed.
9973
9974 * strokes.el (strokes-lighter): Rename from
9975 strokes-modeline-string.
9976
9977 * textmodes/sgml-mode.el (html-face-tag-alist)
9978 (html-tag-face-alist): Use mode-line face instead of obsolete
9979 alias modeline.
9980
9981 2012-06-02 Stefan Merten <smerten@oekonux.de>
9982
9983 * textmodes/rst.el: Always require `cl'.
9984 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
9985
9986 2012-06-02 Chong Yidong <cyd@gnu.org>
9987
9988 * image.el (imagemagick-enabled-types): Rename from
9989 imagemagick-types-enable. Add many more types.
9990 (imagemagick-types-inhibit): Change default to nil.
9991 (imagemagick-filter-types): Caller changed.
9992
9993 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
9994
9995 * emacs-lisp/cl-macs.el: Use backquotes.
9996 (cl-transform-function-property): Use eval-and-compile rather than
9997 abusing `require'.
9998 (defstruct): Use declare-function instead of with-no-warnings.
9999
10000 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
10001 (byte-compile-output-docform): Re-add the print-circle bindings.
10002 (byte-compile-fix-header): Use #$ just because it's shorter.
10003 (byte-compile-output-file-form): Remove defun/defmacro.
10004
10005 2012-06-01 Martin Rudalics <rudalics@gmx.at>
10006
10007 * simple.el (choose-completion): Remove now obsolete binding for
10008 owindow.
10009
10010 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
10011
10012 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
10013 in order to avoid "Stack overflow in regexp matcher".
10014
10015 2012-05-31 Glenn Morris <rgm@gnu.org>
10016
10017 * image.el: For clarity, call imagemagick-register-types at
10018 top-level, rather than relying on a custom :initialize.
10019 (imagemagick-types-enable): New option. (Bug#11557)
10020 (imagemagick-filter-types): New function. (Bug#7406)
10021 (imagemagick-register-types): Use imagemagick-filter-types.
10022 If disabling support, remove elements altogether rather
10023 than using an impossible regexp.
10024 (imagemagick-types-inhibit): Give it the default init function.
10025
10026 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10027
10028 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
10029 Handle arbitrary file name lengths (Bug#11585).
10030
10031 2012-05-31 Martin Rudalics <rudalics@gmx.at>
10032
10033 * desktop.el (desktop-read): Clear previous and next buffers for
10034 all windows and bury *Messages* buffer (bug#11556).
10035
10036 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10037
10038 Add `declare' for `defun'. Align `defmacro's with it.
10039 * emacs-lisp/easy-mmode.el (define-minor-mode)
10040 (define-globalized-minor-mode): Don't autoload the var definitions.
10041 * emacs-lisp/byte-run.el: Use lexical-binding.
10042 (defun-declarations-alist, macro-declarations-alist): New vars.
10043 (defmacro, defun): Use them.
10044 (make-obsolete, define-obsolete-function-alias)
10045 (make-obsolete-variable, define-obsolete-variable-alias):
10046 Use `declare'.
10047 (macro-declaration-function): Mark obsolete.
10048 * emacs-lisp/autoload.el: Use lexical-binding.
10049 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
10050
10051 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10052
10053 * textmodes/ispell.el (ispell-with-no-warnings):
10054 Define as a macro.
10055 (ispell-kill-ispell, ispell-change-dictionary):
10056 Use `called-interactively-p' for Emacs instead of obsolete
10057 `interactive-p'.
10058
10059 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10060
10061 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
10062 (macro-declaration-function): Move var from C code.
10063 (macro-declaration-function): Define function with defalias.
10064 * emacs-lisp/macroexp.el (macroexpand-all-1):
10065 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
10066 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
10067 defun/defmacro any more.
10068 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
10069 Provide fallback for unknown arglist.
10070 (byte-compile-arglist-warn): Change calling convention.
10071 (byte-compile-output-file-form): Move print-vars binding.
10072 (byte-compile-output-docform): Simplify accordingly.
10073 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
10074 (byte-compile-defmacro-declaration): Remove.
10075 (byte-compile-file-form-defmumble): Generalize to defalias.
10076 (byte-compile-output-as-comment): Return byte-positions.
10077 Simplify callers accordingly.
10078 (byte-compile-lambda): Use `assert'.
10079 (byte-compile-defun, byte-compile-defmacro): Remove.
10080 (byte-compile-file-form-defalias):
10081 Use byte-compile-file-form-defmumble.
10082 (byte-compile-defalias-warn): Remove.
10083
10084 2012-05-29 Stefan Merten <smerten@oekonux.de>
10085
10086 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
10087 possible. Fix authors. Improve comments. Improve loading of `cl'.
10088
10089 (rst-mode-abbrev-table): Merge definition.
10090 (rst-mode): Make sure `font-lock-defaults' is buffer local.
10091 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
10092
10093 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
10094
10095 * calendar/icalendar.el
10096 (icalendar-export-region): Export UID properly.
10097
10098 2012-05-29 Leo Liu <sdl.web@gmail.com>
10099 * calendar/icalendar.el (icalendar-import-format):
10100 Add `icalendar-import-format-uid' (Bug#11525).
10101 (icalendar-import-format-uid): New.
10102 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
10103 Export UID.
10104
10105 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10106
10107 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
10108 different alternative patterns.
10109 (pcase-codegen): Be more careful to preserve identity.
10110 (pcase--u1): Don't forget to mark vars as used.
10111
10112 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
10113 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
10114 (byte-compile-from-buffer): ...rather than here.
10115
10116 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
10117 functions from byte-compile-function-environment.
10118
10119 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
10120
10121 * window.el (window-deletable-p): Avoid deleting the root window
10122 of a frame with an active minibuffer.
10123
10124 2012-05-29 Martin Rudalics <rudalics@gmx.at>
10125
10126 * simple.el (choose-completion): Use quit-window (Bug#11567).
10127
10128 2012-05-29 Chong Yidong <cyd@gnu.org>
10129
10130 * whitespace.el (whitespace-cleanup): Fix usage of
10131 whitespace-empty-at-bob-regexp (Bug#11492).
10132
10133 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10134
10135 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
10136 revert (Bug#11488).
10137
10138 2012-05-29 Juri Linkov <juri@jurta.org>
10139
10140 * isearch.el (isearch-mode-map): Bind `M-s _' to
10141 `isearch-toggle-symbol'. Bind `M-s c' to
10142 `isearch-toggle-case-fold'.
10143 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
10144 (isearch-forward): Add `M-s _' to the docstring.
10145 (isearch-forward-symbol, isearch-toggle-case-fold)
10146 (isearch-symbol-regexp): New functions. (Bug#11381)
10147
10148 2012-05-29 Juri Linkov <juri@jurta.org>
10149
10150 * isearch.el (isearch-word): Add docstring. (Bug#11381)
10151 (isearch-occur, isearch-search-and-update): If `isearch-word' is
10152 a function, call it to get the regexp.
10153 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
10154 property `isearch-message-prefix' instead of the string "word ".
10155 (isearch-search-fun-default): For the case of `isearch-word',
10156 return a lambda that calls re-search-forward/re-search-backward
10157 with a regexp returned by `word-search-regexp' or by the function
10158 in `isearch-word'.
10159
10160 2012-05-29 Juri Linkov <juri@jurta.org>
10161
10162 * isearch.el (isearch-search-fun-default): New function.
10163 (isearch-search-fun): Move default part to the new function
10164 `isearch-search-fun-default'.
10165 (isearch-search-fun-function): Set the default value to
10166 `isearch-search-fun-default'. (Bug#11381)
10167
10168 * comint.el (comint-history-isearch-end):
10169 Use `isearch-search-fun-default'.
10170 (comint-history-isearch-search): Use `isearch-search-fun-default'
10171 and remove spacial case for `isearch-word'.
10172 (comint-history-isearch-wrap): Remove spacial case for
10173 `isearch-word'.
10174
10175 * hexl.el (hexl-isearch-search-function):
10176 Use `isearch-search-fun-default'.
10177
10178 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
10179 Use `word-search-regexp' for `isearch-word'.
10180
10181 * misearch.el (multi-isearch-search-fun):
10182 Use `isearch-search-fun-default'.
10183
10184 * simple.el (minibuffer-history-isearch-search):
10185 Use `isearch-search-fun-default' and remove spacial case for
10186 `isearch-word'.
10187 (minibuffer-history-isearch-wrap): Remove spacial case for
10188 `isearch-word'.
10189
10190 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
10191 Remove spacial case for `isearch-word'.
10192 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
10193
10194 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10195
10196 Decrease XEmacs incompatibilities.
10197 * textmodes/flyspell.el (flyspell-check-pre-word-p):
10198 Use `string-match'.
10199 (flyspell-delete-region-overlays): Use alternative definition for
10200 XEmacs.
10201 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
10202 (flyspell-word): Use `process-kill-without-query' if XEmacs.
10203 (flyspell-mode-on): Use `interactive-p' if XEmacs.
10204 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
10205 `define-obsolete-face-alias' under XEmacs, but old method.
10206
10207 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
10208 `with-no-warnings' definition or Emacs alias.
10209 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
10210 (ispell-word): Do not use `region-p' if XEmacs.
10211
10212 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10213
10214 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
10215 Check for `ispell-dictionary-base-alist' instead of full
10216 `ispell-dictionary-alist'.
10217 (ispell-init-process): Show spellchecker when starting new Ispell
10218 process.
10219
10220 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10221
10222 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
10223 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
10224
10225 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
10226
10227 * version.el (motif-version-string, gtk-version-string)
10228 (ns-version-string): Declare.
10229
10230 2012-05-27 Juri Linkov <juri@jurta.org>
10231
10232 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
10233 after the `eval-defun-1' specialcaseing
10234 like in `edebug-eval-defun' (bug#10181).
10235
10236 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
10237 like in `eval-defun-1'.
10238
10239 2012-05-27 Eli Zaretskii <eliz@gnu.org>
10240
10241 * mail/sendmail.el (mail-yank-region):
10242 Recognize rmail-yank-current-message in addition to insert-buffer.
10243 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
10244 a *mail* buffer created through rmail-start-mail with sendmail as
10245 mail-user-agent.
10246
10247 2012-05-27 Chong Yidong <cyd@gnu.org>
10248
10249 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
10250 Default to 256 (Bug#11267).
10251
10252 * help.el (describe-mode): Doc fix.
10253
10254 2012-05-26 Glenn Morris <rgm@gnu.org>
10255
10256 * w32-fns.el (w32-init-info): Remove.
10257 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
10258
10259 * info.el (info-initialize): For self-contained NS builds, put the
10260 included info/ directory at the front. (Bug#2791)
10261
10262 * paths.el (Info-default-directory-list): Make it a defcustom,
10263 mainly so that we can use custom-initialize-delay.
10264
10265 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10266
10267 * subr.el (buffer-has-markers-at): Mark obsolete.
10268
10269 * subr.el (lambda): Use declare.
10270
10271 * emacs-lisp/lisp-mode.el (lambda):
10272 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
10273
10274 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10275
10276 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
10277
10278 2012-05-26 Glenn Morris <rgm@gnu.org>
10279
10280 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
10281
10282 2012-05-25 Glenn Morris <rgm@gnu.org>
10283
10284 * paths.el: Remove no-byte-compile.
10285 * loadup.el: No need to load paths.el uncompiled.
10286
10287 * image.el (imagemagick-types-inhibit): Doc fix.
10288
10289 * version.el: Remove no-byte-compile and associated formatting.
10290 * loadup.el: No need to load version.el uncompiled. AFAICS, this
10291 is ancient code from when there was an "inc-vers.el".
10292
10293 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
10294
10295 * progmodes/gdb-mi.el: Minor style changes.
10296 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
10297 Turn into minor modes.
10298 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
10299 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
10300 (gdb-shell): Remove unneeded let-binding.
10301 (gdb-get-many-fields): Eliminate O(n²) behavior.
10302
10303 2012-05-25 Eli Zaretskii <eliz@gnu.org>
10304
10305 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
10306 platforms that don't link in fontset.c.
10307
10308 2012-05-25 Juri Linkov <juri@jurta.org>
10309
10310 Use the same diff color scheme as in modern VCSes (bug#10181).
10311
10312 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
10313 to avoid confusion with `diff-added' that now uses green colors.
10314 (diff-removed): Use shades of red.
10315 (diff-added): Use shades of green.
10316 (diff-changed): Leave just the yellow color.
10317 (diff-use-changed-face): New variable.
10318 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
10319 how to highlight context diff changes.
10320 (diff-refine-change): Use shades of yellow.
10321 (diff-refine-removed): New face that uses shades of red.
10322 (diff-refine-added): New face that uses shades of green.
10323 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
10324 `diff-refine-removed' in the call to `smerge-refine-subst'
10325 depending on the value of `diff-use-changed-face'.
10326
10327 * vc/smerge-mode.el (smerge-mine): Use shades of red.
10328 (smerge-other): Use shades of green.
10329 (smerge-base): Use shades of yellow.
10330 (smerge-refined-change): Empty face.
10331 (smerge-refined-removed): New face that uses shades of red.
10332 (smerge-refined-added): New face that uses shades of green.
10333 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
10334 args `props-r' and `props-a', and use them. Doc fix.
10335 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
10336 on its value use different faces `smerge-refined-change',
10337 `smerge-refined-removed', `smerge-refined-added' in the call to
10338 `smerge-refine-subst'.
10339
10340 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
10341 Add face condition `min-colors 88' with shades of red.
10342 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
10343 `min-colors 88' with shades of green.
10344 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
10345 `min-colors 88' with shades of yellow.
10346
10347 2012-05-24 Glenn Morris <rgm@gnu.org>
10348
10349 * paths.el (prune-directory-list, remote-shell-program): Move to...
10350 * files.el (prune-directory-list, remote-shell-program): ...here.
10351 For the latter, delay initialization, prefer ssh, just search PATH.
10352
10353 * paths.el (term-file-prefix): Move to faces.el (the only user).
10354 * faces.el (term-file-prefix): Move here, make it a defcustom.
10355
10356 * paths.el (news-directory, news-path, news-inews-program):
10357 Move to gnus/nnspool.el.
10358
10359 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
10360
10361 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
10362 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
10363 Make the latter a defcustom, with a delayed initialization.
10364
10365 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
10366 These were deleted from Gnus itself late 2010.
10367
10368 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
10369
10370 * progmodes/which-func.el (which-func-ff-hook):
10371 Check against user-error, not error.
10372
10373 * emacs-lisp/edebug.el (top): Do not load or set up loading of
10374 cl-specs.el, which no longer exists.
10375
10376 2012-05-22 Glenn Morris <rgm@gnu.org>
10377
10378 * info.el (info-emacs-bug): New command.
10379 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
10380 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
10381
10382 2012-05-21 Glenn Morris <rgm@gnu.org>
10383
10384 * makefile.w32-in (update-subdirs-SH):
10385 * Makefile.in (update-subdirs): Update for moved update-subdirs.
10386
10387 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10388
10389 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
10390
10391 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10392 Simplify Maven regexp, and make sure the file can't start with a space
10393 (bug#11517).
10394
10395 2012-05-21 Glenn Morris <rgm@gnu.org>
10396
10397 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
10398 Scrap superfluous subshells.
10399
10400 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10401
10402 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
10403 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
10404
10405 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
10406
10407 * calc/calc.el (calc-ensure-consistent-units): New variable.
10408
10409 * calc/calc-units.el (math-consistent-units-p)
10410 (math-check-unit-consistency): New functions.
10411 (calc-quick-units, calc-convert-units):
10412 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
10413 is non-nil.
10414 (calc-extract-units): Fix typo.
10415
10416 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10417
10418 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
10419
10420 * textmodes/flyspell.el: Commenting style, plus code simplifications.
10421 (flyspell-default-deplacement-commands): Don't spell check after
10422 repeated window/frame switches (e.g. triggered by mouse-movement).
10423 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
10424 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
10425 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
10426 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
10427 Remove unused vars.
10428 (flyspell-get-casechars, flyspell-get-not-casechars):
10429 Simplify; Don't bother removing a ] just to add it back.
10430 * textmodes/ispell.el (ispell-program-name): Use executable-find.
10431
10432 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10433
10434 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
10435 New functions.
10436 (math-function-table): Add support for more C functions.
10437
10438 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10439
10440 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10441 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10442 Protect delay handling for otherchars against empty otherchars.
10443
10444 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
10445
10446 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
10447 their respective macro declarations.
10448 * skeleton.el (define-skeleton):
10449 * progmodes/compile.el (define-compilation-mode):
10450 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
10451 (define-ibuffer-filter):
10452 * emacs-lisp/generic.el (define-generic-mode):
10453 * emacs-lisp/easy-mmode.el (define-minor-mode)
10454 (define-globalized-minor-mode):
10455 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
10456 * emacs-lisp/byte-run.el (defsubst):
10457 * custom.el (deftheme): Add doc-string metadata.
10458
10459 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10460
10461 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
10462
10463 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10464
10465 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
10466
10467 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
10468 * emacs-lisp/cl-macs.el: Idem.
10469 * emacs-lisp/cl-specs.el: Remove.
10470
10471 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10472
10473 Minor renaming of internal CL functions and variables.
10474 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
10475 (cl--position): Rename from cl-position.
10476 (cl--delete-duplicates): Rename from cl-delete-duplicates.
10477 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
10478 (cl--random-state): Rename from *random-state*.
10479
10480 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10481
10482 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
10483 parens around the arg list (bug#11499).
10484
10485 2012-05-17 Juri Linkov <juri@jurta.org>
10486
10487 * isearch.el (word-search-regexp, word-search-backward)
10488 (word-search-forward, word-search-backward-lax)
10489 (word-search-forward-lax): Move functions from search.c
10490 (bug#10145, bug#11381).
10491
10492 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
10493
10494 * textmodes/flyspell.el (flyspell-check-pre-word-p)
10495 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
10496 Delay for otherchars as for normal word components.
10497
10498 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10499
10500 * minibuffer.el (completion--sifn-requote): Fix last change.
10501 (minibuffer-local-must-match-filename-map):
10502 Move define-obsolete-variable-alias before its var.
10503
10504 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
10505
10506 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
10507
10508 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
10509 behavior.
10510 (completion--string-equal-p): New function.
10511 (completion--twq-all): Use it to get better assertion failure data.
10512
10513 Only handle ".." and '..' quoting in shell-mode (bug#11466).
10514 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
10515 (shell--requote-argument): New functions.
10516 (shell-completion-vars): Use them.
10517 (shell--parse-pcomplete-arguments): Rename from
10518 shell-parse-pcomplete-arguments.
10519 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
10520 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
10521 Obey comint-file-name-quote-list.
10522
10523 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
10524 (smie-indent-keyword): Use it.
10525
10526 2012-05-14 Stefan Merten <smerten@oekonux.de>
10527
10528 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
10529
10530 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10531
10532 * net/rlogin.el (rlogin-mode-map): Fix last change.
10533
10534 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
10535
10536 * mail/smtpmail.el (smtpmail-send-command): Send the command and
10537 the following \r\n using a single `process-send-string', since the
10538 Lotus SMTP server refuses to accept any commands if they are sent
10539 with two `process-send-string's (Bug#11444).
10540
10541 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
10542
10543 * shell.el (shell-parse-pcomplete-arguments):
10544 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
10545
10546 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10547
10548 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
10549 (image-transform-scale, image-transform-right-angle-fudge): New vars.
10550 (image-transform-width, image-transform-fit-width): New functions.
10551 (image-transform-properties): Use them.
10552 (image-transform-check-size): New function.
10553 (image-toggle-display-image): Use it (for testing).
10554 (image-transform-set-rotation): Reduce angle mod 360.
10555 Delete obsolete comment.
10556
10557 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
10558
10559 * image-mode.el: Fix scaling (bug#11399).
10560 (image-transform-resize): Doc fix.
10561 (image-transform-properties): Default scale is 1 and height should
10562 be an integer.
10563
10564 2012-05-13 Johan Bockgård <bojohan@gnu.org>
10565
10566 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
10567 than hard-coding `car', to fix misbehavior when moving forward.
10568
10569 2012-05-13 Chong Yidong <cyd@gnu.org>
10570
10571 * emacs-lisp/tabulated-list.el (tabulated-list-format)
10572 (tabulated-list-entries, tabulated-list-padding)
10573 (tabulated-list-sort-key): Make permanent-local.
10574
10575 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
10576 (electric-buffer-list): Put electric buffer menu
10577 command descriptions in this docstring, instead of the docstring
10578 of electric-buffer-menu-mode. Code cleanups.
10579 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
10580 Electric-buffer-menu-mode.
10581 (electric-buffer-update-highlight): Minor code cleanup.
10582
10583 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
10584
10585 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
10586 (Bug#11447)
10587
10588 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10589
10590 Move define-obsolete-variable-alias before the var's definition.
10591 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
10592 * tooltip.el (tooltip-hook):
10593 * textmodes/reftex-toc.el (reftex-toc-map):
10594 * textmodes/reftex-sel.el (reftex-select-label-map)
10595 (reftex-select-bib-map):
10596 * textmodes/reftex-index.el (reftex-index-map)
10597 (reftex-index-phrases-map):
10598 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
10599 * progmodes/meta-mode.el (meta-mode-map):
10600 * novice.el (disabled-command-hook):
10601 * loadhist.el (unload-hook-features-list):
10602 * frame.el (blink-cursor):
10603 * files.el (find-file-not-found-hooks, write-file-hooks)
10604 (write-contents-hooks):
10605 * emulation/tpu-edt.el (GOLD-map):
10606 * emacs-lock.el (emacs-lock-from-exiting):
10607 * emacs-lisp/generic.el (generic-font-lock-defaults):
10608 * emacs-lisp/chart.el (chart-map):
10609 * dos-fns.el (register-name-alist):
10610 * dired-x.el (dired-omit-files-p):
10611 * desktop.el (desktop-enable):
10612 * cus-edit.el (custom-mode-hook):
10613 * buff-menu.el (buffer-menu-mode-hook):
10614 * bookmark.el (bookmark-read-annotation-text-func)
10615 (bookmark-exit-hooks):
10616 * allout.el (allout-mode-deactivate-hook)
10617 (allout-exposure-change-hook, allout-structure-added-hook)
10618 (allout-structure-deleted-hook, allout-structure-shifted-hook):
10619 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
10620 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
10621 comes before the corresponding variable's definition.
10622
10623 2012-05-12 Chong Yidong <cyd@gnu.org>
10624
10625 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
10626 (Buffer-menu-mouse-select): Restore function (Bug#11459).
10627 (Buffer-menu-mode-map): Bind it.
10628 (Buffer-menu--pretty-name): Add a mouse-face property.
10629
10630 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10631
10632 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
10633 (prolog-upper-case-string, prolog-lower-case-string)
10634 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
10635 (prolog-use-smie, prolog-smie-grammar): New vars.
10636 (prolog-smie-forward-token, prolog-smie-backward-token)
10637 (prolog-smie-rules): New funs.
10638 (prolog-comment-indent): Remove.
10639 (prolog-mode-variables): Use default comment indentation instead.
10640 Setup SMIE.
10641 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
10642 (prolog-mode): Don't call them any more.
10643 (prolog-electric-colon, prolog-electric-dash)
10644 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
10645
10646 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
10647
10648 * minibuffer.el (completion--twq-all): Again, allow case differences.
10649
10650 * term.el: Move keymap initialization code to be more idiomatic.
10651 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
10652 (term-terminal-menu): Move initialization into declaration.
10653 (term-escape-char): Let the user set it in her .emacs.
10654
10655 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
10656 Provide SMIE-based indentation (not enabled by default yet).
10657 (sh-mode-map): Don't bind electric keys.
10658 Use electric-pair-mode instead of skeleton-pair.
10659 (sh-assignment-regexp): Fit within 80 columns.
10660 (sh-indent-supported): Specify actual shell name instead of boolean.
10661 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
10662 (sh-maybe-here-document): Use it. Make obsolete.
10663 (sh-electric-here-document-mode) New minor mode.
10664 (sh-mode): Use it. Don't set sh-indent-supported-here here.
10665 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
10666 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
10667 (sh-smie-rc-grammar, sh-use-smie): New vars.
10668 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
10669 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
10670 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
10671 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
10672 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
10673 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
10674 (sh-set-shell): Use smie-setup if requested.
10675
10676 * term.el (term-set-escape-char): Properly set term-escape-char.
10677 See http://stackoverflow.com/questions/10524656.
10678
10679 2012-05-10 Chong Yidong <cyd@gnu.org>
10680
10681 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
10682 Use url-generic-parse-url, and handle host names and Windows
10683 filenames properly.
10684 (ffap-url-unwrap-remote): Use url-generic-parse-url.
10685 (ffap-url-unwrap-remote): Accept list values, specifying a list of
10686 URL schemes to work on.
10687 (ffap--toggle-read-only): New function.
10688 (ffap-read-only, ffap-read-only-other-window)
10689 (ffap-read-only-other-frame): Use it.
10690 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
10691 necessary for ffap-url-unwrap-remote.
10692
10693 2012-05-10 Dave Abrahams <dave@boostpro.com>
10694
10695 * cus-start.el (create-lockfiles): Add it.
10696
10697 2012-05-09 Chong Yidong <cyd@gnu.org>
10698
10699 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
10700 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
10701
10702 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10703
10704 * shell.el (shell-completion-vars): Fix last change (bug#11348).
10705
10706 2012-05-09 Chong Yidong <cyd@gnu.org>
10707
10708 * ansi-color.el (ansi-color-process-output): Check for validity of
10709 comint-last-output-start before using it. This avoids a bad
10710 interaction with gdb-mi's input/output buffer.
10711
10712 2012-05-09 Glenn Morris <rgm@gnu.org>
10713
10714 * files.el (dir-locals-read-from-file):
10715 Mention dir-locals in any error message.
10716
10717 2012-05-09 Chong Yidong <cyd@gnu.org>
10718
10719 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
10720 package (Bug#11410).
10721
10722 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
10723 variables into description.
10724
10725 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
10726
10727 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
10728 shell-delimiter-argument-list (bug#11348).
10729 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
10730
10731 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
10732
10733 * textmodes/rst.el: Silence byte-compiler warnings.
10734 (rst-re-alist, rst-reset-section-caches): Move around.
10735 (rst-re): Use `characterp', not `char-valid-p'.
10736 (font-lock-beg, font-lock-end): Declare.
10737
10738 * progmodes/idlw-shell.el (specs): Remove reference to deleted
10739 variable `idlwave-shell-activate-alt-keybindings' and simplify.
10740
10741 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
10742
10743 2012-05-08 Glenn Morris <rgm@gnu.org>
10744
10745 * files.el (auto-mode-alist): Treat ".make" like ".mk".
10746
10747 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10748
10749 * vc/log-edit.el: Add GNU coding standards highlighting.
10750 (log-edit-font-lock-gnu-style)
10751 (log-edit-font-lock-gnu-keywords): New vars.
10752 (log-edit-font-lock-keywords): New fun.
10753 (log-edit-mode): Don't fold case in font-lock.
10754 (log-edit-font-lock-keywords): Do not assume case-folding.
10755
10756 * imenu.el: Misc cleanup. Make docstrings out of comments.
10757 Use lexical-binding.
10758 (imenu--index-alist, imenu--last-menubar-index-alist)
10759 (imenu-menubar-modified-tick): Use defvar-local.
10760 (imenu--split-menu): Remove unused var.
10761 (imenu--cleanup-seen): Declare as global.
10762 (imenu--cleanup): Use dolist.
10763
10764 * subr.el (defvar-local): Add debug spec and doc-string position.
10765
10766 2012-05-08 Glenn Morris <rgm@gnu.org>
10767
10768 * language/burmese.el, language/cham.el, language/czech.el:
10769 * language/english.el, language/georgian.el, language/greek.el:
10770 * language/japanese.el, language/khmer.el, language/korean.el:
10771 * language/lao.el, language/misc-lang.el, language/romanian.el:
10772 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
10773 * language/thai.el, language/utf-8-lang.el:
10774 Remove no-byte-compile setting.
10775
10776 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
10777
10778 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
10779
10780 * progmodes/make-mode.el (makefile-browse):
10781 Remove unnecessary interactive. (Bug#11324)
10782
10783 2012-05-07 Glenn Morris <rgm@gnu.org>
10784
10785 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
10786
10787 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
10788
10789 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
10790
10791 * loadup.el: Preload newcomment.el.
10792 * newcomment.el: Move autoload-only code to toplevel.
10793
10794 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
10795 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
10796 Handle new :right-align column property.
10797 (tabulated-list-print-col): Idem, plus use `display' text-property to
10798 try and preserve alignment for variable pitch fonts.
10799
10800 2012-05-07 Chong Yidong <cyd@gnu.org>
10801
10802 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
10803 (tabulated-list-use-header-line): New var.
10804 (tabulated-list-init-header): Use it.
10805 (tabulated-list-print-fake-header): New function.
10806 (tabulated-list-print): Use it.
10807 (tabulated-list-sort-button-map): Add non-header-line commands.
10808 (tabulated-list-init-header): Add column name property to basic
10809 labels as well.
10810 (tabulated-list-col-sort): Handle non-header-line button case.
10811 (tabulated-list--sort-by-column-name): Fix a corner case.
10812
10813 * buff-menu.el (list-buffers--refresh):
10814 Handle Buffer-menu-use-header-line.
10815
10816 2012-05-06 Chong Yidong <cyd@gnu.org>
10817
10818 * buff-menu.el: Convert to Tabulated List mode.
10819 (Buffer-menu-buffer+size-width): Make obsolete.
10820 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
10821 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
10822 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
10823 documentation into docstring of buffer-menu.
10824 (Buffer-menu-toggle-files-only): Add an informative message.
10825 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
10826 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
10827 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
10828 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
10829 (Buffer-menu-execute, Buffer-menu-select)
10830 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
10831 (Buffer-menu-bury): Use Tabulated List machinery.
10832 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
10833 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
10834 Delete.
10835 (list-buffers--refresh): New function.
10836 (list-buffers-noselect): Use it.
10837 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
10838 (Buffer-menu--pretty-file-name): New helper functions.
10839
10840 * loadup.el: Preload tabulated-list.
10841
10842 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
10843 tabulated-list-sort-column.
10844 (tabulated-list-init-header): Add the initial aligning space even
10845 if tabulated-list-padding is zero.
10846
10847 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
10848
10849 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
10850 whose cdr is not a cons cell correctly (bug#11038).
10851
10852 2012-05-06 Chong Yidong <cyd@gnu.org>
10853
10854 * emacs-lisp/tabulated-list.el (tabulated-list-format):
10855 Accept additional plist in column descriptors.
10856 (tabulated-list-init-header): Obey it.
10857 (tabulated-list-get-entry): New function.
10858 (tabulated-list-put-tag): Use it. Use string-width instead of
10859 length.
10860 (tabulated-list--column-number): New function.
10861 (tabulated-list-print): Use it.
10862 (tabulated-list-print-col): New function.
10863 Set `tabulated-list-column-name' property on each column's text.
10864 (tabulated-list-print-entry): Use it.
10865 (tabulated-list-delete-entry, tabulated-list-set-col):
10866 New functions.
10867 (tabulated-list-sort-column): New command (Bug#11337).
10868
10869 * buff-menu.el (list-buffers): Move C-x C-b binding from
10870 buff-menu.el to bindings.el.
10871
10872 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
10873 :advertised-binding feature.
10874
10875 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
10876
10877 * progmodes/compile.el (compilation-internal-error-properties):
10878 Calculate start position correctly when end-col is set but
10879 end-line is not (Bug#11382).
10880
10881 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
10882
10883 * man.el (Man-unindent): Use text-property-default-nonsticky to
10884 prevent untabify from inheriting face properties (Bug#11408).
10885
10886 2012-05-05 Stefan Merten <smerten@oekonux.de>
10887
10888 * textmodes/rst.el: Major merge with upstream development up to
10889 Docutils SVN r7399 / rst.el V1.2.1.
10890
10891 Clarify maintainership and authors.
10892
10893 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
10894 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
10895 (rst-official-version, rst-official-cvs-rev, rst-version)
10896 (rst-package-emacs-version-alist): New functions and variables
10897 for version information.
10898
10899 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
10900 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
10901 (rst-mode-syntax-table, rst-mode): New and corrected functions
10902 and variables representing reStructuredText features.
10903
10904 (rst-re): New function for reStructuredText regexes. Use in
10905 many places.
10906
10907 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
10908 (rst-mode-map): Rebind keys.
10909
10910 (rst-mode-lazy, rst-font-lock-keywords)
10911 (rst-font-lock-extend-region)
10912 (rst-font-lock-extend-region-internal)
10913 (rst-font-lock-extend-region-extend)
10914 (rst-font-lock-find-unindented-line-limit)
10915 (rst-font-lock-find-unindented-line-match)
10916 (rst-adornment-level, rst-font-lock-adornment-level)
10917 (rst-font-lock-adornment-match)
10918 (rst-font-lock-handle-adornment-pre-match-form)
10919 (rst-font-lock-handle-adornment-matcher): Major revision of
10920 font-locking. Integrate with other code. Use `jit-lock-mode'.
10921
10922 (rst-preferred-adornments, rst-adjust-hook)
10923 (rst-new-adornment-down, rst-preferred-bullets)
10924 (rst-preferred-bullets, rst-indent, rst-indent-width)
10925 (rst-indent-field, rst-indent-literal-normal)
10926 (rst-indent-literal-minimized, rst-indent-comment): Change,
10927 extend and improve customization.
10928
10929 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
10930 (rst-normalize-cursor-position, rst-get-decoration)
10931 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
10932 (rst-rstrip, rst-toc-insert-find-delete-contents)
10933 (rst-shift-fill-region, rst-compute-bullet-tabs)
10934 (rst-debug-print-tabs, rst-debug-mark-found)
10935 (rst-shift-region-guts, rst-shift-region-right)
10936 (rst-shift-region-left, rst-use-char-classes)
10937 (rst-font-lock-keywords-function)
10938 (rst-font-lock-indentation-point)
10939 (rst-font-lock-find-unindented-line-begin)
10940 (rst-font-lock-find-unindented-line-end)
10941 (rst-font-lock-find-unindented-line)
10942 (rst-font-lock-adornment-point, rst-font-lock-level)
10943 (rst-adornment-level-alist): Remove functions and variables.
10944
10945 (rst-compare-adornments, rst-get-adornment-match)
10946 (rst-suggest-new-adornment, rst-get-adornments-around)
10947 (rst-adornment-complete-p, rst-get-next-adornment)
10948 (rst-adjust-adornment, rst-display-adornments-hierarchy)
10949 (rst-straighten-adornments): Standardize function names to
10950 use "adornment" instead of "decoration". Correct callers.
10951 Similar standardizing in many places.
10952
10953 (rst-update-section, rst-adjust, rst-promote-region)
10954 (rst-enumerate-region, rst-bullet-list-region)
10955 (rst-repeat-last-character): Correct use of `interactive'.
10956
10957 (rst-classify-adornment, rst-find-all-adornments)
10958 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
10959 (rst-find-leftmost-column, rst-repeat-last-character):
10960 Refactor functions.
10961
10962 (rst-find-title-line, rst-reset-section-caches)
10963 (rst-get-adornments-around, rst-adjust-adornment-work)
10964 (rst-arabic-to-roman, rst-roman-to-arabic)
10965 (rst-insert-list-pos, rst-insert-list-new-item)
10966 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
10967 New functions.
10968
10969 (rst-all-sections, rst-section-hierarchy)
10970 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
10971 New variables.
10972
10973 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
10974 configuration instead of only buffer. Change where necessary.
10975
10976 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
10977 (rst-shift-region, rst-adaptive-fill): New functions for
10978 indentation and filling.
10979
10980 (rst-comment-line-break, rst-comment-indent)
10981 (rst-comment-insert-comment, rst-comment-region)
10982 (rst-uncomment-region): New functions for handling comments.
10983
10984 (rst-compile): Quote shell arguments.
10985
10986 (rst-compile-pdf-preview, rst-compile-slides-preview):
10987 Delete temporary files after use.
10988
10989 2012-05-05 Glenn Morris <rgm@gnu.org>
10990
10991 * calendar/cal-html.el: Optionally include holidays in the output.
10992 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
10993 (cal-html-holidays): New option.
10994 (cal-html-css-default): Add holiday entry.
10995 (holiday-in-range): Autoload it.
10996 (cal-html-htmlify-entry): Add optional class argument.
10997 (cal-html-htmlify-list): Add optional holidays argument.
10998 (cal-html-insert-agenda-days): Include holidays in the output.
10999 (cal-html-one-month): Maybe include holidays.
11000
11001 * calendar/holidays.el (holiday-in-range):
11002 Move here from cal-tex-list-holidays.
11003 * calendar/cal-tex.el (cal-tex-list-holidays):
11004 Make it an obsolete alias for holiday-in-range. Update all callers.
11005
11006 2012-05-05 Chong Yidong <cyd@gnu.org>
11007
11008 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
11009 Nextstep.
11010
11011 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
11012
11013 * files.el (file-auto-mode-skip): New var.
11014 (set-auto-mode-1): Use it.
11015
11016 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11017
11018 * repeat.el: Use lexical-binding.
11019 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
11020 (repeat-undo-count): Remove.
11021 (repeat):
11022 * progmodes/octave-mod.el (octave-abbrev-start):
11023 * progmodes/f90.el (f90-abbrev-start):
11024 * face-remap.el (text-scale-adjust):
11025 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
11026
11027 * emacs-lisp/pcase.el (pcase--let*): New function.
11028 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
11029 a bit more.
11030 (pcase--split-pred): Be more clever about ruling out overlap between
11031 a predicate and some constant pattern.
11032 (pcase--q1): Use `null' instead of (eq foo nil).
11033
11034 * subr.el (setq-local, defvar-local): New macros.
11035 (kbd): Redefine as an alias.
11036 (with-selected-window): Leave unrelated frames alone.
11037 (set-temporary-overlay-map): New function.
11038
11039 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11040
11041 * subr.el (user-error): New function.
11042 * window.el (switch-to-buffer):
11043 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
11044 (smerge-match-conflict):
11045 * simple.el (previous-matching-history-element)
11046 (next-matching-history-element, goto-history-element, undo-more)
11047 (undo-start):
11048 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
11049 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
11050 (next-file, tags-loop-scan, list-tags, complete-tag):
11051 * progmodes/compile.el (compilation-loop):
11052 * mouse.el (mouse-minibuffer-check):
11053 * man.el (Man-bgproc-sentinel, Man-goto-page):
11054 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
11055 (Info-history-forward, Info-follow-reference, Info-menu)
11056 (Info-extract-menu-item, Info-extract-menu-counting)
11057 (Info-forward-node, Info-backward-node, Info-next-menu-item)
11058 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
11059 (Info-next-reference, Info-prev-reference, Info-index)
11060 (Info-index-next, Info-follow-nearest-node)
11061 (Info-copy-current-node-name):
11062 * imenu.el (imenu--make-index-alist)
11063 (imenu-default-create-index-function, imenu-add-to-menubar):
11064 * files.el (basic-save-buffer, recover-file):
11065 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11066 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11067 (checkdoc-message-text, checkdoc-defun):
11068 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
11069 * cus-edit.el (customize-changed-options, customize-rogue)
11070 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
11071 (custom-variable-mark-to-reset-standard)
11072 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
11073 (custom-file):
11074 * completion.el (check-completion-length):
11075 * comint.el (comint-search-arg)
11076 (comint-previous-matching-input-string-position)
11077 (comint-previous-matching-input)
11078 (comint-replace-by-expanded-history-before-point, comint-send-input)
11079 (comint-copy-old-input, comint-backward-matching-input)
11080 (comint-goto-process-mark, comint-set-process-mark):
11081 * calendar/calendar.el (calendar-cursor-to-date): Use it.
11082 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
11083
11084 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11085
11086 * dabbrev.el (dabbrev--ignore-case-p): New function.
11087 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
11088 Use it.
11089
11090 * files.el (automount-dir-prefix): Mark as obsolete.
11091
11092 2012-05-04 Glenn Morris <rgm@gnu.org>
11093
11094 * patcomp.el, play/bruce.el: Move to obsolete/.
11095
11096 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
11097
11098 Fix minor Y10k bugs.
11099 * arc-mode.el (archive-unixdate):
11100 * autoinsert.el (auto-insert-alist):
11101 * calc/calc-forms.el (math-this-year):
11102 * emacs-lisp/copyright.el (copyright-current-year)
11103 (copyright-update-year, copyright):
11104 * tar-mode.el (tar-clip-time-string):
11105 * time.el (display-time-update):
11106 Don't assume years have 4 digits.
11107
11108 2012-05-04 Chong Yidong <cyd@gnu.org>
11109
11110 * dos-w32.el (file-name-buffer-file-type-alist)
11111 (direct-print-region-use-command-dot-com):
11112 * ffap.el (ffap-menu-regexp):
11113 * find-file.el (ff-special-constructs):
11114 * follow.el (follow-debug):
11115 * forms.el (forms--debug):
11116 * iswitchb.el (iswitchb-all-frames):
11117 * ido.el (ido-all-frames):
11118 * emacs-lisp/timer.el (timer-max-repeats):
11119 * mail/feedmail.el (feedmail-mail-send-hook)
11120 (feedmail-mail-send-hook-queued):
11121 * mail/footnote.el (footnote-signature-separator):
11122 * mail/mailabbrev.el (mail-alias-separator-string)
11123 (mail-abbrev-mode-regexp):
11124 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
11125 * progmodes/idlwave.el (idlwave-libinfo-file)
11126 (idlwave-default-completion-case-is-down)
11127 (idlwave-library-routines): Convert defvars to defcustoms.
11128
11129 * mail/rmail.el (rmail-decode-mime-charset):
11130 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
11131 (idlwave-shell-fix-inserted-breaks)
11132 (idlwave-shell-activate-alt-keybindings)
11133 (idlwave-shell-use-breakpoint-glyph):
11134 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
11135
11136 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11137
11138 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
11139
11140 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
11141
11142 * progmodes/verilog-mode.el (font-lock-keywords):
11143 Fix mis-highligting auto. Reported by Craig Barner.
11144 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
11145 defines from global name space. Reported by Dan Dever.
11146 (verilog-auto-reset, verilog-auto-reset-widths)
11147 (verilog-auto-tieoff): Support using unbased numbers for
11148 AUTORESET and AUTOTIEOFF.
11149 (verilog-submit-bug-report): Update variable list.
11150 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
11151 parenthesis from not matching. Reported by Michael Rytting.
11152 (verilog-auto-template-lint): Fix hash error when linting modules
11153 with no used templates.
11154 (verilog-warn, verilog-warn-error)
11155 (verilog-warn-fatal): When non-interactive report multiple
11156 warnings before exiting. Suggested by Brad Dobbie.
11157 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
11158 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
11159 to report unused template errors. Reported by Brad Dobbie.
11160 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
11161 nets, bug438. Reported by Vns Blore.
11162 (verilog-auto-inout-module, verilog-auto-reg)
11163 (verilog-read-decls, verilog-read-sub-decls-sig)
11164 (verilog-signals-edit-wire-reg, verilog-signals-with):
11165 Fix passing of Verilog data types in ANSI input/output ports
11166 such as "output logic" into the AUTOs. Special case "wire" and
11167 "reg" for backwards compatibility presuming Verilog 2001.
11168 (verilog-auto-ascii-enum): Add "auto enum" as alias.
11169 (verilog-preprocess): Fix replication of preprocess output.
11170 Reported by Brad Dobbie.
11171 (verilog-auto-inst-interfaced-ports):
11172 Create verilog-auto-inst-interfaced-ports, bug429.
11173 Reported by Julian Gorfajn.
11174 (verilog-after-save-font-hook)
11175 (verilog-before-save-font-hook): New variable.
11176 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
11177 (verilog-save-font-mods): Wrap disabling fontification, reported
11178 by David Rogoff.
11179 (verilog-do-indent, verilog-pretty-declarations-auto)
11180 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
11181 Reported by Pierre-David Pfister.
11182 (verilog-set-auto-endcomments): Fix endtask auto comments outside
11183 of class declarations, bug292. Reported by Kevin Heilman.
11184 (verilog-read-decls): Fix 'parameter type' not appearing in
11185 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
11186 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
11187 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
11188 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
11189 Reported by David Kravitz.
11190
11191 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
11192
11193 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
11194 assignment with tests in ifs and for loops.
11195 (verilog-extended-complete-re, verilog-complete-reg): Change so
11196 that DPI inport functions don't look like fuction declarations.
11197 (verilog-pretty-expr): Don't line up assignment
11198 operations to the test and increment in if and for loops
11199 (verilog-extended-complete-re, verilog-complete-reg): Change so
11200 that DPI inport functions don't look like fuction declarations.
11201
11202 2012-05-03 Kenichi Handa <handa@m17n.org>
11203
11204 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
11205 decoding, and show a warning message without signaling an error
11206 (Bug#11282).
11207
11208 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11209
11210 * emacs-lisp/bytecomp.el
11211 (byte-compile-file-form-custom-declare-variable): Compile all elements,
11212 since cconv.el might have introduced :fun-body, internal-make-closure,
11213 and friends for bytecomp to handle (bug#11391).
11214 * custom.el (defcustom): Avoid ((λ ..) ..).
11215
11216 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
11217
11218 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
11219
11220 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
11221
11222 * notifications.el (dbus-debug):
11223 * term/linux.el (gpm-mouse-enable):
11224 * term/screen.el (xterm-register-default-colors): Declare.
11225
11226 2012-05-02 Chong Yidong <cyd@gnu.org>
11227
11228 * cus-start.el (gc-cons-percentage, exec-suffixes)
11229 (dos-display-scancodes, dos-hyper-key, dos-super-key)
11230 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
11231 (make-cursor-line-fully-visible, void-text-area-pointer)
11232 (font-list-limit): Add customization data.
11233
11234 * allout.el (allout-exposure-change-functions)
11235 (allout-structure-added-functions)
11236 (allout-structure-deleted-functions)
11237 (allout-structure-shifted-functions): Rename abnormal hooks from
11238 *-hook, and convert to defcustoms.
11239 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
11240 Convert to defcustoms.
11241 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
11242
11243 * allout-widgets.el: Hook callers changed.
11244
11245 2012-05-02 Eli Zaretskii <eliz@gnu.org>
11246
11247 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
11248 the yanked message in preference to the default value of
11249 buffer-file-coding-system.
11250
11251 2012-05-02 Martin Rudalics <rudalics@gmx.at>
11252
11253 * window.el (display-buffer--action-function-custom-type):
11254 Fix entry.
11255
11256 2012-05-02 Alan Mackenzie <acm@muc.de>
11257
11258 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
11259
11260 2012-05-01 Glenn Morris <rgm@gnu.org>
11261
11262 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
11263
11264 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
11265
11266 * cus-edit.el (custom-variable-documentation): Simplify with format.
11267
11268 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11269 Stefan Monnier <monnier@iro.umontreal.ca>
11270
11271 * simple.el (suggest-key-bindings, execute-extended-command):
11272 Move from keyboard.c.
11273
11274 2012-05-01 Chong Yidong <cyd@gnu.org>
11275
11276 * follow.el: Eliminate advice.
11277 (set-process-filter, process-filter, sit-for): Advice deleted.
11278 (follow-mode-off-hook): Obsolete hook removed.
11279 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
11280 Vars deleted.
11281 (follow-auto): Use a :set function.
11282 (follow-mode): Rewritten. Don't advise process filters.
11283 (follow-switch-to-current-buffer-all, follow-scroll-up)
11284 (follow-scroll-down): Assume follow-mode is bound.
11285 (follow-comint-scroll-to-bottom)
11286 (follow-align-compilation-windows): New functions.
11287 (follow--window-sorter): New function.
11288 (follow-all-followers): Use it to explicitly sort windows by their
11289 positions; don't make assumptions about next-window order.
11290 (follow-windows-start-end, follow-delete-other-windows-and-split)
11291 (follow-calc-win-start): Doc fix.
11292 (follow-windows-aligned-p, follow-select-if-visible): Don't call
11293 vertical-motion unnecessarily.
11294 (follow-adjust-window): New function.
11295 (follow-post-command-hook): Use it.
11296 (follow-call-set-process-filter, follow-call-process-filter)
11297 (follow-intercept-process-output, follow-tidy-process-filter-alist)
11298 (follow-stop-intercept-process-output, follow-generic-filter):
11299 Functions deleted.
11300 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
11301 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
11302 New functions, replacing advice on scroll-bar-* commands.
11303 (follow-mwheel-scroll): New function (Bug#4112).
11304
11305 * comint.el (comint-adjust-point): New function.
11306 (comint-postoutput-scroll-to-bottom): Use it.
11307 Call follow-comint-scroll-to-bottom for Follow mode buffers.
11308
11309 2012-05-01 Glenn Morris <rgm@gnu.org>
11310
11311 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
11312 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
11313 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
11314 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
11315 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
11316 Remove no-byte-compile setting.
11317
11318 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11319
11320 * minibuffer.el (completion-table-with-quoting): Fix compatibility
11321 all-completions code to not return a number in the last cdr.
11322
11323 2012-04-30 Leo Liu <sdl.web@gmail.com>
11324
11325 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
11326 read-only error.
11327
11328 2012-04-29 Chong Yidong <cyd@gnu.org>
11329
11330 * follow.el (follow-calc-win-end): Rewrite to handle partial
11331 screen lines correctly (Bug#8390).
11332 (follow-avoid-tail-recenter): Minor cleanup.
11333
11334 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11335
11336 Avoid the obsolete `assoc' package.
11337 * speedbar.el (speedbar-refresh): Avoid adelete.
11338 (speedbar-file-lists): Simplify and avoid aput.
11339 * man.el (Man--sections, Man--refpages): New vars, replacing
11340 Man-sections-alist and Man-refpages-alist.
11341 (Man-build-section-alist, Man-build-references-alist):
11342 Use them; avoid aput.
11343 (Man--last-section, Man--last-refpage): New vars.
11344 (Man-follow-manual-reference): Use them.
11345 Use the `default' arg of completing-read.
11346 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
11347
11348 2012-04-27 Chong Yidong <cyd@gnu.org>
11349
11350 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
11351
11352 * startup.el (x-apply-session-resources): New function.
11353
11354 * term/ns-win.el (ns-initialize-window-system):
11355 * term/w32-win.el (w32-initialize-window-system):
11356 * term/x-win.el (x-initialize-window-system): Use it to properly
11357 set menu-bar-mode and other vars from X resources, even if the
11358 initial frame is not a window-system frame (Bug#2299).
11359
11360 * subr.el (read-key): Avoid running filter function when setting
11361 up temporary tool bar entries (Bug#9922).
11362
11363 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11364
11365 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
11366 (Bug#11344)
11367
11368 2012-04-27 Chong Yidong <cyd@gnu.org>
11369
11370 * select.el (xselect--encode-string): New function, split from
11371 xselect-convert-to-string.
11372 (xselect-convert-to-string): Use it.
11373 (xselect-convert-to-filename, xselect-convert-to-os)
11374 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
11375 returned strings are properly encoded (Bug#11315).
11376
11377 2012-04-27 Chong Yidong <cyd@gnu.org>
11378
11379 * simple.el (delete-active-region): Move to killing custom group.
11380
11381 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
11382
11383 * progmodes/which-func.el (which-func-current): Quote %
11384 characters for mode-line processing.
11385
11386 2012-04-27 Chong Yidong <cyd@gnu.org>
11387
11388 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
11389 reaching eob (Bug#11286).
11390
11391 2012-04-27 Eli Zaretskii <eliz@gnu.org>
11392
11393 * progmodes/gdb-mi.el (gdb-control-level): New variable.
11394 (gdb): Make it buffer-local and init to zero.
11395 (gdb-control-commands-regexp): New variable.
11396 (gdb-send): Don't wrap in "-interpreter-exec console" if
11397 gdb-control-level is positive. Increment gdb-control-level
11398 whenever the command matches gdb-control-commands-regexp, and
11399 decrement it each time the command is "end". (Bug#11279)
11400
11401 2012-04-27 Martin Rudalics <rudalics@gmx.at>
11402
11403 * window.el (adjust-window-trailing-edge, enlarge-window)
11404 (shrink-window, window-resize):
11405 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
11406 windows (Bug#11276).
11407
11408 2012-04-27 Chong Yidong <cyd@gnu.org>
11409
11410 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
11411 fix "missing prefix" warning. All callers changed.
11412
11413 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11414
11415 * emacs-lisp/assoc.el: Move to obsolete/.
11416
11417 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11418
11419 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
11420
11421 * term/ns-win.el (ns-define-service):
11422 * progmodes/pascal.el (pascal-goto-defun):
11423 * progmodes/js.el (js--read-tab):
11424 * progmodes/etags.el (tags-lazy-completion-table):
11425 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
11426 * emacs-lisp/ewoc.el (ewoc--wrap):
11427 * emacs-lisp/assoc.el (aput, adelete, amake):
11428 * doc-view.el (doc-view-convert-current-doc):
11429 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
11430
11431 2012-04-26 Chong Yidong <cyd@gnu.org>
11432
11433 * image.el (image-type-from-buffer): Only return supported image
11434 type (Bug#9045).
11435
11436 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
11437 value, for symmetry with diff-end-of-hunk.
11438 (diff-split-hunk, diff-find-source-location)
11439 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
11440 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
11441 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
11442 compute the relevant hunk or file properly (Bug#6005).
11443 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
11444
11445 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11446
11447 * vc/vc-mtn.el:
11448 * vc/vc-hg.el:
11449 * vc/vc-git.el:
11450 * vc/vc-dir.el:
11451 * vc/vc-cvs.el:
11452 * vc/vc-bzr.el:
11453 * vc/vc-arch.el:
11454 * vc/vc.el: Replace lexical-let by lexical-binding.
11455 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
11456 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
11457 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
11458
11459 2012-04-26 Chong Yidong <cyd@gnu.org>
11460
11461 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
11462 (diff-mode-shared-map): Bind it to / and [remap undo].
11463
11464 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
11465 (ediff-window-setup-function): Use it as the default, to set up
11466 windows based on whether the current frame is graphical (Bug#2138).
11467 (ediff-choose-window-setup-function-automatically): Make obsolete.
11468
11469 * vc/ediff-init.el: Always define ediff-pixel-width/height.
11470
11471 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11472
11473 * ffap.el: Remove old code for obsolete package.
11474 (ffap-complete-as-file-p): Remove.
11475
11476 Use completion-table-with-quoting for comint and pcomplete.
11477 * comint.el (comint--unquote&requote-argument)
11478 (comint--unquote-argument, comint--requote-argument): New functions.
11479 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
11480 (comint-quote-filename): Use regexp-opt-charset.
11481 (comint--common-suffix, comint--common-quoted-suffix)
11482 (comint--table-subvert): Remove.
11483 (comint-unquote-function, comint-requote-function): New vars.
11484 (comint--complete-file-name-data): Use them with
11485 completion-table-with-quoting.
11486 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
11487 * pcomplete.el (pcomplete-arg-quote-list)
11488 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
11489 (pcomplete-unquote-argument-function): Default to non-nil.
11490 (pcomplete-unquote-argument): Simplify.
11491 (pcomplete--common-quoted-suffix): Remove.
11492 (pcomplete-requote-argument-function): New var.
11493 (pcomplete--common-suffix): New function.
11494 (pcomplete-completions-at-point): Use completion-table-with-quoting
11495 and completion-table-subvert.
11496
11497 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
11498 (minibuffer--double-dollars): Preserve properties.
11499 (completion--sifn-requote): New function.
11500 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
11501
11502 * minibuffer.el: Add support for completion of quoted/escaped data.
11503 (completion-table-with-quoting, completion-table-subvert): New funs.
11504 (completion--twq-try, completion--twq-all): New functions.
11505 (completion--nth-completion): New function.
11506 (completion-try-completion, completion-all-completions): Use it.
11507
11508 2012-04-25 Leo Liu <sdl.web@gmail.com>
11509
11510 * progmodes/python.el (python-pdbtrack-get-source-buffer):
11511 Use compilation-message if available to find real filename.
11512
11513 2012-04-25 Chong Yidong <cyd@gnu.org>
11514
11515 * vc/diff-mode.el (diff-setup-whitespace): New function.
11516 (diff-mode): Use it.
11517
11518 * vc/diff.el (diff-sentinel):
11519 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
11520 Whitespace mode variables based on diff style (Bug#8612).
11521
11522 2012-04-25 Leo Liu <sdl.web@gmail.com>
11523
11524 * progmodes/python.el (python-send-region): Add suffix .py to the
11525 temp file.
11526
11527 * files.el (auto-mode-alist): Use javascript-mode instead.
11528
11529 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
11530
11531 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
11532
11533 * net/soap-client.el (soap-resolve-references-for-sequence-type)
11534 (soap-resolve-references-for-array-type): Hack to prevent self
11535 references, see Bug#9.
11536 (soap-parse-envelope): Report the contents of the 'detail' node
11537 when receiving a fault reply.
11538 (soap-parse-envelope): Report the contents of the entire 'detail' node.
11539
11540 * net/soap-inspect.el (soap-sample-value-for-simple-type)
11541 (soap-inspect-simple-type): New function.
11542
11543 * net/soap-client.el (soap-simple-type): New struct.
11544 (soap-default-xsd-types, soap-default-soapenc-types)
11545 (soap-decode-basic-type, soap-encode-basic-type):
11546 support unsignedInt and double basic types.
11547 (soap-resolve-references-for-simple-type)
11548 (soap-parse-simple-type, soap-encode-simple-type): New function.
11549 (soap-parse-schema): Parse xsd:simpleType declarations.
11550
11551 * net/soap-client.el (soap-default-xsd-types)
11552 (soap-default-soapenc-types): Add integer, byte and anyURI types.
11553 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
11554 the local name of "soapenc:Array".
11555 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
11556 decoding integer, byte and anyURI xsd types.
11557
11558 2012-04-25 Chong Yidong <cyd@gnu.org>
11559
11560 * cus-edit.el (custom-buffer-create-internal): Update header text.
11561
11562 2012-04-25 Eli Zaretskii <eliz@gnu.org>
11563
11564 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
11565 settings on 'system-type', not on 'window-system'. On MS-Windows,
11566 set interactive-mode on in GDB.
11567
11568 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11569
11570 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
11571 (ruby-syntax-propertize-regexp): Remove.
11572 (ruby-syntax-propertize-function): Split regexp into chunks.
11573 Match following code directly.
11574
11575 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
11576
11577 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
11578 (ruby-syntax-propertize-regexp): New function.
11579 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
11580 by a special keyword.
11581
11582 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
11583 (ruby-syntax-general-delimiters-goto-beg)
11584 (ruby-syntax-propertize-general-delimiters): New functions.
11585 (ruby-syntax-propertize-function): Use them to handle GDL.
11586 (ruby-font-lock-keywords): Move old handling of GDL...
11587 (ruby-font-lock-syntactic-keywords): .. to here.
11588 (ruby-calculate-indent): Adjust indentation for GDL.
11589
11590 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
11591
11592 * notifications.el (top): Remove unneeded declarations.
11593 (notifications-specification-version): Change to "1.2".
11594 (notifications-interface, notifications-notify-method)
11595 (notifications-close-notification-method): Fix docstring.
11596 (notifications-get-capabilities-method): New defconst.
11597 (notifications-notify): Add :action-items, :resident and
11598 :transient hints. Change "image_data" to "image-data" and
11599 "image_path" to "image-path".
11600 (notifications-get-capabilities): New defun.
11601
11602 2012-04-24 Leo Liu <sdl.web@gmail.com>
11603
11604 * progmodes/python.el: Move hideshow setup to the end.
11605
11606 2012-04-24 Martin Rudalics <rudalics@gmx.at>
11607
11608 * window.el (handle-select-window): Clear echo area since this is
11609 no more done by read_char (Bug#11304).
11610
11611 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
11612
11613 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
11614 and `/ M' to filter-derived-mode.
11615 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
11616 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
11617 (ibuffer-mark-by-mode): Use default rather than initial-input.
11618 (ibuffer-filter-by-derived-mode): Autoload and require-match.
11619
11620 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
11621
11622 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
11623 (ibuffer-filter-by-derived-mode): New filter.
11624 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
11625
11626 2012-04-23 Andreas Politz <politza@fh-trier.de>
11627
11628 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
11629
11630 2012-04-23 Chong Yidong <cyd@gnu.org>
11631
11632 * cus-edit.el (customize-apropos, customize-apropos-options):
11633 Disable matching of non-option variables (Bug#11176).
11634 (customize-option, customize-option-other-window)
11635 (customize-changed-options): Doc fix.
11636 (customize-apropos-options, customize-apropos-faces)
11637 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
11638
11639 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
11640 Fix word list splitting (Bug#11132).
11641 (apropos-symbol, apropos-keybinding, apropos-label)
11642 (apropos-property, apropos-function-button)
11643 (apropos-variable-button, apropos-misc-button): New faces.
11644 (apropos-symbol-face, apropos-keybinding-face)
11645 (apropos-label-face, apropos-property-face, apropos-match-face):
11646 Variables removed (Bug#8396).
11647 (apropos-library-button, apropos-format-plist, apropos-print)
11648 (apropos-print-doc, apropos-describe-plist): Callers changed.
11649
11650 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
11651
11652 * net/xesam.el (xesam-mode-map): Use let-bound map in
11653 initialization. (Bug#11292)
11654
11655 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11656
11657 Preserve ispell session localwords when switching back to
11658 original buffer.
11659
11660 * textmodes/ispell.el (ispell-buffer-session-localwords):
11661 New buffer-local variable to hold buffer session localwords.
11662 (ispell-kill-ispell): Add option 'clear to delete session
11663 localwords.
11664 (ispell-command-loop, ispell-change-dictionary)
11665 (ispell-buffer-local-words): Preserve session localwords when
11666 needed.
11667
11668 * textmodes/flyspell.el (flyspell-process-localwords)
11669 (flyspell-do-correct): Preserve session localwords when needed.
11670
11671 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11672
11673 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
11674 using obsolete `translation-table-for-input'.
11675 (ispell-word, ispell-process-line, ispell-complete-word):
11676 Use plain `insert' instead of removed `ispell-insert-word'.
11677
11678 2012-04-22 Chong Yidong <cyd@gnu.org>
11679
11680 * cus-edit.el (custom-variable-menu)
11681 (custom-variable-reset-saved, custom-face-menu)
11682 (custom-face-reset-saved): If there is no saved value, make the
11683 "reset-saved" operation bring back the default (Bug#9509).
11684 (custom-face-state): Properly detect themed faces.
11685
11686 * faces.el (face-spec-set): Stop supporting deprecated form of
11687 third arg.
11688
11689 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
11690
11691 Move functions from C to Lisp. Make non-blocking method calls
11692 the default. Implement further D-Bus standard interfaces.
11693
11694 * net/dbus.el (dbus-message-internal): Declare function.
11695 Remove unneeded function declarations.
11696 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
11697 (dbus-message-type-method-return, dbus-message-type-error)
11698 (dbus-message-type-signal): Declare variables. Remove local
11699 definitions.
11700 (dbus-interface-dbus, dbus-interface-peer)
11701 (dbus-interface-introspectable, dbus-interface-properties)
11702 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
11703 Adapt docstring.
11704 (dbus-interface-objectmanager): New defconst.
11705 (dbus-call-method, dbus-call-method-asynchronously)
11706 (dbus-send-signal, dbus-method-return-internal)
11707 (dbus-method-error-internal, dbus-register-service)
11708 (dbus-register-signal, dbus-register-method): New defuns, moved
11709 from dbusbind.c
11710 (dbus-call-method-handler, dbus-setenv)
11711 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
11712 New defuns.
11713 (dbus-call-method-non-blocking): Make it an obsolete function.
11714 (dbus-unregister-object, dbus-unregister-service)
11715 (dbus-handle-event, dbus-register-property)
11716 (dbus-property-handler): Obey the new structure of
11717 `bus-registered-objects'.
11718 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
11719 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11720 Use `dbus-call-method'.
11721
11722 2012-04-22 Chong Yidong <cyd@gnu.org>
11723
11724 * cus-edit.el (custom-commands, custom-reset-menu)
11725 (Custom-reset-standard): Tweak labels.
11726 (custom-reset-button-menu): Change default to t.
11727 (custom-buffer-create-internal): For the custom-reset-button-menu
11728 case, put the revert button first.
11729 (custom-group-subtitle): New face.
11730 (custom-group-value-create): Align docstring to a specific column.
11731
11732 * wid-edit.el (widget-documentation-link-add): Don't handle
11733 indentation in this function.
11734 (widget-documentation-string-indent-to): New function.
11735 (widget-documentation-string-value-create): Use it.
11736
11737 * autorevert.el (auto-revert):
11738 * epg-config.el (epg):
11739 * ibuffer.el (ibuffer):
11740 * mpc.el (mpc):
11741 * ses.el (ses):
11742 * eshell/eshell.el (eshell):
11743 * net/ange-ftp.el (ange-ftp):
11744 * progmodes/ebnf2ps.el (postscript):
11745 * progmodes/flymake.el (flymake):
11746 * progmodes/prolog.el (prolog):
11747 * progmodes/verilog-mode.el (verilog-mode):
11748 * progmodes/which-func.el (which-func):
11749 * term/xterm.el (xterm):
11750 * textmodes/picture.el (picture):
11751 * textmodes/tildify.el (tildify):
11752 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
11753 customization buffers.
11754
11755 2012-04-22 Alan Mackenzie <acm@muc.de>
11756
11757 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
11758 Adding a ) can hide the resulting (..) from searches. Fix it.
11759 Bound the backward search to the position of the existing (.
11760
11761 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
11762
11763 * progmodes/verilog-mode.el (verilog-mode): Check whether
11764 which-func-modes is t before adding verilog-mode.
11765 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
11766
11767 2012-04-21 Leo Liu <sdl.web@gmail.com>
11768
11769 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
11770
11771 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
11772
11773 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
11774 filling of the last column of a table (Bug#5635).
11775 (woman-find-next-control-line): New arg, specifying an additional
11776 regexp component for the control line.
11777 (woman2-roff-buffer): Use it.
11778 (woman-break-table): New function.
11779 (woman2-TS): Use it.
11780
11781 2012-04-21 Chong Yidong <cyd@gnu.org>
11782
11783 * woman.el (woman-set-buffer-display-table, woman-decode-region)
11784 (woman-horizontal-escapes, woman-negative-vertical-space)
11785 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
11786 (WoMan-warn-ignored): Use ?\s instead of ?\ .
11787
11788 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11789
11790 * minibuffer.el (completion-file-name-table): Complete user names.
11791
11792 2012-04-20 Leo Liu <sdl.web@gmail.com>
11793
11794 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
11795 and pcase-let*.
11796
11797 2012-04-20 Chong Yidong <cyd@gnu.org>
11798
11799 * server.el (server-execute): Respect initial-buffer-choice if it
11800 is a string and there are no files to open (Bug#2825).
11801 (server-create-window-system-frame, server-create-tty-frame):
11802 Don't switch buffers here.
11803 (server-process-filter): Only try to open a window system frame if
11804 compiled with graphical support (Bug#8314).
11805
11806 2012-04-20 Dan Nicolaescu <dann@gnu.org>
11807
11808 * battery.el (battery-echo-area-format): Display remaining time
11809 for sysfs backend too (Bug#11269).
11810 (battery-linux-sysfs): Fix conditional for the charge.
11811
11812 2012-04-20 Chong Yidong <cyd@gnu.org>
11813
11814 * progmodes/gdb-mi.el (gdb): Revert previous change.
11815 (gdb-inferior-io--init-proc): New function.
11816 (gdb-init-1): Use it.
11817 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
11818 responsible for allocating a new pty and hooking it to gdb when
11819 the old pty gets an EIO due to process exit.
11820 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
11821 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
11822 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
11823
11824 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11825
11826 * window.el (window-min-size, window-sizable, window-min-delta)
11827 (window-max-delta, window--resizable, window-resizable)
11828 (window-total-size, window-full-height-p, window-full-width-p)
11829 (window-in-direction, window--resize-mini-window, window-resize)
11830 (window--resize-child-windows-normal)
11831 (window--resize-child-windows, window--resize-siblings)
11832 (window--resize-this-window, adjust-window-trailing-edge)
11833 (enlarge-window, shrink-window): Doc fixes.
11834
11835 2012-04-20 Chong Yidong <cyd@gnu.org>
11836
11837 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
11838 New function to call delete-process on the gdb-inferior buffer's pty.
11839 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
11840 pty process (Bug#11273).
11841 (gdb-update): New arg to suppress talking to the gdb process.
11842 (gdb-done-or-error): Use it.
11843 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
11844 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
11845 sentinel not being called.
11846
11847 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
11848
11849 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
11850
11851 2012-04-20 Glenn Morris <rgm@gnu.org>
11852
11853 * net/network-stream.el (open-network-stream): Doc fix.
11854
11855 2012-04-20 Chong Yidong <cyd@gnu.org>
11856
11857 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
11858
11859 2012-04-20 Alan Mackenzie <acm@muc.de>
11860
11861 Ensure searching for keywords is case sensitive.
11862
11863 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
11864 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
11865 (c-defun-name, c-mark-function, c-cpp-define-name)
11866 (c-comment-indent, c-scan-conditionals, c-indent-defun)
11867 (c-context-line-break): Bind case-fold-search to nil.
11868
11869 * progmodes/cc-mode.el (c-font-lock-fontify-region):
11870 Bind case-fold-search to nil.
11871
11872 2012-04-20 Chong Yidong <cyd@gnu.org>
11873
11874 * mail/sendmail.el (mail-bury): Call return action with the right
11875 Rmail buffer (Bug#11242).
11876
11877 * server.el (server-process-filter): Handle corner case where both
11878 tty and nowait options are present (Bug#11102).
11879
11880 2012-04-20 Eli Zaretskii <eliz@gnu.org>
11881
11882 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
11883 (top level): Put into the executable the ident-style '$Id:' tag on
11884 windows-nt as well.
11885
11886 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11887
11888 * electric.el (electric-indent-post-self-insert-function): Check that
11889 electric-indent-mode is enabled in current buffer.
11890
11891 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
11892
11893 * imenu.el (imenu-progress-message): Restore; it is "used" in
11894 erc/erc-imenu.el and net/snmp-mode.el.
11895
11896 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
11897
11898 * avoid.el (mouse-avoidance-mode): Mark unused arg.
11899 (mouse-avoidance-nudge-mouse): Remove unused binding.
11900
11901 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
11902
11903 * descr-text.el (describe-char):
11904 * progmodes/python.el (python-describe-symbol):
11905 Don't call `toggle-read-only', set `buffer-read-only'.
11906
11907 * imenu.el (imenu-default-goto-function): Mark unused args.
11908 (imenu-progress-message): Remove obsolete macro; all callers changed.
11909
11910 * subr.el (keymap-canonicalize): Remove unused binding.
11911 (read-passwd): Mark unused arg.
11912
11913 * tutorial.el (tutorial--display-changes): Remove unused binding.
11914 (tutorial--save-tutorial-to): Remove unused variable.
11915
11916 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
11917 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
11918 (package-generate-autoloads, package-menu--generate)
11919 (package-menu--find-upgrades): Remove unused bindings.
11920
11921 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
11922 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
11923 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
11924 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
11925 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
11926 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
11927 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
11928 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
11929 (cua-delete-char-rectangle): Mark unused args.
11930 (cua-align-rectangle): Remove unused binding.
11931
11932 * mail/rmail.el (compilation--message->loc)
11933 (epa--find-coding-system-for-mime-charset): Declare.
11934
11935 * net/dbus.el (dbus-register-service): Declare.
11936 (dbus-name-owner-changed-handler): Remove unused binding.
11937
11938 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
11939 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
11940 (nxml-scan-backward-within): Mark unused arg.
11941 (nxml-dynamic-markup-word): Remove unused binding.
11942
11943 * mouse.el (mouse-menu-major-mode-map):
11944 * emacs-lisp/authors.el (authors-scan-change-log)
11945 (authors-add-to-author-list):
11946 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
11947 * emacs-lisp/smie.el (smie-auto-fill):
11948 * mail/sendmail.el (mail-bury):
11949 * mail/unrmail.el (unrmail):
11950 * net/tls.el (open-tls-stream):
11951 * textmodes/picture.el (picture-mouse-set-point):
11952 Remove unused bindings.
11953
11954 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
11955
11956 * net/tramp.el (tramp-action-password): Let-bind
11957 `enable-recursive-minibuffers' to t.
11958
11959 2012-04-18 Sam Steingold <sds@gnu.org>
11960
11961 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
11962 instead of 'string to accommodate values like [f11].
11963 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
11964 * progmodes/gdb-mi.el: Likewise.
11965
11966 2012-04-18 Leo Liu <sdl.web@gmail.com>
11967
11968 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
11969 current buffer.
11970 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
11971 LOCAL is nil.
11972
11973 2012-04-18 Chong Yidong <cyd@gnu.org>
11974
11975 * simple.el (line-move): Use forward-line if in batch mode
11976 (Bug#11053).
11977
11978 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
11979
11980 * files.el (after-find-file): Do not try to add a final newline if
11981 the buffer is read-only (Bug#11156).
11982
11983 2012-04-17 Richard Stallman <rms@gnu.org>
11984
11985 * mail/rmail.el (rmail-start-mail):
11986 Pass (rmail-mail-return...) for the return-action.
11987 Pass (rmail-yank-current-message...) for the yank-action.
11988 (rmail-yank-current-message): New function.
11989 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
11990 (rmail-reply): Likewise.
11991 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
11992
11993 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
11994 buffer, not the last. Reject temp buffers. Use the rmail-mode
11995 buffer, not newbuf.
11996
11997 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
11998
11999 * server.el (server-ensure-safe-dir): Simplify.
12000
12001 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
12002
12003 * emacs-lisp/smie.el: Provide smarter auto-filling.
12004 (smie-auto-fill): New function.
12005 (smie-setup): Use it.
12006
12007 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
12008
12009 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
12010
12011 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
12012 (comment-indent): Use it.
12013
12014 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
12015
12016 * ses.el: The overall change is to add cell renaming, that is
12017 setting fancy names for cell symbols other than name matching
12018 "\\`[A-Z]+[0-9]+\\'" regexp .
12019 (ses-localvars): Add ses--renamed-cell-symb-list.
12020 (ses-create-cell-variable): New defun.
12021 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
12022 (ses-relocate-formula): Relocate formulas only for cells the
12023 symbols of which are not renamed, i.e. symbols whose names do not
12024 match regexp "\\`[A-Z]+[0-9]+\\'".
12025 (ses-relocate-all): Relocate values only for cells the symbols of
12026 which are not renamed.
12027 (ses-load): Create cells variables as the (ses-cell ...) are read,
12028 in order to check row col consistency with cell symbol name only
12029 for cells that are not renamed.
12030 (ses-replace-name-in-formula): New defun.
12031 (ses-rename-cell): New defun.
12032
12033 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
12034
12035 * progmodes/perl-mode.el (perl-indent-parens-as-block):
12036 New option (bug#11118).
12037 (perl-calculate-indent): Respect it.
12038
12039 2012-04-17 Glenn Morris <rgm@gnu.org>
12040
12041 * dired-aux.el (dired-mark-read-string): Doc fix.
12042
12043 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
12044
12045 * dired-aux.el (dired-mark-read-string): Offer optional completion.
12046 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
12047
12048 2012-04-17 Glenn Morris <rgm@gnu.org>
12049
12050 * mouse.el (mouse-drag-track):
12051 * speedbar.el (speedbar-frame-mode):
12052 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
12053
12054 2012-04-16 Leo Liu <sdl.web@gmail.com>
12055
12056 * progmodes/python.el: Trivial cleanup.
12057
12058 2012-04-16 Glenn Morris <rgm@gnu.org>
12059
12060 * vc/vc.el (vc-string-prefix-p):
12061 * vc/pcvs-util.el (cvs-string-prefix-p):
12062 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
12063 * mpc.el (mpc-string-prefix-p):
12064 Make all of these into obsolete aliases for string-prefix-p.
12065 Update callers.
12066 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
12067
12068 * textmodes/two-column.el: Move custom options to the start.
12069 (frame-width): Remove compat definition.
12070 (2C-associate-buffer, 2C-dissociate):
12071 Use with-current-buffer rather than save-excursion.
12072 (2C-dissociate): Force a mode-line update.
12073 (2C-autoscroll): Use ignore-errors.
12074
12075 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
12076 Autoload trivia.
12077
12078 * emacs-lisp/cl-extra.el (*random-state*):
12079 Remove unnecessary declaration.
12080
12081 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
12082
12083 * play/cookie1.el (cookie-snarf):
12084 Give an explicit error if input file cannot be read.
12085
12086 * play/yow.el (yow-file): Use expand-file-name rather than concat.
12087
12088 * progmodes/perl-mode.el (c-macro-expand):
12089 Remove unnecessary autoload (it is in loaddefs.el).
12090
12091 * textmodes/picture.el (picture-desired-column)
12092 (picture-update-desired-column): Convert comments to doc-strings.
12093 (picture-substitute): Remove function.
12094 (picture-mode-map): Initialize in the defvar.
12095
12096 * woman.el: Remove eval-after-load for tar-mode.
12097 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
12098 (woman-tar-extract-file): Autoload it.
12099
12100 * frame.el (automatic-hscrolling): Make this alias obsolete.
12101
12102 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12103
12104 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
12105 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
12106 (ispell-dictionary-base-alist): Revert to original XEmacs
12107 friendly version for default. [:alpha:] will be added in
12108 `ispell-set-spellchecker-params' if needed.
12109
12110 2012-04-16 Chong Yidong <cyd@gnu.org>
12111
12112 * image.el (imagemagick--file-regexp): New variable.
12113 (imagemagick-register-types): Use it.
12114 (imagemagick-types-inhibit): Add :set function. Allow new value
12115 of t to inhibit all types.
12116
12117 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
12118 so we can preload it.
12119
12120 * loadup.el (fboundp): Preload regexp-opt, needed by
12121 imagemagick-register-types.
12122
12123 2012-04-15 Chong Yidong <cyd@gnu.org>
12124
12125 * frame.el (scrolling): Remove nearly unused customization group.
12126
12127 * scroll-all.el (scroll-all-mode): Move to windows group.
12128
12129 2012-04-15 Chong Yidong <cyd@gnu.org>
12130
12131 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
12132
12133 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12134
12135 Avoid the use of ((lambda ...) ...) in lexical-binding code.
12136 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
12137
12138 2012-04-15 Glenn Morris <rgm@gnu.org>
12139
12140 * simple.el (process-file-side-effects): Doc fix.
12141
12142 2012-04-15 Glenn Morris <rgm@gnu.org>
12143
12144 * international/mule-cmds.el (set-language-environment): Doc fix.
12145
12146 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12147
12148 * server.el (server-auth-key, server-generate-key): Doc fixes.
12149 (server-get-auth-key): Doc fix. Use `string-match-p'.
12150 (server-start): Reflow docstring.
12151
12152 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
12153
12154 * server.el (server-generate-key): `called-interactively-p'
12155 requires a parameter.
12156
12157 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
12158
12159 * server.el (server-auth-key): New variable.
12160 (server-generate-key, server-get-auth-key): New function.
12161 (server-start): Use the new variable and functions to allow
12162 setting a permanent server key (bug#9423).
12163
12164 2012-04-14 Leo Liu <sdl.web@gmail.com>
12165
12166 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
12167
12168 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
12169
12170 Spelling fixes.
12171 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
12172 Emacs uses American spelling.
12173
12174 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
12175
12176 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
12177 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
12178 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
12179 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
12180
12181 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12182
12183 * progmodes/which-func.el (which-func-modes): Change default.
12184
12185 2012-04-14 Kim F. Storm <storm@cua.dk>
12186
12187 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
12188 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
12189
12190 2012-04-14 Chong Yidong <cyd@gnu.org>
12191
12192 * custom.el (custom-theme-set-variables): Doc fix.
12193
12194 2012-04-14 Glenn Morris <rgm@gnu.org>
12195
12196 * international/mule.el (set-auto-coding-for-load): Doc fix.
12197
12198 2012-04-14 Alan Mackenzie <acm@muc.de>
12199
12200 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
12201 imenu work again for Objective C Mode. Correct the *-index values,
12202 these having been disturbed by a previous change in 2011-08.
12203
12204 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
12205 Correct two search limits.
12206
12207 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12208
12209 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
12210
12211 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
12212
12213 * international/characters.el: Fix sorting.
12214
12215 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12216
12217 * international/characters.el: Add more missing Latin case pairs.
12218
12219 2012-04-14 Glenn Morris <rgm@gnu.org>
12220
12221 * files.el (dir-locals-set-class-variables): Doc fix.
12222
12223 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12224
12225 * international/characters.el: Add set-case-syntax-pair call for
12226 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
12227 counterpart. (Bug#11209)
12228
12229 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
12230
12231 2012-04-14 Glenn Morris <rgm@gnu.org>
12232
12233 * calendar/holidays.el (calendar-check-holidays): Doc fix.
12234
12235 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12236
12237 * textmodes/ispell.el (ispell-dictionary-base-alist):
12238 Add data for Hebrew.
12239
12240 2012-04-14 Chong Yidong <cyd@gnu.org>
12241
12242 * net/rcirc.el (rcirc-cmd-quit):
12243 Revert 2012-03-18 change (Bug#11192).
12244
12245 2012-04-14 Glenn Morris <rgm@gnu.org>
12246
12247 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
12248
12249 2012-04-14 Eli Zaretskii <eliz@gnu.org>
12250
12251 * minibuffer.el (completion-in-region-mode-map):
12252 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
12253
12254 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
12255
12256 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
12257
12258 2012-04-13 Masatake YAMATO <yamato@redhat.com>
12259
12260 * minibuffer.el (minibuffer-local-filename-syntax): New variable
12261 to allow `C-M-f' and `C-M-b' to move to the nearest path
12262 separator (bug#9511).
12263
12264 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
12265
12266 * avoid.el: Require cl when compiling. And also move the
12267 `provide' to the end.
12268
12269 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12270
12271 * avoid.el (mouse-avoidance-banish-position): New variable.
12272 (mouse-avoidance-banish-destination): Use it (bug#10165).
12273
12274 2012-04-13 Leo Liu <sdl.web@gmail.com>
12275
12276 * progmodes/which-func.el (which-func-modes): Add objc-mode.
12277
12278 2012-04-13 Ken Brown <kbrown@cornell.edu>
12279
12280 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
12281 this is no longer needed now that cygstart understands file:// URLs.
12282 (browse-url-filename-alist): For the same reason, don't modify
12283 file:// URLs on Cygwin.
12284
12285 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12286
12287 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
12288 the region on shift if the binding is already shifted (bug#11221).
12289
12290 2012-04-12 Glenn Morris <rgm@gnu.org>
12291
12292 * mail/mailpost.el: Move to obsolete/.
12293
12294 2012-04-12 Drew Adams <drew.adams@oracle.com>
12295
12296 * imenu.el (imenu--generic-function): Ignore invisible definitions
12297 (bug#10123).
12298
12299 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
12300
12301 * hexl.el (hexl-bits): New variable.
12302 (hexl-options): Mention the variable in the doc string.
12303 (hexl-rulerise, hexl-line-displen): New functions.
12304 (hexl-mode): Mention the new variable.
12305 (hexl-mode, hexl-current-address, hexl-current-address):
12306 Use the displen.
12307 (hexl-ascii-start-column): New function.
12308 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
12309 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
12310
12311 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12312
12313 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
12314 '("-i" ENCODING), in 2 separate command-line arguments, to specify
12315 the encoding, as expected by hunspell.
12316
12317 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
12318
12319 * battery.el (battery--linux-sysfs-regexp): New const.
12320 (battery-status-function): Use it. Remove yeeloong special case.
12321 (battery-yeeloong-sysfs): Remove.
12322 (battery-echo-area-format): Remove yeeloong special case.
12323
12324 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12325
12326 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
12327 Reported by Noah Friedman.
12328
12329 * subr.el (read-passwd): Use read-string.
12330
12331 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12332
12333 * vcursor.el (vcursor-move): Increase the priority of the overlay
12334 (bug#9663).
12335
12336 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
12337
12338 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
12339 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
12340
12341 2012-04-11 William Stevenson <yhvh2000@gmail.com>
12342
12343 * textmodes/artist.el (artist-mode): Convert artist-mode to use
12344 define-minor-mode (bug#10760).
12345
12346 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12347
12348 * progmodes/grep.el (rgrep): Tweak the find command line so
12349 that directories matching `grep-find-ignored-files' won't be
12350 pruned (bug#10351).
12351
12352 2012-04-11 Chong Yidong <cyd@gnu.org>
12353
12354 * startup.el (command-line): Remove support for long-obsolete
12355 variable font-lock-face-attributes.
12356
12357 2012-04-11 Glenn Morris <rgm@gnu.org>
12358
12359 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
12360
12361 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12362
12363 * window.el (window--state-get-1): Obey window-point-insertion-type.
12364
12365 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
12366
12367 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
12368 to previous function when point is on the first character of a
12369 function. Take care of that in `narrow-to-defun' (bug#6157).
12370
12371 2012-04-11 Glenn Morris <rgm@gnu.org>
12372
12373 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
12374 not just file-errors.
12375
12376 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
12377 (vc-bzr-sha1): Use internal sha1.
12378
12379 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
12380
12381 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
12382
12383 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
12384
12385 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
12386 that start in the middle of the line (bug#10496).
12387
12388 2012-04-10 Dan Nicolaescu <dann@gnu.org>
12389
12390 * battery.el (battery-linux-proc-acpi): Only one battery is
12391 discharged at a time, but that seems to confuse battery.el when
12392 computing `rate-type' for the battery not being discharged
12393 (bug#10332).
12394
12395 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12396
12397 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
12398
12399 * international/quail.el: Use dolist and simplify.
12400 (quail-define-package, quail-update-keyboard-layout)
12401 (quail-define-rules): Use dolist.
12402 (quail-insert-kbd-layout, quail-get-translation): CSE.
12403
12404 * tmm.el: Use dolist, remove left over hook.
12405 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
12406 Use dolist.
12407 (calendar-load-hook): Don't mess with it.
12408
12409 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
12410 Use derived-mode-p. Run the diff asynchronously.
12411
12412 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12413
12414 * obsolete/mouse-sel.el: Add an Obsolete-since header.
12415
12416 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
12417
12418 * misc.el: Display absolute path of loaded DLLs (bug#10424).
12419 (list-dynamic-libraries--loaded): New function.
12420 (list-dynamic-libraries--refresh): Use it.
12421
12422 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
12423
12424 * progmodes/python.el (python-fill-paragraph):
12425 Make python-fill-region in a multiline string work when font-lock is
12426 disabled (bug#7018).
12427
12428 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
12429
12430 * language/european.el (cp775): Add oem/legacy (en)coding on
12431 DOS/MS Windows for the Baltic languages. There are still plenty
12432 of texts written in this encoding/codepage (bug#6519).
12433
12434 2012-04-10 Glenn Morris <rgm@gnu.org>
12435
12436 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
12437 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
12438
12439 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
12440
12441 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
12442 next-line "n" and previous-line "p" in order to make recentf more
12443 consistent with ibuffer, dired or org-mode (bug#9387).
12444
12445 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
12446
12447 * image.el (put-image): Return the overlay created instead of the
12448 optional input string (bug#7834). Note that this may break code
12449 that is (for some reason or other) depending on `put-image'
12450 returning the string.
12451
12452 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
12453
12454 * simple.el (zap-to-char): Allow zapping using input methods
12455 (bug#1580).
12456
12457 * textmodes/fill.el (fill-region): Leave point and mark where they
12458 were before filling (bug#5399).
12459
12460 2012-04-09 Glenn Morris <rgm@gnu.org>
12461
12462 * version.el (emacs-bzr-get-version):
12463 Handle lightweight checkouts of local branches.
12464
12465 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
12466
12467 * international/characters.el: Recover lost case pairs. (Bug#11209)
12468
12469 2012-04-09 Chong Yidong <cyd@gnu.org>
12470
12471 * custom.el (custom-variable-p): Return nil for non-symbol
12472 arguments instead of signaling an error.
12473 (user-variable-p): Obsolete alias for custom-variable-p.
12474
12475 * apropos.el (apropos-variable):
12476 * files-x.el (read-file-local-variable):
12477 * simple.el (set-variable):
12478 * woman.el (woman-mini-help):
12479 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
12480
12481 2012-04-09 Glenn Morris <rgm@gnu.org>
12482
12483 * startup.el (normal-top-level): Don't look for leim-list.el
12484 in places where it will not be found. (Bug#910)
12485
12486 * international/mule-cmds.el (set-default-coding-systems):
12487 * files.el (normal-mode):
12488 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
12489 This function was removed with ucs-tables.el in 2008.
12490
12491 2012-04-08 Eli Zaretskii <eliz@gnu.org>
12492
12493 * textmodes/ispell.el (ispell-check-version): For hunspell, set
12494 ispell-encoding8-command to "-i", without a trailing space.
12495 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
12496 separate command-line arguments, to specify the encoding, since
12497 that's how hunspell expects it.
12498
12499 2012-04-08 Glenn Morris <rgm@gnu.org>
12500
12501 * loadup.el: Load bindings before cus-start.
12502 This reduces somewhat the number of "rogue" settings in emacs -Q.
12503
12504 2012-04-07 Glenn Morris <rgm@gnu.org>
12505
12506 * version.el (emacs-bzr-get-version): New function.
12507 (emacs-bzr-version): New variable.
12508 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
12509 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
12510
12511 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12512
12513 * international/uni-bidi.el, international/uni-category.el:
12514 * international/uni-combining.el, international/uni-decimal.el:
12515 * international/uni-decomposition.el, international/uni-digit.el:
12516 * international/uni-lowercase.el, international/uni-mirrored.el:
12517 * international/uni-name.el, international/uni-numeric.el:
12518 * international/uni-titlecase.el, international/uni-uppercase.el:
12519 Update for Unicode 6.1.
12520
12521 2012-04-07 Eli Zaretskii <eliz@gnu.org>
12522
12523 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
12524
12525 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
12526
12527 * window.el (shrink-window): Mention the `window-min-height'
12528 variable in the doc string.
12529
12530 2012-04-05 Bastien Guerry <bzg@altern.org>
12531
12532 * color.el (color-lighten-name): Fix typo.
12533
12534 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12535
12536 * server.el (server--on-display-p): New function.
12537 (server--on-display-p): Use it.
12538
12539 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
12540
12541 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
12542 (bug#11145).
12543
12544 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
12545
12546 * comint.el (comint--common-quoted-suffix): Check string boundary
12547 before comparing (bug#11158).
12548 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
12549
12550 2012-04-04 Chong Yidong <cyd@gnu.org>
12551
12552 * minibuffer.el (completion-extra-properties): Doc fix.
12553
12554 * subr.el (delayed-warnings-hook): Doc fix.
12555
12556 2012-04-04 Daiki Ueno <ueno@unixuser.org>
12557
12558 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
12559 selection (Bug#11159).
12560 (epa-insert-keys): Inform that the default public key will be
12561 exported if no key is selected.
12562
12563 2012-04-04 Richard Stallman <rms@gnu.org>
12564
12565 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
12566
12567 2012-04-03 Chong Yidong <cyd@gnu.org>
12568
12569 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
12570 mail-insert-file, not its obsolete alias mail-attach-file.
12571
12572 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
12573
12574 * notifications.el (notifications-notify): Fix docstring.
12575
12576 2012-04-02 Glenn Morris <rgm@gnu.org>
12577
12578 * emacs-lisp/authors.el (authors-aliases): Another addition.
12579
12580 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
12581
12582 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
12583 `tramp-compat-call-process' instead of `tramp-local-call-process'.
12584 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
12585
12586 2012-04-01 Chong Yidong <cyd@gnu.org>
12587
12588 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
12589 Handle root directory properly.
12590 (copy-directory): Caller changed.
12591
12592 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12593 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
12594
12595 2012-03-31 Glenn Morris <rgm@gnu.org>
12596
12597 * term/xterm.el (xterm-extra-capabilities): Doc fix.
12598
12599 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
12600
12601 * calendar/calendar.el (calendar-window-list)
12602 (calendar-hide-window): Restore. (Bug#11140)
12603 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
12604
12605 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
12606
12607 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
12608
12609 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
12610 Check if file is a symlink (Bug#10489).
12611
12612 * files.el (copy-directory): Likewise.
12613
12614 2012-03-30 Chong Yidong <cyd@gnu.org>
12615
12616 * image.el (imagemagick-types-inhibit)
12617 (imagemagick-register-types): Doc fix.
12618
12619 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12620
12621 * textmodes/ispell.el (ispell-get-extended-character-mode):
12622 Disable extended-char-mode for hunspell. hunspell does not support it
12623 and treats ~word as ordinary words in pipe mode.
12624
12625 2012-03-30 Glenn Morris <rgm@gnu.org>
12626
12627 * tutorial.el (help-with-tutorial): Ensure local variables don't
12628 happen to make the buffer read-only. (Bug#11127)
12629
12630 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
12631
12632 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
12633 (perl-calculate-indent): Return `noindent' in strings.
12634
12635 2012-03-28 Sam Steingold <sds@gnu.org>
12636
12637 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
12638 instead of the broken adhockery which does not prevent calendar
12639 buffers from being displayed at random after exit.
12640 (calendar-window-list, calendar-hide-window): Remove the broken
12641 adhockery.
12642
12643 2012-03-28 Glenn Morris <rgm@gnu.org>
12644
12645 * replace.el (query-replace-map): Doc fix.
12646
12647 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
12648
12649 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
12650 contents. (Bug#11109)
12651
12652 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
12653
12654 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
12655 (bug#11077).
12656 (avl-tree--check, avl-tree--check-node): New funs.
12657
12658 2012-03-27 Martin Rudalics <rudalics@gmx.at>
12659
12660 * window.el (switch-to-visible-buffer): New option.
12661 (switch-to-prev-buffer, switch-to-next-buffer):
12662 Observe switch-to-visible-buffer. Make sure that checking for a window
12663 showing a buffer already is done on the same frame.
12664
12665 2012-03-27 Glenn Morris <rgm@gnu.org>
12666
12667 * startup.el (mail-host-address): Doc fix.
12668
12669 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12670
12671 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
12672 than 197 variables.
12673
12674 2012-03-26 Ami Fischman <ami@fischman.org>
12675
12676 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
12677
12678 2012-03-26 Glenn Morris <rgm@gnu.org>
12679
12680 * files.el (save-buffers-kill-emacs): Doc fix.
12681
12682 * startup.el (normal-top-level, command-line, command-line-1):
12683 Give them doc strings.
12684
12685 2012-03-25 Eli Zaretskii <eliz@gnu.org>
12686
12687 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
12688 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
12689
12690 2012-03-25 Chong Yidong <cyd@gnu.org>
12691
12692 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
12693 theme if it was previously enabled before (Bug#11031).
12694
12695 * cus-theme.el (custom-theme-write-faces): Retrieve current face
12696 spec with custom-face-get-current-spec if its :shown-value is not
12697 determined yet (Bug#9337).
12698 (customize-create-theme, custom-theme-revert): Doc fixes.
12699
12700 * button.el (button-at): Minor addition to docstring.
12701
12702 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
12703
12704 * vc/vc.el (vc-merge): Fix a prompt.
12705
12706 2012-03-24 Chong Yidong <cyd@gnu.org>
12707
12708 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
12709 point (Bug#9623).
12710
12711 * button.el (button-at): Minor addition to docstring.
12712
12713 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
12714
12715 * newcomment.el (comment-choose-indent): No space after BOL.
12716
12717 2012-03-22 Sam Steingold <sds@gnu.org>
12718
12719 * window.el (switch-to-prev-buffer): Revert last patch because the
12720 bug turned out to be an advertised feature (Elisp manual 28.14).
12721
12722 2012-03-22 Glenn Morris <rgm@gnu.org>
12723
12724 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
12725 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
12726
12727 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12728
12729 * net/network-stream.el (network-stream-open-starttls): Make error
12730 message under Windows be less misleading.
12731
12732 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
12733
12734 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
12735 understands (bug#9942).
12736
12737 2012-03-22 Chong Yidong <cyd@gnu.org>
12738
12739 * simple.el (end-of-visible-line): Handle return value of
12740 next-single-property-change properly (Bug#9371).
12741
12742 2012-03-22 Kenichi Handa <handa@m17n.org>
12743
12744 * international/quail.el (quail-insert-kbd-layout): Fix previous
12745 change. To avoid unwanted bidi reordering, use
12746 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
12747
12748 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
12749
12750 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
12751 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
12752 (ruby-beginning-of-indent): Be more careful with the difference
12753 between word-boundary and symbol boundary.
12754 (ruby-mode-syntax-table): Make : a symbol constituent.
12755
12756 2012-03-21 Andreas Politz <politza@fh-trier.de>
12757
12758 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
12759
12760 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12761
12762 * progmodes/etags.el (tags-completion-at-point-function):
12763 Improve last fix.
12764
12765 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
12766
12767 2012-03-21 Sam Steingold <sds@gnu.org>
12768
12769 * progmodes/etags.el (tags-completion-at-point-function):
12770 Avoid the error when point is inside the pattern.
12771
12772 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
12773
12774 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
12775 line (Bug#10855).
12776
12777 2012-03-21 Drew Adams <drew.adams@oracle.com>
12778
12779 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
12780
12781 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
12782
12783 * ido.el (ido-set-current-directory, ido-read-internal)
12784 (ido-choose-completion-string, ido-completion-help): Handle nil
12785 value of ido-completion-buffer (Bug#11008).
12786
12787 2012-03-21 Sam Steingold <sds@gnu.org>
12788
12789 * window.el (switch-to-prev-buffer): Do not switch to a visible
12790 window previous buffer, just like with the frame previous buffers.
12791
12792 2012-03-21 Chong Yidong <cyd@gnu.org>
12793
12794 * faces.el (make-face, make-empty-face, copy-face):
12795 * face-remap.el (face-remap-add-relative, face-remap-set-base):
12796 Doc fixes.
12797
12798 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12799
12800 * wid-edit.el (widget-complete-field): Remove (bug#11051).
12801 (widget-complete): Remove broken use of it.
12802
12803 2012-03-20 Chong Yidong <cyd@gnu.org>
12804
12805 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12806 Use string-width and truncate-string-width to handle arbitrary
12807 characters.
12808
12809 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
12810
12811 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
12812 to draw rectangles, not squares. (Regression introduced by revno
12813 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
12814
12815 2012-03-18 Chong Yidong <cyd@gnu.org>
12816
12817 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
12818 it is not yet defined (for temacs).
12819
12820 2012-03-18 Leo Liu <sdl.web@gmail.com>
12821
12822 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
12823 prefix.
12824
12825 2012-03-17 Eli Zaretskii <eliz@gnu.org>
12826
12827 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
12828 (ispell-choices-win-default-height, ispell-silently-savep)
12829 (ispell-dictionary-alist, ispell-encoding8-command)
12830 (ispell-check-version, ispell-aspell-find-dictionary)
12831 (ispell-valid-dictionary-list, ispell-words-keyword)
12832 (ispell-get-word, ispell-internal-change-dictionary)
12833 (ispell-region, ispell-skip-region-list)
12834 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
12835 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
12836 (ispell-message-text-end, ispell-message)
12837 (ispell-buffer-local-parsing): Doc fix.
12838
12839 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
12840
12841 * htmlfontify.el: Add support for code block fontification for ODT
12842 export (Bug #9914).
12843 (hfy-optimisations): Define new option
12844 `body-text-only'
12845 (hfy-fontify-buffer): Honor above setting.
12846 (hfy-begin-span, hfy-end-span): New routines factored out form
12847 `hfy-fontify-buffer'.
12848 (hfy-begin-span-handler, hfy-end-span-handler): New variables
12849 that permit insertion of custom tags.
12850 (hfy-fontify-buffer): Use above handlers.
12851 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
12852 (hfy-face-to-css): Re-defined to be a variable.
12853 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
12854 over multiple runs. This is made possible by having the caller let
12855 bind a special variable `hfy-user-sheet-assoc'.
12856 (htmlfontify-string): New defun.
12857 (hfy-compile-face-map): Make sure that the last char in the
12858 buffer is correctly fontified.
12859 (hfy-face-resolve-face): Whitespace only change.
12860
12861 2012-03-17 Eli Zaretskii <eliz@gnu.org>
12862
12863 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
12864 message more clear.
12865
12866 2012-03-16 Leo Liu <sdl.web@gmail.com>
12867
12868 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
12869
12870 2012-03-16 Alan Mackenzie <acm@muc.de>
12871
12872 Further optimize the handling of large macros.
12873
12874 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
12875 limit to a call of `c-literal-limits'.
12876 (c-determine-+ve-limit): New function.
12877 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
12878 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
12879 In CASE 5B, restrict a search limit to 500.
12880 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
12881
12882 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
12883 Restrict macro bounds to +-500 from after-change's BEG END.
12884
12885 2012-03-16 Leo Liu <sdl.web@gmail.com>
12886
12887 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
12888
12889 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
12890
12891 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
12892 `special-mode' setting of `buffer-read-only'. (Bug#11010)
12893
12894 2012-03-16 Glenn Morris <rgm@gnu.org>
12895
12896 * view.el (view-buffer, view-buffer-other-window)
12897 (view-buffer-other-frame): Doc fixes re special mode-class.
12898
12899 * subr.el (eval-after-load): If named feature is provided not from
12900 a file, run after-load forms. (Bug#10946)
12901
12902 * calendar/calendar.el (calendar-insert-at-column):
12903 Handle non-unit-width characters a bit better. (Bug#10978)
12904
12905 2012-03-15 Chong Yidong <cyd@gnu.org>
12906
12907 * emacs-lisp/ring.el (ring-extend): New function.
12908 (ring-insert+extend): Extend the ring correctly (Bug#11019).
12909
12910 * comint.el (comint-read-input-ring)
12911 (comint-add-to-input-history): Grow comint-input-ring lazily.
12912
12913 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
12914
12915 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
12916 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
12917
12918 * imenu.el: Fix multiple inheritance breakage (bug#9199).
12919 (imenu-add-to-menubar): Don't add a redundant index.
12920 (imenu-update-menubar): Handle a dynamically composed keymap.
12921
12922 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
12923
12924 * mail/sendmail.el (mail-encode-header):
12925 Bind rfc2047-encode-encoded-words to nil.
12926
12927 2012-03-13 Glenn Morris <rgm@gnu.org>
12928
12929 * calendar/calendar.el (calendar-string-spread):
12930 Handle non-unit-width characters a bit better. (Bug#10978)
12931
12932 2012-03-13 Leo Liu <sdl.web@gmail.com>
12933
12934 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
12935 directory and file as argument (Bug#10822).
12936
12937 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
12938
12939 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
12940 For dynamically generated code, follow $PC.
12941 (gdb-disassembly-handler-custom): Handle no function name case.
12942
12943 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
12944
12945 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
12946 * emulation/ws-mode.el (ws-query-replace):
12947 * sort.el (sort-regexp-fields):
12948 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
12949
12950 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12951
12952 * dabbrev.el: Fix cycle completion order (bug#10963).
12953 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
12954 (dabbrev-completion): Don't use an obarray; provide
12955 a cycle-sort-function.
12956
12957 2012-03-12 Leo Liu <sdl.web@gmail.com>
12958
12959 * simple.el (kill-new): Use equal-including-properties for comparison.
12960 (kill-do-not-save-duplicates): Doc fix.
12961
12962 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12963
12964 * dabbrev.el: Fix cycle completion (bug#10963).
12965 Use lexical binding and wrap to 80 columns.
12966 (dabbrev-completion): Delay computing the list of completions.
12967
12968 2012-03-12 Kenichi Handa <handa@m17n.org>
12969
12970 * international/quail.el (quail-insert-kbd-layout): Surround each
12971 row by LRO and PDF instead of inserting many LRMs. Pad the left
12972 and right of each non-spacing marks. Insert invisible space
12973 between lower and upper characters to prevent composition.
12974
12975 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12976
12977 * minibuffer.el (minibuffer-complete): Don't get confused when the
12978 function is run twice via different commands (bug#10958).
12979 (complete-with-action): Fix docstring.
12980
12981 2012-03-12 Chong Yidong <cyd@gnu.org>
12982
12983 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
12984 (nxml-completion-at-point-function): New function.
12985 (nxml-mode): Use it.
12986 (nxml-bind-meta-tab-to-complete-flag): Default to t.
12987
12988 * emacs-lisp/package.el (package-unpack, package-unpack-single):
12989 Load generated autoloads file before byte compiling (Bug#10970).
12990 (package--make-autoloads-and-compile): New helper fun.
12991
12992 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
12993
12994 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
12995
12996 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
12997
12998 * autorevert.el (auto-revert-handler): Ensure, that
12999 file-readable-p is applied only for local files or in
13000 auto-revert-tail-mode.
13001
13002 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
13003
13004 * server.el (server-eval-at): Handle non-tcp connections.
13005 Decode result string.
13006
13007 * server.el (server-msg-size): New constant.
13008 (server-reply-print): New function.
13009 (server-eval-and-print): Use it.
13010 (server-eval-at): Use server-quote-arg and server-unquote-arg.
13011 Handle -print-nonl.
13012
13013 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
13014
13015 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
13016 (Bug#10987).
13017
13018 2012-03-11 Chong Yidong <cyd@gnu.org>
13019
13020 * simple.el (goto-line): Doc fix (Bug#9938).
13021
13022 * subr.el (save-window-excursion): Doc fix (Bug#9979).
13023
13024 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
13025 when finished (Bug#10963).
13026
13027 2012-03-11 Martin Rudalics <rudalics@gmx.at>
13028
13029 * window.el (split-window-below): Fix bug in case where
13030 split-window-keep-point is nil (Bug#10971).
13031
13032 2012-03-11 Juri Linkov <juri@jurta.org>
13033
13034 * replace.el (replace-highlight): Set isearch-word to nil
13035 unconditionally. (Bug#10887)
13036
13037 2012-03-10 Eli Zaretskii <eliz@gnu.org>
13038
13039 * net/mairix.el (mairix-replace-invalid-chars): Rename from
13040 mairix-replace-illegal-chars; all callers changed. Don't remove
13041 ^, ~, and = characters: they are meaningful in mairix search specs.
13042 (mairix-widget-create-query): Add usage information about mairix
13043 search forms: negating words, searching for substrings, etc.
13044
13045 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
13046
13047 * international/fontset.el (font-encoding-alist): Add an entry for
13048 ksx1001 (Bug#5667).
13049
13050 2012-03-10 Richard Stallman <rms@gnu.org>
13051
13052 * mail/sendmail.el (mail-encode-header):
13053 Set rfc2047-encode-encoded-words.
13054
13055 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
13056
13057 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
13058 view buffer means not swapped.
13059 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
13060 (rmail-write-region-annotate): Error if real text has disappeared.
13061
13062 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
13063
13064 2012-03-10 Chong Yidong <cyd@gnu.org>
13065
13066 * emulation/cua-rect.el (cua--init-rectangles):
13067 * emulation/cua-base.el (cua--init-keymaps):
13068 Add delete-forward-char to remappings (Bug#9666).
13069
13070 2012-03-10 Martin Rudalics <rudalics@gmx.at>
13071
13072 * speedbar.el (speedbar-unhighlight-one-tag-line):
13073 Avoid unhighlighting due to frame switching (Bug#10275).
13074
13075 2012-03-10 Chong Yidong <cyd@gnu.org>
13076
13077 * minibuffer.el (completion-in-region, completion-help-at-point):
13078 Give the completion field overlay a high priority (Bug#6830).
13079
13080 * dired.el (dired-goto-file): Recognize absolute file name
13081 listings (Bug#7126).
13082 (dired-goto-file-1): New helper function.
13083 (dired-toggle-read-only): Inhibit warnings.
13084
13085 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
13086
13087 * net/dbus.el (dbus-property-handler): Return empty array if
13088 there are no properties.
13089
13090 2012-03-09 Leo Liu <sdl.web@gmail.com>
13091
13092 * savehist.el (savehist-printable): Stricter check for string
13093 value (Bug#10937).
13094
13095 2012-03-09 Eli Zaretskii <eliz@gnu.org>
13096
13097 * mail/smtpmail.el (smtpmail-send-it):
13098 Bind coding-system-for-write to *-unix, so that FCC files are kept in
13099 valid mbox format.
13100
13101 2012-03-09 Glenn Morris <rgm@gnu.org>
13102
13103 * files.el (dir-locals-find-file):
13104 Don't check result is regular, readable.
13105 (dir-locals-read-from-file): Demote errors.
13106
13107 2012-03-08 Eli Zaretskii <eliz@gnu.org>
13108
13109 * international/quail.el (quail-insert-kbd-layout):
13110 Insert invisible LRM characters before each character in a keyboard
13111 layout cell, to prevent their reordering by bidi display engine.
13112 For details, see the discussion in
13113 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
13114
13115 2012-03-08 Alan Mackenzie <acm@muc.de>
13116
13117 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
13118 the starting position; make it extend the marked region when
13119 invoked repeatedly - all under appropriate circumstances.
13120 Fixes bugs #5525, #10906.
13121
13122 2012-03-08 Glenn Morris <rgm@gnu.org>
13123
13124 * files.el (locate-dominating-file, dir-locals-find-file):
13125 Undo 2012-03-06 change.
13126
13127 2012-03-07 Eli Zaretskii <eliz@gnu.org>
13128
13129 * international/quail.el (quail-help):
13130 Force bidi-paragraph-direction be left-to-right. See discussion in
13131 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
13132 for the reason.
13133
13134 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
13135
13136 Avoid superfluous registering of signals. (Bug#10807)
13137
13138 * notifications.el (notifications-on-action-object)
13139 (notifications-on-close-object): New defvars.
13140 (notifications-on-action-signal, notifications-on-closed-signal):
13141 Unregister the signal if not needed any longer.
13142 (notifications-notify): Register `notifications-action-signal' or
13143 `notifications-closed-signal', if :on-action or :on-close has been
13144 passed as argument.
13145
13146 2012-03-07 Chong Yidong <cyd@gnu.org>
13147
13148 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
13149 non-X platforms.
13150
13151 2012-03-06 Glenn Morris <rgm@gnu.org>
13152
13153 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13154 (x-disown-selection-internal, x-get-selection-internal):
13155 Doc fix (add arglist signatures). (Bug#10783)
13156
13157 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
13158
13159 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13160 Handle breakpoints with no "type".
13161
13162 2012-03-06 Glenn Morris <rgm@gnu.org>
13163
13164 * files.el (locate-dominating-file): Add optional predicate argument.
13165 (dir-locals-find-file): Make use of above change.
13166
13167 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
13168
13169 * info.el (Info-insert-dir): Also try "dir.gz".
13170
13171 2012-03-06 Glenn Morris <rgm@gnu.org>
13172
13173 * files.el (dir-locals-find-file):
13174 Ignore non-readable or non-regular files. (Bug#10928)
13175
13176 * files.el (locate-dominating-file): Doc fix.
13177
13178 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
13179
13180 * calendar/calendar.el (calendar-set-mode-line):
13181 `getenv' returns a string. (Bug#10951)
13182
13183 2012-03-05 Leo Liu <sdl.web@gmail.com>
13184
13185 * simple.el (backward-delete-char-untabify): Constrain point to
13186 field (Bug#10939).
13187
13188 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
13189
13190 2012-03-05 Chong Yidong <cyd@gnu.org>
13191
13192 * simple.el (count-words): If called from Lisp, return the word
13193 count, for symmetry with `count-lines'. Arglist changed.
13194 (count-words--message): Args changed. Consolidate counting code
13195 from count-words and count-words-region.
13196 (count-words-region): Caller changed.
13197 (count-lines-region): Make it an obsolete alias.
13198
13199 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
13200
13201 * saveplace.el (save-place-to-alist)
13202 (save-place-ignore-files-regexp): Allow value nil to disable this
13203 feature.
13204
13205 2012-03-04 Chong Yidong <cyd@gnu.org>
13206
13207 * faces.el (face-spec-reset-face): For the default face, reset the
13208 attributes to default values (Bug#10748).
13209
13210 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13211
13212 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
13213 previous patch: Check `message-send-mail-function', and not the
13214 default function (bug#10897).
13215
13216 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
13217
13218 * notifications.el (notifications-on-action-signal)
13219 (notifications-on-closed-signal): Check for unique service name of
13220 incoming event. Fix error in removing entry.
13221 (top): Register for signals with wildcard service name.
13222 (notifications-notify): Use daemon unique service name for map entries.
13223
13224 2012-03-04 Chong Yidong <cyd@gnu.org>
13225
13226 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
13227
13228 2012-03-04 Glenn Morris <rgm@gnu.org>
13229
13230 * abbrev.el (copy-abbrev-table, abbrev-table-p)
13231 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
13232 (expand-abbrev, define-abbrev-table): Doc fixes.
13233
13234 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13235
13236 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
13237 `message-default-send-mail-function' and not `send-mail-function'
13238 when doing the prompting for `sendmail-query-once' before sending
13239 in Message buffers (bug#10897).
13240
13241 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
13242 This is inconsistent with all the other stream functions, which leave
13243 the setting up to the higher levels (if so wanted) (bug#10931).
13244
13245 2012-03-02 Alan Mackenzie <acm@muc.de>
13246
13247 Depessimize the handling of very large macros.
13248
13249 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
13250 (c-macro-cache-syntactic): New variables to implement a one
13251 element macro cache.
13252 (c-invalidate-macro-cache): New function.
13253 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
13254 Adapt to use the new cache.
13255 (c-state-safe-place): Use better the cache of safe positions.
13256 (c-state-semi-nonlit-pos-cache)
13257 (c-state-semi-nonlit-pos-cache-limit):
13258 New variables for...
13259 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
13260 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
13261 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
13262 Use c-state-semi-safe-place.
13263
13264 * progmodes/cc-langs.el (c-get-state-before-change-functions):
13265 Add c-invalidate-macro-cache to the C, C++, Obj entries.
13266
13267 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
13268
13269 * jka-compr.el (jka-compr-call-process):
13270 Apply `file-accessible-directory-p' only when the default directory is
13271 not remote.
13272
13273 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
13274
13275 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
13276 access of FILE2, if FILE1 does not exist.
13277
13278 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
13279 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
13280
13281 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
13282 Add "PAGER=" to `process-environment'.
13283
13284 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
13285
13286 * progmodes/sql.el: Bug fix
13287 (sql-get-login-ext): Save login values in globals.
13288 (sql-get-login): Use new version of `sql-get-login-ext'.
13289 (sql-interactive-mode): Set global `sql-connection' to nil.
13290 (sql-connect): Set global values for connection.
13291 (sql-product-interactive): Save global values as buffer local.
13292
13293 2012-02-29 Leo Liu <sdl.web@gmail.com>
13294
13295 * abbrev.el (define-abbrevs): Reset sys to nil.
13296
13297 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13298
13299 * files.el (file-equal-p): Rename from `files-equal-p'.
13300 Return nil when one or both files don't exist.
13301 (file-subdir-of-p): Now only top directory must exists,
13302 return nil if it doesn't.
13303 (copy-directory): No need to test with `file-subdir-of-p' after
13304 creating dir.
13305 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
13306 to `file-equal-p'.
13307
13308 2012-02-28 Glenn Morris <rgm@gnu.org>
13309
13310 * shell.el (shell-mode):
13311 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
13312 * play/landmark.el (landmark-font-lock-face-O):
13313 * play/handwrite.el (handwrite):
13314 * play/gomoku.el (gomoku-O):
13315 * net/browse-url.el (browse-url-browser-display):
13316 * international/mule.el (define-charset):
13317 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
13318 * filesets.el (filesets-find-file-delay):
13319 * eshell/em-xtra.el (eshell-xtra):
13320 * eshell/em-unix.el (eshell-grep):
13321 * emulation/viper.el (viper-mode):
13322 * emacs-lisp/regexp-opt.el (regexp-opt-group):
13323 * emacs-lisp/easymenu.el (easy-menu-define):
13324 * calendar/timeclock.el (timeclock-use-display-time):
13325 * bs.el (bs-mode):
13326 * bookmark.el (bookmark-save-flag):
13327 Doc fix (standardize possessive apostrophe usage).
13328
13329 2012-02-27 Chong Yidong <cyd@gnu.org>
13330
13331 * emulation/viper-cmd.el (viper-intercept-ESC-key):
13332 Fix key-binding lookup for ESC key (Bug#9146).
13333
13334 * font-lock.el (font-lock-specified-p): Rename from
13335 font-lock-spec-present. Callers changed.
13336
13337 2012-02-27 Daniel Hackney <dan@haxney.org>
13338
13339 * emacs-lisp/package.el (package-compute-transaction):
13340 Handle holding a package version to t in package-load-list.
13341
13342 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
13343
13344 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
13345 (tramp-get-inode, tramp-get-device): Use cached values.
13346
13347 2012-02-26 Alan Mackenzie <acm@muc.de>
13348
13349 Check there is a font-lock specification before doing initial
13350 fontification.
13351
13352 * font-core.el (font-lock-mode): Move the conditional from
13353 :after-hook to font-lock-initial-fontify.
13354 (font-lock-default-function): Move the check for a specification
13355 to font-lock-spec-present.
13356
13357 * font-lock.el (font-lock-initial-fontify): Call ...
13358 (font-lock-spec-present): New function.
13359
13360 2012-02-26 Jim Blandy <jimb@red-bean.com>
13361
13362 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
13363 (gdb-send): Apply it to the operand of the '-interpreter-exec
13364 console' command, so that we can pass arguments with (say) quotes
13365 in them. Store exact string sent in gdb-debug-log (Bug#10765).
13366
13367 2012-02-26 Chong Yidong <cyd@gnu.org>
13368
13369 * help-fns.el (describe-function-1): Clarify description of
13370 remapping (Bug#10844).
13371
13372 * files.el (files-equal-p): Doc fix.
13373 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
13374 and quit the loop once a mismatch is found.
13375
13376 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
13377
13378 * bs.el (bs--show-with-configuration): Don't throw an error
13379 if the window cannot be split; otherwise, subsequent calls to
13380 bs-show fail, restoring a stale window config. (Bug#10882)
13381
13382 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
13383
13384 * term/ns-win.el (global-map): Bind ns-drag-file to
13385 ns-find-file (Bug#5855, Bug#10050).
13386
13387 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
13388
13389 * calendar/parse-time.el (parse-time-string): Allow extractor to
13390 return nil.
13391
13392 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
13393
13394 * net/tramp.el (tramp-file-name-for-operation):
13395 Add `files-equal-p' and `file-subdir-of-p'.
13396
13397 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
13398 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
13399 Add COPY-CONTENTS argument.
13400
13401 2012-02-25 Chong Yidong <cyd@gnu.org>
13402
13403 Add custom groups for VC backends, for consistency with vc-bzr.
13404
13405 * vc/vc-arch.el (vc-arch):
13406 * vc/vc-cvs.el (vc-cvs):
13407 * vc/vc-git.el (vc-git):
13408 * vc/vc-hg.el (vc-hg):
13409 * vc/vc-mtn.el (vc-mtn):
13410 * vc/vc-rcs.el (vc-rcs):
13411 * vc/vc-sccs.el (vc-sccs):
13412 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
13413 All relevant defcustoms reassigned.
13414
13415 2012-02-25 Chong Yidong <cyd@gnu.org>
13416
13417 * newcomment.el (comment-styles): Add autoload (Bug#10868).
13418
13419 * term/x-win.el (x-initialize-window-system): Reduce default for
13420 x-selection-timeout to 5 seconds (Bug#8869).
13421
13422 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13423
13424 * files.el (files-equal-p, file-subdir-of-p): New functions.
13425 (copy-directory): Error when trying to copy a directory on itself.
13426 Add missing copy-contents arg to tramp handler.
13427 * dired-aux.el (dired-copy-file-recursive): Same.
13428 (dired-create-files): Modify destination when source is equal to
13429 dest when copying files.
13430 Return also when dest is a subdir of source. (Bug#10489)
13431
13432 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
13433
13434 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
13435 (Bug#10874)
13436
13437 2012-02-23 Alan Mackenzie <acm@muc.de>
13438
13439 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
13440 parameter "after-hook:" to allow the expansion to run code after
13441 the execution of the mode hooks.
13442
13443 * font-lock.el (font-lock-initial-fontify): New function extracted
13444 from font-lock-mode-internal.
13445
13446 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
13447 :after-hook.
13448
13449 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13450
13451 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
13452 (completion--cache-all-sorted-completions): New function.
13453 (completion-all-sorted-completions): Use it.
13454 (completion--do-completion, minibuffer-force-complete):
13455 Use it to re-instate the flush hook.
13456
13457 * icomplete.el (icomplete-completions): Replace last fix with a better
13458 one (bug#10850).
13459
13460 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
13461
13462 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
13463 when it might call us back infinitely (bug#10797).
13464
13465 2012-02-23 Glenn Morris <rgm@gnu.org>
13466
13467 * minibuffer.el (completion-category-overrides): Doc fix.
13468
13469 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
13470
13471 * minibuffer.el (completion-table-with-context): Fix inf-loop.
13472 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
13473
13474 2012-02-23 Glenn Morris <rgm@gnu.org>
13475
13476 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
13477 (authors-obsolete-files-regexps, authors-ignored-files)
13478 (authors-ambiguous-files, authors-renamed-files-alist):
13479 Add more entries.
13480
13481 2012-02-23 Juri Linkov <juri@jurta.org>
13482
13483 * isearch.el (isearch-occur): Sync interactive spec with occur's
13484 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
13485
13486 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
13487
13488 2012-02-22 Juri Linkov <juri@jurta.org>
13489
13490 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
13491 (ucs-insert): Doc fix. Check for hex digits in the string.
13492 Don't display `nil' in the error message. (Bug#10857)
13493
13494 2012-02-22 Alan Mackenzie <acm@muc.de>
13495
13496 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
13497
13498 2012-02-22 Glenn Morris <rgm@gnu.org>
13499
13500 * ffap.el (ffap-c-path):
13501 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
13502
13503 2012-02-22 Chong Yidong <cyd@gnu.org>
13504
13505 * custom.el (load-theme): Doc fix.
13506
13507 2012-02-22 Glenn Morris <rgm@gnu.org>
13508
13509 * dired-x.el (dired-guess-shell-alist-default):
13510 Remove escape sequences from nroff output. (Bug#172)
13511
13512 2012-02-21 Glenn Morris <rgm@gnu.org>
13513
13514 * vc/emerge.el (emerge-defvar-local):
13515 Set `permanent-local' property rather than unused `preserved'.
13516
13517 * textmodes/picture.el (picture-delete-char): New alias.
13518 (picture-mode-map): Use it. (Bug#10860)
13519 (picture-mode): Doc fix.
13520
13521 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
13522
13523 * newcomment.el (uncomment-region-default): Remove unused binding.
13524
13525 2012-02-21 Glenn Morris <rgm@gnu.org>
13526
13527 * textmodes/picture.el (picture-motion, picture-motion-reverse)
13528 (picture-self-insert, picture-tab-chars): Doc fix.
13529 (picture-mode-map): Fix C-a, C-e.
13530
13531 2012-02-20 Glenn Morris <rgm@gnu.org>
13532
13533 * emacs-lisp/authors.el (authors-aliases): Add another entry.
13534
13535 2012-02-20 Leo Liu <sdl.web@gmail.com>
13536
13537 * icomplete.el (icomplete-completions): Check FROM arg before
13538 passing to substring (Bug#10850).
13539
13540 2012-02-19 Chong Yidong <cyd@gnu.org>
13541
13542 * comint.el: Require ansi-color.
13543 (comint-output-filter-functions): Add ansi-color-process-output.
13544
13545 * ansi-color.el: Don't set comint-output-filter-functions; it is
13546 now in the initial value defined in comint.el.
13547 (ansi-color-apply-face-function): New variable.
13548 (ansi-color-apply-on-region): Use it.
13549 (ansi-color-apply-overlay-face): New function.
13550
13551 * shell.el (shell): No need to require ansi-color.
13552 (shell-mode): Use ansi-color-apply-face-function to highlight
13553 color escapes using font-lock-face property (Bug#10835).
13554
13555 2012-02-19 Chong Yidong <cyd@gnu.org>
13556
13557 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
13558 mode-line formats (Bug#10839).
13559
13560 2012-02-18 Glenn Morris <rgm@gnu.org>
13561
13562 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
13563
13564 * mail/undigest.el (unforward-rmail-message): Doc fix.
13565
13566 * saveplace.el (save-place-ignore-files-regexp): Add :version.
13567
13568 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13569
13570 * international/characters.el (script-list): Sync with the latest
13571 Unicode Character Database.
13572
13573 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
13574
13575 * international/titdic-cnv.el: Remove duplicate coding tag.
13576 * language/cham.el: Likewise.
13577 * language/tai-viet.el: Likewise.
13578
13579 2012-02-18 Glenn Morris <rgm@gnu.org>
13580
13581 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
13582 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
13583 (calendar-bahai-all-holidays-flag, calendar-other-dates):
13584 * calendar/diary-lib.el (diary-abbreviated-year-flag):
13585 * calendar/holidays.el (holiday-bahai-holidays)
13586 (calendar-holidays, list-holidays):
13587 Use utf-8 Bahá'í in doc-strings, menus, etc.
13588
13589 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
13590
13591 * saveplace.el (save-place-ignore-files-regexp): New variable
13592 allowing for excluding files from saving their location of point.
13593 The default value matches the temporary commit message editing
13594 files from Git, SVN, Bazaar, and Mercurial.
13595 (save-place-to-alist): Use it.
13596
13597 2012-02-17 Lawrence Mitchell <wence@gmx.li>
13598 Stefan Monnier <monnier@iro.umontreal.ca>
13599
13600 * newcomment.el (uncomment-region-default): Don't leave extra space
13601 when an arg is provided (bug#8150).
13602
13603 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
13604
13605 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
13606
13607 2012-02-17 Glenn Morris <rgm@gnu.org>
13608
13609 * net/socks.el: Require network-stream. (Bug#10599)
13610
13611 2012-02-17 Kenichi Handa <handa@m17n.org>
13612
13613 * international/charprop.el:
13614 * international/uni-name.el:
13615 * international/uni-old-name.el:
13616 * international/uni-comment.el: Regenerate.
13617
13618 2012-02-16 Glenn Morris <rgm@gnu.org>
13619
13620 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
13621 Interactively in calendar buffer, give an error if not on a date.
13622
13623 2012-02-15 Glenn Morris <rgm@gnu.org>
13624
13625 * shell.el (shell-delimiter-argument-list):
13626 Revert 2011-02-17 change. (Bug#8027)
13627
13628 2012-02-15 Chong Yidong <cyd@gnu.org>
13629
13630 * minibuffer.el (completion-at-point-functions): Doc fix.
13631
13632 * custom.el (defcustom): Doc fix; note use of defvar.
13633
13634 2012-02-15 Glenn Morris <rgm@gnu.org>
13635
13636 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
13637 Doc fixes.
13638
13639 2012-02-14 Glenn Morris <rgm@gnu.org>
13640
13641 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
13642
13643 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
13644
13645 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
13646 way the ports list is computed.
13647 (smtpmail-query-smtp-server): Prompt the user for a port number if
13648 we can't connect to any of the standard ports (bug#10810).
13649
13650 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
13651
13652 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
13653
13654 2012-02-13 Glenn Morris <rgm@gnu.org>
13655
13656 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
13657
13658 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
13659
13660 * net/gnutls.el (gnutls-trustfiles): New variable.
13661 (gnutls-negotiate): Use it.
13662
13663 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13664
13665 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
13666 does its stuff if Gnus is running.
13667
13668 2012-02-13 Alan Mackenzie <acm@muc.de>
13669
13670 Fix a loop in c-set-fl-decl-start.
13671
13672 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
13673 c-backward-syntactic-ws actually moves backwards.
13674
13675 2012-02-13 Leo Liu <sdl.web@gmail.com>
13676
13677 * net/rcirc.el (rcirc-markup-attributes): Move point to the
13678 beginning so that all \C-o chars are removed.
13679
13680 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
13681
13682 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
13683
13684 2012-02-12 Alan Mackenzie <acm@muc.de>
13685
13686 Fix infinite loop with long macros.
13687 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
13688
13689 2012-02-12 Chong Yidong <cyd@gnu.org>
13690
13691 * window.el (display-buffer): Doc fix (Bug#10785).
13692
13693 2012-02-12 Glenn Morris <rgm@gnu.org>
13694
13695 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
13696 (x-disown-selection-internal, x-get-selection-internal):
13697 Sync docs with the xselect.c versions.
13698
13699 * allout-widgets.el: Add missing license notice.
13700
13701 2012-02-11 Glenn Morris <rgm@gnu.org>
13702
13703 * select.el (x-get-selection-internal, x-own-selection-internal)
13704 (x-disown-selection-internal):
13705 * x-dnd.el (x-get-selection-internal): Update declarations.
13706
13707 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
13708
13709 * window.el (window-sides-slots):
13710 * tool-bar.el (tool-bar-position):
13711 * term/xterm.el (xterm-extra-capabilities):
13712 * ses.el (ses-self-reference-early-detection):
13713 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
13714 (verilog-auto-wire-type)
13715 (verilog-auto-delete-trailing-whitespace)
13716 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
13717 (verilog-auto-tieoff-declaration):
13718 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
13719 (sql-oracle-statement-starters, sql-oracle-scan-on):
13720 * progmodes/prolog.el (prolog-align-comments-flag)
13721 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
13722 (prolog-left-indent-regexp, prolog-paren-indent-p)
13723 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
13724 (prolog-types, prolog-mode-specificators)
13725 (prolog-determinism-specificators, prolog-directives)
13726 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
13727 (prolog-electric-dot-flag)
13728 (prolog-electric-dot-full-predicate-template)
13729 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
13730 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
13731 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
13732 (prolog-program-switches, prolog-prompt-regexp)
13733 (prolog-debug-on-string, prolog-debug-off-string)
13734 (prolog-trace-on-string, prolog-trace-off-string)
13735 (prolog-zip-on-string, prolog-zip-off-string)
13736 (prolog-use-standard-consult-compile-method-flag)
13737 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
13738 (prolog-imenu-max-lines, prolog-info-predicate-index)
13739 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
13740 (prolog-char-quote-workaround):
13741 * progmodes/cc-vars.el (c-defun-tactic):
13742 * net/tramp.el (tramp-encoding-command-interactive)
13743 (tramp-local-end-of-line):
13744 * net/soap-client.el (soap-client):
13745 * net/netrc.el (netrc-file):
13746 * net/gnutls.el (gnutls):
13747 * minibuffer.el (completion-category-overrides)
13748 (completion-cycle-threshold)
13749 (completion-pcm-complete-word-inserts-delimiters):
13750 * man.el (Man-name-local-regexp):
13751 * mail/feedmail.el (feedmail-display-full-frame):
13752 * international/characters.el (glyphless-char-display-control):
13753 * eshell/em-ls.el (eshell-ls-date-format):
13754 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
13755 (lisp-lambda-list-keyword-parameter-indentation)
13756 (lisp-lambda-list-keyword-parameter-alignment):
13757 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
13758 * dired-x.el (dired-omit-verbose):
13759 * cus-theme.el (custom-theme-allow-multiple-selections):
13760 * calc/calc.el (calc-highlight-selections-with-faces)
13761 (calc-lu-field-reference, calc-lu-power-reference)
13762 (calc-note-threshold):
13763 * battery.el (battery-mode-line-limit):
13764 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
13765 (archive-7z-update):
13766 * allout.el (allout-prefixed-keybindings)
13767 (allout-unprefixed-keybindings)
13768 (allout-inhibit-auto-fill-on-headline)
13769 (allout-flattened-numbering-abbreviation):
13770 * allout-widgets.el (allout-widgets-auto-activation)
13771 (allout-widgets-icons-dark-subdir)
13772 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
13773 (allout-widgets-theme-dark-background)
13774 (allout-widgets-theme-light-background)
13775 (allout-widgets-item-image-properties-emacs)
13776 (allout-widgets-item-image-properties-xemacs)
13777 (allout-widgets-run-unit-tests-on-load)
13778 (allout-widgets-time-decoration-activity)
13779 (allout-widgets-hook-error-post-time)
13780 (allout-widgets-track-decoration):
13781 Add missing :version tags to new defcustoms and defgroups.
13782
13783 * progmodes/sql.el (sql-ansi-statement-starters)
13784 (sql-oracle-statement-starters): Add custom type.
13785
13786 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
13787 (prolog-system-version): Give it a type.
13788
13789 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13790
13791 * term/pc-win.el (x-select-text, x-selection-owner-p)
13792 (x-own-selection-internal, x-disown-selection-internal)
13793 (x-get-selection-internal): Sync doc strings and argument lists
13794 with xselect.c, common-win.el and x-win.el. (Bug#10783)
13795
13796 2012-02-11 Leo Liu <sdl.web@gmail.com>
13797
13798 * progmodes/python.el (python-end-of-statement): Fix infinite
13799 loop. (Bug#10788)
13800
13801 2012-02-10 Glenn Morris <rgm@gnu.org>
13802
13803 * international/mule-cmds.el (unify-8859-on-encoding-mode)
13804 (unify-8859-on-decoding-mode): Properly mark as obsolete.
13805
13806 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
13807
13808 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
13809 about SMTP before checking the From header.
13810
13811 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
13812 into own function for reuse by emacsbug.el.
13813
13814 2012-02-10 Leo Liu <sdl.web@gmail.com>
13815
13816 * subr.el (condition-case-unless-debug): Rename from
13817 condition-case-no-debug. All callers changed.
13818 (with-demoted-errors): Fix caller.
13819
13820 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
13821 * nxml/rng-valid.el (rng-do-some-validation):
13822 * emacs-lisp/package.el (package-refresh-contents)
13823 (package-menu-execute):
13824 * desktop.el (desktop-create-buffer):
13825 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
13826
13827 2012-02-10 Glenn Morris <rgm@gnu.org>
13828
13829 * textmodes/bibtex.el:
13830 Add missing :version tags for new/changed defcustoms.
13831
13832 * files.el (remote-file-name-inhibit-cache): Doc fixes.
13833
13834 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
13835
13836 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
13837 (smtpmail-via-smtp): Use it, or fall back on the From address.
13838 (smtpmail-send-it): Ditto.
13839
13840 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
13841
13842 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
13843 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
13844 (byte-compile-tmp-var): New const.
13845 (byte-compile-defvar): Use it to minimize .elc size.
13846 Just use `defvar' rather than simulate it (bug#10761).
13847
13848 2012-02-09 Glenn Morris <rgm@gnu.org>
13849
13850 * files.el (rename-uniquely): Doc fix. (Bug#3806)
13851
13852 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
13853 Add :version tags.
13854
13855 * progmodes/compile.el (compilation-error-screen-columns)
13856 (compilation-first-column, compilation-filter-start): Doc fixes.
13857
13858 * vc/log-view.el (log-view-toggle-entry-display):
13859 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
13860
13861 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
13862 (report-emacs-bug-can-use-xdg-email):
13863 (report-emacs-bug-insert-to-mailer): Doc fixes.
13864 (report-emacs-bug): Message fix.
13865
13866 * net/browse-url.el (browse-url-can-use-xdg-open)
13867 (browse-url-xdg-open): Doc fixes.
13868
13869 * electric.el (electric-indent-mode, electric-pair-mode)
13870 (electric-layout-rules, electric-layout-mode): Doc fixes.
13871 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
13872
13873 2012-02-08 Martin Rudalics <rudalics@gmx.at>
13874
13875 * server.el (server-unselect-display): Don't inadvertently kill
13876 the current buffer. (Bug#10729)
13877
13878 2012-02-08 Glenn Morris <rgm@gnu.org>
13879
13880 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
13881 (sql-list-table): Doc fixes.
13882
13883 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
13884 Comment out (does nothing).
13885
13886 * completion.el (dynamic-completion-mode):
13887 * dirtrack.el (dirtrack-debug-mode):
13888 * electric.el (electric-layout-mode):
13889 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
13890 * face-remap.el (text-scale-mode, buffer-face-mode):
13891 * iimage.el (iimage-mode):
13892 * image-mode.el (image-transform-mode):
13893 * minibuffer.el (completion-in-region-mode):
13894 * scroll-lock.el (scroll-lock-mode):
13895 * simple.el (next-error-follow-minor-mode):
13896 * tar-mode.el (tar-subfile-mode):
13897 * tooltip.el (tooltip-mode):
13898 * vcursor.el (vcursor-use-vcursor-map):
13899 * wid-browse.el (widget-minor-mode):
13900 * emulation/tpu-edt.el (tpu-edt-mode):
13901 * emulation/tpu-extras.el (tpu-cursor-free-mode):
13902 * international/iso-ascii.el (iso-ascii-mode):
13903 * language/thai-util.el (thai-word-mode):
13904 * mail/supercite.el (sc-minor-mode):
13905 * net/goto-addr.el (goto-address-mode):
13906 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
13907 * progmodes/cwarn.el (cwarn-mode):
13908 * progmodes/flymake.el (flymake-mode):
13909 * progmodes/glasses.el (glasses-mode):
13910 * progmodes/hideshow.el (hs-minor-mode):
13911 * progmodes/pascal.el (pascal-outline-mode):
13912 * textmodes/enriched.el (enriched-mode):
13913 * vc/smerge-mode.el (smerge-mode):
13914 Doc fixes (minor mode argument).
13915
13916 2012-02-07 Eli Zaretskii <eliz@gnu.org>
13917
13918 * ls-lisp.el (ls-lisp-sanitize): New function.
13919 (ls-lisp-insert-directory): Use it to fix or remove any elements
13920 in file-alist with missing attributes. (Bug#4673)
13921
13922 2012-02-07 Alan Mackenzie <acm@muc.de>
13923
13924 Fix spurious recognition of c-in-knr-argdecl.
13925
13926 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
13927 putative K&R region.
13928
13929 2012-02-07 Alan Mackenzie <acm@muc.de>
13930
13931 * progmodes/cc-engine.el (c-forward-objc-directive):
13932 Prevent looping in "#pragma mark @implementation".
13933
13934 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
13935
13936 * notifications.el (notifications-on-closed-signal): Make `reason'
13937 optional. (Bug#10744)
13938
13939 2012-02-07 Glenn Morris <rgm@gnu.org>
13940
13941 * emacs-lisp/easy-mmode.el (define-minor-mode):
13942 Doc fixes for the macro and the mode it defines.
13943
13944 * image.el (imagemagick-types-inhibit): Doc fix.
13945
13946 * cus-start.el (imagemagick-render-type): Add it.
13947
13948 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
13949
13950 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
13951 Set the default at load time, too, so that `font-lock-fontify-buffer'
13952 can be called without setting up the entire mode first. This fixes
13953 a bug in `mm-inline-text' with C MIME parts.
13954
13955 2012-02-06 Chong Yidong <cyd@gnu.org>
13956
13957 * simple.el (list-processes--refresh): Delete exited processes
13958 (Bug#8094).
13959
13960 * comint.el (comint-next-prompt): next-single-char-property-change
13961 and prev-single-char-property-change never return nil (Bug#8657).
13962
13963 * custom.el (defcustom): Doc fix (Bug#9711).
13964
13965 2012-02-05 Chong Yidong <cyd@gnu.org>
13966
13967 * cus-edit.el (custom-variable-reset-backup): Quote the value
13968 before storing it in the customized-value property (Bug#6712).
13969 (custom-display): Add a customization type tag.
13970 (custom-buffer-create-internal): Improve tooltip message.
13971
13972 * wid-edit.el (widget-field-value-get): New optional arg to
13973 suppress trailing whitespace truncation.
13974 (character): Use it (Bug#2689).
13975
13976 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
13977
13978 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
13979 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
13980
13981 2012-02-05 Chong Yidong <cyd@gnu.org>
13982
13983 * cus-edit.el (custom-variable-value-create): For mismatched
13984 types, show the current value (Bug#7600).
13985
13986 * custom.el (defcustom): Doc fix.
13987
13988 2012-02-05 Glenn Morris <rgm@gnu.org>
13989
13990 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
13991
13992 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
13993
13994 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
13995 (pp-buffer): Use `ignore-errors', `looking-at-p'.
13996 (pp-last-sexp): Use `looking-at-p'.
13997
13998 2012-02-04 Glenn Morris <rgm@gnu.org>
13999
14000 * files.el (revert-buffer):
14001 Doc fix (mention revert-buffer-in-progress-p).
14002
14003 * emacs-lisp/ert-x.el (ert-simulate-command):
14004 Check deferred-action-list (which is obsolete) is bound.
14005
14006 * subr.el (with-wrapper-hook): Doc fixes.
14007
14008 * simple.el (filter-buffer-substring-functions)
14009 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
14010
14011 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
14012
14013 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
14014 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
14015
14016 2012-02-04 Leo Liu <sdl.web@gmail.com>
14017
14018 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
14019
14020 2012-02-04 Glenn Morris <rgm@gnu.org>
14021
14022 * image.el (image-extension-data): Add obsolete alias.
14023
14024 * isearch.el (isearch-update): Doc fix.
14025
14026 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
14027
14028 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
14029
14030 2012-02-03 Glenn Morris <rgm@gnu.org>
14031
14032 * image.el (image-animated-p): Doc fix. Use image-animated-types.
14033 (image-animate-timeout): Doc fix.
14034
14035 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
14036
14037 2012-02-02 Glenn Morris <rgm@gnu.org>
14038
14039 * server.el (server-auth-dir): Doc fix.
14040 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
14041
14042 * subr.el (run-mode-hooks): Doc fix.
14043
14044 2012-02-02 Juri Linkov <juri@jurta.org>
14045
14046 * image-mode.el (image-toggle-display-image): Remove tautological
14047 `major-mode' from the `derived-mode-p' test.
14048
14049 2012-02-02 Kenichi Handa <handa@m17n.org>
14050
14051 * composite.el (compose-region): Cancel previous change.
14052
14053 2012-02-02 Kenichi Handa <handa@m17n.org>
14054
14055 * composite.el (compose-region, compose-string): Signal error for
14056 a null string component (Bug#6988).
14057
14058 2012-02-01 Chong Yidong <cyd@gnu.org>
14059
14060 * view.el (view-buffer-other-window, view-buffer-other-frame):
14061 Handle special modes like view-buffer (Bug#10650).
14062 (view-buffer): Simplify.
14063
14064 * frame.el (set-frame-font): Tweak meaning of third argument.
14065
14066 * dynamic-setting.el (font-setting-change-default-font):
14067 Use set-frame-font (Bug#9982).
14068
14069 2012-02-01 Glenn Morris <rgm@gnu.org>
14070
14071 * progmodes/compile.el (compilation-internal-error-properties):
14072 Respect compilation-first-column in the "*compilation*" buffer.
14073
14074 * emacs-lisp/easy-mmode.el (define-minor-mode):
14075 Relax :variable's test for a named function.
14076
14077 2012-01-31 Alan Mackenzie <acm@muc.de>
14078
14079 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
14080 off by one error.
14081
14082 2012-01-31 Chong Yidong <cyd@gnu.org>
14083
14084 * frame.el (set-frame-font): New arg ALL-FRAMES.
14085
14086 * menu-bar.el (menu-set-font): Use set-frame-font.
14087
14088 * faces.el (face-spec-reset-face): Don't apply unspecified
14089 attribute values to the default face.
14090
14091 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
14092
14093 * progmodes/cwarn.el (cwarn): Remove dead link.
14094 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
14095 Remove * from defcustom docstrings.
14096 (turn-on-cwarn-mode): Make obsolete.
14097 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
14098 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
14099
14100 2012-01-31 Glenn Morris <rgm@gnu.org>
14101
14102 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
14103 Fix :variable handling of mode a symbol not equal to modefun.
14104 Allow named functions to be used as the cdr of :variable.
14105
14106 2012-01-30 Glenn Morris <rgm@gnu.org>
14107
14108 * emacs-lisp/authors.el (authors-fixed-entries):
14109 Remove reference to deleted file rnewspost.el.
14110
14111 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
14112
14113 * window.el (window-with-parameter): Remove unused variable `windows'.
14114 (window--side-check): Remove unused variable `code'.
14115 (window--resize-siblings): Remove unused variable `first'.
14116 (adjust-window-trailing-edge): Remove unused variable `failed'.
14117 (window-deletable-p, window--delete): Remove unused variable `buffer'.
14118 Use `let', not `let*'.
14119 (balance-windows-2): Remove unused variable `found'.
14120 (window--state-put-2): Remove unused variable `splits'.
14121 (window-state-put): Remove unused variable `selected'.
14122 (same-window-p): Use `string-match-p'.
14123 (display-buffer-assq-regexp): Remove unused variable `value'.
14124 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14125 Mark argument ALIST as ignored.
14126 (pop-to-buffer): Remove unused variable `old-window'.
14127
14128 2012-01-29 Eli Zaretskii <eliz@gnu.org>
14129
14130 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
14131 and .lzma compressed files.
14132
14133 2012-01-29 Chong Yidong <cyd@gnu.org>
14134
14135 * frame.el (window-system-default-frame-alist): Doc fix.
14136
14137 * dynamic-setting.el (font-setting-change-default-font): Don't
14138 change the default face if SET-FONT argument is non-nil (Bug#9982).
14139
14140 2012-01-29 Samuel Bronson <naesten@gmail.com>
14141
14142 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
14143
14144 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
14145
14146 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
14147 breakpoints in files outside current directory (Bug#6098).
14148
14149 2012-01-29 Chong Yidong <cyd@gnu.org>
14150
14151 * progmodes/python.el: Require ansi-color at top-level.
14152
14153 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
14154 Define and use in Emacs Lisp mode (Bug#9360).
14155 (lisp-mode-abbrev-table): Add doc.
14156 (lisp-mode-variables): Don't set local-abbrev-table.
14157 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
14158
14159 2012-01-28 Roland Winkler <winkler@gnu.org>
14160
14161 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
14162
14163 2012-01-28 Roland Winkler <winkler@gnu.org>
14164
14165 * textmodes/bibtex.el (bibtex-entry-alist): New function.
14166 (bibtex-set-dialect): Use it. Either set global values of
14167 dialect-dependent variables or bind these variables buffer-locally
14168 (Bug#10254).
14169 (bibtex-mode): Call bibtex-set-dialect via
14170 hack-local-variables-hook.
14171 (bibtex-dialect): Update docstring.
14172 Add safe-local-variable predicate.
14173 (bibtex-entry-alist, bibtex-field-alist): Initialize via
14174 bibtex-set-dialect.
14175 (bibtex-mode-map): Define menu for each dialect.
14176 (bibtex-entry): Fix docstring.
14177
14178 2012-01-28 Chong Yidong <cyd@gnu.org>
14179
14180 * eshell/esh-arg.el (eshell-quote-argument): New function.
14181
14182 * eshell/esh-ext.el (eshell-invoke-batch-file):
14183 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
14184 first arg to eshell-parse-command (Bug#10523).
14185
14186 2012-01-28 Drew Adams <drew.adams@oracle.com>
14187
14188 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
14189 `default-directory' is non-nil.
14190
14191 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14192
14193 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
14194 line that displays system-configuration-options. (Bug#9924)
14195
14196 2012-01-28 Drew Adams <drew.adams@oracle.com>
14197
14198 * descr-text.el (describe-char): Show information about POS, in
14199 addition to information about the character at POS. Improve and
14200 update the doc string. Change "code point" to "code point in
14201 charset", to avoid confusion with the character's Unicode code
14202 point shown above that. (Bug#10129)
14203
14204 2012-01-28 Eli Zaretskii <eliz@gnu.org>
14205
14206 * descr-text.el (describe-char): Show the raw character, not only
14207 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
14208 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
14209 for the reasons.
14210
14211 2012-01-28 Phil Hagelberg <phil@hagelb.org>
14212
14213 * emacs-lisp/package.el (package-install):
14214 Run package-refresh-contents if there is no archive yet (Bug#9798).
14215
14216 2012-01-28 Chong Yidong <cyd@gnu.org>
14217
14218 * emacs-lisp/package.el (package-maybe-load-descriptor):
14219 New function, split from package-maybe-load-descriptor.
14220 (package-maybe-load-descriptor): Use it.
14221 (package-download-transaction): Fully load required packages
14222 inside the loop, so that `require' calls work (Bug#10593).
14223 (package-install): No need to call package-initialize now.
14224
14225 2012-01-28 Chong Yidong <cyd@gnu.org>
14226
14227 * simple.el (deactivate-mark): Doc fix (Bug#8614).
14228
14229 * tooltip.el (tooltip-mode): Doc fix.
14230 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
14231
14232 * frame.el (set-cursor-color): Doc fix (Bug#352).
14233
14234 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
14235 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
14236
14237 * cus-edit.el (custom-buffer-create-internal): Fix search button
14238 action (Bug#10542).
14239 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
14240
14241 2012-01-27 Eduard Wiebe <usenet@pusto.de>
14242
14243 * dired.el (dired-mark-files-regexp):
14244 Include any subdirectory components. (Bug#10445)
14245
14246 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
14247
14248 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
14249 Handle [host]:port syntax. (Bug#10533)
14250
14251 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
14252
14253 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
14254
14255 2012-01-26 Glenn Morris <rgm@gnu.org>
14256
14257 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
14258 * term.el (term-raw-escape-map): Use Control-X-prefix.
14259 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
14260
14261 2012-01-25 Martin Rudalics <rudalics@gmx.at>
14262
14263 * window.el (window-state-get, window--state-get-1): Don't deal
14264 with fixed-sizeness of windows. Simplify code.
14265
14266 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
14267
14268 * window.el (window--state-get-1, window--state-put-2):
14269 Don't save and restore the mark.
14270
14271 2012-01-25 Chong Yidong <cyd@gnu.org>
14272
14273 * custom.el (custom-variable-p): Doc fix.
14274
14275 2012-01-25 Glenn Morris <rgm@gnu.org>
14276
14277 * dired.el (dired-goto-file): Handle some of the more common
14278 characters that `ls -b' escapes. (Bug#10596)
14279
14280 * progmodes/compile.el (compilation-next-error-function):
14281 Respect compilation-first-column in the "*compilation*" buffer.
14282 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
14283
14284 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
14285
14286 2012-01-24 Glenn Morris <rgm@gnu.org>
14287
14288 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
14289
14290 2012-01-24 Julien Danjou <julien@danjou.info>
14291
14292 * color.el (color-rgb-to-hsl): Fix value computing.
14293 (color-hue-to-rgb): New function.
14294 (color-hsl-to-rgb): New function.
14295 (color-clamp, color-saturate-hsl, color-saturate-name)
14296 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
14297 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
14298
14299 2012-01-24 Glenn Morris <rgm@gnu.org>
14300
14301 * vc/vc-rcs.el (vc-rcs-create-tag):
14302 * vc/vc-sccs.el (vc-sccs-create-tag):
14303 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
14304
14305 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
14306
14307 * eshell/esh-util.el (eshell-read-hosts-file):
14308 Skip comment lines. (Bug#10549)
14309
14310 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
14311
14312 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
14313
14314 * subr.el (display-delayed-warnings): Doc fix.
14315 (collapse-delayed-warnings): New function to collapse identical
14316 adjacent warnings.
14317 (delayed-warnings-hook): Add it.
14318
14319 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
14320
14321 * net/tramp.el (tramp-action-login): Set connection property "login-as".
14322
14323 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
14324 (tramp-default-user-alist): Don't add "pscp".
14325 (tramp-do-copy-or-rename-file-out-of-band): Use connection
14326 property "login-as", if set. (Bug#10530)
14327
14328 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
14329
14330 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
14331 "plink1" and "psftp". (Bug#10530)
14332
14333 2012-01-21 Kenichi Handa <handa@m17n.org>
14334
14335 * international/mule-cmds.el (prefer-coding-system): Show a
14336 warning message if the default value of file-name-coding-system
14337 was not changed.
14338
14339 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14340
14341 * windmove.el (windmove-reference-loc):
14342 Fix windmove-reference-loc miscalculation.
14343
14344 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
14345
14346 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
14347 default unit.
14348
14349 2012-01-21 Glenn Morris <rgm@gnu.org>
14350
14351 * international/mule.el (auto-coding-alist): Add .tbz.
14352
14353 * files.el (local-enable-local-variables): Doc fix.
14354 (inhibit-local-variables-regexps): Rename from
14355 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
14356 Doc fix. Add some extensions from auto-coding-alist.
14357 (inhibit-local-variables-suffixes):
14358 Rename from inhibit-first-line-modes-suffixes. Doc fix.
14359 (inhibit-local-variables-p):
14360 New function, extracted from set-auto-mode-1.
14361 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
14362 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
14363 (hack-local-variables): Doc fix. Make the mode-only case
14364 respect enable-local-variables and friends.
14365 Respect inhibit-local-variables-regexps for file-locals, but
14366 not for directory-locals.
14367 (set-visited-file-name):
14368 Take account of inhibit-local-variables-regexps.
14369 Whether it applies may change as the file name is changed.
14370 * jka-cmpr-hook.el (jka-compr-install):
14371 * jka-compr.el (jka-compr-uninstall):
14372 Update for inhibit-first-line-modes-suffixes name change.
14373
14374 2012-01-20 Martin Rudalics <rudalics@gmx.at>
14375
14376 * help-macro.el (make-help-screen): Temporarily restore original
14377 binding for minor-mode-map-alist (Bug#10454).
14378
14379 2012-01-19 Julien Danjou <julien@danjou.info>
14380
14381 * color.el (color-name-to-rgb): Use the white color to find the max
14382 color component value and return correctly computed values.
14383 (color-name-to-rgb): Add missing float conversion for max value.
14384
14385 2012-01-19 Martin Rudalics <rudalics@gmx.at>
14386
14387 * window.el (window--state-get-1, window-state-get): Do not use
14388 special state value for window-persistent-parameters.
14389 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
14390 (window--state-put-2): Reset all window parameters to nil before
14391 assigning values of persistent parameters.
14392
14393 2012-01-18 Alan Mackenzie <acm@muc.de>
14394
14395 Eliminate sluggishness and hangs in fontification of "semicolon
14396 deserts".
14397
14398 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
14399 Change value 10000 -> 3000.
14400 (c-state-safe-place): Reformulate so it doesn't stack up an
14401 infinite number of wrong entries in c-state-nonlit-pos-cache.
14402 (c-determine-limit-get-base, c-determine-limit): New functions to
14403 determine backward search limits disregarding literals.
14404 (c-find-decl-spots): Amend commenting.
14405 (c-cheap-inside-bracelist-p): New function which detects "={".
14406
14407 * progmodes/cc-fonts.el
14408 (c-make-font-lock-BO-decl-search-function): Give a limit to a
14409 backward search.
14410 (c-font-lock-declarations): Fix an occurrence of point being
14411 undefined. Check additionally for point being in a bracelist or
14412 near a macro invocation without a semicolon so as to avoid a
14413 fruitless time consuming search for a declarator. Give a more
14414 precise search limit for declarators using the new
14415 c-determine-limit.
14416
14417 2012-01-18 Glenn Morris <rgm@gnu.org>
14418
14419 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
14420 (set-auto-mode): Doc fixes.
14421
14422 2012-01-17 Glenn Morris <rgm@gnu.org>
14423
14424 * isearch.el (search-nonincremental-instead): Fix doc typo.
14425
14426 * dired.el (dired-insert-directory): Handle newlines in directory name.
14427 (dired-build-subdir-alist): Unescape newlines in directory name.
14428
14429 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
14430
14431 * net/tramp.el (tramp-local-end-of-line): New defcustom.
14432 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
14433 (tramp-action-terminal): Use it. (Bug#10530)
14434
14435 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
14436
14437 * minibuffer.el (completion--replace): Strip properties (bug#10062).
14438
14439 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14440
14441 * window.el (window-state-ignored-parameters): Remove variable.
14442 (window--state-get-1): Rename argument MARKERS to IGNORE.
14443 Handle persistent window parameters. Make copy of clone-of
14444 parameter only if requested. (Bug#10348)
14445 (window--state-put-2): Install a window parameter only if it has
14446 a non-nil value or an existing parameter shall be overwritten.
14447
14448 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
14449
14450 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
14451
14452 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14453
14454 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
14455 don't pass the (nil) value of `upnode' to string-match.
14456
14457 2012-01-14 Chong Yidong <cyd@gnu.org>
14458
14459 * startup.el (command-line): Fix X resource class for cursorColor.
14460 Fix values recognized by the cursorBlink resource.
14461
14462 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
14463
14464 * epg.el (epg--make-temp-file): Avoid permission race condition
14465 when running on old Emacs versions (bug#10403).
14466
14467 2012-01-14 Glenn Morris <rgm@gnu.org>
14468
14469 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
14470
14471 2012-01-13 Alan Mackenzie <acm@muc.de>
14472
14473 Fix filling for when filladapt mode is enabled.
14474
14475 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
14476 c-mask-paragraph, pass in `fill-paragraph' rather than
14477 `fill-region-as-paragraph'. (This is a reversion of a previous
14478 change.)
14479 * progmodes/cc-mode.el (c-basic-common-init):
14480 Make fill-paragraph-handle-comment buffer local and set it to nil.
14481
14482 2012-01-13 Glenn Morris <rgm@gnu.org>
14483
14484 * dired.el (dired-switches-escape-p): New function.
14485 (dired-insert-directory): Use dired-switches-escape-p.
14486 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
14487
14488 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
14489
14490 2012-01-12 Glenn Morris <rgm@gnu.org>
14491
14492 * mail/sendmail.el (mail-mode): Update paragraph-separate for
14493 changes in adaptive-fill-regexp. (Bug#10276)
14494
14495 2012-01-11 Alan Mackenzie <acm@muc.de>
14496
14497 Fix Emacs bug #10463 - put `widen's around the critical spots.
14498
14499 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
14500 widen around each invocation of c-state-pp-to-literal. Remove an
14501 unused let variable.
14502
14503 2012-01-11 Glenn Morris <rgm@gnu.org>
14504
14505 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
14506 Doc fix.
14507
14508 2012-01-10 Chong Yidong <cyd@gnu.org>
14509
14510 * net/network-stream.el (network-stream-open-starttls):
14511 Avoid emitting a confusing error message when the server gives a bad
14512 response to the capability command.
14513
14514 2012-01-10 Glenn Morris <rgm@gnu.org>
14515
14516 * mail/unrmail.el (unrmail): Tweak previous change.
14517
14518 2012-01-09 Chong Yidong <cyd@gnu.org>
14519
14520 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
14521
14522 2012-01-08 Alan Mackenzie <acm@muc.de>
14523
14524 Optimize font locking in long enum definitions.
14525
14526 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
14527 arm to a cond form to handle enums.
14528 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
14529 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
14530
14531 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14532
14533 * files.el (move-file-to-trash): Preserve default file modes on error.
14534 (Bug#10401)
14535
14536 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
14537
14538 * faces.el (set-face-attribute): Clarify the meaning of the nil
14539 frame (bug#10294).
14540
14541 * subr.el (with-selected-frame): Mention that the selected frame
14542 is restored (bug#9980).
14543
14544 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
14545 (bug#9759).
14546
14547 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
14548 (password-read): Don't autoload unused function.
14549
14550 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
14551
14552 * progmodes/which-func.el (which-func-mode): Turn into a
14553 non-interactive function and mark as obsolete (bug#10428).
14554
14555 2012-01-06 Chong Yidong <cyd@gnu.org>
14556
14557 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
14558 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
14559 functions, along with 1 and -1.
14560
14561 2012-01-06 Eli Zaretskii <eliz@gnu.org>
14562
14563 * time.el (display-time-load-average)
14564 (display-time-default-load-average): Doc fixes. See the thread
14565 starting at
14566 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
14567 for the details.
14568
14569 2012-01-06 Glenn Morris <rgm@gnu.org>
14570
14571 * mail/unrmail.el (unrmail): Give an explicit error if the input file
14572 has no messages. (Bug#10377)
14573
14574 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
14575 than Info-edit. (Bug#10385)
14576
14577 * time.el (display-time-load-average, display-time-next-load-average):
14578 Doc fixes.
14579
14580 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
14581 local setting of buffer-read-only to the input buffer. (Bug#10419)
14582
14583 * calendar/calendar.el (calendar-mode):
14584 Locally set scroll-margin to 0. (Bug#10379)
14585
14586 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
14587
14588 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
14589
14590 2012-01-05 Glenn Morris <rgm@gnu.org>
14591
14592 * eshell/em-unix.el (diff-no-select): Autoload it.
14593 (eshell/diff): Use diff-no-select. (Bug#10420)
14594
14595 2012-01-05 Chong Yidong <cyd@gnu.org>
14596
14597 * shell.el (shell-dynamic-complete-functions): Revert last change.
14598 (shell-command-completion-function): New function.
14599 (shell-completion-vars): Use it to implement
14600 shell-completion-execonly (Bug#10417).
14601
14602 * custom.el (enable-theme): Don't set custom-safe-themes.
14603
14604 * cus-theme.el (custom-theme-merge-theme):
14605 Ignore custom-enabled-themes and custom-safe-themes.
14606
14607 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
14608
14609 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
14610 first prompt in `sql-interacive-mode'.
14611 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
14612 keywords.
14613 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
14614 (sql-product-interactive): Bug fix: Set `sql-buffer' in
14615 context of original buffer. Invoke `sql-login-hook'.
14616
14617 2012-01-04 Eli Zaretskii <eliz@gnu.org>
14618
14619 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
14620 letters in cite-prefix.
14621
14622 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14623
14624 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
14625
14626 2012-01-03 Chong Yidong <cyd@gnu.org>
14627
14628 * shell.el (shell-dynamic-complete-functions):
14629 Put pcomplete-completions-at-point, so as to try
14630 comint-filename-completion first (Bug#10417).
14631
14632 2012-01-02 Richard Stallman <rms@gnu.org>
14633
14634 * battery.el (battery-status-function):
14635 Detect when to use battery-yeeloong-sysfs.
14636 (battery-echo-area-format): Add string for Yeeloong.
14637 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
14638 (battery-yeeloong-sysfs): New function.
14639
14640 2012-01-02 Chong Yidong <cyd@gnu.org>
14641
14642 * dirtrack.el (dirtrack-list): Eliminate unused third element.
14643 (dirtrack): Merge code for handling relative filenames in prompt
14644 from shell-dir-cookie-watcher.
14645 (dirtrack-debug-message): New arg to avoid excess format calls.
14646
14647 * shell.el (shell-dir-cookie-re): Variable deleted.
14648 (shell-dir-cookie-watcher): Function deleted.
14649 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
14650 with dirtrack-mode.
14651
14652 2012-01-01 Eli Zaretskii <eliz@gnu.org>
14653
14654 * term/w32-win.el (dynamic-library-alist) <gnutls>:
14655 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
14656 libgnutls-26.dll.
14657
14658 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
14659
14660 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
14661
14662 2011-12-31 Eli Zaretskii <eliz@gnu.org>
14663
14664 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
14665 headers of non-MIME messages, when rmail-enable-mime is non-nil.
14666
14667 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
14668
14669 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
14670 also for alternative shells.
14671 (tramp-open-connection-setup-interactive-shell): Check, whether
14672 the shell is a busybox.
14673 (tramp-send-command): Don't suppress multiple prompts for
14674 busyboxes, it hurts.
14675
14676 2011-12-28 Chong Yidong <cyd@gnu.org>
14677
14678 * progmodes/gdb-mi.el (gdb-get-source-file-list)
14679 (gdb-get-source-file): Move mode line update to
14680 gdb-get-source-file (Bug#10087).
14681
14682 2011-12-25 Chong Yidong <cyd@gnu.org>
14683
14684 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
14685 gud-gdb-marker-filter without taking it as an argument.
14686 (gud-gdb-run-command-fetch-lines): Caller changed.
14687 (gud-gdb-completion-function): New variable.
14688 (gud-gdb-completion-at-point): Use it.
14689 (gud-gdb-completions-1): Split from gud-gdb-completions.
14690
14691 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
14692 function as separate arguments.
14693 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
14694 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
14695 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
14696 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
14697 (gdb-stopped, def-gdb-auto-update-trigger)
14698 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
14699 (gdb-get-changed-registers, gdb-get-main-selected-frame):
14700 Callers changed.
14701 (gud-gdbmi-completions): New function.
14702 (gdb): Use it for generating the completion table.
14703
14704 2011-12-24 Alan Mackenzie <acm@muc.de>
14705
14706 Introduce a mechanism to widen the region used in context font
14707 locking. Use this to protect declarations from losing their contexts.
14708
14709 * progmodes/cc-langs.el (c-before-font-lock-functions):
14710 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
14711 (c-before-context-fontification-functions): New defvar, a list of
14712 functions to be run just before context (etc.) font locking.
14713
14714 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
14715 New, functionality extracted from
14716 c-neutralize-syntax-in-and-mark-CPP.
14717 (c-in-after-change-fontification): New variable.
14718 (c-after-change): Set c-in-after-change-fontification.
14719 (c-set-fl-decl-start): Rejig its interface, so it can be called
14720 from both after-change and context fontifying.
14721 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
14722 New functions.
14723 (c-standard-font-lock-fontify-region-function): New variable.
14724 (c-font-lock-fontify-region): New function.
14725
14726 2011-12-24 Juri Linkov <juri@jurta.org>
14727
14728 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
14729 (Bug#10348)
14730
14731 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
14732
14733 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
14734 existence of source file. (Bug#10325)
14735
14736 2011-12-23 Alan Mackenzie <acm@muc.de>
14737
14738 Fix unstable fontification inside templates.
14739
14740 * progmodes/cc-langs.el (c-before-font-lock-functions):
14741 Newly created from the singular version. The (c c++ objc) entry now
14742 additionally has c-set-fl-decl-start. The other languages (apart
14743 from AWK) have that as a single entry.
14744
14745 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14746 The functionality for "local" declarations has been extracted to
14747 c-set-fl-decl-start.
14748
14749 * progmodes/cc-mode.el (c-common-init, c-after-change):
14750 Changes due to pluralisation of c-before-font-lock-functions.
14751 (c-set-fl-decl-start): New function, extracted from
14752 c-font-lock-enclosing-decls and enhanced.
14753
14754 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
14755
14756 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
14757
14758 2011-12-22 Juri Linkov <juri@jurta.org>
14759
14760 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
14761
14762 2011-12-22 Chong Yidong <cyd@gnu.org>
14763
14764 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
14765
14766 2011-12-21 Drew Adams <drew.adams@oracle.com>
14767
14768 * files.el (file-remote-p): Fix docstring. (Bug#10319)
14769
14770 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
14771
14772 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
14773
14774 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
14775
14776 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
14777 highlighting and support. Fix up comments for capitalization.
14778 (cfengine-mode-debug): New var.
14779 (cfengine3-mode): Change the modeline indicator to "CFE3".
14780 (cfengine3-font-lock-keywords): Improve defun highlighting.
14781 (cfengine2-actions): Rename from `cfengine-actions'.
14782 (cfengine2-font-lock-keywords): Rename from
14783 `cfengine-font-lock-keywords'.
14784 (cfengine2-imenu-expression): Rename from
14785 `cfengine-imenu-expression'.
14786 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
14787 (cfengine2-beginning-of-defun): Rename from
14788 `cfengine-beginning-of-defun'.
14789 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
14790 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
14791 (cfengine2-mode): Rename from `cfengine-mode'. Change the
14792 modeline indicator to "CFE2".
14793 (cfengine-mode): Defalias to `cfengine-auto-mode'.
14794 (cfengine-mode-abbrevs): Mark obsolete.
14795
14796 2011-12-21 Chong Yidong <cyd@gnu.org>
14797
14798 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
14799 filename argument.
14800
14801 2011-12-20 Martin Rudalics <rudalics@gmx.at>
14802
14803 * window.el (window-normalize-buffer-to-display): Remove.
14804 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
14805
14806 2011-12-19 Chong Yidong <cyd@gnu.org>
14807
14808 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
14809 Don't signal an error in a predicate function; return non-nil.
14810 (vc-dir-mark-file): Move the error here.
14811 (vc-dir-mark-unmark): If acting on the region, keep going if one
14812 of the entries cannot be marked/unmarked.
14813 (vc-dir-mark-all-files): If current entry is a directory, mark
14814 only child files, as documented.
14815
14816 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
14817
14818 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
14819 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
14820 addition.
14821
14822 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14823
14824 * term/ns-win.el (ns-get-selection-internal)
14825 (ns-store-selection-internal): Declare.
14826 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
14827 Declare as obsolete.
14828 (ns-get-pasteboard, ns-paste-secondary):
14829 Use ns-get-selection-internal.
14830 (ns-set-pasteboard, ns-copy-including-secondary):
14831 Use ns-store-selection-internal.
14832
14833 2011-12-17 Chong Yidong <cyd@gnu.org>
14834
14835 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
14836 (vc-deduce-fileset): Doc fix.
14837
14838 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
14839
14840 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
14841
14842 2011-12-13 Sam Steingold <sds@gnu.org>
14843
14844 * man.el (Man-getpage-in-background): When running under a
14845 window-system, ignore $MANWIDTH and $COLUMNS.
14846
14847 2011-12-15 Kenichi Handa <handa@m17n.org>
14848
14849 * language/ethio-util.el: Change coding tag to utf-8-emacs.
14850 (setup-ethiopic-environment-internal): Comment out key-binding for
14851 ethio-toggle-punctuation.
14852
14853 2011-12-13 Alan Mackenzie <acm@muc.de>
14854
14855 Add the switch statement to AWK Mode.
14856
14857 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
14858 "default" to the keywords regexp.
14859
14860 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
14861 expression as the rest.
14862 (c-nonlabel-token-key): Allow string literals for AWK.
14863 Refactor for the other modes.
14864
14865 Large brace-block initialisation makes CC Mode slow: Fix.
14866 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
14867 routines. Limit backward searching in c-font-lock-enclosing.decl.
14868
14869 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
14870 pp-state and literal type in addition to the limits.
14871 (c-state-safe-place): New defun, extracted from c-state-literal-at.
14872 (c-state-literal-at): Use the above new defun.
14873 (c-slow-in-literal, c-fast-in-literal): Remove.
14874 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
14875
14876 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
14877 being in a literal. Add a limit for backward searching.
14878
14879 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
14880 c-slow-in-literal.
14881
14882 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
14883
14884 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
14885
14886 2011-12-13 Martin Rudalics <rudalics@gmx.at>
14887
14888 * window.el (delete-other-windows): Use correct frame in call to
14889 window-with-parameter.
14890
14891 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
14892
14893 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
14894 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
14895 (makefile-gmake-statements, makefile-makepp-statements):
14896 Use it and add new makepp keywords.
14897 (makefile-makepp-font-lock-keywords): Add new patterns.
14898 (makefile-match-function-end): Match new [...] and [[...]].
14899
14900 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
14901
14902 * ses.el (ses-call-printer-return, ses-cell-property-get)
14903 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
14904 (ses-create-cell-variable, ses-reset-header-string)
14905 (ses-cell-set-formula, ses-repair-cell-reference-all)
14906 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
14907 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
14908 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
14909 (ses-aset-with-undo, ses-load, ses-truncate-cell)
14910 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
14911 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
14912 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
14913 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
14914 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
14915 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
14916 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
14917 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
14918
14919 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
14920
14921 * ses.el: The overall change is to add cell renaming, that is
14922 setting fancy names for cell symbols other than name matching
14923 "\\`[A-Z]+[0-9]+\\'" regexp .
14924 (ses-create-cell-variable): New defun.
14925 (ses-relocate-formula): Relocate formulas only for cells the
14926 symbols of which are not renamed, i.e. symbols whose names do not
14927 match regexp "\\`[A-Z]+[0-9]+\\'".
14928 (ses-relocate-all): Relocate values only for cells the symbols of
14929 which are not renamed.
14930 (ses-load): Create cells variables as the (ses-cell ...) are read,
14931 in order to check row col consistency with cell symbol name only
14932 for cells that are not renamed.
14933 (ses-replace-name-in-formula): New defun.
14934 (ses-rename-cell): New defun.
14935
14936 2011-12-11 Chong Yidong <cyd@gnu.org>
14937
14938 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
14939 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
14940
14941 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
14942
14943 * window.el (other-window): Fix docstring.
14944
14945 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14946
14947 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
14948 `from' or `to' address before taking its substring.
14949 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
14950 encoded name is chopped in the middle of the encoded string, and
14951 thus displayed encoded.
14952
14953 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
14954
14955 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
14956
14957 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14958
14959 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
14960 to use texinfo-update-node and commands that call it if the
14961 Texinfo file uses @node lines without next/prev/up pointers.
14962 Correct outdated description about texinfo-master-menu.
14963 (texinfo-all-menus-update, texinfo-master-menu)
14964 (texinfo-update-node, texinfo-every-node-update)
14965 (texinfo-multiple-files-update): Doc fix. Warn against updating
14966 all the @node lines.
14967 (texinfo-master-menu): Only call texinfo-update-node if the prefix
14968 argument is numeric. Explain better in the doc string what the
14969 function really does.
14970 (texinfo-insert-master-menu-list): Improve the error message
14971 displayed if there's no menu in the Top node.
14972 (Bug#2975) See also this thread:
14973 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
14974
14975 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
14976
14977 * speedbar.el (speedbar-supported-extension-expressions):
14978 Add .adb and .ads, commonly used for Ada source code (bug#10256).
14979
14980 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
14981
14982 * printing.el (pr-mode-alist):
14983 * simple.el (filter-buffer-substring-functions)
14984 (completion-list-insert-choice-function):
14985 * window.el (window-with-parameter, window-atom-root)
14986 (window-sides-slots, window-size-fixed, window-min-delta)
14987 (window-max-delta, window--resize-mini-window)
14988 (window--resize-child-windows-normal, window-tree)
14989 (delete-other-windows, quit-window, split-window)
14990 (display-buffer-record-window, special-display-buffer-names)
14991 (special-display-regexps, special-display-popup-frame)
14992 (same-window-p, split-window-sensibly)
14993 (display-buffer-overriding-action, display-buffer-alist)
14994 (display-buffer-base-action, display-buffer, switch-to-buffer)
14995 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
14996 (fit-window-to-buffer, recenter-positions)
14997 (mouse-autoselect-window-state, mouse-autoselect-window-select):
14998 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
14999 and remove unneeded backslashes in docstrings.
15000
15001 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15002
15003 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
15004
15005 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
15006 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
15007 end in ".mk".
15008 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
15009 when reading the makefile (bug#10116).
15010
15011 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
15012
15013 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
15014 (bug#10116).
15015
15016 2011-12-06 Glenn Morris <rgm@gnu.org>
15017
15018 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
15019
15020 2011-12-06 Chong Yidong <cyd@gnu.org>
15021
15022 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
15023
15024 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
15025
15026 * textmodes/table.el (table-shorten-cell): Fix typo.
15027
15028 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
15029
15030 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
15031
15032 2011-12-05 Eli Zaretskii <eliz@gnu.org>
15033
15034 * descr-text.el (describe-char): Fix display of strong
15035 right-to-left characters and directional embeddings and overrides.
15036
15037 * simple.el (what-cursor-position): Fix display of codepoints of
15038 strong right-to-left characters.
15039
15040 2011-12-05 Chong Yidong <cyd@gnu.org>
15041
15042 * faces.el (read-color): Doc fix.
15043
15044 2011-12-05 Glenn Morris <rgm@gnu.org>
15045
15046 * align.el (align--set-marker): Add doc-string.
15047 Don't try to move something that is not a marker. (Bug#10216)
15048
15049 2011-12-04 Glenn Morris <rgm@gnu.org>
15050
15051 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
15052 overly zealous deletion of trailing whitespace.
15053
15054 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
15055
15056 * server.el (server-delete-client): On Windows, do not try to delete
15057 the only terminal.
15058 (server-process-filter): On Windows, treat requests for a tty frame as
15059 if they were for a GUI frame if the running server is in GUI mode.
15060
15061 2011-12-03 Glenn Morris <rgm@gnu.org>
15062
15063 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
15064
15065 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
15066
15067 * electric.el: Streamline electric-indent's hook.
15068 (electric-indent-chars): Revert to simple list.
15069 (electric-indent-functions): New var.
15070 (electric-indent-post-self-insert-function): Use it.
15071
15072 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
15073 there's no inferior buffer (bug#10196).
15074 (prolog-consult-compile): Don't use toggle-read-only.
15075
15076 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
15077
15078 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
15079 interrupt. (Bug#10187)
15080
15081 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15082
15083 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
15084 (bug#9160).
15085
15086 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
15087 (bug#10191).
15088
15089 2011-12-02 Juri Linkov <juri@jurta.org>
15090
15091 * info.el (Info-search): Display "end of manual" when Isearch
15092 reaches the end of single-file Info manual. (Bug#9918)
15093
15094 2011-12-02 Eli Zaretskii <eliz@gnu.org>
15095
15096 * isearch.el (isearch-message-prefix): Run the input method part
15097 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
15098
15099 2011-12-02 Juri Linkov <juri@jurta.org>
15100
15101 * isearch.el (isearch-occur): Use `word-search-regexp' for
15102 `isearch-word'.
15103 (isearch-search-and-update): Add condition for `isearch-word' and
15104 call `word-search-regexp'. (Bug#10145)
15105
15106 2011-12-01 Glenn Morris <rgm@gnu.org>
15107
15108 * eshell/em-hist.el (eshell-hist-initialize):
15109 Handle eshell-history-size nil and HISTSIZE set or unset.
15110 (eshell-history-file-name, eshell-history-size): Fix custom type.
15111
15112 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15113
15114 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
15115
15116 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
15117
15118 * progmodes/verilog-mode.el (verilog-pretty-expr):
15119 Rework verilog-pretty-expr to handle new assignment operators in system
15120 verilog, such as += *= and the like.
15121 (verilog-assignment-operator-re): Regular expression to find the
15122 assigment operator in a verilog assignment.
15123 (verilog-assignment-operation-re): Regular expression to find an
15124 assignment statement for pretty-expr.
15125 (verilog-in-attribute-p): Query returns true if point is in an
15126 attribute context; used to skip these for expression line up from
15127 pretty-expr.
15128 (verilog-in-parameter-p): Query returns true if point is in an
15129 parameter definition context; used to skip these for expression
15130 line up from pretty-expr.
15131 (verilog-in-parenthesis-p): Query returns true if point is in a
15132 parenthetical expression, specifically ( ) but not [ ] or { };
15133 used by pretty-expr.
15134 (verilog-just-one-space): If there is no space, don't add one.
15135 (verilog-get-lineup-indent-2): Specifically skip just attribute
15136 contexts for expression lineup, rather than skipping all
15137 parenthetical expressions.
15138 (verilog-calculate-indent): Fix comment, and fix indent.
15139 (verilog-do-indent): Indent declarations in lists (suggested by
15140 Joachim Lechner).
15141 (verilog-mode-abbrev-table): Populate abbrev mode with the various
15142 skeleton items.
15143 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
15144 by Alain Mellan).
15145
15146 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
15147
15148 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
15149 parameters with embedded comments. Reported by Ray Stevens.
15150 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
15151 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
15152 Reported by Tim Holt.
15153 (verilog-auto): Fix AUTOing a upper module then AUTOing module
15154 instantiated by upper module causing wrong expansion until AUTOed a
15155 second time. Reported by K C Buckenmaier.
15156 (verilog-diff-auto): Fix showing .* as a difference when
15157 `verilog-auto-star-save' off. Reported by Dan Dever.
15158 (verilog-auto-reset, verilog-read-always-signals)
15159 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
15160 temporary signals in reset list if
15161 verilog-auto-reset-blocking-in-non is nil, and match assignment
15162 style to each signal's assignment type, bug381.
15163 Reported by Thomas Esposito.
15164 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
15165 (verilog-uvm-statement-re): Support UVM indentation and
15166 highlighting, with old OVM keywords only.
15167 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
15168 Support AUTOTIEOFF creating non-wire data types.
15169 Suggested by Jonathan Greenlaw.
15170 (verilog-auto-insert-lisp, verilog-delete-to-paren)
15171 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
15172 (verilog-inject-sense, verilog-read-inst-pins)
15173 (verilog-read-sub-decls, verilog-read-sub-decls-line):
15174 Fix mismatching parenthesis inside commented out code when deleting
15175 AUTOINST, bug383. Reported by Jonathan Greenlaw.
15176 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
15177 non-numeric vector width. Reported by Alex Reed.
15178 (verilog-auto-ascii-enum): Add "onehot" option to work around not
15179 detecting signals with parameter widths. Reported by Alex Reed.
15180 (verilog-auto-delete-trailing-whitespace):
15181 With `verilog-auto-delete-trailing-whitespace' remove trailing
15182 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
15183 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
15184 Fix verilog-scan-cache corruption when running user AUTO expansion
15185 hooks that call indentation routines.
15186 (verilog-simplify-range-expression): Fix typo ignoring lower case
15187 identifiers.
15188 (verilog-delete-auto): Fix delete-autos to also remove user created
15189 automatics, as long as they start with AUTO.
15190 (verilog-batch-diff-auto, verilog-diff-auto)
15191 (verilog-diff-function): Add `verilog-diff-auto' and bind to
15192 "C-c?" to report differences in AUTO expansion, ignoring spaces.
15193 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
15194 (verilog-in-paren-quick, verilog-re-search-backward-quick)
15195 (verilog-re-search-forward-quick, verilog-syntax-ppss):
15196 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
15197 is disabled and its cache will get corrupt, causing AUTOS not to
15198 expand. Instead use only -quick functions.
15199 (verilog-scan-region): Fix scanning over escaped quotes.
15200 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
15201 (verilog-re-search-backward-quick)
15202 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
15203 related functions now ignore strings, to fix misparsing of strings
15204 with magic comments embedded in them.
15205 (verilog-read-auto-template):
15206 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
15207 Reported by Brad Dobbie.
15208 (verilog-read-auto-template):
15209 Fix 'verilog-auto-inst-template-numbers' with comments.
15210 Reported by Brad Dobbie.
15211 (verilog-auto-inst, verilog-auto-inst-param)
15212 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
15213 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
15214 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
15215 debugging templates without merge conflicts, bug357.
15216 Reported by Brad Dobbie.
15217 (verilog-read-auto-template):
15218 Fix verilog-auto-inst-template-numbers with multiple templates.
15219 Reported by Brad Dobbie.
15220 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
15221 abbrevs so user won't be asked to save.
15222 (verilog-read-auto-lisp-present): Fix to start at beginning of
15223 buffer in case called outside of verilog-auto.
15224 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
15225 to "X-2". Reported by Matthew Myers.
15226 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
15227 all inputs from module templates. Reported by Leith Johnson.
15228 (verilog-module-inside-filename-p): Fix locating programs as with
15229 modules.
15230 (verilog-auto-inst-port): Fix vl-width expressions when using
15231 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
15232 (verilog-decls-get-regs, verilog-decls-get-signals,
15233 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
15234 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
15235 verilog-read-decls): Combine reg and wire structures into one var
15236 structure to represent SystemVerilog concepts.
15237 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
15238 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
15239 (verilog-auto-wire-type, verilog-insert-definition):
15240 Add verilog-auto-wire-type and AUTOLOGIC to support using
15241 SystemVerilog "logic" keyword instead of "wire"/"reg".
15242 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
15243 to declares outputs that also have assignments (presumably in an
15244 ifdef or generate if so there's not a driver conflict).
15245 Reported by Matthew Myers.
15246 (verilog-auto-declare-nettype, verilog-insert-definition):
15247 Add verilog-auto-declare-nettype to fix declarations using
15248 `default_nettype none. Reported by Julian Gorfajn.
15249 (verilog-read-always-signals-recurse, verilog-read-decls)
15250 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
15251 malformed end statement, bug325. Reported by Joshua Wise and
15252 Andrew Drake.
15253 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
15254 (verilog-inst-comment-re): Fix not deleting Interfaced comment
15255 when expanding .* in interfaces, bug320.
15256 Reported by Pierre-David Pfister.
15257 (verilog-read-module-name): Fix import statements between module
15258 name and open parenthesis, bug317.
15259 Reported by Pierre-David Pfister.
15260 (verilog-simplify-range-expression): Fix simplification of
15261 multiplications inside AUTOWIRE connections, bug303.
15262 (verilog-auto-inst-port): Support parameter expansion in
15263 multidimensional arrays.
15264 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
15265 after "assert property". Reported by Julian Gorfajn.
15266 (verilog-simplify-range-expression): Fix "couldn't merge" errors
15267 with multiplication, bug303.
15268 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
15269 Reported by Jan Frode Lonnum.
15270
15271 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
15272
15273 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
15274 (hfy-shell-file-name, hfy-shell):
15275 * international/fontset.el (x-decompose-font-name): Fix typos.
15276
15277 2011-11-29 Ken Brown <kbrown@cornell.edu>
15278
15279 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
15280 (gdb-version): Remove defvar.
15281 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
15282 (gdb-gud-context-command, gdb-non-stop-handler)
15283 (gdb-current-context-command, gdb-stopped): Use it.
15284 (gdb-init-1): Enable pretty printing here.
15285 (gdb-non-stop-handler): Don't enable pretty-printing here.
15286 Check to see if the target supports non-stop mode; if not, turn off
15287 non-stop mode. Use the following.
15288 (gdb-check-target-async): New defun.
15289 (gud-watch, gdb-stopped): Fix whitespace.
15290 (gdb-get-source-file): Don't try to display the source file if
15291 `gdb-main-file' is nil.
15292
15293 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15294
15295 * align.el: Try to generate fewer markers (bug#10047).
15296 (align--set-marker): New macro.
15297 (align-region): Use it.
15298
15299 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15300
15301 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
15302
15303 2011-11-29 Chong Yidong <cyd@gnu.org>
15304
15305 * indent.el (indent-for-tab-command, indent-according-to-mode):
15306 Doc fix.
15307 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
15308
15309 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
15310
15311 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
15312 aware of remote file names. (Bug#10124)
15313
15314 2011-11-29 Chong Yidong <cyd@gnu.org>
15315
15316 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
15317
15318 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15319
15320 * files.el (find-file): Don't use force-same-window (bug#10144).
15321 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
15322 use pop-to-buffer if the selected window can't be used.
15323 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
15324
15325 2011-11-28 Eli Zaretskii <eliz@gnu.org>
15326
15327 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
15328 special-mode-map.
15329
15330 2011-11-28 Chong Yidong <cyd@gnu.org>
15331
15332 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
15333
15334 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
15335
15336 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
15337 gdb-get-source-file-list on gdb-create-source-file-list.
15338
15339 2011-11-26 Eli Zaretskii <eliz@gnu.org>
15340
15341 * whitespace.el (whitespace-newline): Use a different foreground
15342 color for 16-color light-background displays.
15343
15344 2011-11-24 Chong Yidong <cyd@gnu.org>
15345
15346 * window.el (display-buffer--special-action): Doc fix.
15347
15348 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
15349
15350 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
15351 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
15352 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
15353 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
15354 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
15355 (avl-tree-stack-first):
15356 * emacs-lisp/cconv.el (cconv--analyse-use):
15357 * net/gnutls.el (gnutls-negotiate): Fix typos.
15358
15359 2011-11-24 Glenn Morris <rgm@gnu.org>
15360
15361 * lpr.el (lpr-windows-system, lpr-lp-system):
15362 * mail/binhex.el (binhex-begin-line):
15363 * progmodes/grep.el (grep-history, grep-find-history):
15364 * textmodes/flyspell.el:
15365 * vc/pcvs-defs.el (cvs-global-menu):
15366 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
15367 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
15368 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
15369
15370 * net/tls.el: Fix case of "GnuTLS".
15371
15372 * paths.el (rmail-file-name): Format doc-string for make-docfile.
15373
15374 * version.el (emacs-build-system): Give it a doc-string.
15375
15376 2011-11-24 Juri Linkov <juri@jurta.org>
15377
15378 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
15379
15380 2011-11-24 Glenn Morris <rgm@gnu.org>
15381
15382 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
15383 if called on a non-mime message just toggle the headers. (Bug#8006)
15384
15385 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
15386
15387 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
15388 (allout-lead-with-comment-string, allout-structure-deleted-hook)
15389 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
15390 (allout-rebullet-heading, allout-open-sibtopic)
15391 (allout-toggle-current-subtree-encryption)
15392 (allout-toggle-subtree-encryption, allout-encrypt-string)
15393 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
15394 (allout-distinctive-bullets-string, allout-auto-activation):
15395 * window.el (window-normalize-buffer-to-display):
15396 * progmodes/verilog-mode.el (verilog-batch-indent):
15397 * textmodes/bibtex.el (bibtex-field-braces-opt)
15398 (bibtex-field-strings-opt):
15399 * vc/cvs-status.el (cvs-tree-merge):
15400 Fix typos.
15401
15402 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
15403
15404 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
15405 `non-essential' to t, in order to avoid remote connections.
15406
15407 2011-11-23 Eli Zaretskii <eliz@gnu.org>
15408
15409 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15410 On MS-DOS and MS-Windows, compare with loaddefs.el
15411 case-insensitively.
15412
15413 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15414
15415 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
15416
15417 2011-11-23 Glenn Morris <rgm@gnu.org>
15418
15419 * paths.el (rmail-file-name): Reformat the doc-string so that it
15420 is picked up.
15421
15422 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
15423 (rmail-auto-file): Ignore case in the "special" field names,
15424 as mail-fetch-field does for all others.
15425
15426 * mail/rmail.el (rmail-forward):
15427 * mail/rmailkwd.el (rmail-set-label):
15428 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
15429 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
15430
15431 * mail/rmail.el (rmail-current-message): Doc fix.
15432
15433 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
15434
15435 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15436
15437 * server.el (server-eval-and-print): Allow C-g (bug#6585).
15438
15439 2011-11-22 Glenn Morris <rgm@gnu.org>
15440
15441 * mail/rmailmm.el (test-rmail-mime-handler)
15442 (test-rmail-mime-bulk-handler)
15443 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
15444
15445 2011-11-21 Juri Linkov <juri@jurta.org>
15446
15447 * calc/calc.el (calc-read-key-sequence):
15448 Let-bind `input-method-function' to nil. (Bug#10018)
15449
15450 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15451
15452 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
15453 Tell the caller that the next line needs recomputation, even
15454 though it doesn't start a sexp (bug#10094).
15455
15456 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15457
15458 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
15459
15460 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15461
15462 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
15463 Use force-same-window.
15464
15465 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15466
15467 * descr-text.el (describe-char-unicode-data):
15468 * json.el (json-string-escape):
15469 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
15470 (Footnote-unicode, Footnote-style-p):
15471 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
15472
15473 2011-11-20 Chong Yidong <cyd@gnu.org>
15474
15475 * window.el (replace-buffer-in-windows): Restore interactive spec.
15476
15477 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15478
15479 * electric.el (electric-indent-mode): Fix last change (too optimistic).
15480
15481 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
15482 (byte-compile-global-not-obsolete-vars): New var.
15483 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
15484 Use it.
15485 (byte-compile-warn-obsolete): Align text with the one in *Help*.
15486
15487 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15488
15489 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
15490 * progmodes/pascal.el (electric-pascal-equal):
15491 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
15492 * xml.el (xml-substitute-special): Fix typos.
15493
15494 2011-11-20 Glenn Morris <rgm@gnu.org>
15495
15496 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
15497 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
15498 Doc fixes.
15499 (rmail-decode-mime-charset): Mark as obsolete.
15500
15501 * mail/rmailsum.el (rmail-message-regexp-p-1):
15502 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
15503 Before using mime functions, check they are set. (Bug#10077)
15504
15505 2011-11-19 Juri Linkov <juri@jurta.org>
15506
15507 * info.el (Info-finder-find-node): Use `package--builtins' instead
15508 of `package-alist'. Use node names formed by the pattern "Keyword "
15509 and the keyword name.
15510
15511 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15512
15513 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
15514
15515 2011-11-19 Juri Linkov <juri@jurta.org>
15516
15517 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
15518 that calls `revert-buffer' on all Info buffers. (Bug#9915)
15519 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
15520 `old-history', `old-history-forward'. Add let-binding
15521 `window-selected'. Remove calls to `kill-buffer',
15522 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
15523 before calling `Info-find-node', so `Info-find-node-2' will reread
15524 the Info file. Restore window positions only when `window-selected'
15525 is non-nil.
15526
15527 2011-11-19 Juri Linkov <juri@jurta.org>
15528
15529 * isearch.el (isearch-lazy-highlight-new-loop):
15530 Remove condition `(not isearch-error)'. (Bug#9918)
15531
15532 * misearch.el (multi-isearch-search-fun): Add condition
15533 `(not bound)' to ignore lazy-highlighting search.
15534 Add the search-failed message "end of multi" when the end of
15535 multi-sequence is reached. Uncapitalize the search-failed
15536 message "Repeat for next buffer".
15537
15538 * info.el (Info-search): Add the search-failed message
15539 "end of the manual" when the end of the manual is reached
15540 in Isearch mode.
15541
15542 2011-11-19 Juri Linkov <juri@jurta.org>
15543
15544 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
15545 Use non-destructive `remove' instead of `delete' because
15546 `Info-history-list' stored to `Info-isearch-initial-history-list' in
15547 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
15548
15549 2011-11-19 Juri Linkov <juri@jurta.org>
15550
15551 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
15552 to nil instead of binding `search-ring' and `regexp-search-ring'.
15553 (Bug#9185)
15554
15555 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15556
15557 * simple.el (line-move): Force movement by logical lines for any
15558 hscrolled window, not only when auto-hscroll-mode is on.
15559 (line-move-visual): Update doc string to that effect. (Bug#10076)
15560
15561 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
15562
15563 * language/european.el (macintosh): Define as alias for mac-roman.
15564
15565 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15566
15567 * mail/rmailmm.el (rmail-mime-display-header)
15568 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
15569 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
15570 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
15571 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
15572 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
15573 of a raw aref.
15574 (rmail-mime-entity-segment): To get past the tagline, move forward
15575 2 more lines, to account for the 2 empty lines that precede and
15576 follow the line with the buttons.
15577 (rmail-mime-update-tagline): Move one more line, to get past the
15578 empty line that follows the buttons in the tagline. (Bug#9520)
15579
15580 2011-11-19 Martin Rudalics <rudalics@gmx.at>
15581
15582 * window.el (window-max-delta-1, window-min-delta-1)
15583 (window-min-size-1, window-state-get-1, window-state-put-1)
15584 (window-state-put-2): Use "window--" prefix.
15585
15586 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15587
15588 * emacs-lisp/smie.el: Improve warnings and conflict detection.
15589 (smie-warning-count): New var.
15590 (smie-set-prec2tab): Use it.
15591 (smie-bnf->prec2): Improve warnings. Add docstring.
15592 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
15593 (smie-bnf--set-class): New function.
15594 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
15595 corner case.
15596
15597 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
15598 (compilation-error-properties, compilation-move-to-column):
15599 Handle compilation-first-column while in the target buffer.
15600
15601 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
15602 Don't hardcode point-min==1.
15603
15604 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
15605 (eshell-rewrite-for-command): Remove workaround.
15606 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
15607 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
15608 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
15609
15610 * files-x.el (modify-file-local-variable): Obey commenting conventions.
15611
15612 2011-11-17 Glenn Morris <rgm@gnu.org>
15613
15614 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15615 Ignore buffer-local generated-autoload-file if it is the same
15616 as the global value. (Bug#10049)
15617
15618 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
15619
15620 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
15621 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
15622 (reftex-toc-previous-heading, reftex-toc-max-level)
15623 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
15624 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
15625 (reftex-toc-do-promote, reftex-toc-promote-prepare)
15626 (reftex-toc-promote-action, reftex-toc-extract-section-number)
15627 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
15628 (reftex-toc-rename-label, reftex-toc-visit-location)
15629 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
15630 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
15631 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
15632 leaving "*toc*" only for references to the buffer.
15633
15634 2011-11-17 Martin Rudalics <rudalics@gmx.at>
15635
15636 * window.el (window-resize, delete-window, split-window):
15637 Replace window-splits by window-combination-resize.
15638 * cus-start.el (window-splits): Replace by window-combination-resize.
15639
15640 2011-11-17 Glenn Morris <rgm@gnu.org>
15641
15642 * progmodes/sh-script.el (sh-font-lock-keywords-var):
15643 Make bash entry derive from sh entry, not shell entry.
15644
15645 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
15646
15647 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
15648 local file name.
15649
15650 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15651
15652 * menu-bar.el (menu-bar-file-menu):
15653 * printing.el (pr-ps-utility):
15654 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
15655 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
15656 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
15657 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
15658 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
15659 (icalendar--convert-cyclic-to-ical)
15660 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
15661 (icalendar--convert-ical-to-diary)
15662 (icalendar--convert-recurring-to-diary)
15663 (icalendar--convert-non-recurring-all-day-to-diary)
15664 (icalendar-import-format-sample):
15665 * progmodes/idlw-shell.el (idlwave-shell-mode):
15666 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
15667 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
15668 (vhdl-ps-print-init): Fix typos.
15669
15670 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
15671
15672 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
15673 FSF and collapse date sequence, obscure author/maintainer email address
15674 better, remove extra version line, track relocation of author's webpage.
15675
15676 * progmodes/python.el (python-pdbtrack-input-prompt)
15677 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
15678 regular python pdb prompts. Adjustments shamelessly taken exactly as
15679 suggested in EmacsWiki page (tiny change):
15680 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
15681
15682 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15683
15684 * expand.el (expand-pos, expand-index, expand-point):
15685 Remove redundant info from docstring.
15686 (expand-add-abbrevs): Doc fix.
15687 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
15688 (expand-sample-perl-mode-expand-list): Fix typos.
15689
15690 * net/dbus.el (dbus-event-member-name):
15691 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
15692 * term/pc-win.el (msdos-create-frame-with-faces):
15693 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
15694
15695 2011-11-16 Martin Rudalics <rudalics@gmx.at>
15696
15697 * window.el (split-window, window-state-get-1)
15698 (window-state-put-1, window-state-put-2): Rename occurrences of
15699 window-nest to window-combination-limit.
15700 * cus-start.el (window-nest): Rename to window-combination-limit.
15701
15702 2011-11-16 Chong Yidong <cyd@gnu.org>
15703
15704 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
15705 regexp (Bug#10033).
15706
15707 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
15708
15709 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
15710 `completing-read' will remove *Completions* and will preserve
15711 current-buffer for us.
15712 (tmm-add-prompt): Users of *Completions* will always (re)set its
15713 major mode.
15714 (tmm-old-comp-map): Remove.
15715
15716 2011-11-16 Glenn Morris <rgm@gnu.org>
15717
15718 * mail/rmailedit.el: Require rmailmm when compiling.
15719 (rmail-old-mime-state): New declaration.
15720 (rmail-edit-current-message): If editing a mime message,
15721 edit the "raw" message from the mbox buffer.
15722 (rmail-cease-edit): Handle mime messages. (Bug#9840)
15723
15724 2011-11-15 Glenn Morris <rgm@gnu.org>
15725
15726 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
15727 which wasn't being used. Add optional arg to force given state.
15728 (rmail-mime): Add optional arg to force given state.
15729
15730 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15731
15732 * allout.el (allout-encryption-plaintext-sanitization-regexps):
15733 * frame.el (display-mm-dimensions-alist):
15734 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
15735 (outline-move-subtree-down):
15736 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
15737 (newsticker--treeview-do-get-node):
15738 * net/quickurl.el (quickurl-list-buffer-name):
15739 * progmodes/dcl-mode.el (dcl-mode):
15740 * progmodes/gdb-mi.el (gdb-mapcar*):
15741 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
15742
15743 2011-11-15 Glenn Morris <rgm@gnu.org>
15744
15745 * mail/rmail.el (rmail-file-coding-system): It's only ever used
15746 in a boolean sense, so just make it a boolean, and fix the doc.
15747 (rmail-show-mime-function, rmail-mime-feature)
15748 (rmail-require-mime-maybe): Doc fixes.
15749 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
15750
15751 * mail/rmailmm.el (rmail-show-mime): Doc fix.
15752
15753 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15754
15755 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
15756 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
15757 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
15758 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
15759
15760 2011-11-15 Glenn Morris <rgm@gnu.org>
15761
15762 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
15763 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
15764 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
15765 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
15766 (rmail-mime, rmail-show-mime): Doc fixes.
15767
15768 * term/ns-win.el (mode-line-frame-identification):
15769 Leave it alone. (Bug#10051)
15770
15771 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
15772
15773 * mail/rmailout.el (rmail-output-to-rmail-buffer):
15774 Handle empty buffers. (Bug#9978)
15775
15776 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
15777
15778 * international/mule.el (define-charset):
15779 * mail/rmailmm.el (rmail-mime-find-header-encoding):
15780 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
15781 * progmodes/verilog-mode.el (verilog-backward-token):
15782 * textmodes/ispell.el (lookup-words):
15783 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
15784
15785 2011-11-14 Glenn Morris <rgm@gnu.org>
15786
15787 * progmodes/executable.el
15788 (executable-make-buffer-file-executable-if-script-p):
15789 Handle file-modes returning nil.
15790
15791 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
15792 message - not necessary, and causes problems. (Bug#9831)
15793
15794 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
15795
15796 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
15797
15798 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
15799 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
15800 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
15801
15802 2011-11-12 Martin Rudalics <rudalics@gmx.at>
15803
15804 * window.el (window-resize, delete-window): Use window-splits
15805 variable instead of function.
15806 (window-state-get-1, window-state-put-2, window-state-put):
15807 Don't deal with windows' splits status.
15808
15809 2011-11-12 Glenn Morris <rgm@gnu.org>
15810
15811 * apropos.el (apropos-do-all, apropos-library, apropos-value)
15812 (apropos-documentation): Doc fixes.
15813
15814 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
15815
15816 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
15817 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
15818
15819 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
15820
15821 * electric.el (electric-indent-post-self-insert-function): Make it
15822 possible for a char to only indent in some circumstances.
15823 (electric-indent-mode): Simplify.
15824
15825 2011-11-11 Martin Rudalics <rudalics@gmx.at>
15826
15827 * window.el (windows-with-parameter): Remove unused function.
15828 (windows-at-side): Rename to window-at-side-list.
15829 (window-check, window-atom-check, window-atom-check-1)
15830 (window-side-check, window-size-ignore, window-size-fixed-1)
15831 (window-in-direction-2): Prefix with "window--".
15832 (window-tree-1): Rename to window--subtree, fix doc-string.
15833
15834 2011-11-11 Glenn Morris <rgm@gnu.org>
15835
15836 * subr.el (eval-after-load): If FILE is already loaded,
15837 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
15838
15839 2011-11-10 Glenn Morris <rgm@gnu.org>
15840
15841 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
15842 Call svn via vc-svn-command rather than vc-do-command.
15843 (vc-svn-command): Add --non-interactive. (Bug#9993)
15844 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
15845
15846 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15847 Add toggle-read-only. (Bug#7292)
15848 * files.el (toggle-read-only): Mention that it should only
15849 be used interactively. (Bug#10006)
15850
15851 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
15852
15853 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15854 Adjust regexp for OCaml warnings.
15855
15856 * electric.el (electric-pair-post-self-insert-function): Let user
15857 turn it off buffer-locally (bug#9932).
15858
15859 * progmodes/python.el (python-beginning-of-statement):
15860 Rewrite (bug#2703).
15861
15862 * progmodes/compile.el: Better handle TABs (bug#9749).
15863 (compilation-internal-error-properties)
15864 (compilation-next-error-function): Obey the target buffer's
15865 compilation-error-screen-columns.
15866
15867 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
15868
15869 * progmodes/meta-mode.el: Remove obsolete comments.
15870 (meta-right-comment-regexp, meta-ignore-comment-regexp):
15871 Fix typos in docstrings.
15872
15873 2011-11-09 Martin Rudalics <rudalics@gmx.at>
15874
15875 * window.el (window-size-fixed-p): Rewrite doc-string.
15876 (window-resizable-p): Rename to window--resizable-p. Update callers.
15877 (window--resizable): New function. Make all callers of
15878 window-resizable call window--resizable instead.
15879 (window-resizable): Rewrite in terms of window--resizable.
15880
15881 2011-11-08 Glenn Morris <rgm@gnu.org>
15882
15883 * progmodes/delphi.el (delphi-mode-syntax-table):
15884 Let define-derived-mode define a proper syntax table. (Bug#9994)
15885
15886 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
15887
15888 * window.el: Stay away from defsubst.
15889 (window-list-no-nils): Remove.
15890 (window-state-get-1, window-state-get): Use backquote instead.
15891
15892 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15893
15894 * emacs-lisp/find-func.el (find-function-read):
15895 Fix incorrect use of default argument in `completing-read'.
15896
15897 2011-11-08 Martin Rudalics <rudalics@gmx.at>
15898
15899 * window.el (display-buffer-function, special-display-function):
15900 Mention display-buffer-record-window but do not mention
15901 help-setup parameter in doc-strings.
15902 (window-min-delta): Fix doc-string typo.
15903
15904 2011-11-08 Chong Yidong <cyd@gnu.org>
15905
15906 * window.el (window-total-height, window-total-width): Doc fix.
15907 (window-body-size): Move from C.
15908 (window-body-height, window-body-width): Move to C.
15909
15910 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
15911
15912 * window.el: Make special-display like display-buffer-alist (bug#9532).
15913 (display-buffer--special-action): New function, morphed
15914 from display-buffer--special.
15915 (display-buffer): Use it to handle special-display-buffers at higher
15916 priority (just after display-buffer-alist).
15917 (display-buffer-fallback-action, display-buffer--other-frame-action)
15918 (pop-to-buffer-same-window): Remove display-buffer--special.
15919
15920 2011-11-07 Glenn Morris <rgm@gnu.org>
15921
15922 * calendar/cal-menu.el (cal-menu-set-date-title):
15923 Do nothing if not in a calendar. (Bug#9976)
15924
15925 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
15926
15927 * files.el (find-file): Always use selected-window.
15928
15929 2011-11-07 Martin Rudalics <rudalics@gmx.at>
15930
15931 * window.el (window-combinations): Make WINDOW argument
15932 mandatory. Rewrite doc-string.
15933 (walk-window-subtree, window-atom-check, window-min-delta)
15934 (window-max-delta, window--resize-this-window)
15935 (window--resize-root-window-vertically, window-tree)
15936 (balance-windows, window-state-put): Rewrite doc-strings as to
15937 not mention the term "subwindow".
15938 (window--resize-subwindows-skip-p): Rename to
15939 window--resize-child-windows-skip-p.
15940 (window--resize-subwindows-normal): Rename to
15941 window--resize-child-windows-normal.
15942 (window--resize-subwindows): Rename to
15943 window--resize-child-windows.
15944 (window-or-subwindow-p): Rename to window--in-subtree-p.
15945
15946 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
15947
15948 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
15949 Ensure that mbox format messages end in two newlines (Bug#9974).
15950
15951 2011-11-06 Chong Yidong <cyd@gnu.org>
15952
15953 * window.el (window-combination-p): Function deleted; its
15954 side-effect is not used in any existing code.
15955 (window-combinations, window-combined-p): Call window-*-child
15956 directly.
15957
15958 2011-11-05 Chong Yidong <cyd@gnu.org>
15959
15960 * window.el (window-valid-p): Rename from window-any-p.
15961 (window-size-ignore, window-state-get): Callers changed.
15962 (window-normalize-window): Rename from window-normalize-any-window.
15963 New arg LIVE-ONLY, replacing window-normalize-live-window.
15964 (window-normalize-live-window): Delete.
15965 (window-combination-p, window-combined-p, window-combinations)
15966 (walk-window-subtree, window-atom-root, window-min-size)
15967 (window-sizable, window-sizable-p, window-size-fixed-p)
15968 (window-min-delta, window-max-delta, window-resizable)
15969 (window-resizable-p, window-full-height-p, window-full-width-p)
15970 (window-current-scroll-bars, window-point-1, set-window-point-1)
15971 (window-at-side-p, window-in-direction, window-resize)
15972 (adjust-window-trailing-edge, maximize-window, minimize-window)
15973 (window-deletable-p, delete-window, delete-other-windows)
15974 (record-window-buffer, unrecord-window-buffer)
15975 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
15976 (quit-window, split-window, window-state-put)
15977 (set-window-text-height, fit-window-to-buffer)
15978 (shrink-window-if-larger-than-buffer): Callers changed.
15979
15980 2011-11-04 Eli Zaretskii <eliz@gnu.org>
15981
15982 * mail/rmail.el (rmail-simplified-subject): Decode subject with
15983 rfc2047-decode-string.
15984 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
15985 warnings.
15986
15987 * window.el (window-body-height, window-body-width): Mention in
15988 the doc string that the return values are in frame's canonical
15989 units. (Bug#9949)
15990
15991 2011-11-03 Alan Mackenzie <acm@muc.de>
15992
15993 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
15994 change in cc-engine.el.
15995
15996 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
15997
15998 * window.el (switch-to-buffer): Use `force-same-window' interactively.
15999
16000 2011-11-02 Martin Rudalics <rudalics@gmx.at>
16001
16002 * window.el (quit-window): Call unrecord-window-buffer after
16003 showing another buffer in the window. (Bug#9937)
16004 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
16005
16006 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
16007
16008 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
16009 Accept status with more than 9 shelves. (Bug#9935)
16010 Reported by Colin D Bennett <colin@gibibit.com>.
16011
16012 2011-11-01 Martin Rudalics <rudalics@gmx.at>
16013
16014 * help.el (with-help-window): Don't reference
16015 temp-buffer-show-specifiers in doc-string.
16016
16017 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
16018
16019 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
16020 menu-item.
16021
16022 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16023
16024 * whitespace.el: New version 13.2.2.
16025 (whitespace-newline-mode): Disable properly. Reported by Sarah
16026 <EmacsWiki>.
16027
16028 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
16029
16030 * net/newst-treeview.el: Remove "Time-stamp".
16031 (newsticker--group-manage-orphan-feeds): Do not call
16032 newsticker--treeview-tree-update.
16033 (newsticker-treeview-update, newsticker-treeview):
16034 Call newsticker--treeview-tree-update if necessary.
16035
16036 2011-10-30 Martin Rudalics <rudalics@gmx.at>
16037
16038 * window.el (window-iso-combination-p, window-iso-combined-p)
16039 (window-iso-combinations): Remove "iso-" infix.
16040 Suggested by Chong Yidong.
16041 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
16042 (window-max-delta-1, window-resize, window--resize-siblings)
16043 (window--resize-this-window, adjust-window-trailing-edge)
16044 (split-window, balance-windows-1)
16045 (shrink-window-if-larger-than-buffer):
16046 * calendar/calendar.el (calendar-generate-window):
16047 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
16048
16049 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
16050
16051 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
16052 in place (bug#9907).
16053 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
16054 (eshell-rewrite-if-command, eshell-rewrite-for-command)
16055 (eshell-structure-basic-command, eshell-rewrite-while-command)
16056 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
16057 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
16058 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
16059 (eshell-do-pipelines-synchronously, eshell-eval-command):
16060 Use backquotes and prefer setq to set.
16061 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
16062 (eshell-macrop): Use functionp.
16063 (eshell-do-eval): Handle multiple expressions in `while' body.
16064
16065 2011-10-30 Chong Yidong <cyd@gnu.org>
16066
16067 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
16068 instead of set-mark (Bug#9810).
16069
16070 2011-10-30 Chong Yidong <cyd@gnu.org>
16071
16072 * window.el (split-window-below, split-window-right): Rename from
16073 split-window-above-each-other and split-window-side-by-side
16074 respectively. All callers changed.
16075 (split-window-sensibly, split-window-sensibly): Use them.
16076 (split-window-keep-point): Doc fix.
16077
16078 * isearch.el: Add isearch-scroll property to split-window-below
16079 and split-window-right.
16080
16081 * follow.el (follow-mode):
16082 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16083 * progmodes/ada-xref.el (ada-gdb-application):
16084 * emulation/vip.el (vip-buffer-in-two-windows):
16085 * image-dired.el (image-dired-dired-with-window-configuration):
16086 * dired-x.el (dired-do-find-marked-files):
16087 * dired.el (dired-pop-to-buffer):
16088 * bs.el (bs--show-with-configuration):
16089 * vc/emerge.el (emerge-setup-windows):
16090 * textmodes/two-column.el (2C-two-columns):
16091 * textmodes/reftex-toc.el (reftex-toc):
16092 * progmodes/gdb-mi.el (gdb-setup-windows):
16093 * progmodes/fortran.el (fortran-window-create):
16094 * net/newst-treeview.el (newsticker--treeview-window-init):
16095 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
16096 * emulation/tpu-edt.el (tpu-gold-map):
16097 * emulation/crisp.el (crisp-mode-map):
16098 * calendar/calendar.el (calendar-basic-setup): Callers changed.
16099
16100 2011-10-29 Chong Yidong <cyd@gnu.org>
16101
16102 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
16103
16104 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
16105
16106 * textmodes/flyspell.el (flyspell-word): Fix char offset for
16107 forged Ispell output (Bug#7904).
16108
16109 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
16110
16111 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16112
16113 * doc-view.el: Avoid ugly errors about not finding nil.
16114 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
16115 (doc-view-dvipdf-program, doc-view-unoconv-program)
16116 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
16117 Avoid nil or absolute file name as default value.
16118 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
16119
16120 2011-10-28 Alan Mackenzie <acm@muc.de>
16121
16122 * progmodes/cc-defs.el (c-version): -> 5.32.2.
16123
16124 2011-10-28 Alan Mackenzie <acm@muc.de>
16125
16126 Amend the handling of c-beginning/end-of-defun in nested declaration
16127 scopes.
16128
16129 * progmodes/cc-vars.el (c-defun-tactic): Move here from
16130 cc-langs.el. Change it to a defcustom.
16131
16132 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
16133 cc-vars.el.
16134
16135 * progmodes/cc-engine.el (c-beginning-of-statement-1):
16136 Prevent "class foo : bar" being spuriously recognized as a label.
16137
16138 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
16139 Add parameter `inclusive' (to include enclosing braces in the region).
16140 (c-widen-to-enclosing-decl-scope): New function.
16141 (c-while-widening-to-decl-block): New macro.
16142 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
16143 outward for defun boundaries, and correspondingly change symbol
16144 `respect-enclosure' to `go-outward'.
16145 (c-declaration-limits): Change algorithm to report only the "innermost"
16146 defun's boundaries.
16147
16148 2011-10-28 Deniz Dogan <deniz@dogan.se>
16149
16150 * net/rcirc.el (rcirc-mode): Use hard newlines.
16151
16152 2011-10-28 Alan Mackenzie <acm@muc.de>
16153
16154 Amend to indent and fontify macros "which include their own semicolon"
16155 correctly, using the "virtual semicolon" mechanism.
16156
16157 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
16158
16159 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16160 Recode to scan one line at a time rather than having \n and \r
16161 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
16162 (c-forward-label): Amend for virtual semicolons.
16163 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
16164
16165 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
16166 of the new C macros.
16167
16168 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
16169 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
16170 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
16171 (c-opt-cpp-macro-define): Make into a full language variable.
16172 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
16173 AWK Mode (including \n, \r) removed, no longer needed.
16174
16175 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
16176 Invoke c-make-macro-with-semi-re.
16177
16178 * progmodes/cc-vars.el (c-macro-with-semi-re):
16179 (c-macro-names-with-semicolon): New variables.
16180 (c-make-macro-with-semi-re): New function.
16181
16182 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16183
16184 * vc/log-edit.el: Fill empty field rather than adding new one.
16185 (log-edit-add-field): New function.
16186 (log-edit-insert-changelog): Use it.
16187
16188 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16189
16190 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
16191
16192 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16193
16194 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
16195 (gdb--check-interpreter): New function.
16196 (gdb): Use it.
16197
16198 2011-10-27 Glenn Morris <rgm@gnu.org>
16199
16200 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
16201 (least-positive-float, least-negative-float)
16202 (least-positive-normalized-float, least-negative-normalized-float)
16203 (float-epsilon, float-negative-epsilon):
16204 Remove unnecessary declarations.
16205
16206 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
16207 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
16208 (least-positive-float, least-negative-float)
16209 (least-positive-normalized-float, least-negative-normalized-float)
16210 (float-epsilon, float-negative-epsilon): Add doc-strings,
16211 based on those in cl.texi.
16212
16213 * files.el (set-visited-file-name): If the major-mode changed,
16214 reload the local variables. (Bug#9796)
16215
16216 2011-10-27 Chong Yidong <cyd@gnu.org>
16217
16218 * subr.el (change-major-mode-after-body-hook): New hook.
16219 (run-mode-hooks): Run it.
16220
16221 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16222 Use change-major-mode-before-body-hook.
16223
16224 * simple.el (fundamental-mode):
16225 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
16226 change introducing fundamental-mode-hook.
16227
16228 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
16229
16230 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
16231
16232 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
16233
16234 * ido.el (ido-file-name-all-completions-1): Do not require
16235 tramp.el explicitly. (Bug#7583)
16236
16237 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16238
16239 * progmodes/octave-mod.el:
16240 * progmodes/octave-inf.el: Update maintainer.
16241
16242 2011-10-26 Chong Yidong <cyd@gnu.org>
16243
16244 * subr.el (with-wrapper-hook): Rewrite doc.
16245
16246 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
16247
16248 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
16249 filenames "/method:foo:". (Bug#9793)
16250
16251 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16252
16253 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
16254 (bug#9865).
16255
16256 2011-10-24 Glenn Morris <rgm@gnu.org>
16257
16258 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
16259
16260 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
16261
16262 * notifications.el: Add the requirement of a running D-Bus session
16263 bus to the Commentary.
16264
16265 2011-10-24 Juri Linkov <juri@jurta.org>
16266
16267 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
16268 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
16269 (Bug#9364)
16270
16271 2011-10-24 Juri Linkov <juri@jurta.org>
16272
16273 * info.el (Info-following-node-name-re): Add newline to the list
16274 of allowed characters for leading space. (Bug#9824)
16275
16276 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16277
16278 * progmodes/octave-inf.el (inferior-octave-mode-map):
16279 Fix C-c C-h binding.
16280 * progmodes/octave-mod.el (octave-help): Remove.
16281
16282 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
16283
16284 Sync with Tramp 2.2.3.
16285
16286 * net/tramp-cache.el (top): Pacify byte-compiler using
16287 `init-file-user' and `site-run-file'.
16288
16289 * net/trampver.el: Update release number.
16290
16291 2011-10-23 Chong Yidong <cyd@gnu.org>
16292
16293 * files.el (toggle-read-only): Remove obsolete comment about
16294 version control.
16295
16296 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
16297 for toggle-read-only. Note that this hasn't called vc-next-action
16298 since 2008-05-02, though it wasn't documented at the time.
16299
16300 * vc/ediff-init.el (ediff-toggle-read-only-function):
16301 Use toggle-read-only.
16302
16303 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
16304
16305 Fix bug #9560, sporadic wrong indentation; improve instrumentation
16306 of c-parse-state.
16307
16308 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16309 correct faulty logical expression.
16310 (c-parse-state-state, c-record-parse-state-state):
16311 (c-replay-parse-state-state): New defvar/defuns.
16312 (c-debug-parse-state): Use new functions.
16313
16314 2011-10-22 Martin Rudalics <rudalics@gmx.at>
16315
16316 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
16317 last fix. Use window-in-direction correctly.
16318
16319 2011-10-21 Chong Yidong <cyd@gnu.org>
16320
16321 * progmodes/idlwave.el (idlwave-mode):
16322 * progmodes/vera-mode.el (vera-mode): No need to set
16323 require-final-newline; that's done in prog-mode.
16324 Suggested by Stefan Monnier.
16325
16326 2011-10-21 Martin Rudalics <rudalics@gmx.at>
16327
16328 * mouse.el (mouse-drag-window-above)
16329 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
16330 (mouse-drag-mode-line-1, mouse-drag-header-line)
16331 (mouse-drag-vertical-line-rightward-window): Remove.
16332 (mouse-drag-line): New function.
16333 (mouse-drag-mode-line, mouse-drag-header-line)
16334 (mouse-drag-vertical-line): Call mouse-drag-line.
16335 * window.el (window-at-side-p, windows-at-side): New functions.
16336
16337 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
16338
16339 * tar-mode.el (tar-grind-file-mode):
16340 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
16341
16342 2011-10-21 Chong Yidong <cyd@gnu.org>
16343
16344 * progmodes/idlwave.el (idlwave-mode):
16345 * progmodes/vera-mode.el (vera-mode):
16346 Use mode-require-final-newline.
16347
16348 2011-10-20 Glenn Morris <rgm@gnu.org>
16349
16350 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
16351
16352 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
16353
16354 * emulation/cua-base.el (cua-set-mark): Fix case of string.
16355
16356 2011-10-20 Chong Yidong <cyd@gnu.org>
16357
16358 * emulation/cua-base.el (cua-mode):
16359 * mail/footnote.el (footnote-mode):
16360 * mail/mailabbrev.el (mail-abbrevs-mode):
16361 * net/xesam.el (xesam-minor-mode):
16362 * progmodes/bug-reference.el (bug-reference-mode):
16363 * progmodes/cap-words.el (capitalized-words-mode):
16364 * progmodes/compile.el (compilation-minor-mode)
16365 (compilation-shell-minor-mode):
16366 * progmodes/gud.el (gud-tooltip-mode):
16367 * progmodes/hideif.el (hide-ifdef-mode):
16368 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
16369 * progmodes/subword.el (subword-mode):
16370 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16371 * progmodes/which-func.el (which-function-mode):
16372 * term/tvi970.el (tvi970-set-keypad-mode):
16373 * term/vt100.el (vt100-wide-mode):
16374 * textmodes/flyspell.el (flyspell-mode):
16375 * textmodes/ispell.el (ispell-minor-mode):
16376 * textmodes/nroff-mode.el (nroff-electric-mode):
16377 * textmodes/paragraphs.el (use-hard-newlines):
16378 * textmodes/refill.el (refill-mode):
16379 * textmodes/reftex.el (reftex-mode):
16380 * textmodes/rst.el (rst-minor-mode):
16381 * textmodes/sgml-mode.el (html-autoview-mode)
16382 (sgml-electric-tag-pair-mode):
16383 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
16384 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
16385 * emulation/crisp.el (crisp-mode):
16386 * emacs-lisp/eldoc.el (eldoc-mode):
16387 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
16388 minor mode behavior.
16389
16390 2011-10-19 Juri Linkov <juri@jurta.org>
16391
16392 * descr-text.el (describe-char): Add #x2010 and #x2011 to
16393 the list of hard-coded chars with escape-glyph face.
16394
16395 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
16396
16397 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
16398
16399 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
16400
16401 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
16402 running process.
16403
16404 2011-10-19 Glenn Morris <rgm@gnu.org>
16405
16406 * vc/vc-bzr.el (vc-bzr-after-dir-status):
16407 Ignore ignored files. (Bug#9726)
16408
16409 2011-10-19 Chong Yidong <cyd@gnu.org>
16410
16411 Doc fix for minor modes, stating that an omitted argument enables
16412 the mode unconditionally when called from Lisp.
16413
16414 * abbrev.el (abbrev-mode):
16415 * allout.el (allout-mode):
16416 * autoinsert.el (auto-insert-mode):
16417 * autoarg.el (autoarg-mode, autoarg-kp-mode):
16418 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
16419 (global-auto-revert-mode):
16420 * battery.el (display-battery-mode):
16421 * composite.el (global-auto-composition-mode)
16422 (auto-composition-mode):
16423 * delsel.el (delete-selection-mode):
16424 * desktop.el (desktop-save-mode):
16425 * dired-x.el (dired-omit-mode):
16426 * dirtrack.el (dirtrack-mode):
16427 * doc-view.el (doc-view-minor-mode):
16428 * double.el (double-mode):
16429 * electric.el (electric-indent-mode, electric-pair-mode):
16430 * emacs-lock.el (emacs-lock-mode):
16431 * epa-hook.el (auto-encryption-mode):
16432 * follow.el (follow-mode):
16433 * font-core.el (font-lock-mode):
16434 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
16435 * help.el (temp-buffer-resize-mode):
16436 * hilit-chg.el (highlight-changes-mode)
16437 (highlight-changes-visible-mode):
16438 * hi-lock.el (hi-lock-mode):
16439 * hl-line.el (hl-line-mode, global-hl-line-mode):
16440 * icomplete.el (icomplete-mode):
16441 * ido.el (ido-everywhere):
16442 * image-file.el (auto-image-file-mode):
16443 * image-mode.el (image-minor-mode):
16444 * iswitchb.el (iswitchb-mode):
16445 * jka-cmpr-hook.el (auto-compression-mode):
16446 * linum.el (linum-mode):
16447 * longlines.el (longlines-mode):
16448 * master.el (master-mode):
16449 * mb-depth.el (minibuffer-depth-indicate-mode):
16450 * menu-bar.el (menu-bar-mode):
16451 * minibuf-eldef.el (minibuffer-electric-default-mode):
16452 * mouse-sel.el (mouse-sel-mode):
16453 * msb.el (msb-mode):
16454 * mwheel.el (mouse-wheel-mode):
16455 * outline.el (outline-minor-mode):
16456 * paren.el (show-paren-mode):
16457 * recentf.el (recentf-mode):
16458 * reveal.el (reveal-mode, global-reveal-mode):
16459 * rfn-eshadow.el (file-name-shadow-mode):
16460 * ruler-mode.el (ruler-mode):
16461 * savehist.el (savehist-mode):
16462 * scroll-all.el (scroll-all-mode):
16463 * scroll-bar.el (scroll-bar-mode):
16464 * server.el (server-mode):
16465 * shell.el (shell-dirtrack-mode):
16466 * simple.el (auto-fill-mode, transient-mark-mode)
16467 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
16468 (line-number-mode, column-number-mode, size-indication-mode)
16469 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
16470 * strokes.el (strokes-mode):
16471 * time.el (display-time-mode):
16472 * t-mouse.el (gpm-mouse-mode):
16473 * tool-bar.el (tool-bar-mode):
16474 * tooltip.el (tooltip-mode):
16475 * type-break.el (type-break-mode-line-message-mode)
16476 (type-break-query-mode):
16477 * view.el (view-mode):
16478 * whitespace.el (whitespace-mode, whitespace-newline-mode)
16479 (global-whitespace-mode, global-whitespace-newline-mode):
16480 * xt-mouse.el (xterm-mouse-mode): Doc fix.
16481
16482 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
16483 Fix autogenerated docstring.
16484
16485 2011-10-19 Juri Linkov <juri@jurta.org>
16486
16487 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
16488 by checking environment variables "DESKTOP_SESSION" and
16489 "XDG_CURRENT_DESKTOP". (Bug#9779)
16490
16491 2011-10-19 Juri Linkov <juri@jurta.org>
16492
16493 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
16494 (browse-url-chromium-program, browse-url-chromium-arguments):
16495 New defcustoms.
16496 (browse-url-default-browser): Check for `browse-url-chromium' and
16497 call `browse-url-chromium-program'.
16498 (browse-url-chromium): New command. (Bug#9779)
16499
16500 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
16501
16502 * facemenu.el (list-colors-duplicates): On Windows, detect more
16503 duplicates by assuming that only colors matching "^System" are
16504 special "system colors". (Bug#9722)
16505
16506 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16507
16508 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
16509 to distinguish the author from the committer.
16510
16511 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
16512
16513 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
16514
16515 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
16516
16517 * international/mule.el (sgml-html-meta-auto-coding-function):
16518 Add support for detecting encoding in HTML5 specified only as
16519 <meta charset="UTF-8">. Implementation just makes http-equiv and
16520 content-type parts from HTML4 encoding string optional. (Bug#9716)
16521
16522 2011-10-18 Glenn Morris <rgm@gnu.org>
16523
16524 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
16525
16526 2011-10-18 Chong Yidong <cyd@gnu.org>
16527
16528 * faces.el (cursor): Doc fix.
16529
16530 2011-10-17 Chong Yidong <cyd@gnu.org>
16531
16532 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
16533
16534 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
16535
16536 * dirtrack.el (dirtrack): Support shell buffers with path
16537 prefixes, e.g. tramp-based remote shells. (Bug#9647)
16538
16539 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
16540
16541 * json.el: Bump version to 1.3 and note change in History.
16542 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
16543
16544 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16545
16546 * comint.el (comint-insert-input, comint-send-input)
16547 (comint-get-old-input-default, comint-backward-matching-input)
16548 (comint-next-prompt): Use nil instead of `input' for field property of
16549 past user input (bug#114).
16550
16551 * minibuffer.el (completion--replace): Inherit surrounding properties
16552 (bug#114).
16553 (minibuffer-complete-and-exit): Use it.
16554
16555 * comint.el (comint--table-subvert): Quote the all-completions output
16556 (bug#9160).
16557
16558 2011-10-17 Martin Rudalics <rudalics@gmx.at>
16559
16560 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
16561
16562 * menu-bar.el (menu-bar-file-menu): Add entry for making new
16563 window on right of selected. (Bug#9350) Reword other window
16564 entries and separate them from frame entries.
16565
16566 2011-10-15 Glenn Morris <rgm@gnu.org>
16567
16568 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
16569 Doc fixes.
16570
16571 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
16572
16573 * net/network-stream.el (network-stream-open-starttls):
16574 Improve detection of failure due to lack of TLS support.
16575
16576 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
16577 putting the input text in front and in bold.
16578
16579 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16580
16581 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
16582
16583 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
16584 empty buffer.
16585
16586 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
16587 unread-command-events rather than pushing yet-another event.
16588
16589 2011-10-14 Eli Zaretskii <eliz@gnu.org>
16590
16591 * mail/sendmail.el (sendmail-query-once): Improve the wording of
16592 the explanation of the possible choices. Make the options passed
16593 to completing-read shorter.
16594
16595 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16596
16597 * textmodes/flyspell.el (flyspell-large-region): Make sure
16598 extended character mode is used if defined (Bug#1339).
16599
16600 2011-10-13 Eli Zaretskii <eliz@gnu.org>
16601
16602 * simple.el (what-cursor-position): Fix the display of the
16603 character info for LRE, LRO, RLE, and RLO characters by appending
16604 an invisible PDF.
16605
16606 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
16607
16608 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
16609 even in case of error; add debug spec; simplify data flow.
16610 (with-timeout-handler): Remove.
16611
16612 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
16613
16614 Fix Bug#6019, Bug#9315.
16615
16616 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
16617 complete `buffer-file-name', the local file name part could look
16618 remotely (for example on VMS).
16619
16620 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
16621 `tramp-run-real-handler'.
16622 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
16623 already quoted by '"'.
16624
16625 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
16626 Let `file-name-handler-alist' be nil, the local file name part
16627 could look remotely (for example on VMS).
16628
16629 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16630
16631 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
16632 from here...
16633 (flyspell-post-command-hook): ...to here.
16634
16635 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16636
16637 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
16638 if not needed.
16639 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
16640 using completion. Protect against "slow" callers.
16641 Remove the "message hack".
16642
16643 2011-10-11 Juri Linkov <juri@jurta.org>
16644
16645 * isearch.el (isearch-lazy-highlight-word): New variable.
16646 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
16647 Use it. (Bug#9727)
16648
16649 2011-10-11 Glenn Morris <rgm@gnu.org>
16650
16651 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
16652 like f90-previous-statement does.
16653
16654 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16655
16656 * eshell/eshell.el (eshell-command): History should be saved
16657 only in interactive use, to avoid error.
16658
16659 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16660
16661 * minibuffer.el (completion-file-name-table): Fix last change,
16662 i.e. ignore normal errors but not the other ones.
16663
16664 2011-10-10 Martin Rudalics <rudalics@gmx.at>
16665
16666 * window.el (special-display-buffer-names)
16667 (special-display-regexps): Remove some remnants of earlier
16668 changes from doc-strings.
16669 (quit-windows-on): New function.
16670
16671 * vc/vc.el (vc-revert, vc-rollback):
16672 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
16673 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
16674 (Bug#6183) (Bug#7074) (Bug#7447)
16675
16676 2011-10-09 Martin Rudalics <rudalics@gmx.at>
16677
16678 * window.el (frame-auto-hide-function): Add version tag.
16679 (Bug#9699)
16680
16681 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
16682
16683 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
16684 condition.
16685
16686 2011-10-09 Leo Liu <sdl.web@gmail.com>
16687
16688 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
16689 (Bug#9701)
16690
16691 2011-10-08 Glenn Morris <rgm@gnu.org>
16692
16693 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
16694 before the first code statement zero indent. (Bug#9690)
16695
16696 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
16697
16698 * simple.el (count-words-region): Always count in the region.
16699 Report the number of lines and characters too.
16700 (count-words): New command, which counts in the buffer if the
16701 region is inactive, as count-words-region used to.
16702 (count-words--message): New function. Handle plurals.
16703 (count-lines-region): Make it an alias for count-words-region.
16704
16705 * bindings.el (esc-map): Replace count-lines-region with
16706 count-words-region.
16707
16708 2011-10-08 Martin Rudalics <rudalics@gmx.at>
16709
16710 * window.el (window--delete): Delete dedicated frame
16711 unconditionally when argument KILL is non-nil. (Bug#9699)
16712 (switch-to-buffer): Fix doc-string typo.
16713
16714 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16715
16716 * eshell/eshell.el (eshell-command): Avoid using hooks.
16717
16718 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
16719
16720 * bindings.el ([M-left],[M-right]): Bind to left-word and
16721 right-word respectively.
16722
16723 2011-10-07 Glenn Morris <rgm@gnu.org>
16724
16725 * cus-start.el (debug-on-quit): Fix custom type.
16726
16727 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16728
16729 * subr.el (define-key-after): Clarify that the function is not
16730 useful for non-menu keymaps.
16731
16732 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
16733
16734 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16735
16736 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
16737 in current minibuffer (Fix bug with recursive minibuffers).
16738
16739 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
16740
16741 * progmodes/gdb-mi.el (gdb): Doc fix.
16742
16743 2011-10-05 Martin Rudalics <rudalics@gmx.at>
16744
16745 * window.el (frame-auto-hide-function): New option replacing
16746 frame-auto-delete. Suggested by Stefan Monnier.
16747 (window--delete): Call frame-auto-hide-function instead of
16748 investigating frame-auto-delete.
16749 (window-point-1, set-window-point-1): New functions.
16750 (window-in-direction, record-window-buffer, window-state-get-1)
16751 (display-buffer-record-window): Use window-point-1 instead of
16752 window-point.
16753 (set-window-buffer-start-and-point): Use set-window-point-1.
16754
16755 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16756
16757 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
16758
16759 2011-10-05 Glenn Morris <rgm@gnu.org>
16760
16761 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
16762 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
16763
16764 2011-10-05 Leo Liu <sdl.web@gmail.com>
16765
16766 * subr.el (read-char-choice): Fix argument to buffer-live-p which
16767 works with buffer object.
16768
16769 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
16770
16771 * mpc.el (mpc-tool-bar-map): Add labels.
16772
16773 2011-10-04 Glenn Morris <rgm@gnu.org>
16774
16775 * calendar/holidays.el (calendar-check-holidays): Doc fix.
16776
16777 2011-10-04 Martin Rudalics <rudalics@gmx.at>
16778
16779 * window.el (window--delete): New function.
16780 (frame-auto-delete): Resuscitate option.
16781 (bury-buffer, replace-buffer-in-windows)
16782 (quit-window): Rewrite using window--delete.
16783 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
16784 Pass display-buffer-mark-dedicated to window--display-buffer-2
16785 (Bug#9639).
16786
16787 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16788
16789 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
16790 returns a list (bug#9554). Add remote file name completion.
16791 * comint.el (comint--table-subvert): Curry and get quote&unquote
16792 functions as arguments.
16793 (comint--complete-file-name-data): Adjust call accordingly.
16794 * pcomplete.el (pcomplete--table-subvert): Remove.
16795 (pcomplete-completions-at-point): Use comint--table-subvert instead.
16796
16797 * minibuffer.el (completion-table-case-fold): Use currying.
16798 (completion--styles-type, completion--cycling-threshold-type):
16799 New constants.
16800 (completion-styles, completion-category-overrides)
16801 (completion-cycle-threshold): Use them.
16802 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
16803 completion-table-case-fold.
16804
16805 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
16806
16807 * minibuffer.el (completion-category-overrides): Fix type of styles
16808 and add more user friendly tags (bug#9660).
16809
16810 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16811
16812 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
16813 (mule-input-method-string): New widget.
16814 (default-input-method, language-info-custom-alist): Use it.
16815
16816 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16817
16818 * pcomplete.el: Require comint.
16819 (pcomplete--common-suffix): Remove.
16820 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
16821 (pcomplete--table-subvert): Sync with comint--table-subvert.
16822 (pcomplete--entries): Use comint-completion-file-name-table.
16823 * comint.el (comint-unquote-filename): Simplify.
16824 (comint-completion-file-name-table): New function (bug#9616).
16825 (comint--complete-file-name-data): Use it.
16826
16827 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
16828 (pcmpl-gnu-tar-buffer): Remove.
16829 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
16830 around. Make sure pcomplete-suffix-list is only changed temporarily.
16831 Don't look inside the tar's file if it's too large.
16832
16833 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
16834
16835 * cus-edit.el (custom-mode-map):
16836 * epa.el (epa-key-list-mode-map):
16837 * man.el (Man-mode-map):
16838 * startup.el (splash-screen-keymap):
16839 * simple.el (special-mode-map): Use scroll-up-command and
16840 scroll-down-command.
16841
16842 * progmodes/idlw-help.el (idlwave-help-mode-map):
16843 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
16844 * net/newst-plainview.el (newsticker-mode-map):
16845 * emulation/ws-mode.el (wordstar-mode-map):
16846 * emulation/vi.el (vi-com-map):
16847 * calc/calc-graph.el (calc-graph-show-dumb):
16848 * term/sun.el (terminal-init-sun):
16849 * term/ns-win.el (global-map):
16850 * progmodes/grep.el (grep-mode-map):
16851 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
16852 * mail/rmail.el (rmail-mode-map):
16853 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
16854
16855 * custom.el (custom-safe-themes, load-theme): Treat value of t for
16856 custom-safe-themes as special.
16857
16858 2011-10-01 Julien Danjou <julien@danjou.info>
16859
16860 * notifications.el (notifications-notify): Fix docstring.
16861
16862 2011-10-01 Per Starbäck <per@starback.se>
16863
16864 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
16865
16866 2011-09-30 Martin Rudalics <rudalics@gmx.at>
16867
16868 * startup.el (command-line-1): Fix last fix by inserting
16869 initial-scratch-message into *scratch* before displaying it.
16870 (Bug#9605) and (Bug#9636)
16871
16872 2011-09-29 Eli Zaretskii <eliz@gnu.org>
16873
16874 * simple.el (line-move): If auto-hscroll-mode is disabled and the
16875 window is hscrolled, move by logical lines. (Bug#9607)
16876 (line-move-visual): Update the doc string to the above effect.
16877
16878 2011-09-29 Martin Rudalics <rudalics@gmx.at>
16879
16880 * window.el (display-buffer-record-window): When WINDOW is the
16881 selected window use `point' instead of `window-point'. (Bug#9626)
16882
16883 * startup.el (command-line-1): Use insert-before-markers when
16884 inserting initial-scratch-message. (Bug#9605)
16885
16886 * help.el (help-window): Remove variable.
16887
16888 2011-09-29 Glenn Morris <rgm@gnu.org>
16889
16890 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
16891
16892 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
16893
16894 * descr-text.el (describe-char-categories): Accept category
16895 descriptions more than one line long.
16896
16897 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
16898
16899 * simple.el (delete-trailing-whitespace): Fix last change.
16900
16901 * progmodes/perl-mode.el (perl-syntax-propertize-function):
16902 Don't confuse "y => 3" as the beginning of a `y' operation.
16903
16904 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
16905 object has more than 4 slots (bug#9613).
16906
16907 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
16908
16909 * subr.el (with-output-to-temp-buffer):
16910 * net/quickurl.el (quickurl, quickurl-browse-url):
16911 Fix typos in docstrings.
16912
16913 2011-09-27 Eli Zaretskii <eliz@gnu.org>
16914
16915 * minibuffer.el (completion-styles)
16916 (completion-category-overrides): Cross reference each other in doc
16917 strings.
16918
16919 2011-09-27 Glenn Morris <rgm@gnu.org>
16920
16921 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
16922 to split-string. (Bug#9606)
16923
16924 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16925
16926 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
16927 (bug#9615).
16928
16929 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
16930
16931 * emacs-lisp/package.el (list-packages): Fix echo area message.
16932
16933 2011-09-27 Leo Liu <sdl.web@gmail.com>
16934
16935 * ido.el (ido-read-internal): Accept cons cell HIST arg.
16936
16937 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
16938
16939 * net/dbus.el (dbus-unregister-object): Don't release services for
16940 registered signals. (Bug#9581)
16941
16942 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
16943
16944 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
16945 function that picks between cfengine 2 and 3 support
16946 automatically. Update docs accordingly.
16947
16948 2011-09-22 Kenichi Handa <handa@m17n.org>
16949
16950 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
16951 ZERO.
16952 (indian-itrans-v5-table-for-tamil): New variable.
16953 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
16954
16955 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
16956
16957 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
16958 that's true if the current command involved collapsing of text.
16959 It's reset to false at the beginning of the next command.
16960 (allout-post-command-business): Move the cursor to the beginning
16961 of entry if the cursor is hidden and collapsing activity just
16962 happened.
16963
16964 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
16965
16966 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
16967 tracking (Bug#9541).
16968
16969 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
16970
16971 * net/newst-reader.el (newsticker-html-renderer)
16972 (newsticker-show-news): Automatically load html rendering package
16973 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
16974 because w3m-fill-column is let-bound" and the error "Symbol's value
16975 as variable is void: w3m-fill-column".
16976
16977 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
16978
16979 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
16980 Release services only if they are defined. (Bug#9581)
16981
16982 2011-09-23 Richard Stallman <rms@gnu.org>
16983
16984 * textmodes/paragraphs.el (forward-sentence): For backwards case,
16985 distinguish start of paragraph from start of its text.
16986
16987 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
16988
16989 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
16990 (rmail-generate-viewer-buffer): Put that hook on view buffer.
16991 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
16992
16993 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
16994
16995 * international/mule-diag.el (mule-diag): Insert a newline after
16996 each fontset description.
16997
16998 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
16999
17000 * simple.el (delete-trailing-whitespace):
17001 Document last change; simplify.
17002
17003 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
17004
17005 * simple.el (delete-trailing-whitespace): Also delete
17006 extra newlines at the end of the buffer.
17007
17008 * textmodes/picture.el: Make motion commands obey shift-select-mode.
17009 (picture-newline): Use forward-line so as to ignore fields.
17010
17011 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17012
17013 * subr.el (with-wrapper-hook): Fix edebug spec.
17014
17015 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
17016
17017 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
17018 (bug#4538).
17019
17020 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
17021
17022 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
17023 Fix nasty bug using wrong cached values.
17024
17025 2011-09-23 Alan Mackenzie <acm@muc.de>
17026
17027 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
17028
17029 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
17030
17031 * window.el (pop-to-buffer): Ensure right window is selected if we
17032 chose another frame.
17033
17034 2011-09-22 Eli Zaretskii <eliz@gnu.org>
17035
17036 * simple.el (what-cursor-position): Use get-char-property-change
17037 and next-single-char-property-change, to be able to show display
17038 properties that come from overlays as well as text properties.
17039
17040 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
17041
17042 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
17043
17044 * cmuscheme.el (run-scheme, switch-to-scheme):
17045 * cus-edit.el (customize-group, custom-buffer-create)
17046 (customize-browse):
17047 * info.el (info):
17048 * shell.el (shell):
17049 * mail/sendmail.el (mail):
17050 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
17051
17052 2011-09-22 Richard Stallman <rms@gnu.org>
17053
17054 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
17055 move back only to line beg, don't move back over blank lines.
17056
17057 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
17058
17059 * files.el (copy-directory): Set directory attributes only in case
17060 they could be retrieved from the source directory. (Bug#9565)
17061
17062 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
17063
17064 * progmodes/hideshow.el (hs-looking-at-block-start-p)
17065 (hs-find-block-beginning, hs-hide-level-recursive):
17066 Ignore strings as well as comments. (Bug#9502)
17067
17068 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
17069
17070 * progmodes/sql.el (sql-comint-postgres):
17071 Convert port number to a string. (Bug#9566)
17072
17073 2011-09-22 Martin Rudalics <rudalics@gmx.at>
17074
17075 * window.el (quit-window): Undedicate window when switching to
17076 previous buffer. Reported by Thierry Volpiatto
17077 <thierry.volpiatto@gmail.com>.
17078 (special-display-popup-frame): When popping up a new frame reset
17079 its previous buffers to nil. Simplify code.
17080
17081 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
17082
17083 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
17084 and process filter, as done also in `shell-command'.
17085
17086 2011-09-21 Martin Rudalics <rudalics@gmx.at>
17087
17088 * window.el (set-window-buffer-start-and-point):
17089 Call set-window-start with NOFORCE argument t.
17090 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17091 (quit-window): Reword doc-string. Handle new format of
17092 quit-restore parameter. Don't delete window if it has a
17093 previous buffer we can show instead of the present one.
17094 (display-buffer-record-window): Rewrite using a new format for
17095 the quit-restore window parameter
17096 (special-display-popup-frame, display-buffer-same-window)
17097 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17098 (display-buffer-pop-up-window, display-buffer-use-some-window):
17099 Adapt symbol passed to display-buffer-record-window.
17100 * help.el (help-window-setup): Handle new format of quit-restore
17101 parameter.
17102
17103 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
17104
17105 * faces.el (face-list): Fix docstring (bug#9564).
17106
17107 * window.el (display-buffer--action-function-custom-type):
17108 Don't include internal functions in the Custom interface.
17109
17110 2011-09-20 Juri Linkov <juri@jurta.org>
17111
17112 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
17113 (Info-forward-node, Info-backward-node, Info-next-preorder)
17114 (Info-last-preorder): Use it. (Bug#9528)
17115
17116 2011-09-20 Juri Linkov <juri@jurta.org>
17117
17118 * info.el (Info-last-preorder): Visit last menu item only when
17119 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
17120
17121 2011-09-20 Julien Danjou <julien@danjou.info>
17122
17123 * password-cache.el (password-cache-remove): Remove entries even if the
17124 value is nil, so that password with a nil value (negative caching) is
17125 possible to invalidate.
17126
17127 2011-09-20 Lawrence Mitchell <wence@gmx.li>
17128
17129 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
17130 all whitespace around breakpoint. (Bug#9553)
17131 (f90-find-breakpoint): Only break at whitespace inside a comment.
17132
17133 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
17134
17135 * minibuffer.el (completion-file-name-table): Keep track of errors.
17136 (completion-table-with-predicate): Handle the case where pred1 is nil.
17137 * pcomplete.el (pcomplete-completions-at-point): Simplify.
17138
17139 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17140
17141 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
17142 (debugger-return-value): Signal an error if the debugging context does
17143 not await any return value.
17144
17145 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
17146 * image-mode.el (image-toggle-display-text)
17147 (image-toggle-display-image): Stay away from evil `intangible'.
17148
17149 2011-09-19 Leo Liu <sdl.web@gmail.com>
17150
17151 * replace.el (occur-revert-arguments): Make it permanent-local.
17152 (occur-mode): Don't call font-lock-defontify.
17153
17154 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
17155
17156 * net/ldap.el (ldap-search-internal): Don't push empty search
17157 result (Bug#9508).
17158
17159 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
17160
17161 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
17162
17163 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
17164
17165 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
17166 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
17167
17168 2011-09-18 Juri Linkov <juri@jurta.org>
17169
17170 * buff-menu.el (Buffer-menu-mode-map):
17171 * dired.el (dired-mode-map):
17172 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
17173 (lisp-interaction-mode-map):
17174 * emacs-lisp/package.el (package-menu-mode-map):
17175 * epa.el (epa-key-list-mode-map):
17176 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
17177 (menu-bar-options-menu):
17178 * outline.el (outline-mode-menu-bar-map):
17179 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
17180 * vc/vc-dir.el (vc-dir-menu-map):
17181 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
17182 Capitalize non-function content words in menu item strings.
17183
17184 * dired.el (dired-mode-map): Add menu item for
17185 `image-dired-dired-toggle-marked-thumbs'.
17186
17187 2011-09-18 Juri Linkov <juri@jurta.org>
17188
17189 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
17190 to `isearch-case-fold-search' and restore its original value
17191 after the `isearch-mode' call.
17192
17193 2011-09-18 Juri Linkov <juri@jurta.org>
17194
17195 * progmodes/grep.el (grep-process-setup): Don't check code for 1
17196 because `zgrep' returns 1 for successful matches (bug#9226).
17197
17198 2011-09-18 Juri Linkov <juri@jurta.org>
17199
17200 * info.el (Info-extract-menu-node-name): Check the second match
17201 for empty string (second test-case of bug#9528).
17202 (Info-last-preorder): Let-bind `Info-history' to nil to not add
17203 intermediate nodes to the history (first test-case of bug#9528).
17204
17205 2011-09-18 Juri Linkov <juri@jurta.org>
17206
17207 * info.el (Info-mode-syntax-table): New variable.
17208 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
17209
17210 2011-09-18 Juri Linkov <juri@jurta.org>
17211
17212 * info.el (Info-file-supports-index-cookies):
17213 Increment line-beginning-position's arg from 3 to 4 because makeinfo
17214 outputs one more line for long file names (bug#4142).
17215
17216 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17217
17218 * newcomment.el (comment-normalize-vars): If prompting for
17219 comment-start, set comment-start-skip too (Bug#8424).
17220
17221 2011-09-18 Johan Bockgård <bojohan@gnu.org>
17222
17223 * icomplete.el: Fix previous fix of Bug#5849.
17224 (icomplete-mode): Don't set completion-show-inline-help.
17225 (icomplete-minibuffer-setup): Set completion-show-inline-help
17226 locally during icompletion.
17227
17228 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
17229
17230 * woman.el (woman2-process-escapes): Don't delete unrecognized
17231 escapes (Bug#7843).
17232
17233 * files.el (inhibit-first-line-modes-regexps): Add image files.
17234 (hack-local-variables-prop-line): Return nil for malformed
17235 prop-lines (Bug#9044).
17236
17237 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
17238
17239 * net/tramp.el (top): Don't require 'shell.
17240 (tramp-methods): Fix docstring.
17241 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
17242 Return complete remote file name. Handle "smb" case.
17243 Use `tramp-tmpdir', if defined for the respective method.
17244 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
17245
17246 * net/tramp-compat.el (top): Require 'shell.
17247
17248 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
17249 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
17250 `tramp-current-host'.
17251 (tramp-get-remote-tmpdir): Remove.
17252
17253 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
17254 `tramp-tmpdir' entries.
17255 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
17256 (tramp-smb-handle-file-attributes): Ignore errors.
17257 (tramp-smb-wait-for-output): Check also for process end.
17258
17259 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
17260
17261 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
17262 when sending QUIT (bug#9312).
17263
17264 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
17265
17266 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
17267 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
17268 occur-mode-display-occurrence.
17269 (occur-edit-mode): Add usage message.
17270 (occur-cease-edit): New command.
17271 (occur-after-change-function): Use text properties to find the
17272 position of the prefix text.
17273 (occur-engine): Set stickiness of prefix text properties.
17274
17275 2011-09-17 Glenn Morris <rgm@gnu.org>
17276
17277 * progmodes/etags.el (complete-tag):
17278 Fix call to completion-in-region. (Bug#9526)
17279
17280 2011-09-17 Juri Linkov <juri@jurta.org>
17281
17282 * textmodes/ispell.el (ispell-word): Add to the error message
17283 the word, ispell program name and current dictionary (bug#9121).
17284 (ispell-tex-arg-end): Capitalize "error" in the error message.
17285
17286 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
17287
17288 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
17289 check. (Bug#4251)
17290
17291 2011-09-17 Juri Linkov <juri@jurta.org>
17292
17293 * window.el (window-safe-min-height, window-safe-min-width):
17294 Fix typos (followup to bug#9522).
17295
17296 2011-09-17 Sven Joachim <svenjoac@gmx.de>
17297
17298 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
17299
17300 2011-09-16 Eli Zaretskii <eliz@gnu.org>
17301
17302 * simple.el (line-move): If goal-column is set, move by logical
17303 lines, not by display lines. (Bug#971)
17304 (next-line, previous-line, goal-column, line-move-visual): Doc fix
17305 to reflect the above change.
17306
17307 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17308
17309 * image.el (imagemagick-register-types): Use regexp-opt.
17310
17311 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17312
17313 * window.el (display-buffer-base-action): Rename from
17314 display-buffer-default-action. Make default value empty.
17315 (display-buffer-overriding-action): Convert to defvar.
17316 (display-buffer-fallback-action): New var.
17317
17318 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
17319
17320 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
17321 declaration.
17322 (package--add-to-archive-contents): If there is a duplicate entry
17323 with an older version, remove it.
17324 (package-menu-mark-delete, package-menu-mark-install)
17325 (package-menu-mark-unmark): Make unused args optional.
17326 (package-menu-mark-obsolete-for-deletion):
17327 Use package-menu-get-status instead of a regexp search.
17328 (package-menu-get-status): Use tabulated-list-entry.
17329 (package-menu-mark-upgrades): New command.
17330 (package-menu-mode-map): Bind it to U. Add it to menu bar.
17331 (package-menu-execute): Do installation before deletion.
17332 (package-menu-refresh, package-menu-execute): Use derived-mode-p
17333 instead of checking major-mode.
17334 (package-menu--find-upgrades): New function.
17335
17336 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17337
17338 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
17339 passwords in the log buffer.
17340 (smtpmail-process-filter): Update the process marker so that the
17341 "broken by peer" status message is inserted in the right place.
17342
17343 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
17344
17345 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
17346 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
17347 bibtex-completion-at-point-function.
17348 (bibtex-completion-at-point-function): Use them.
17349
17350 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
17351
17352 * mpc.el (mpc-constraints-tag-lookup): New function.
17353 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
17354 also to browser "album|playlist".
17355
17356 2011-09-14 Juri Linkov <juri@jurta.org>
17357
17358 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
17359 (isearch-edit-string): Use length of `isearch-string' when
17360 `isearch-fail-pos' returns nil.
17361 (isearch-message): Remove duplicate code and call
17362 `isearch-fail-pos' with arg `t'.
17363
17364 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
17365
17366 * replace.el (occur-mode-goto-occurrence): Don't force using other
17367 window (Bug#9499).
17368
17369 * dired-aux.el (dired-do-chmod): Don't provide initial input.
17370
17371 2011-09-14 Martin Rudalics <rudalics@gmx.at>
17372
17373 * window.el (display-buffer-window): Remove.
17374 (display-buffer-record-window): Use help-setup window parameter
17375 instead of variable display-buffer-window.
17376 (display-buffer-function, special-display-buffer-names)
17377 (special-display-function): Mention help-setup parameter instead
17378 of display-buffer-window in doc-string.
17379 * help.el (help-window-setup): New argument help-window.
17380 Use help-window-setup parameter instead of display-buffer-window.
17381 Reword some messages.
17382 (with-help-window): Pass window used for displaying the buffer
17383 to help-window-setup. Don't set display-buffer-window.
17384
17385 2011-09-13 Glenn Morris <rgm@gnu.org>
17386
17387 * emacs-lisp/debug.el (debugger-make-xrefs):
17388 Preserve point. (Bug#9462)
17389
17390 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17391
17392 * window.el (window-deletable-p): Use next-frame.
17393
17394 2011-09-13 Martin Rudalics <rudalics@gmx.at>
17395
17396 * window.el (window-auto-delete): Remove.
17397 (window-deletable-p): Remove argument FORCE. Don't deal with
17398 dedication and previous buffers.
17399 (switch-to-prev-buffer): Don't delete window.
17400 (delete-windows-on): Delete a window's frame if and only if the
17401 window is dedicated.
17402 (replace-buffer-in-windows): Delete buffer's window or frame if
17403 and only if window is dedicated.
17404 (quit-window): Handle quit-restore as before last change.
17405 (bury-buffer): Delete window only if window-deletable-p returns t.
17406
17407 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17408
17409 * window.el (window-deletable-p): Never delete the last frame on a
17410 given terminal.
17411
17412 2011-09-13 Glenn Morris <rgm@gnu.org>
17413
17414 * help.el (describe-key-briefly): Copy previous standard-output change.
17415
17416 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
17417
17418 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
17419
17420 2011-09-13 Glenn Morris <rgm@gnu.org>
17421
17422 * emacs-lisp/lisp-mode.el (lisp-indent-function):
17423 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
17424
17425 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
17426
17427 * dired-aux.el (dired-mark-read-string): Don't return default
17428 value on empty input (Bug#9361).
17429 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
17430 Omit initial minibuffer contents.
17431 (dired-do-chmod): Signal an error on empty input.
17432 (dired-mark-read-string): Don't return default on empty input.
17433
17434 * files.el (file-modes-symbolic-to-number): Doc fix.
17435
17436 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17437
17438 * international/mule-cmds.el (ucs-completions): Remove.
17439 (read-char-by-name): Use complete-with-action instead; add metadata.
17440
17441 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17442
17443 * window.el (display-buffer--action-function-custom-type)
17444 (display-buffer--action-custom-type): New vars.
17445 (display-buffer-alist, display-buffer-default-action)
17446 (display-buffer-overriding-action): Add defcustom types.
17447
17448 * frame.el (delete-other-frames): Doc fix (Bug#276).
17449
17450 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17451
17452 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
17453
17454 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17455
17456 Change modes that used same-window-* vars to use switch-to-buffer.
17457
17458 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
17459 Use switch-to-buffer.
17460
17461 * cus-edit.el (customize-group, custom-buffer-create)
17462 (customize-browse, custom-buffer-create-other-window):
17463 Use switch-to-buffer or switch-to-buffer-other-window.
17464
17465 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
17466 (Info-prev, Info-up, Info-speedbar-goto-node)
17467 (info-display-manual): Use switch-to-buffer.
17468 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
17469
17470 * mail/sendmail.el (mail): Use switch-to-buffer.
17471 (mail-recover): Use switch-to-buffer-other-window.
17472
17473 * cmuscheme.el (run-scheme, switch-to-scheme):
17474 * ielm.el (ielm):
17475 * shell.el (shell):
17476 * net/rlogin.el (rlogin):
17477 * net/telnet.el (telnet, rsh):
17478 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
17479
17480 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
17481
17482 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
17483
17484 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17485
17486 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
17487 so don't mention it (bug#9301).
17488 (dired-sort-toggle-or-edit): Clarify string further.
17489
17490 * faces.el (face-spec-set-match-display): Make `(type graphic)'
17491 match `x', `w32' and `ns', like the manual says (bug#9029).
17492
17493 * subr.el (eval-after-load): Doc string clarification (bug#9125).
17494 (process-kill-buffer-query-function): Mention the buffer name in
17495 the query.
17496
17497 * image-mode.el (image-next-line): The line parameter is mandatory
17498 (bug#9258).
17499
17500 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
17501 which can be useful (bug#9301).
17502
17503 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
17504
17505 * subr.el (match-string): Mention that the current buffer should
17506 be the same as the search was done in (bug#9282).
17507
17508 * facemenu.el: Disable the remove-* commands if the mark isn't
17509 active (bug#9162).
17510
17511 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17512
17513 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
17514 of display-buffer.
17515 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
17516
17517 * replace.el (occur-mode-goto-occurrence)
17518 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
17519 and display-buffer.
17520
17521 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
17522 display-buffer.
17523
17524 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
17525 special-display and same-window variables.
17526 (mail-other-window): Use switch-to-buffer-other-window.
17527 (mail-other-frame): USe switch-to-buffer-other-frame.
17528
17529 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
17530 Use display-buffer-other-frame.
17531 (gdb-display-gdb-buffer): Use pop-to-buffer.
17532
17533 * progmodes/gud.el (gud-goto-info): Use info-other-window.
17534
17535 * progmodes/python.el: Don't set same-window-buffer-names.
17536
17537 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
17538
17539 * window.el (display-buffer-alist): Add *Python*.
17540
17541 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
17542
17543 * window.el (display-buffer-alist): Add entry for buffers
17544 previously handled same-window-*.
17545 (display-buffer-alist, display-buffer-default-action)
17546 (display-buffer-overriding-action): Mark as risky.
17547 (display-buffer-alist): Document action function changes.
17548 (display-buffer--same-window-action)
17549 (display-buffer--other-frame-action): New variables.
17550 (switch-to-buffer, display-buffer-other-frame): Use them.
17551 (display-buffer): Rename reuse-frame entry to reusable-frames.
17552 (display-buffer-reuse-selected-window): Function deleted.
17553 (display-buffer-reuse-window): Handle reusable-frames alist entry.
17554 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
17555 (display-buffer-special): New function.
17556 (display-buffer--maybe-pop-up-frame-or-window): Rename from
17557 display-buffer-reuse-or-pop-window. Split off special-display
17558 part into display-buffer-special.
17559 (display-buffer-use-some-window): Don't perform any special
17560 pop-up-frames handling.
17561 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
17562 (display-buffer--maybe-same-window): Rename from
17563 display-buffer-maybe-same-window.
17564
17565 * info.el: Don't set same-window-regexps.
17566 (info-setup): New function.
17567 (info-other-window, info): Call it.
17568
17569 * cus-edit.el: Don't set same-window-regexps.
17570 (customize-group): New argument.
17571 (customize-group-other-window): Use it.
17572 (customize-face, customize-face-other-window): Likewise.
17573 (custom-buffer-create-other-window): Use pop-to-buffer directly.
17574
17575 * net/rlogin.el:
17576 * net/telnet.el:
17577 * progmodes/gud.el: Don't set same-window-regexps.
17578
17579 * cmuscheme.el:
17580 * ielm.el:
17581 * shell.el:
17582 * mail/sendmail.el:
17583 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
17584
17585 2011-09-10 Juri Linkov <juri@jurta.org>
17586
17587 * isearch.el (isearch-edit-string): Remove obsolete mention of
17588 `C-w' (`isearch-yank-word-or-char') from docstring.
17589 (isearch-query-replace): Fix typo in docstring (bug#9466).
17590
17591 2011-09-10 Juri Linkov <juri@jurta.org>
17592
17593 * paren.el (show-paren-function): Don't show escaped parens.
17594 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
17595
17596 2011-09-10 Eli Zaretskii <eliz@gnu.org>
17597
17598 * mail/sendmail.el (mml-to-mime, mml-attach-file)
17599 (mm-default-file-encoding): Remove autoload forms, they are
17600 replaced with autoload cookies in mml.el and mm-encode.el.
17601 (mail-add-attachment): New command.
17602 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
17603 (mail-mode): Mention mail-insert-file and mail-add-attachment in
17604 the doc string.
17605 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
17606
17607 2011-09-10 Reuben Thomas <rrt@sc3d.org>
17608
17609 * simple.el (count-words-region): Use buffer if there's no region
17610 (bug#9429).
17611
17612 2011-09-09 Juri Linkov <juri@jurta.org>
17613
17614 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
17615 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
17616 (wdired-isearch-filter-read-only): New function. (Bug#6362)
17617
17618 2011-09-09 Alan Mackenzie <acm@muc.de>
17619
17620 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
17621 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
17622
17623 2011-09-09 Eli Zaretskii <eliz@gnu.org>
17624
17625 Fix for Savannah bug#9392.
17626 * simple.el (mail-encode-mml): New defvar.
17627
17628 * mail/rmail.el (mail-encode-mml): Add a defvar.
17629 (rmail-enable-mime-composing): Default to t.
17630 (rmail-forward): Use MIME method of forwarding only if both
17631 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
17632 Set mail-encode-mml non-nil if the MIME method was used.
17633
17634 * mail/sendmail.el (mml-to-mime): Add autoload form.
17635 (mail-encode-mml): Add a defvar.
17636 (mail-mode): Make mail-encode-mml buffer-local and initialize it
17637 to nil.
17638 (mail-send): If mail-encode-mml is non-nil, run the outgoing
17639 message through mml-to-mime, and reset mail-encode-mml to nil.
17640
17641 2011-09-09 Glenn Morris <rgm@gnu.org>
17642
17643 * woman.el (woman-if-body): When processing an .el block,
17644 do not delete the next .el block as well. (Bug#9447)
17645 (woman-special-characters): Add oq, cq, and hy characters.
17646
17647 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17648
17649 * window.el (window-deletable-p): Make sure window is live before
17650 invoking window-prev-buffers.
17651
17652 2011-09-08 Leo Liu <sdl.web@gmail.com>
17653
17654 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
17655
17656 2011-09-08 Juri Linkov <juri@jurta.org>
17657
17658 * progmodes/compile.el (compilation-environment): Make it
17659 a defcustom (bug#8340).
17660
17661 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17662
17663 * window.el (frame-auto-delete): Rename to window-auto-delete.
17664 Make it control auto-deletion of windows and/or frames.
17665 (window-deletable-p): New argument FORCE. Rewrite conditions
17666 for deleting window/frame. (Bug#9419)
17667 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
17668 Rewrite handling of case when window/frame can be deleted.
17669 (delete-windows-on): Call window-deletable-p with new FORCE
17670 argument t. (Bug#9456)
17671
17672 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
17673
17674 * help-mode.el (help-mode): Restore autoload.
17675
17676 2011-09-07 Juri Linkov <juri@jurta.org>
17677
17678 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
17679 `compilation-environment'. Set buffer-local
17680 `compilation-environment' to `thisenv' later after (funcall mode).
17681 (Bug#8340)
17682
17683 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
17684 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
17685 instead of replacing its value. (Bug#8340)
17686
17687 2011-09-07 Juri Linkov <juri@jurta.org>
17688
17689 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
17690 based on text properties put by `grep-filter' instead of matching
17691 escape sequences.
17692 (grep-mode): Set buffer-local `compilation-error-screen-columns'
17693 to the value of `grep-error-screen-columns' (bug#9438).
17694
17695 2011-09-07 Juri Linkov <juri@jurta.org>
17696
17697 * simple.el (next-error-highlight, next-error-highlight-no-select):
17698 Doc fix (bug#9432).
17699
17700 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
17701
17702 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
17703 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
17704
17705 2011-09-07 Leo Liu <sdl.web@gmail.com>
17706
17707 * net/rcirc.el (rcirc-mode): Conditionally initialize
17708 rcirc-input-ring.
17709
17710 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
17711
17712 * emacs-lisp/find-func.el (find-function-C-source): Only set
17713 find-function-C-source-directory after checking that we found a source
17714 file there (bug#9440).
17715
17716 2011-09-06 Alan Mackenzie <acm@muc.de>
17717
17718 * isearch.el (isearch-other-meta-char): Wherever a key list is
17719 unread, "unread" the prefix arg, too. This fixes bug #8901.
17720
17721 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
17722
17723 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
17724
17725 2011-09-05 Juri Linkov <juri@jurta.org>
17726
17727 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
17728
17729 2011-09-05 Juri Linkov <juri@jurta.org>
17730
17731 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
17732 keeping point where processing of grep matches begins, and
17733 continue to delete remaining escape sequences from the same point.
17734 (grep-filter): Make leading zero optional in "0?1;31m" because
17735 git-grep emits "\033[1;31m" escape sequences unlike expected
17736 "\033[01;31m" as GNU Grep does (bug#9408).
17737 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
17738
17739 2011-09-05 Juri Linkov <juri@jurta.org>
17740
17741 * subr.el (y-or-n-p): Capitalize "yes".
17742
17743 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
17744
17745 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
17746 `tramp-cache-unload-hook' where appropriate.
17747 (tramp-methods): Rename `tramp-remote-sh' to
17748 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
17749 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
17750
17751 * net/tramp-sh.el (top): Don't require 'shell.
17752 (tramp-methods): Add `tramp-remote-shell' and
17753 `tramp-remote-shell-args' entries.
17754 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
17755 (tramp-sh-handle-shell-command): Remove.
17756 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17757 Use `tramp-remote-shell'.
17758
17759 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
17760
17761 * mail/sendmail.el (sendmail-query-once-function): Delete.
17762 (sendmail-query-once): Save directly to send-mail-function.
17763 Update message-send-mail-function too.
17764
17765 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
17766
17767 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
17768
17769 * progmodes/python.el (python-mode-map): Use correct function to
17770 start python interpreter from menu-bar (as reported by Geert
17771 Kloosterman).
17772 (inferior-python-mode-map): Fix typo.
17773 (python-shell-map): Remove.
17774
17775 2011-09-03 Deniz Dogan <deniz@dogan.se>
17776
17777 * net/rcirc.el (rcirc-print): Simplify code for
17778 rcirc-scroll-show-maximum-output. There is no need to walk
17779 through all windows to find the right one.
17780
17781 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
17782
17783 * help.el (help-return-method): Doc fix.
17784
17785 2011-09-03 Martin Rudalics <rudalics@gmx.at>
17786
17787 * window.el (window-deletable-p): Don't return a non-nil value
17788 when there's a buffer that was shown in the window before.
17789 (Bug#9419)
17790 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
17791 Set window's previous buffers to nil.
17792
17793 2011-09-03 Eli Zaretskii <eliz@gnu.org>
17794
17795 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
17796 newline before and after the tag line, so it doesn't interfere
17797 with determining the paragraph direction of bidirectional text.
17798
17799 2011-09-03 Leo Liu <sdl.web@gmail.com>
17800
17801 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
17802
17803 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
17804
17805 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
17806 (pop-to-buffer): Change interactive spec. Pass second argument
17807 directly to display-buffer.
17808 (display-buffer): Fix interactive spec. Use functionp to
17809 distinguish between a function and a list of functions.
17810
17811 * abbrev.el (edit-abbrevs):
17812 * arc-mode.el (archive-extract):
17813 * autoinsert.el (auto-insert):
17814 * bookmark.el (bookmark-bmenu-list):
17815 * files.el (find-file):
17816 * view.el (view-buffer):
17817 * progmodes/compile.el (compilation-goto-locus):
17818 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
17819
17820 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
17821
17822 * window.el (display-buffer-alist): Doc fix.
17823 (display-buffer): Add docstring. Don't treat
17824 display-buffer-default specially.
17825 (display-buffer-reuse-selected-window)
17826 (display-buffer-same-window, display-buffer-maybe-same-window)
17827 (display-buffer-reuse-window, display-buffer-pop-up-frame)
17828 (display-buffer-pop-up-window)
17829 (display-buffer-reuse-or-pop-window)
17830 (display-buffer-use-some-window): New functions.
17831 (display-buffer-default-action): Use them.
17832 (display-buffer-default): Delete.
17833 (pop-to-buffer-1): Fix choice of actions.
17834
17835 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
17836
17837 * minibuffer.el (completion--insert-strings): Don't get confused by
17838 completion entries that end with an LF char.
17839
17840 2011-09-01 Eli Zaretskii <eliz@gnu.org>
17841
17842 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
17843
17844 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
17845
17846 * window.el (display-buffer): Restore interactive spec.
17847 (display-buffer-same-window, display-buffer-other-window):
17848 New functions.
17849 (pop-to-buffer-1): New function. Use the above.
17850 (pop-to-buffer, pop-to-buffer-same-window): Use it.
17851 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
17852
17853 * view.el (view-buffer-other-window, view-buffer-other-frame):
17854 Just use pop-to-buffer.
17855
17856 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17857
17858 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
17859
17860 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
17861
17862 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
17863
17864 2011-08-31 Richard Stallman <rms@gnu.org>
17865
17866 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
17867 of the separation of rmail-view-buffer from rmail-buffer.
17868 If you say no to "replace original", the decrypt is in the
17869 view buffer. If you say yes, the decrypt goes into the
17870 rmail buffer also.
17871
17872 2011-08-31 Martin Rudalics <rudalics@gmx.at>
17873
17874 * window.el (display-buffer-window): Rewrite doc-string.
17875 (display-buffer-record-window): New function.
17876 (display-buffer-macro-specifiers)
17877 (display-buffer-even-window-sizes, display-buffer-set-height)
17878 (display-buffer-set-width, display-buffer-in-window)
17879 (display-buffer-reuse-window, display-buffer-split-specifiers)
17880 (display-buffer-side-specifiers, display-buffer-split-window-1)
17881 (display-buffer-split-window, display-buffer-split-atom-window)
17882 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
17883 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
17884 (display-buffer-other-window-means-other-frame)
17885 (display-buffer-normalize-special)
17886 (display-buffer-normalize-default)
17887 (display-buffer-normalize-argument)
17888 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
17889 (display-buffer-normalize-specifiers, display-buffer-frame)
17890 (display-buffer-same-window, display-buffer-same-frame)
17891 (display-buffer-other-window)
17892 (display-buffer-same-frame-other-window)
17893 (display-buffer-other-frame, pop-to-buffer-same-window)
17894 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
17895 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
17896 (switch-to-buffer-same-frame)
17897 (switch-to-buffer-other-window-same-frame)
17898 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
17899 (display-buffer-alist-set-1, display-buffer-alist-set-2)
17900 (display-buffer-alist-set): Remove.
17901 (display-buffer-function, special-display-buffer-names)
17902 (special-display-regexps, special-display-function):
17903 In doc-string refer to display-buffer-window and quit-restore
17904 parameter.
17905 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
17906 (special-display-frame-alist, special-display-popup-frame)
17907 (same-window-buffer-names, same-window-regexps, same-window-p)
17908 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17909 (split-window-preferred-function, split-height-threshold)
17910 (split-width-threshold, window-splittable-p)
17911 (split-window-sensibly, window--try-to-split-window)
17912 (window--frame-usable-p, even-window-heights)
17913 (window--even-window-heights, window--display-buffer-1)
17914 (window--display-buffer-2, display-buffer-other-frame):
17915 Restore old Emacs 23 code, order and doc-strings where applicable.
17916 (display-buffer-default, display-buffer-assq-regexp): New functions.
17917 (display-buffer-alist): Rewrite doc-string.
17918 (display-buffer-default-action)
17919 (display-buffer-overriding-action): New variables.
17920 (display-buffer, switch-to-buffer): Rewrite.
17921 (pop-to-buffer): Restore Emacs 23 behavior but use
17922 window-normalize-buffer-to-display.
17923 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
17924 Restore Emacs 23 behavior but use
17925 window-normalize-buffer-to-switch-to.
17926 (pop-to-buffer-same-window): Rewrite.
17927 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
17928 Rewrite using Emacs 23 options.
17929
17930 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
17931
17932 * net/tramp.el (tramp-root-regexp): Remove.
17933 (tramp-completion-file-name-regexp-unified)
17934 (tramp-completion-file-name-regexp-separate)
17935 (tramp-completion-file-name-regexp-url): Don't use leading volume
17936 letter on w32 systems. (Bug#5303, Bug#9311)
17937 (tramp-drop-volume-letter): Simplify definition.
17938 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
17939
17940 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
17941
17942 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
17943 (bug#9356).
17944
17945 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
17946
17947 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
17948
17949 2011-08-29 Juri Linkov <juri@jurta.org>
17950
17951 * isearch.el (isearch-done): Don't display message "Mark saved"
17952 when arg `edit' is non-nil to prevent its flicker in the echo area.
17953
17954 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
17955
17956 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
17957 obsolete packages for deletion.
17958
17959 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
17960
17961 * help-mode.el (help-mode-map): Add special-mode-map to parent.
17962 (help-mode): Derive help-mode from special-mode. Don't invoke
17963 view-mode from help-mode.
17964 (help-xref-override-view-map): Remove.
17965 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
17966 view-mode is not used anymore.
17967
17968 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
17969
17970 * server.el (server-port): Doc fix.
17971
17972 * cus-theme.el (custom-theme-choose-mode): Inherit from
17973 special-mode (Bug#9124).
17974 (custom-theme-choose-mode-map): Add special-mode to parent.
17975
17976 2011-08-28 Alan Mackenzie <acm@muc.de>
17977
17978 * progmodes/cc-fonts.el
17979 (c-make-font-lock-BO-decl-search-function): New function.
17980 (c-basic-matchers-after - "Fontify the clauses after various
17981 keywords"): Extract the three keyword lists for the 3 erroneous
17982 constructs from the list of four, and use the new function above
17983 in place of an old one.
17984
17985 2011-08-28 Deniz Dogan <deniz@dogan.se>
17986
17987 * net/rcirc.el (rcirc-insert-prev-input)
17988 (rcirc-insert-next-input): Remove unused argument.
17989
17990 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
17991
17992 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
17993
17994 2011-08-27 Alan Mackenzie <acm@muc.de>
17995
17996 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
17997 handle function pointer parameters properly.
17998
17999 2011-08-27 Martin Rudalics <rudalics@gmx.at>
18000
18001 * window.el (display-buffer-reuse-window): Fix case where
18002 selected window was reused with non-nil OTHER-WINDOW argument.
18003 (Bug#9381)
18004
18005 2011-08-27 Deniz Dogan <deniz@dogan.se>
18006
18007 * net/rcirc.el (rcirc-check-auth-status): Adding support for
18008 oftc's NickServ messages.
18009
18010 2011-08-27 Glenn Morris <rgm@gnu.org>
18011
18012 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
18013
18014 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
18015
18016 * emacs-lisp/package.el (package-install): Call package-initialize
18017 if called interactively.
18018
18019 2011-08-26 Leo Liu <sdl.web@gmail.com>
18020
18021 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
18022
18023 2011-08-25 Juri Linkov <juri@jurta.org>
18024
18025 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
18026 `search-whitespace-regexp' (bug#9364).
18027
18028 2011-08-25 Juri Linkov <juri@jurta.org>
18029
18030 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
18031 `regexp-search-ring' to their global values to protect from
18032 updating by `read-from-minibuffer' (bug#9185).
18033
18034 2011-08-25 Juri Linkov <juri@jurta.org>
18035
18036 * textmodes/ispell.el (ispell-command-loop): Add newline
18037 at the end of the "Use option `i'..." line.
18038
18039 2011-08-25 Juri Linkov <juri@jurta.org>
18040
18041 * battery.el (display-battery-mode): If `battery-status-function'
18042 or `battery-mode-line-format' is nil, display the message and set
18043 `display-battery-mode' to nil (bug#9363).
18044
18045 2011-08-25 Eli Zaretskii <eliz@gnu.org>
18046
18047 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
18048 bidi-string-mark-left-to-right; they are unnecessary now.
18049
18050 2011-08-25 Deniz Dogan <deniz@dogan.se>
18051
18052 * net/quickurl.el: Documentation typo fixes.
18053
18054 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
18055
18056 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
18057
18058 2011-08-25 Glenn Morris <rgm@gnu.org>
18059
18060 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
18061
18062 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
18063 (smtpmail-via-smtp): Handle nil response from smtp.
18064
18065 2011-08-24 Juri Linkov <juri@jurta.org>
18066
18067 * proced.el (proced-marked): Inherit from `error' instead of
18068 `font-lock-warning-face'.
18069
18070 * ibuffer.el (ibuffer-marked-face): Change default face from
18071 `font-lock-warning-face' to `warning'.
18072 (ibuffer-deletion-face): Change default face from
18073 `font-lock-type-face' to `error'.
18074
18075 * battery.el (battery-update): Use the face `error' instead of
18076 `font-lock-warning-face' (bug#6117).
18077
18078 2011-08-24 Juri Linkov <juri@jurta.org>
18079
18080 * faces.el (success): Change face color from "Green3" to
18081 "ForestGreen" on light background (bug#9353).
18082
18083 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
18084
18085 * window.el (quit-window): Rename from quit-restore-window.
18086 Use same arglist as old quit-window.
18087 (frame-auto-delete): Doc fix.
18088
18089 * view.el (view-mode-exit): Use quit-window.
18090
18091 2011-08-24 Juri Linkov <juri@jurta.org>
18092
18093 * isearch.el (isearch-ring-adjust1): Start visiting previous
18094 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
18095 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
18096 for empty search string (when the last search string is reused
18097 automatically) to adjust the isearch ring to the last element and
18098 prepare the correct index for further M-p commands (bug#9185).
18099
18100 2011-08-24 Kenichi Handa <handa@m17n.org>
18101
18102 * international/ucs-normalize.el: If decomposition property of
18103 CHAR is the default one (i.e. a list of CHAR itself), treat it as
18104 nil.
18105 (nfd, nfkd): Likewise.
18106
18107 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
18108
18109 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
18110 from process filters aren't reliably transmitted to the surrounding
18111 accept-process-output.
18112 (mpc-proc-check): New function.
18113 (mpc-proc-sync): Use it (bug#8293)
18114
18115 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18116
18117 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
18118 Add compatibility functions (bug#9313).
18119
18120 2011-08-23 Eli Zaretskii <eliz@gnu.org>
18121
18122 * cus-start.el (all): Add entry for bidi-paragraph-direction.
18123
18124 * international/uni-bidi.el: Regenerate.
18125
18126 2011-08-23 Kenichi Handa <handa@m17n.org>
18127
18128 * international/charprop.el:
18129 * international/uni-bidi.el:
18130 * international/uni-category.el:
18131 * international/uni-combining.el:
18132 * international/uni-comment.el:
18133 * international/uni-decimal.el:
18134 * international/uni-decomposition.el:
18135 * international/uni-digit.el:
18136 * international/uni-lowercase.el:
18137 * international/uni-mirrored.el:
18138 * international/uni-name.el:
18139 * international/uni-numeric.el:
18140 * international/uni-old-name.el:
18141 * international/uni-titlecase.el:
18142 * international/uni-uppercase.el: Regenerate.
18143
18144 2011-08-23 Martin Rudalics <rudalics@gmx.at>
18145
18146 * help.el (help-window-setup): Fix message displayed when other
18147 window is reused. (Bug#9341)
18148
18149 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
18150
18151 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
18152 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
18153
18154 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
18155 Mark obsolete.
18156 * shell.el (shell-parse-pcomplete-arguments): New function.
18157 (shell-completion-vars): Use it instead (bug#9160).
18158
18159 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
18160
18161 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
18162 strings and comments (bug#9333).
18163
18164 * emacs-lisp/debug.el (debug-arglist): New function.
18165 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
18166 (debug-on-entry-1): Handle interpreted closures (bug#9120).
18167
18168 2011-08-22 Juri Linkov <juri@jurta.org>
18169
18170 * progmodes/compile.el (compilation-mode-font-lock-keywords):
18171 Revert regexp that highlights output switches to its old
18172 pre-2010-10-28 value and remove one `?' from it (bug#9319).
18173
18174 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
18175 to check for empty output (bug#9226).
18176
18177 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
18178
18179 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
18180 symbol-constituent as the default, as that stops font-lock from
18181 working properly (Bug#8843).
18182
18183 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18184
18185 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
18186 `coding-system-for-*' around the process open call to avoid
18187 auth-source side effects.
18188 (smtpmail-try-auth-methods): Expand the secret password.
18189 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
18190 probe hangs.
18191
18192 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18193
18194 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
18195
18196 * emacs-lisp/find-func.el (find-function-noselect): New arg
18197 lisp-only.
18198
18199 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
18200 signal an error for built-in functions (Bug#6664).
18201
18202 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
18203
18204 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
18205 (smtpmail-try-auth-methods): Use it.
18206
18207 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
18208
18209 * font-lock.el (font-lock-fontify-region)
18210 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
18211 (font-lock-default-unfontify-buffer)
18212 (font-lock-default-fontify-region)
18213 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
18214
18215 * progmodes/compile.el (compilation-error-properties):
18216 Fix confusion between file struct and message struct (Bug#9319).
18217 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
18218 `ant' regexp.
18219
18220 * net/browse-url.el (browse-url-firefox): Don't call
18221 browse-url-firefox-sentinel unless using -remote (Bug#9328).
18222
18223 2011-08-20 Glenn Morris <rgm@gnu.org>
18224
18225 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
18226
18227 * tutorial.el (tutorial--default-keys): Update some default bindings.
18228
18229 * files.el (hack-local-variables): Fully ignore case for "mode:".
18230
18231 2011-08-20 Alan Mackenzie <acm@muc.de>
18232
18233 Resolve invalid use of a regexp in regexp-opt.
18234
18235 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
18236 detection for a java annotation.
18237
18238 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
18239 detection for a java annotation.
18240
18241 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
18242 handling for java.
18243 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
18244
18245 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
18246
18247 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
18248 (Bug#9274).
18249
18250 2011-08-20 Alan Mackenzie <acm@muc.de>
18251
18252 Fontify CPP expressions correctly when starting in the middle of
18253 such a construct. Mainly for when jit-lock etc. starts a chunk
18254 here.
18255
18256 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
18257 variable.
18258 (c-make-font-lock-search-form): New function, extracted from
18259 c-make-font-lock-search-function.
18260 (c-make-font-lock-search-function): Use the above function.
18261 (c-make-font-lock-context-search-function): New function.
18262 (c-cpp-matchers): Enhance the preprocessor expression case with
18263 the above function
18264 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
18265 which takes an expression.
18266
18267 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
18268
18269 2011-08-20 Martin Rudalics <rudalics@gmx.at>
18270
18271 * window.el (display-buffer-reuse-window)
18272 (display-buffer-pop-up-window): Don't reuse or split a side
18273 window.
18274
18275 2011-08-19 Glenn Morris <rgm@gnu.org>
18276
18277 * files.el (hack-local-variables-prop-line, hack-local-variables):
18278 Downcase "Mode:". (Bug#9331)
18279
18280 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
18281
18282 * international/characters.el: Add L and R categories.
18283
18284 * subr.el (bidi-string-mark-left-to-right): Rename from
18285 string-mark-left-to-right. Use category search.
18286
18287 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
18288
18289 2011-08-18 Juri Linkov <juri@jurta.org>
18290
18291 * faces.el (error, warning, success): New faces with definitions
18292 copied from old default values of `font-lock-warning-face',
18293 `compilation-warning', `compilation-info' (bug#6117).
18294
18295 * font-lock.el (font-lock-warning-face): Inherit from `error'.
18296
18297 * progmodes/compile.el (compilation-error): Inherit from `error'.
18298 (compilation-warning): Inherit from `warning'.
18299 (compilation-info): Inherit from `success'.
18300
18301 * dired.el (dired-marked): Inherit from `warning'.
18302 (dired-flagged): Inherit from `error'.
18303
18304 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18305
18306 * mail/smtpmail.el (auth-source): Require to avoid problems with
18307 binding variables (bug#9298). Also clean up some unused
18308 autoloads.
18309
18310 * net/network-stream.el (network-stream-open-starttls):
18311 Support using starttls.el without using gnutls-cli.
18312
18313 2011-08-17 Juri Linkov <juri@jurta.org>
18314
18315 * progmodes/grep.el (rgrep): Handle the case when
18316 `grep-find-command' is a cons cell (bug#9278).
18317
18318 2011-08-17 Martin Rudalics <rudalics@gmx.at>
18319
18320 * window.el (display-buffer-pop-up-frame): Run frame creation
18321 function with BUFFER current (as special-display-popup-frame
18322 does). Reported by Drew Adams.
18323
18324 2011-08-17 Daiki Ueno <ueno@unixuser.org>
18325
18326 * epa-mail.el: Simplify GnuPG group expansion using
18327 epg-expand-group.
18328 (epa-mail-group-alist, epa-mail-group-modtime)
18329 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
18330 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
18331 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
18332 Remove.
18333
18334 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
18335
18336 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
18337
18338 2011-08-16 Alan Mackenzie <acm@muc.de>
18339
18340 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
18341 Correct, to avoid the inside of macros.
18342
18343 2011-08-16 Richard Stallman <rms@gnu.org>
18344
18345 * epa-mail.el: Handle GnuPG group definitions.
18346 (epa-mail-group-alist, epa-mail-group-modtime)
18347 (epa-mail-gnupg-conf-file): New variables.
18348 (epa-mail-parse-groups, epa-mail-sync-groups)
18349 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
18350 (epa-mail-expand-recipients): New functions.
18351 (epa-mail-encrypt): Call epa-mail-expand-recipients.
18352
18353 * mail/rmail.el (rmail-epa-decrypt): New command.
18354
18355 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
18356 Don't bind buffer-read-only, just inhibit-read-only.
18357 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
18358 (epa-decrypt-armor-in-region): Make error message clearer.
18359
18360 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
18361
18362 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
18363 and "a2b" to "ab" for `prefix'.
18364
18365 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
18366
18367 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
18368 filter groups.
18369 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
18370 Fourquet (Bug#8804).
18371
18372 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
18373
18374 * startup.el (argi): Declare as global variable (bug#9275).
18375
18376 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
18377
18378 * subr.el (string-mark-left-to-right): Search the entire string
18379 for RTL script, not just the terminating character. Doc fix.
18380
18381 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
18382
18383 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
18384 New function.
18385 (js--regexp-literal, js-syntax-propertize-function): Remove.
18386 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
18387 (js-mode-map): Don't rebind electric keys.
18388 (js-insert-and-indent): Remove.
18389 (js-mode): Setup electric-layout and electric-indent instead.
18390
18391 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
18392
18393 2011-08-12 Daiki Ueno <ueno@unixuser.org>
18394
18395 * epa.el (epa-progress-callback-function): Fix the logic of
18396 displaying progress.
18397 * epa-file.el (epa-file-insert-file-contents): Make progress
18398 display more user-friendly.
18399 (epa-file-write-region): Ditto.
18400
18401 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
18402
18403 * subr.el (string-mark-left-to-right): New function.
18404
18405 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
18406 Use string-mark-left-to-right.
18407 (list-buffers-noselect): Caller changed.
18408
18409 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
18410 Use string-mark-left-to-right.
18411 (tabulated-list-print): Recenter after moving point.
18412
18413 2011-08-10 Juri Linkov <juri@jurta.org>
18414
18415 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
18416 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
18417 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
18418
18419 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
18420
18421 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
18422 (Bug#7554).
18423
18424 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18425
18426 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
18427 character. (Bug#6594)
18428
18429 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
18430
18431 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
18432 (image-dired--with-db-file): New macro.
18433 (image-dired-write-tags, image-dired-remove-tag)
18434 (image-dired-create-gallery-lists, image-dired-write-comments)
18435 (image-dired-get-comment, image-dired-mark-tagged-files)
18436 (image-dired-list-tags, image-dired-gallery-generate): Use it.
18437 (image-dired-gallery-generate): Use insert-file-contents.
18438
18439 * time.el (display-time-world-list, display-time-world-display):
18440 * time-stamp.el (time-stamp-string):
18441 * vc/add-log.el (add-change-log-entry): Use setenv instead of
18442 set-time-zone-rule (Bug#7337).
18443
18444 2011-08-08 Daiki Ueno <ueno@unixuser.org>
18445
18446 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
18447 (epg-error-to-string, epg-errors-to-string): New function.
18448 (epg-wait-for-completion): Reverse errors list.
18449 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
18450 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
18451 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
18452 (epg-sign-keys, epg-generate-key-from-file)
18453 (epg-generate-key-from-string): Format errors by using
18454 epg-errors-to-string (bug#9255).
18455 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
18456
18457 2011-08-07 Juri Linkov <juri@jurta.org>
18458
18459 * faces.el (list-faces-display): Remove extra angle bracket
18460 from `help-mode-map'.
18461
18462 * info.el (Info-history-toc-nodes): Doc fix.
18463
18464 * longlines.el (longlines-mode): Doc fix.
18465
18466 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
18467
18468 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
18469 of statements and in a few more cases (bug#9183).
18470
18471 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
18472 New functions.
18473 (cl-transform-lambda): Use them (bug#9239).
18474
18475 2011-08-05 Martin Rudalics <rudalics@gmx.at>
18476
18477 * window.el (display-buffer-same-window)
18478 (display-buffer-same-frame, display-buffer-other-window)
18479 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18480 (pop-to-buffer-other-window)
18481 (pop-to-buffer-same-frame-other-window)
18482 (pop-to-buffer-other-frame): Make them defuns.
18483 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
18484
18485 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18486
18487 * subr.el (make-composed-keymap): Move from C. Change calling
18488 convention, and improve docstring to bring attention to a subtle point.
18489 * minibuffer.el (completing-read-default): Adjust accordingly.
18490
18491 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
18492
18493 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18494 (tramp-open-shell): Use `tramp-shell-quote-argument'.
18495
18496 * net/trampver.el: Update release number.
18497
18498 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18499
18500 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
18501 "in" (bug#9190).
18502
18503 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18504
18505 * mail/sendmail.el (sendmail-query-once): Restore the current
18506 buffer after querying (bug#9074).
18507
18508 * dired.el (dired-flagged): Use different faces for marked and
18509 flagged files (bug#6117).
18510
18511 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
18512 (bug#4433).
18513
18514 * ido.el (ido-mode): Switch off the message if called
18515 non-interactively.
18516
18517 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
18518 before 587, since it appears that that's more likely to work for
18519 more people.
18520
18521 * cus-edit.el (custom-file): When running under emacs -q, always
18522 refuse to save the customizations, even if the .emacs file doesn't
18523 exist.
18524
18525 * info.el: Remove the `Info-beginning-of-buffer' function
18526 (bug#8325).
18527
18528 * net/network-stream.el (network-stream-open-starttls):
18529 Use `starttls-available-p' to see whether starttls.el can be used.
18530
18531 2011-08-01 Martin Rudalics <rudalics@gmx.at>
18532
18533 * window.el (display-buffer-in-window): Don't set dedicated status
18534 of window here (Bug#9215).
18535 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
18536 (display-buffer-pop-up-side-window)
18537 (display-buffer-in-side-window): Set dedicated status of window here.
18538
18539 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
18540
18541 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
18542 before binding generated-autoload-file.
18543
18544 2011-08-01 Deniz Dogan <deniz@dogan.se>
18545
18546 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
18547
18548 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
18549
18550 Sync with Tramp 2.2.2.
18551
18552 * net/trampver.el: Update release number.
18553
18554 2011-07-30 Juri Linkov <juri@jurta.org>
18555
18556 * dired-aux.el (dired-touch-initial): Remove function.
18557 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
18558 current time, and `default' to the last modification time of the
18559 current marked file (bug#6887).
18560
18561 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
18562
18563 * simple.el (goto-line): Use string-to-number to provide a
18564 numeric argument to read-number (bug#9163).
18565
18566 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
18567
18568 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
18569 connection process, it could be nil.
18570
18571 2011-07-27 Leo Liu <sdl.web@gmail.com>
18572
18573 Simplify url handling in rcirc-mode.
18574
18575 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
18576 (rcirc-browse-url-at-mouse): Remove.
18577 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
18578
18579 2011-07-26 Alan Mackenzie <acm@muc.de>
18580
18581 Fontify bitfield declarations properly.
18582
18583 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
18584 (c-symbol-chars): Now exported as a lang variable.
18585 (c-not-primitive-type-keywords): New lang variable.
18586
18587 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
18588 QT keyword "more" to prevent "more slots: ...." being spuriously
18589 parsed as a bitfield declaration.
18590
18591 * progmodes/cc-engine.el (c-beginning-of-statement-1):
18592 Refactor and enhance to handle bitfield declarations.
18593 (c-punctuation-in): New function.
18594 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
18595 declarations properly.
18596
18597 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
18598
18599 * calendar/icalendar.el (icalendar--all-events): Take care of
18600 multiple vcalendars in a single file.
18601 (icalendar--convert-float-to-ical): Checkdoc fixes.
18602
18603 2011-07-25 Deniz Dogan <deniz@dogan.se>
18604
18605 * image.el (insert-image): Clarifying docstring.
18606
18607 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
18608
18609 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
18610 `tramp-send-command-and-check' if there is no error.
18611 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
18612
18613 2011-07-22 Alan Mackenzie <acm@muc.de>
18614
18615 Prevent cc-langs.elc being loaded at run time.
18616
18617 * progmodes/cc-mode.el: Remove two autoload forms which loaded
18618 cc-langs.
18619
18620 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
18621 "(require 'cc-langs)". Quote a form so it will evaluate at
18622 (cc-mode's) compilation time.
18623
18624 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
18625
18626 * net/tramp.el (tramp-file-name-handler): Avoid recursive
18627 loading. (Bug#9114)
18628
18629 2011-07-21 Martin Rudalics <rudalics@gmx.at>
18630
18631 * window.el (display-buffer-pop-up-window)
18632 (display-buffer-pop-up-side-window)
18633 (display-buffer-in-side-window): Call display-buffer-set-height
18634 and display-buffer-set-width after setting the new window's
18635 buffer so `fit-window-to-buffer' and friends work on the right buffer.
18636
18637 2011-07-20 Sam Steingold <sds@gnu.org>
18638
18639 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
18640 (etags-tags-included-tables): Call `convert-standard-filename' on
18641 the file names contained in TAGS so that windows Emacs can handle
18642 TAGS files created by cygwin ctags.
18643
18644 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18645
18646 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
18647 which apparently didn't work.
18648
18649 2011-07-19 Roland Winkler <winkler@gnu.org>
18650
18651 * proced.el (proced-send-signal): For *Marked Processes* buffer
18652 put point at beginning of buffer.
18653
18654 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
18655
18656 * proced.el (proced-format): Make header lines align with the text
18657 (bug#1779).
18658
18659 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18660
18661 * view.el (view-buffer): Allow running in `special' modes if we're
18662 visiting a file (bug#8615).
18663
18664 2011-07-19 Martin Rudalics <rudalics@gmx.at>
18665
18666 * window.el (display-buffer-alist-of-strings-p)
18667 (display-buffer-alist-set-1, display-buffer-alist-set-2):
18668 New functions.
18669 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
18670 more accurately.
18671
18672 2011-07-18 Alan Mackenzie <acm@muc.de>
18673
18674 Fontify declarators properly when, e.g., a jit-lock chunk begins
18675 inside a declaration.
18676
18677 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
18678
18679 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
18680 New function.
18681 (c-complex-decl-matchers): Insert reference to
18682 c-font-lock-enclosing-decls.
18683
18684 * progmodes/cc-engine.el (c-backward-single-comment):
18685 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
18686 to nil around calls to (forward-comment -1).
18687
18688 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
18689
18690 * image.el (put-image): Doc typo fix.
18691
18692 * progmodes/etags.el (tags-search): Doc typo fix.
18693
18694 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
18695 password if we get errors 550 to 554.
18696
18697 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
18698
18699 * net/gnutls.el (gnutls-log-level): Remove.
18700
18701 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
18702 indentation character (bug#6380).
18703
18704 * files.el (buffer-offer-save): Made permanently local (bug#6241).
18705
18706 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
18707 to clarify what the problem is (bug#4291).
18708
18709 * simple.el (current-kill): Clarify what
18710 `interprogram-paste-function' does (bug#7500).
18711 (auto-fill-mode): Document `auto-fill-function' in relation to
18712 `auto-fill-mode' (bug#2470).
18713
18714 2011-07-16 Lawrence Mitchell <wence@gmx.li>
18715
18716 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
18717 method if slot is read-only (bug#9035).
18718
18719 2011-07-16 Martin Rudalics <rudalics@gmx.at>
18720
18721 * frame.el (select-frame-set-input-focus): New argument NORECORD.
18722 * window.el (pop-to-buffer): Select window used even if it was
18723 selected before, see discussion of (Bug#8615), (Bug#6954).
18724 Pass argument NORECORD on to select-frame-set-input-focus.
18725
18726 2011-07-15 Glenn Morris <rgm@gnu.org>
18727
18728 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
18729 Respect help-form.
18730
18731 2011-07-09 Lawrence Mitchell <wence@gmx.li>
18732
18733 * net/gnutls.el (gnutls-min-prime-bits): New variable.
18734 (gnutls-negotiate): Use it.
18735
18736 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18737
18738 * net/gnutls.el (gnutls-negotiate):
18739 Upcase `gnutls-algorithm-priority'.
18740
18741 2011-07-15 Glenn Morris <rgm@gnu.org>
18742
18743 * jka-compr.el (jka-compr-verbose): Move from here...
18744 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
18745 Add missing :version tag.
18746 * info.el: No need to require jka-compr when compiling.
18747
18748 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18749
18750 * net/gnutls.el (gnutls-algorithm-priority): New variable.
18751 (gnutls-negotiate): Use it.
18752
18753 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
18754
18755 * info.el (Info-beginning-of-buffer): New command.
18756 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
18757 announcing `b' as the key (bug#8325).
18758 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
18759
18760 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
18761
18762 * international/mule-cmds.el
18763 (describe-specified-language-support): Make the error message
18764 clearer (bug#8905).
18765
18766 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
18767
18768 * isearch.el (isearch-barrier): Add a doc string, since it's
18769 mentioned in a function doc string (bug#8678).
18770
18771 2011-07-15 Martin Rudalics <rudalics@gmx.at>
18772
18773 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
18774 buffer argument (Bug#9083) and self-identifying label argument.
18775
18776 2011-07-15 Glenn Morris <rgm@gnu.org>
18777
18778 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
18779
18780 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18781
18782 * man.el (Man-fontify-manpage): Fix message when formatting the
18783 man page (bug#7929).
18784
18785 2011-07-14 Eli Zaretskii <eliz@gnu.org>
18786
18787 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
18788 argument LRM; if non-nil, append an invisible LRM character to the
18789 buffer name.
18790 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
18791 last argument non-nil, when formatting buffer names.
18792 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
18793 paragraph direction.
18794
18795 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18796
18797 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
18798 the man page name (bug#7929).
18799
18800 * image.el (put-image): Mention the `put-image' overlay property
18801 (bug#7834).
18802
18803 * scroll-bar.el (set-scroll-bar-mode): Mention that
18804 `scroll-bar-mode' lists the values (bug#7772).
18805
18806 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
18807 command (bug#7729).
18808
18809 * rect.el (apply-on-rectangle): Return the point after the last
18810 operation.
18811 (string-rectangle): Go to the point after the last operation
18812 (bug#7522).
18813
18814 * printing.el (pr-toggle-region): Clarify the documentation
18815 slightly (bug#7493).
18816
18817 * time.el (display-time-update):
18818 Allow `display-time-mail-function' to return nil (bug#7158).
18819 Fix suggested by Detlev Zundel.
18820
18821 * vc/diff.el (diff): Clarify the order the file names are read
18822 (bug#7111).
18823
18824 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
18825 the doc string (bug#7015).
18826
18827 * font-lock.el (font-lock-maximum-decoration): Mention what
18828 numeric levels mean (bug#6935).
18829
18830 * startup.el (initial-buffer-choice): Don't mention the `none'
18831 selection, which is against policy.
18832
18833 2011-07-14 Martin Rudalics <rudalics@gmx.at>
18834
18835 * window.el (display-buffer-normalize-special):
18836 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
18837
18838 2011-07-14 Eli Zaretskii <eliz@gnu.org>
18839
18840 * subr.el (version<, version<=, version=): Mention "-CVS" and
18841 "-12345" alpha version numbers.
18842
18843 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
18844
18845 * bindings.el: Add advertised binding for set-mark-command
18846 (Bug#5772).
18847
18848 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
18849
18850 * bindings.el (mode-line-other-buffer):
18851 * bookmark.el (bookmark-bmenu-2-window):
18852 * bs.el (bs-cycle-next, bs-cycle-previous):
18853 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
18854 switch-to-buffer.
18855
18856 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
18857 Delete.
18858
18859 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
18860
18861 * follow.el (follow-debug-message, follow-redisplay):
18862 * jka-cmpr-hook.el (with-auto-compression-mode):
18863 Fix typos in docstrings.
18864
18865 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18866
18867 * subr.el (with-silent-modifications): Clarify somewhat what the
18868 macro inhibits (bug#6525).
18869
18870 * simple.el (eval-expression): Note what it does if called
18871 interactively (bug#6495).
18872
18873 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
18874
18875 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
18876 Use pop-to-buffer buffer-or-name if it is nil.
18877
18878 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
18879 Remove switch-to-buffer.
18880
18881 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18882
18883 * files.el (make-directory): Clarify that an error will be raised
18884 if there's an error (bug#6397).
18885
18886 * startup.el (initial-buffer-choice): Add `none' as a choice
18887 (bug#6234).
18888
18889 * subr.el (add-hook): Clarify section about buffer-local hooks
18890 (bug#6218).
18891
18892 * dired.el (dired-flagged): Clarify doc string (bug#6117).
18893
18894 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
18895
18896 * tabify.el (untabify): Preserve the current column so that point
18897 doesn't move (bug#6032).
18898
18899 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18900
18901 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
18902 Rewrite to avoid awkward possessive "s" (bug#5986).
18903
18904 2011-07-13 Glenn Morris <rgm@gnu.org>
18905
18906 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
18907 (dired-insert-directory): Give a message the first time
18908 if ls is found not to support --dired.
18909
18910 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18911
18912 * simple.el (toggle-truncate-lines): Clarify what is toggled
18913 (bug#5580). Text by Drew Adams.
18914
18915 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
18916
18917 * simple.el (blink-matching-open): Make the error message from the
18918 last change less verbose.
18919
18920 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18921
18922 * font-lock.el (font-lock-comment-face): Use the high contrast
18923 "yellow" color for font-lock-comment-face on low color terminals
18924 using a dark background color (bug#4221).
18925
18926 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18927
18928 * dired.el (dired-insert-set-properties): Make the doc string
18929 reflect what it does now (bug#5325).
18930
18931 * simple.el (blink-matching-open): Say that we were unable to find
18932 the match within the limit, if we're limited (bug#5122).
18933
18934 * international/mule-cmds.el (prefer-coding-system): Add an
18935 example (bug#4869).
18936
18937 * progmodes/etags.el (tags-search): Document `file-list-form'
18938 (bug#4731).
18939
18940 2011-07-13 Lawrence Mitchell <wence@gmx.li>
18941
18942 * net/browse-url.el (browse-url-default-browser)
18943 (browse-url-browser-function): Make the default browser choice a
18944 bit more logical (bug#4300). Also clean up the doc string.
18945
18946 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
18947
18948 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
18949 binary endings (bug#4440).
18950
18951 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18952
18953 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
18954 which can be pretty annoying (bug#8971).
18955
18956 * jka-compr.el (jka-compr-verbose): New variable, and use
18957 throughout (bug#8971).
18958
18959 * info.el (Info-find-file): Fall back on the installation
18960 directory if we can't find the info node anywhere else.
18961
18962 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
18963
18964 * vc/vc.el (vc-revert-file):
18965 Don't set file time-stamp in the past. (Bug#5181)
18966
18967 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18968
18969 * files.el (after-find-file): Give a better error message when
18970 trying to find a symlink that points to a file that doesn't exist
18971 (bug#4398).
18972
18973 * progmodes/cc-vars.el: Remove (probably) misleading comment
18974 (bug#4396).
18975
18976 2011-07-12 Johan Bockgård <bojohan@gnu.org>
18977
18978 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
18979
18980 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
18981
18982 * mouse-sel.el: Hack restoring functionality, while keeping
18983 compatibility with 2010-07-03 changes to mouse selection.
18984 (mouse-sel-primary-overlay): New var.
18985 (mouse-sel-selection-alist): Use it.
18986 (mouse-sel-mode): Doc fix; remove points that are default features
18987 of mouse.el.
18988
18989 2011-07-12 Johan Bockgård <bojohan@gnu.org>
18990
18991 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18992 Fix previous fix (bug#2490).
18993
18994 2011-07-12 Roland Winkler <winkler@gnu.org>
18995
18996 * textmodes/bibtex.el (bibtex-initialize):
18997 Use pop-to-buffer-same-window.
18998 (bibtex-search-entries): Fix interactive call.
18999
19000 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
19001
19002 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19003 Fontise bytecomp Error lines more correctly (bug#2490).
19004 Fix suggested by Johan Bockgård.
19005
19006 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
19007
19008 * dired-x.el (dired-guess-default): Use `delete-dups'.
19009
19010 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19011
19012 * dired.el (dired-mark-prompt):
19013 * dired-aux.el (dired-read-shell-command): Doc fix.
19014
19015 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19016
19017 * mail/sendmail.el (sendmail-query-once):
19018 Use `customize-save-variable' unconditionally, now that it works under
19019 emacs -Q.
19020
19021 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19022
19023 * cus-edit.el (custom-file): Take an optional no-error variable.
19024 (customize-save-variable): Set the variable, and give a warning if
19025 running under "emacs -q".
19026
19027 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
19028
19029 * loadhist.el (unload-feature-special-hooks):
19030 Add `auto-coding-functions', `fill-nobreak-predicate' and
19031 `find-directory-functions' (bug#5327).
19032
19033 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19034
19035 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
19036
19037 * cus-edit.el (custom-guess-name-alist): -alist variables should
19038 use the `alist' type (bug#3120). Suggested by Drew Adams.
19039
19040 * printing.el: Add documentation to all the `pr-toggle-' commands.
19041
19042 2011-07-11 Leo Liu <sdl.web@gmail.com>
19043
19044 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
19045 backends where it makes sense (bug#2623).
19046
19047 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19048
19049 * dired-x.el (dired-guess-default): Remove duplicate shell command
19050 entries (bug#2028).
19051 (dired-guess-default): Fix grammar in doc string (bug#2028).
19052 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
19053
19054 * subr.el (remove-duplicates): New conveniency function.
19055
19056 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
19057
19058 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
19059 (bug#1526).
19060
19061 2011-07-10 Martin Rudalics <rudalics@gmx.at>
19062
19063 * window.el (display-buffer-normalize-default): Don't invert
19064 meaning of even-window-heights. Reported by Eli Zaretskii
19065 <eliz@gnu.org>.
19066
19067 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
19068
19069 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
19070
19071 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
19072
19073 * window.el (display-buffer): Fix arguments to
19074 display-buffer-reuse-window in last change.
19075
19076 * faces.el (link): Use a less saturated blue on light backgrounds.
19077
19078 * startup.el (fancy-startup-text, fancy-about-text)
19079 (fancy-startup-tail): Use font-lock faces, for background safety.
19080
19081 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
19082
19083 * emulation/viper-cmd.el (viper-change-state-to-vi):
19084 Limit triggering of abbrev expansion (Bug#9038).
19085
19086 2011-07-09 Martin Rudalics <rudalics@gmx.at>
19087
19088 * window.el (display-buffer-default-specifiers): Remove.
19089 (display-buffer-macro-specifiers): Remove default specifiers.
19090 (display-buffer-alist): Default to nil.
19091 (display-buffer-reuse-window): New optional argument other-window.
19092 (display-buffer-pop-up-window): Allow splitting internal
19093 windows. Check whether a live window was created.
19094 (display-buffer-other-window-means-other-frame)
19095 (display-buffer-normalize-arguments): Rename to
19096 display-buffer-normalize-argument and rewrite. Set the
19097 other-window specifier.
19098 (display-buffer-normalize-special): New function.
19099 (display-buffer-normalize-options): Rename to
19100 display-buffer-normalize-default and rewrite.
19101 (display-buffer-normalize-options-inhibit): Remove.
19102 (display-buffer-normalize-specifiers): Rewrite.
19103 (display-buffer): Process other-window specifier and call
19104 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
19105 more faithfully.
19106 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
19107 (display-buffer-alist-set): Don't handle 'unset default values.
19108 (display-buffer-in-window, display-buffer-alist-set):
19109 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
19110 <tassilo@member.fsf.org>.
19111
19112 2011-07-09 Leo Liu <sdl.web@gmail.com>
19113
19114 * register.el (insert-register): Restore accidental change on
19115 2011-06-26. (Bug#9028)
19116
19117 2011-07-09 Glenn Morris <rgm@gnu.org>
19118
19119 * subr.el (remq): Handle the empty list. (Bug#9024)
19120
19121 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
19122
19123 * mail/sendmail.el (send-mail-function): No longer delay custom
19124 initialization.
19125 * custom.el (custom-initialize-delay): Doc fix.
19126
19127 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19128
19129 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
19130
19131 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
19132
19133 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
19134 human-friendly prompt.
19135
19136 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
19137
19138 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
19139 provided by a particular plugin.
19140
19141 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
19142
19143 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
19144 save customizations (with "emacs -Q"), just set the variable
19145 instead of erroring out.
19146
19147 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
19148
19149 2011-07-08 Juri Linkov <juri@jurta.org>
19150
19151 * arc-mode.el (archive-zip-expunge, archive-zip-update)
19152 (archive-zip-update-case): Use 7z if found by `executable-find'.
19153 The order of searching the available programs is the same as in
19154 `archive-zip-extract' (bug#8968).
19155
19156 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19157
19158 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
19159 (menu-bar-options-menu): Tweak descriptions.
19160
19161 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19162
19163 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
19164 menu items into verb phrases (bug#1421). Also refill to fit under
19165 80 columns.
19166
19167 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19168
19169 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
19170 (Info-read-node-name): Doc fix (Bug#1084).
19171
19172 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
19173 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
19174 (end-of-sexp, beginning-of-sexp)
19175 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
19176 (forward-symbol, forward-same-syntax, word-at-point)
19177 (sentence-at-point): Doc fix (Bug#1144).
19178
19179 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19180
19181 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
19182 should cover it (bug#1281).
19183
19184 * cus-edit.el (custom-show): Mark as obsolete.
19185
19186 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
19187 negotiation fails, then possibly try again with a non-encrypted
19188 connection (bug#9017).
19189
19190 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
19191 be used.
19192
19193 2011-07-07 Richard Stallman <rms@gnu.org>
19194
19195 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
19196 property, and handle its changed format.
19197 Look for the correct line number.
19198 Use file's line contents (but not past first =) to find
19199 correct line in message.
19200
19201 2011-07-07 Kenichi Handa <handa@m17n.org>
19202
19203 * international/characters.el (build-unicode-category-table):
19204 Delete it.
19205 (unicode-category-table): Set it by unicode-property-table-internal.
19206
19207 * international/mule-cmds.el (char-code-property-alist): Move to
19208 to src/chartab.c.
19209 (get-char-code-property): Call unicode-property-table-internal to
19210 load a file. Call get-unicode-property-internal where necessary.
19211 (put-char-code-property): Call unicode-property-table-internal to
19212 load a file. Call put-unicode-property-internal where necessary.
19213 put-unicode-property-internal where necessary.
19214 (char-code-property-description):
19215 Call unicode-property-table-internal to load a file.
19216
19217 * international/charprop.el:
19218 * international/uni-bidi.el:
19219 * international/uni-category.el:
19220 * international/uni-combining.el:
19221 * international/uni-comment.el:
19222 * international/uni-decimal.el:
19223 * international/uni-decomposition.el:
19224 * international/uni-digit.el:
19225 * international/uni-lowercase.el:
19226 * international/uni-mirrored.el:
19227 * international/uni-name.el:
19228 * international/uni-numeric.el:
19229 * international/uni-old-name.el:
19230 * international/uni-titlecase.el:
19231 * international/uni-uppercase.el: Regenerate.
19232
19233 * loadup.el: Load international/charprop.el before
19234 international/characters.
19235
19236 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
19237
19238 * window.el (next-buffer, previous-buffer): Signal an error if
19239 called from a minibuffer window.
19240
19241 * bindings.el: Revert 2011-07-04 change.
19242
19243 2011-07-06 Richard Stallman <rms@gnu.org>
19244
19245 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
19246 (rmail-mime-insert-bulk, rmail-mime-insert-text):
19247 Treat markers like ints.
19248 (rmail-mime-entity): Doc fix.
19249
19250 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19251
19252 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
19253 defcustom again for backwards compatibility.
19254
19255 * simple.el (shell-command-on-region): Fill.
19256
19257 * dired-aux.el (dired-kill-line): Add a doc string.
19258
19259 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
19260 to "\\sw\\|\\s_" (bug#358).
19261
19262 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
19263 (dired-unmark-backward): Ditto.
19264 (dired-flag-backup-files): Ditto.
19265
19266 * dired-x.el (dired-mark-sexp): Ditto.
19267
19268 2011-07-06 Richard Stallman <rms@gnu.org>
19269
19270 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
19271 (rmail-mime-entity): New arg TRUNCATED.
19272 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
19273 New functions.
19274 (rmail-mime-save): Warn if entity is truncated.
19275 (rmail-mime-toggle-hidden): Likewise, for showing.
19276 (rmail-mime-process-multipart): Record when an entity is truncated.
19277
19278 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
19279 if ENTITY is a string.
19280
19281 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19282
19283 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
19284 of faces when `M-C-x'-ing their definitions (bug#8378).
19285 Also clean up the code slightly.
19286
19287 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
19288 because that makes the colors go away.
19289
19290 * mail/sendmail.el (send-mail-function): Change the default to
19291 `sendmail-query-once'.
19292 (sendmail-query-once): Add an autoload cookie.
19293
19294 * net/network-stream.el (network-stream-open-starttls): Try using
19295 a plain connection even if the server offered STARTTLS, and we
19296 kinda wanted to use it, if Emacs doesn't have any STARTTLS
19297 capability. This should make smtpmail.el work in slightly more
19298 configurations.
19299
19300 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
19301
19302 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
19303 New defun.
19304 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
19305
19306 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
19307
19308 * progmodes/sql.el: Version 3.0
19309 (sql-product-alist): Add product :completion-object,
19310 :completion-column, and :statement attributes.
19311 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
19312 (sql-mode-syntax-table): Mark all punctuation.
19313 (sql-font-lock-keywords-builder): Temporarily remove fallback on
19314 ansi keywords.
19315 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
19316 (sql-mode-oracle-font-lock-keywords): Improve.
19317 (sql-oracle-show-reserved-words): New function for development.
19318 (sql-product-font-lock): Simplify for source code buffers.
19319 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
19320 New functions.
19321 (sql-highlight-product): Set product specific syntax table.
19322 (sql-mode-map): Add statement movement functions.
19323 (sql-ansi-statement-starters, sql-oracle-statement-starters):
19324 New variable.
19325 (sql-statement-regexp, sql-beginning-of-statement)
19326 (sql-end-of-statement, sql-signum): New functions.
19327 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
19328 (sql-show-sqli-buffer): Bug fix.
19329 (sql-interactive-mode): Store connection data as buffer local.
19330 (sql-connect): Add NEW-NAME parameter. Redesign interaction
19331 with sql-interactive-mode.
19332 (sql-save-connection): Save buffer local settings.
19333 (sql-connection-menu-filter): Change menu entry name.
19334 (sql-product-interactive): Bug fix.
19335 (sql-preoutput-hold): New variable.
19336 (sql-interactive-remove-continuation-prompt): Bug fixes.
19337 (sql-debug-redirect): New variable.
19338 (sql-str-literal): New function.
19339 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
19340 Redesign.
19341 (sql-oracle-save-settings, sql-oracle-restore-settings)
19342 (sql-oracle-list-all, sql-oracle-list-table): New functions.
19343 (sql-completion-object, sql-completion-column)
19344 (sql-completion-sqlbuf): New variables.
19345 (sql-build-completions-1, sql-build-completions)
19346 (sql-try-completion): New functions.
19347 (sql-read-table-name): Use them.
19348 (sql-contains-names): New buffer local variable.
19349 (sql-list-all, sql-list-table): Use it.
19350 (sql-oracle-completion-types): New variable.
19351 (sql-oracle-completion-object, sql-sqlite-completion-object)
19352 (sql-postgres-completion-object): New functions.
19353
19354 2011-07-06 Glenn Morris <rgm@gnu.org>
19355
19356 * window.el (pop-to-buffer): Doc fix.
19357
19358 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
19359
19360 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
19361
19362 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
19363
19364 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
19365
19366 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
19367
19368 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
19369
19370 * button.el (button): Inherit from link face. Suggested by Dan
19371 Nicolaescu.
19372
19373 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19374
19375 * progmodes/gdb-mi.el: Fit in 80 columns.
19376 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
19377 switch-to-buffer.
19378
19379 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
19380 if imenu is simply not configured (bug#8941).
19381
19382 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
19383
19384 * allout.el (allout-post-undo-hook): New allout outline-change
19385 event hook to signal undo activity.
19386 (allout-post-command-business): Run allout-post-undo-hook if an
19387 undo just occurred.
19388 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
19389 * allout-widgets.el (allout-widgets-after-undo-function):
19390 Ensure the integrity of the current item's decoration after it has been
19391 in the vicinity of an undo.
19392 (allout-widgets-mode): Include allout-widgets-after-undo-function
19393 on the new allout-post-undo-hook.
19394
19395 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19396
19397 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
19398 Let define-derived-mode define it.
19399 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
19400 cycles of abbrev-table inheritance (bug#8998).
19401
19402 2011-07-05 Roland Winkler <winkler@gnu.org>
19403
19404 * textmodes/bibtex.el: Add support for biblatex.
19405 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
19406 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
19407 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
19408 (bibtex-entry-alist, bibtex-field-alist): New variables.
19409 (bibtex-entry-field-alist): Obsolete alias for
19410 bibtex-BibTeX-entry-alist.
19411 (bibtex-entry-alist, bibtex-field-alist): New widgets.
19412 (bibtex-set-dialect): New command.
19413 (bibtex-entry-type, bibtex-entry-head)
19414 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
19415 Bind via bibtex-set-dialect.
19416 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
19417 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
19418 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
19419 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
19420 Define via bibtex-set-dialect.
19421 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
19422 Obey bibtex-no-opt-remove-re.
19423 (bibtex-vec-push, bibtex-vec-incr): New functions.
19424 (bibtex-format-entry, bibtex-field-list)
19425 (bibtex-print-help-message, bibtex-validate)
19426 (bibtex-search-entries): Use new format of bibtex-entry-alist.
19427
19428 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
19429
19430 * progmodes/compile.el (compilation-goto-locus):
19431 * net/tramp-cmds.el (tramp-append-tramp-buffers):
19432 * bs.el (bs-cycle-next, bs-cycle-previous):
19433 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
19434 * bindings.el (mode-line-other-buffer):
19435 * autoinsert.el (auto-insert):
19436 * arc-mode.el (archive-extract):
19437 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
19438
19439 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19440
19441 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
19442 Fix check of `emacs-lock-unlockable-modes'.
19443 Coerce true values of `emacs-lock--try-unlocking' to t.
19444
19445 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19446
19447 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
19448 * emacs-lock.el: New file.
19449
19450 2011-07-05 Julien Danjou <julien@danjou.info>
19451
19452 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
19453 than `boundp' to check if face is set.
19454
19455 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
19456
19457 * register.el (registerv-make):
19458 * window.el (window-min-height): Fix typos in docstrings.
19459
19460 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19461
19462 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
19463 Update doc string.
19464
19465 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19466
19467 * server.el (server-execute): Catch quit and call
19468 `server-return-error' to pass the error back to emacsclient and
19469 close the connection (bug#8942).
19470
19471 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
19472
19473 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
19474 insecure exception for current topic. Also note that auto-saves
19475 are handled differently.
19476
19477 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
19478 State variables for tracking auto-save inhibition situation.
19479
19480 (allout-write-contents-hook-handler): Rename from
19481 'allout-write-file-hook-handler', and describe how it depends on
19482 write-contents-functions sensitivity to non-nil value to prevent
19483 file write.
19484
19485 (allout-auto-save-hook-handler): Remove. auto-save does not check
19486 this in individual buffers, only in the starting buffer, so this
19487 is not the right way for us to inhibit auto-save in a buffer
19488 according to its condition.
19489
19490 (allout-mode): Use new allout-write-contents-hook-handler, and
19491 only with write-contents-functions. Remove auto-save provisions -
19492 they're implemented elsewhere.
19493
19494 (allout-before-change-handler): If undo is in progress, note that
19495 for attention of allout-post-command-business.
19496
19497 (allout-post-command-business): If the command we're following was
19498 an undo, check for change in the status of encrypted items and
19499 adjust auto-save inhibitions accordingly.
19500
19501 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
19502 according to whether there are or aren't any plain-text topics
19503 pending encryption.
19504
19505 (allout-inhibit-auto-save-info-for-decryption):
19506 Adjust buffer-saved-size and some allout state to inhibit auto-saves
19507 if there are plain-text topics pending encryption.
19508
19509 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
19510 buffer-saved-size and some allout state to not inhibit auto-saves
19511 if there are no longer any plain-text topics pending encryption.
19512
19513 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
19514 No longer provide for exemption of the current topic.
19515
19516 2011-07-04 Juri Linkov <juri@jurta.org>
19517
19518 Add 7z operations to delete and save changed members (bug#8968).
19519 * arc-mode.el (archive-7z-expunge, archive-7z-update):
19520 New defcustoms.
19521 (archive-7z-write-file-member): New function.
19522 (archive-7z-summarize): Fix the number of dashes in the
19523 listing output.
19524
19525 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19526
19527 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
19528 (bug#8958).
19529
19530 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
19531
19532 * bindings.el: Ignore next-buffer and previous-buffer in
19533 minibuffer-local-map.
19534
19535 * font-lock.el (font-lock-builtin-face): Change light background
19536 color to dark slate blue (Bug#6693).
19537
19538 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
19539
19540 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
19541
19542 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19543
19544 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
19545 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
19546 Add switch-to-buffer.
19547
19548 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19549
19550 * isearch.el (isearch-search-fun-function): Clarify further the
19551 meaning of the function returned.
19552
19553 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
19554
19555 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
19556
19557 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
19558 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
19559 Use it.
19560 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
19561 `tramp-default-remote-path' does not exist.
19562 (tramp-send-command-and-read): New optional argument NOERROR.
19563 (tramp-open-connection-setup-interactive-shell)
19564 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
19565 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
19566 (tramp-process-sentinel): Flush also process' connection property.
19567 (tramp-sh-handle-start-file-process): Do not set process
19568 sentinel. It is done now ...
19569 (tramp-maybe-open-connection): ... here. (Bug#8929)
19570
19571 2011-07-04 MON KEY <monkey@sandpframing.com>
19572
19573 * play/animate.el (animate-string): Doc fixes and allow changing
19574 the buffer name (bug#5417).
19575
19576 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19577
19578 * play/animate.el (animation-buffer-name): Rename from *animate*.
19579
19580 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19581
19582 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
19583 This is simpler and helps future-proof the code.
19584 (timer-until): Use time-subtract and float-time.
19585 (timer--time-less-p): Use time-less-p.
19586
19587 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19588
19589 * type-break.el (timep): Use the value of `float-time' to avoid a
19590 byte-compiler warning.
19591
19592 * server.el (server-eval-and-print): Return any result, even nil.
19593
19594 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
19595
19596 * type-break.el: Accept time formats that the builtins accept.
19597 (timep, type-break-time-difference): Accept any format that
19598 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
19599 This is simpler and helps future-proof the code.
19600 (type-break-time-difference): Round rather than ignoring
19601 subseconds components.
19602
19603 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19604
19605 * info.el (Info-apropos-matches): Make non-interactive, since it
19606 doesn't seem to do anything useful as a command (bug#8829).
19607
19608 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
19609
19610 * frame.el (frame-background-mode, frame-set-background-mode):
19611 Move from faces.el.
19612 (frame-default-terminal-background): New function.
19613
19614 * custom.el (custom-push-theme): Don't record faces in `changed'
19615 theme; this doesn't work correctly for per-frame face settings.
19616 (disable-theme): Use face-set-after-frame-default to reset faces.
19617 (custom--frame-color-default): New function.
19618
19619 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19620
19621 * dired.el (dired-flagging-regexp): Remove unused variable
19622 (bug#8769).
19623
19624 2011-03-29 Kevin Ryde <user42@zip.com.au>
19625
19626 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19627 `perl-Test2' extend to match possible "fail #N" rep count
19628 (bug#8377).
19629
19630 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19631
19632 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
19633 `smtpmail-via-smtp' now returns the error instead of nil.
19634
19635 * isearch.el (isearch-search-fun-function): Clarify the doc string
19636 (bug#8101).
19637
19638 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
19639
19640 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
19641 unnecessary spaces (bug#8987).
19642
19643 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19644
19645 * net/network-stream.el (open-network-stream): Use the
19646 :end-of-capability command thoughout.
19647
19648 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
19649
19650 * net/network-stream.el (open-network-stream): Add the
19651 :end-of-capability command parameter, used by pop3.el.
19652
19653 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19654
19655 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
19656
19657 * fringe.el (fringe-query-style): Remove redundant text " (type ?
19658 for list)" (bug#6475).
19659
19660 * files.el (file-expand-wildcards): Ignore non-readable
19661 sub-directories while trying to find matches instead of signaling
19662 an error (bug#6297).
19663
19664 * man.el (Man-reference-regexp): Allow matching possible
19665 word-wrapped references (bug#6289).
19666
19667 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
19668 for consistency with the other vc buffers (bug#6197).
19669 (vc-checkin): Ditto.
19670
19671 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
19672
19673 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
19674
19675 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19676
19677 * custom.el (defcustom): Clarify that :set is only used in the
19678 Customize user interface (bug#6089).
19679
19680 * progmodes/flymake.el (flymake-mode): If the buffer isn't
19681 associated with a file, refuse to run instead of erroring out
19682 (bug#6084).
19683
19684 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
19685 the doc string, since it appears that using `fill-column' always
19686 controls the width (bug#7845).
19687
19688 * simple.el (shell-command-on-region): Say where the error output
19689 went if `shell-command-default-error-buffer' is set (bug#6857).
19690
19691 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
19692
19693 * allout.el (allout-yank-processing): Adjust cursor position for
19694 backwards-deleted space.
19695
19696 (allout-rebullet-heading): Register changes with
19697 allout-exposure-changed-hook, so the modified topic is properly
19698 decorated.
19699
19700 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19701
19702 * minibuffer.el (completion-in-region): Document PREDICATE
19703 (bug#7136).
19704
19705 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
19706 of keyword/argument pairs (bug#6904).
19707
19708 * replace.el (multi-occur):
19709 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
19710
19711 2011-07-02 Drew Adams <drew.adams@oracle.com>
19712
19713 * dired.el (dired-mark-if): Make the message about whether it's
19714 marking or unmarking clearer (bug#8523).
19715
19716 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19717
19718 * disp-table.el (display-table-print-array): New function.
19719 (describe-display-table): Use it to print the vectors more pretty
19720 (Bug#8859).
19721
19722 2011-07-02 Martin Rudalics <rudalics@gmx.at>
19723
19724 * window.el (window-state-get-1): Don't assign clone numbers.
19725 Add clone-of item to list of window parameters.
19726 (window-state-put-2): Don't process clone numbers.
19727 (display-buffer-alist): Fix doc-string.
19728
19729 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19730
19731 * subr.el (remq): Don't allocate if it's not needed.
19732 (keymap--menu-item-binding, keymap--menu-item-with-binding)
19733 (keymap--merge-bindings): New functions.
19734 (keymap-canonicalize): Use them to refine the canonicalization.
19735 * minibuffer.el (minibuffer-local-completion-map)
19736 (minibuffer-local-must-match-map): Move initialization from C.
19737 (minibuffer-local-filename-completion-map): Move initialization from C;
19738 don't inherit from anything here.
19739 (minibuffer-local-filename-must-match-map): Make obsolete.
19740 (completing-read-default): Use make-composed-keymap to combine
19741 minibuffer-local-filename-completion-map with either
19742 minibuffer-local-must-match-map or
19743 minibuffer-local-filename-completion-map.
19744
19745 2011-07-01 Glenn Morris <rgm@gnu.org>
19746
19747 * type-break.el (type-break-time-sum): Use dolist.
19748
19749 * textmodes/flyspell.el (flyspell-word-search-backward):
19750 Replace CL function.
19751
19752 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19753
19754 * mouse.el (mouse--strip-first-event): New function.
19755 (function-key-map): Use it to map fringe clicks to normal clicks
19756 by default.
19757
19758 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
19759 (vc-bzr-revision-completion-table): Add support for annotate and date.
19760
19761 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
19762 inherit from parent.
19763
19764 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19765
19766 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
19767 (dired-show-file-type): Doc fixup (bug#8818).
19768
19769 * dired.el (dired-mode): Fix up the doc string as suggested by
19770 Drew Adams (bug#8817).
19771
19772 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
19773 cookie, since the manual says that it should be possible to add
19774 this function to `find-file-hook' (bug#8709).
19775
19776 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
19777
19778 * progmodes/cfengine.el: Moved all cfengine3.el functionality
19779 here. Noted Ted Zlatanov as the maintainer.
19780 (cfengine-common-settings, cfengine-common-syntax): New functions
19781 to set up common things between `cfengine-mode' and
19782 `cfengine3-mode'.
19783 (cfengine3-mode): New mode.
19784 (cfengine3-defuns cfengine3-defuns-regex
19785 (cfengine3-class-selector-regex cfengine3-category-regex)
19786 (cfengine3-vartypes cfengine3-font-lock-keywords)
19787 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
19788 (cfengine3-indent-line): Add from cfengine3.el.
19789
19790 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
19791
19792 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
19793
19794 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
19795
19796 2011-07-01 Martin Rudalics <rudalics@gmx.at>
19797
19798 * window.el (same-window-buffer-names, same-window-regexps)
19799 (same-window-p, special-display-frame-alist)
19800 (special-display-popup-frame, special-display-function)
19801 (special-display-buffer-names, special-display-regexps)
19802 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
19803 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19804 (split-window-preferred-function, split-height-threshold)
19805 (split-width-threshold, even-window-heights)
19806 (display-buffer-mark-dedicated, window-splittable-p)
19807 (split-window-sensibly, window-safely-shrinkable-p):
19808 Un-obsolete.
19809 (display-buffer): Don't spread args with function specifier
19810 because special-display-popup-frame won't like it.
19811
19812 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
19813
19814 Time-stamp simplifications and fixes.
19815 These improve accuracy slightly, and future-proof the code
19816 against some potential changes to current-time format.
19817
19818 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
19819 by using time-since and float-time.
19820
19821 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
19822 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
19823 + NNN microseconds".
19824
19825 * type-break.el (type-break-time-sum): Rewrite using time-add.
19826
19827 * play/hanoi.el (hanoi-current-time-float): Remove.
19828 All uses replaced by float-time.
19829
19830 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
19831 This yields a more-accurate answer.
19832 (rng-time-to-float): Remove; no longer needed.
19833
19834 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
19835
19836 * calendar/timeclock.el (timeclock-seconds-to-time):
19837 Defalias to seconds-to-time, since they're the same thing.
19838
19839 * emacs-lisp/elp.el (elp-elapsed-time):
19840 * emacs-lisp/benchmark.el (benchmark-elapse):
19841 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
19842
19843 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19844
19845 * window.el (bury-buffer): Don't iconify the only frame.
19846 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
19847 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
19848
19849 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
19850
19851 * eshell/em-smart.el (eshell-smart-display-navigate-list):
19852 Add mouse-yank-primary.
19853
19854 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
19855
19856 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
19857
19858 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
19859
19860 * emacs-lisp/find-func.el (find-library--load-name): New fun.
19861 (find-library-name): Use it to find relative load names when provided
19862 absolute file name (bug#8803).
19863
19864 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
19865
19866 * textmodes/flyspell.el (flyspell-word): Consider words that
19867 differ only in case as potential doublons (bug#5687).
19868
19869 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
19870 Remove two rather uninteresting debugging-like messages to make
19871 debbugs.el more silent.
19872
19873 * comint.el (comint-password-prompt-regexp): Accept "Response" as
19874 a password-like phrase.
19875
19876 2011-06-30 Masatake YAMATO <yamato@redhat.com>
19877
19878 * progmodes/cc-guess.el: New file.
19879
19880 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
19881
19882 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
19883 derived from `c-basic-common-init'.
19884
19885 * progmodes/cc-mode.el (top-level): Require cc-guess.
19886 (c-basic-common-init): Use `cc-choose-style-for-mode'.
19887
19888 2011-06-30 Lawrence Mitchell <wence@gmx.li>
19889
19890 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
19891
19892 2011-06-30 Alan Mackenzie <acm@muc.de>
19893
19894 * progmodes/cc-engine.el (c-guess-continued-construct):
19895 Correct the handling of template-args-cont, particularly for when font
19896 lock is disabled. Name this case as "CASE G".
19897
19898 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
19899
19900 * allout.el (allout-yank-processing): Fix injection of extra space
19901 between bullet and non-whitespace character in first topic when
19902 pasting, ensuring that the actual spacing in the pasted topic
19903 following the bullet char is preserved. This extra space was
19904 causing pasted encrypted topics to get a decrypted status even
19905 when the content was actually still encrypted. Now the decryption
19906 status from before the paste is preserved.
19907
19908 (allout-flag-region): Set all allout overlays so they evaporate
19909 when reduced to zero length (evanescent), to prevent overlay
19910 leakage.
19911
19912 2011-06-30 Glenn Morris <rgm@gnu.org>
19913
19914 * w32-fns.el (w32-charset-info-alist): Declare.
19915
19916 * find-dired.el (find-grep-options): Simplify.
19917
19918 * term/ns-win.el (ns-set-resource): Declare.
19919
19920 * ses.el (row, col): Declare dynamic variables honestly.
19921
19922 * textmodes/reftex-parse.el (index-tags): Declare.
19923
19924 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
19925
19926 * cus-edit.el (customize-push-and-save): New function.
19927
19928 * files.el (hack-local-variables-confirm): Use it.
19929
19930 * custom.el (load-theme): New arg NO-CONFIRM.
19931 Use customize-push-and-save (Bug#8720).
19932 (custom-enabled-themes): Doc fix.
19933
19934 * cus-theme.el (customize-create-theme)
19935 (custom-theme-merge-theme): Callers to load-theme changed.
19936
19937 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
19938
19939 * thingatpt.el (thing-at-point-short-url-regexp): Require that
19940 short URLs have at least one dot in them (bug #7614).
19941
19942 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
19943 nil, because using a pty is apparently too slow (bug #895).
19944
19945 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
19946
19947 * mail/sendmail.el (sendmail-query-once): New function.
19948 (sendmail-query-once-function): New variable.
19949
19950 2011-06-29 Glenn Morris <rgm@gnu.org>
19951
19952 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
19953
19954 * ses.el (top-level): Require cl when compiling.
19955 (ses-set-localvars): Fix error statement.
19956 Call it at compile time to silence a storm of warnings.
19957
19958 2011-06-29 Martin Rudalics <rudalics@gmx.at>
19959
19960 * window.el (normalize-live-buffer): Rename to
19961 window-normalize-buffer.
19962 (normalize-live-frame): Rename to window-normalize-frame.
19963 (normalize-any-window): Rename to window-normalize-any-window.
19964 (normalize-live-window): Rename to window-normalize-live-window.
19965 (make-window-atom): Rename to window-make-atom.
19966 (window-resize-reset): Rename to window--resize-reset.
19967 (window-resize-reset-1): Rename to window--resize-reset-1.
19968 (resize-mini-window): Rename to window--resize-mini-window.
19969 (resize-subwindows-skip-p): Rename to
19970 window--resize-subwindows-skip-p.
19971 (resize-subwindows-normal): Rename to
19972 window--resize-subwindows-normal.
19973 (resize-subwindows): Rename to window--resize-subwindows.
19974 (resize-other-windows): Rename to window--resize-siblings.
19975 (resize-this-window): Rename to window--resize-this-window.
19976 (resize-root-window): Rename to window--resize-root-window.
19977 (resize-root-window-vertically): Rename to
19978 window--resize-root-window-vertically.
19979 (normalize-buffer-to-display): Rename to
19980 window-normalize-buffer-to-display.
19981 (normalize-buffer-to-switch-to): Rename to
19982 window-normalize-buffer-to-switch-to.
19983 Correspondingly update all callers of the functions listed
19984 above.
19985 (display-buffer-alist, display-buffer-normalize-arguments)
19986 (display-buffer-normalize-options, display-buffer)
19987 (display-buffer-alist-set): Use "function" instead of
19988 "fun-with-args".
19989
19990 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
19991
19992 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
19993 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
19994 debbugs.gnu.org. Mention acknowledgment email.
19995
19996 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
19997
19998 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
19999 buffer multibyteness, since it shouldn't matter.
20000
20001 2011-06-28 Martin Rudalics <rudalics@gmx.at>
20002
20003 * window.el (display-buffer-in-side-window): Handle dedicated
20004 windows as in display-buffer-reuse-window.
20005 (display-buffer-normalize-alist): Use value of override
20006 specifier.
20007 (display-buffer-normalize-specifiers): Use value of
20008 other-window-means-other-frame specifier.
20009 (display-buffer-alist): Rewrite some texts in widgets.
20010 (display-buffer): Spread arguments when calling function
20011 specified by fun-with-args.
20012
20013 2011-06-28 Deniz Dogan <deniz@dogan.se>
20014
20015 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
20016 Unnest `let'.
20017
20018 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
20019 selectors (Bug#5732).
20020 (css-proprietary-nmstart-re): Use `regexp-opt'.
20021
20022 2011-06-27 Jari Aalto <jari.aalto@cante.net>
20023
20024 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
20025 (eshell-ls-date-format): New defcustom.
20026 (eshell-ls-file): Use it.
20027
20028 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20029
20030 * help-fns.el (describe-variable): Fix message for terminal-local vars.
20031
20032 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
20033
20034 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
20035 (ange-ftp-make-tmp-name): New arg.
20036 (ange-ftp-file-local-copy): Use it.
20037
20038 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
20039
20040 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
20041 no-conversion (Bug#8870).
20042
20043 2011-06-27 Martin Rudalics <rudalics@gmx.at>
20044
20045 * window.el (window-right, window-left, window-child)
20046 (window-child-count, window-last-child)
20047 (window-iso-combination-p, walk-window-tree-1)
20048 (window-atom-check-1, window-tree-1, delete-window)
20049 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
20050 new naming conventions - window-vchild, window-hchild,
20051 window-next and window-prev are now called window-top-child,
20052 window-left-child, window-next-sibling and window-prev-sibling
20053 respectively.
20054 (resize-window-reset): Rename to window-resize-reset.
20055 (resize-window-reset-1): Rename to window-resize-reset-1.
20056 (resize-window): Rename to window-resize.
20057 (window-min-height, window-min-width)
20058 (resize-mini-window, resize-this-window, resize-root-window)
20059 (resize-root-window-vertically, adjust-window-trailing-edge)
20060 (enlarge-window, shrink-window, maximize-window)
20061 (minimize-window, delete-window, quit-restore-window)
20062 (split-window, balance-windows, balance-windows-area-adjust)
20063 (balance-windows-area, window-state-put-2)
20064 (display-buffer-even-window-sizes, display-buffer-set-height)
20065 (display-buffer-set-width, set-window-text-height)
20066 (fit-window-to-buffer): Rename all "resize-window" prefixed
20067 calls to use the "window-resize" prefix convention.
20068 (display-buffer-alist): Fix symbol for label specifier.
20069 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
20070 corresponding specifier.
20071 Reported by Juanma Barranquero <lekktu@gmail.com>.
20072
20073 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20074
20075 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
20076 convention.
20077 (ses-call-printer): Does not pass an empty string to formatter when the
20078 cell is empty to keep from barking printer Calc math-format-value.
20079
20080 2011-06-27 Richard Stallman <rms@gnu.org>
20081
20082 * battery.el (battery-mode-line-limit): New variable.
20083 (battery-update): Handle it.
20084
20085 * mail/rmailmm.el (rmail-mime-process-multipart):
20086 Handle truncated messages.
20087
20088 2011-06-27 Glenn Morris <rgm@gnu.org>
20089
20090 * progmodes/flymake.el (flymake-err-line-patterns):
20091 Allow for column numbers in the ant/javac pattern. (Bug#8866)
20092
20093 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
20094
20095 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
20096 (ses--clean-!, ses--clean-_): New functions.
20097 (ses-range): Add configurability of readout order, and conversion
20098 to Calc vector.
20099
20100 * ses.el (ses-repair-cell-reference-all): New function.
20101 (ses-cell-symbol): Set macro as safe, so that it can be used in
20102 formulas.
20103
20104 * ses.el: Update cycle detection algorithm.
20105 (ses-localvars): Add ses--Dijkstra-attempt-nb and
20106 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
20107 (ses-set-localvars): New function.
20108 (ses-make-cell): Add property-list as a cell element.
20109 (ses-cell-property-get-fun, ses-cell-property-get)
20110 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
20111 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
20112 New functions.
20113 (ses-cell-property-set, ses-cell-property-pop)
20114 (ses-cell-property-get-handle): New macro.
20115 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
20116 New aliases, used for code readability.
20117 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
20118 cycle detection.
20119 (ses-self-reference-early-detection): New defcustom.
20120 (ses-formula-references): Robustify against self-referring cells.
20121 (ses-mode): Use ses-set-localvars.
20122 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
20123 before lauching the update processing.
20124 (ses-initialize-Dijkstra-attempt): New function.
20125 (ses-recalculate-cell): Update for cycle detection based on
20126 Dijkstra algorithm.
20127
20128 * ses.el: Fix commenting and indenting convention.
20129
20130 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
20131
20132 * bs.el (bs-cycle-next): Complete last change.
20133
20134 2011-06-27 Drew Adams <drew.adams@oracle.com>
20135
20136 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
20137
20138 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
20139
20140 * net/network-stream.el (network-stream-open-starttls):
20141 Don't re-get capabilities unless we've reestablished connection.
20142 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
20143
20144 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
20145 to binary to possibly avoid line encoding issues on Windows (among
20146 other things).
20147
20148 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20149
20150 * net/network-stream.el (open-network-stream): Return an :error
20151 saying what the problem was, if possible.
20152
20153 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
20154 server.
20155
20156 * net/network-stream.el (network-stream-open-starttls): If we
20157 wanted to use STARTTLS, and the server offered it, but we weren't
20158 able to because we had no STARTTLS support, then close the connection.
20159 (open-network-stream): Return an :error element, if present.
20160
20161 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20162
20163 * hl-line.el (hl-line-sticky-flag): Doc fix.
20164 (global-hl-line-sticky-flag): New option (Bug#8323).
20165 (global-hl-line-highlight): Obey it.
20166
20167 * vc/vc.el (vc-revert-show-diff): Default to t.
20168
20169 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
20170
20171 * allout-widgets.el (allout-widgets-post-command-business):
20172 Stop decorating intermediate isearch matches. They're not being
20173 undecorated when an isearch is continued past, and isearch
20174 automatically collapses them. This leads to "widget leaks", where
20175 decorated items accumulate in collapsed areas. Lines with lots of
20176 hidden widgets can slow down cursor travel, substantially.
20177 Too much complicated machinery would be needed to ensure undecoration,
20178 so we're doing without this nicety.
20179
20180 (allout-widgets-tally-string): Don't try to do a hash-table-count
20181 of allout-widgets-tally when it's nil. This eliminates spurious "Error
20182 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
20183 *Messages* when allout-widgets-maintain-tally is t.
20184
20185 2011-06-26 Martin Rudalics <rudalics@gmx.at>
20186
20187 * window.el (display-buffer-normalize-argument): Rename to
20188 display-buffer-normalize-arguments. Handle special meaning of
20189 LABEL argument. Respect special-display-function when popping up
20190 a new frame. Fix code searching for a window showing the buffer
20191 on another frame.
20192 (display-buffer-normalize-specifiers):
20193 Call display-buffer-normalize-arguments.
20194 (display-buffer-in-window): Don't undedicate the window if its
20195 buffer remains the same.
20196 Reported by Drew Adams <drew.adams@oracle.com>.
20197 (display-buffer-alist): Add choice for same-window macro
20198 specfier.
20199 (display-buffer): Mention special meaning of LABEL argument in
20200 doc-string. Fix quoting. Don't pop up a new frame even as
20201 fallback.
20202
20203 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
20204
20205 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
20206 avoid deleting the current window in some cases (bug#8911).
20207
20208 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
20209
20210 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
20211 (Bug#8934)
20212
20213 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
20214
20215 * net/network-stream.el (network-stream-open-starttls):
20216 Use built-in TLS support if `gnutls-available-p' is true.
20217 (network-stream-open-tls): Ditto.
20218
20219 2011-06-26 Leo Liu <sdl.web@gmail.com>
20220
20221 * register.el (registerv): New struct.
20222 (registerv-make): New function.
20223 (jump-to-register, describe-register-1, insert-register):
20224 Support the jump-func, print-func and insert-func slot of a registerv
20225 struct. (Bug#8415)
20226
20227 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
20228
20229 * vc/vc.el (vc-revert-show-diff): New defcustom.
20230 (vc-diff-internal): New arg specifying diff buffer.
20231 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
20232 reuse an existing *vc-diff* buffer (Bug#8927).
20233
20234 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
20235
20236 2011-06-26 Glenn Morris <rgm@gnu.org>
20237
20238 * progmodes/f90.el (f90-critical-indent): New option.
20239 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
20240 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
20241 (f90-mode): Doc fix.
20242 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
20243 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
20244 (f90-beginning-of-block, f90-next-block, f90-indent-region)
20245 (f90-match-end): Handle block, critical.
20246
20247 2011-06-25 Glenn Morris <rgm@gnu.org>
20248
20249 * calendar/diary-lib.el (diary-included-files): Doc fix.
20250 (diary-include-files): New function, extracted from
20251 diary-include-other-diary-files and diary-mark-included-diary-files.
20252 (diary-include-other-diary-files, diary-mark-included-diary-files):
20253 Just call diary-include-files.
20254 (diary-mark-entries): Reset diary-included-files on first call.
20255
20256 * calendar/diary-lib.el (diary-mark-entries)
20257 (diary-mark-included-diary-files):
20258 Visit included diary-files in temp buffers.
20259
20260 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
20261 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
20262 (f90-start-block-re, f90-imenu-generic-expression)
20263 (f90-looking-at-program-block-start, f90-no-block-limit):
20264 Add support for submodules.
20265
20266 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
20267 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
20268
20269 2011-06-25 Eli Zaretskii <eliz@gnu.org>
20270
20271 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
20272 buffer-file-type before setting its value, to avoid disastrous
20273 global effects on decoding files for DOS/Windows systems. (Bug#8780)
20274
20275 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20276
20277 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
20278
20279 * ses.el (ses-unload-function):
20280 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
20281
20282 * proced.el (proced-unload-function):
20283 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
20284
20285 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
20286
20287 * server.el (server-create-window-system-frame): Add parameters arg.
20288 (server-process-filter): Doc fix. Handle frame-parameters.
20289
20290 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
20291
20292 Fix bug#8730, bug#8781.
20293
20294 * loadhist.el (unload--set-major-mode): New function.
20295 (unload-feature): Use it.
20296
20297 * progmodes/python.el (python-after-info-look): Add autoload cookie.
20298 (python-unload-function): New function.
20299
20300 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
20301
20302 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
20303
20304 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
20305
20306 * net/browse-url.el (browse-url-firefox-program): Add icecat to
20307 the candidates list.
20308
20309 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
20310
20311 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
20312
20313 2011-06-23 Richard Stallman <rms@gnu.org>
20314
20315 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
20316 (rmail-variables): Set next-error-move-function.
20317 (rmail-what-message): Take argument POS.
20318 (rmail-next-error-move): New function.
20319
20320 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
20321
20322 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
20323 messages for adjacent non-terminals.
20324
20325 2011-06-23 Richard Stallman <rms@gnu.org>
20326
20327 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
20328 (rmail-show-message-1): Preserve buffer modified flag.
20329 (rmail-start-mail): Don't specify use of rmail-mail-return;
20330 that's done by mail-bury now.
20331 (rmail-mail-return): Handle arg NEWBUF.
20332
20333 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
20334
20335 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
20336 SIZE is a number.
20337
20338 2011-06-23 Martin Rudalics <rudalics@gmx.at>
20339
20340 * window.el (get-lru-window, get-mru-window)
20341 (get-largest-window): Never return a minibuffer window.
20342 (display-buffer-pop-up-window): Fix a bug that could lead to
20343 reusing the minibuffer window.
20344 (display-buffer): Pass original specifier argument to
20345 display-buffer-function instead of the normalized one.
20346 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
20347
20348 2011-06-22 Leo Liu <sdl.web@gmail.com>
20349
20350 * minibuffer.el (completing-read-function)
20351 (completing-read-default): Move from minibuf.c.
20352
20353 2011-06-22 Richard Stallman <rms@gnu.org>
20354
20355 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
20356 to Rmail even if not started by a special Rmail command.
20357
20358 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
20359 Copy the buffer currently showing just one message.
20360
20361 2011-06-22 Roland Winkler <winkler@gnu.org>
20362
20363 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
20364 (bibtex-clean-entry): First delete the old key so that a
20365 customized algorithm for generating the new key does not get
20366 confused by the old key.
20367 (bibtex-url): Obey regexp of first step.
20368 (bibtex-search-entries): Do not use add-to-list with local
20369 list-var.
20370
20371 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20372
20373 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
20374 stored a user name, then query for the password first, instead of
20375 waiting for SMTP to give an error message and the trying again.
20376
20377 2011-06-22 Lawrence Mitchell <wence@gmx.li>
20378
20379 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
20380 BUFFER in call-process.
20381
20382 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
20383
20384 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
20385 QUIT twice.
20386 (smtpmail-try-auth-methods): Require user name and password from
20387 auth-source.
20388
20389 2011-06-22 Martin Rudalics <rudalics@gmx.at>
20390
20391 * window.el (display-buffer-default-specifiers)
20392 (display-buffer-alist): Remove entries for pop-up-frame-alist.
20393 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
20394 (split-window): Normalize SIDE argument (Bug#8916).
20395
20396 * frame.el (pop-up-frame-alist, pop-up-frame-function)
20397 (special-display-frame-alist, special-display-popup-frame):
20398 Remove duplicate declarations. These are now in window.el.
20399
20400 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
20401
20402 * mail/smtpmail.el (smtpmail-via-smtp):
20403 Set :use-starttls-if-possible so that we always use STARTTLS if the
20404 server supports it. SMTP servers that support STARTTLS commonly
20405 require it.
20406
20407 * net/network-stream.el (network-stream-open-starttls): Support
20408 upgrading to STARTTLS always, even if we don't have built-in support.
20409 (open-network-stream): Add the :always-query-capabilities keyword.
20410
20411 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
20412 upgrades with `open-network-stream', and rely solely on
20413 auth-source for all credentials. Big changes throughout the file,
20414 but in particular:
20415 (smtpmail-auth-credentials): Remove.
20416 (smtpmail-starttls-credentials): Remove.
20417 (smtpmail-via-smtp): Check for servers saying they want AUTH after
20418 MAIL FROM, too.
20419
20420 * net/network-stream.el (network-stream-open-starttls):
20421 Provide support for client certificates both for external and built-in
20422 STARTTLS.
20423 (auth-source): Require.
20424 (open-network-stream): Document the :client-certificate keyword.
20425 (network-stream-certificate): Change cert-cert to cert and
20426 cert-key to key.
20427
20428 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
20429
20430 * net/tramp-cache.el (top): Don't load the persistency file when
20431 "emacs -Q" has been called.
20432
20433 2011-06-21 Tim Harper <timcharper@gmail.com>
20434
20435 * term/ns-win.el (ns-initialize-window-system):
20436 Set application-specific `ApplePressAndHoldEnabled' system
20437 resource to NO as it is not yet supported by the NS port.
20438
20439 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
20440
20441 * misc.el (list-dynamic-libraries--refresh): Compute header here...
20442 (list-dynamic-libraries): ...not here.
20443
20444 2011-06-21 Leo Liu <sdl.web@gmail.com>
20445
20446 * subr.el (sha1): Implement sha1 using secure-hash.
20447
20448 2011-06-21 Martin Rudalics <rudalics@gmx.at>
20449
20450 * window.el (display-buffer-alist): In default value do not
20451 enforce searching a window on any but the selected frame.
20452 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
20453 (display-buffer-select-window): Remove function.
20454 (display-buffer-in-window): When a window on another frame gets
20455 reused, do not select it any more but just raise its frame if
20456 necessary (Bug#8851) and (Bug#8856).
20457 (display-buffer-normalize-options): Handle pop-up-frames related
20458 options more faithfully.
20459 (pop-to-buffer): Don't rely on `display-buffer' selecting the
20460 window if it is on another frame.
20461 (display-buffer-alist, display-buffer-default-specifiers):
20462 Don't make new frame unsplittable by default.
20463 (display-buffer-normalize-argument): Fix doc-string typo and use
20464 'same-frame-other-window instead of 'other-window when associating
20465 with display-buffer-macro-specifiers.
20466
20467 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
20468
20469 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
20470 New functions.
20471 (5x5-mode-map, 5x5-mode-menu): Bind them.
20472 (5x5-draw-grid): Tweak the solver's rendering.
20473
20474 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20475
20476 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
20477 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
20478
20479 2011-06-21 Drew Adams <drew.adams@oracle.com>
20480
20481 * menu-bar.el: Use function variable instead of switch-to-buffer.
20482 (menu-bar-select-buffer-function): New variable.
20483 (menu-bar-update-buffers): Use it (bug#8876).
20484
20485 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
20486
20487 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
20488 variable's status.
20489
20490 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
20491
20492 * x-dnd.el (x-dnd-version-from-flags)
20493 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
20494 and long as number (Bug#8899).
20495 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
20496
20497 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
20498
20499 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
20500 (completion-try-completion, completion-all-completions): Compute the
20501 metadata argument if it's missing; make it optional (bug#8795).
20502
20503 * wid-edit.el: Use lex-bind and move towards completion-at-point.
20504 (widget-complete): Use new :completion-function property.
20505 (widget-completions-at-point): New function.
20506 (default): Use :completion-function instead of :complete.
20507 (widget-default-completions): Rename from widget-default-complete;
20508 Rewrite.
20509 (widget-string-complete, widget-file-complete, widget-color-complete):
20510 Remove functions.
20511 (file, symbol, function, variable, coding-system, color):
20512 * international/mule-cmds.el (default-input-method, charset)
20513 (language-info-custom-alist):
20514 * cus-edit.el (face): Use new property :completions.
20515
20516 * progmodes/pascal.el (pascal-completions-at-point): New function.
20517 (pascal-mode): Use it.
20518 (pascal-mode-map): Use completion-at-point.
20519 (pascal-toggle-completions): Make obsolete.
20520 (pascal-complete-word, pascal-show-completions):
20521 * progmodes/octave-mod.el (octave-complete-symbol):
20522 Redefine as obsolete alias.
20523 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
20524 Signal absence of completion info for old Octave,
20525 (inferior-octave-complete): Redefine as obsolete alias.
20526 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
20527 (meta-completions-at-point): Rename from meta-complete-symbol and
20528 adapt it for use on completion-at-point-functions.
20529 (meta-common-mode): Use it.
20530 (meta-looking-at-backward, meta-match-buffer): Remove.
20531 (meta-complete-symbol): Redefine as obsolete alias.
20532 (meta-common-mode-map): Use completion-at-point.
20533 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
20534 (makefile-mode-map): Use completion-at-point.
20535 (makefile-completions-at-point): Rename from makefile-complete and
20536 adapt it for use on completion-at-point-functions.
20537 (makefile-mode): Use it.
20538 (makefile-complete): Redefine as obsolete alias.
20539
20540 2011-06-20 Deniz Dogan <deniz@dogan.se>
20541
20542 * net/rcirc.el: Delete trailing whitespaces once and for all.
20543
20544 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
20545
20546 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
20547
20548 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
20549
20550 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
20551
20552 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
20553
20554 2011-06-19 Martin Rudalics <rudalics@gmx.at>
20555
20556 * window.el (display-buffer-other-window-means-other-frame):
20557 Call display-buffer-normalize-alist.
20558 (display-buffer-normalize-specifiers-1): Rename to
20559 display-buffer-normalize-argument. New argument other-frame.
20560 Rewrite.
20561 (display-buffer-normalize-specifiers-2): Rename to
20562 display-buffer-normalize-options.
20563 (display-buffer-normalize-alist-1): New function.
20564 (display-buffer-normalize-specifiers-3): Rename to
20565 display-buffer-normalize-alist.
20566 Call display-buffer-normalize-alist-1.
20567 (display-buffer-normalize-options-inhibit): New variable.
20568 (display-buffer-normalize-specifiers): Rewrite calling
20569 display-buffer-normalize-alist,
20570 display-buffer-normalize-argument, and
20571 display-buffer-normalize-options. Don't call the latter if
20572 display-buffer-normalize-options-inhibit is non-nil.
20573 (frame-auto-delete): New option.
20574 (window-deletable-p): Use frame-auto-delete.
20575 (window-list-no-nils, window-state-ignored-parameters)
20576 (window-state-get-1, window-state-get, window-state-put-list)
20577 (window-state-put-1, window-state-put-2, window-state-put):
20578 New functions.
20579 (display-buffer-normalize-options): Move special-display-p group
20580 after pop-up-frame group (Bug#8851) and (Bug#8856).
20581
20582 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
20583
20584 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
20585 groups (Bug#8776).
20586 (rx-submatch-n): New function.
20587 (rx): Document it.
20588
20589 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
20590 (Bug#8768).
20591
20592 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
20593
20594 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
20595
20596 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
20597 anytime existing face settings are present (Bug#8889).
20598
20599 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
20600 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
20601 Remove unused argument.
20602
20603 2011-06-18 Martin Rudalics <rudalics@gmx.at>
20604
20605 * window.el (display-buffer-default-specifiers):
20606 Remove pop-up-frame. Add pop-up-window-min-height,
20607 pop-up-window-min-width, and another reuse-window specifier
20608 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
20609 (display-buffer-normalize-specifiers-2):
20610 Handle split-height-threshold and split-width-threshold also when
20611 pop-up-windows is unset. Add a reuse-window specifier for the
20612 case popping up a new window fails.
20613 (special-display-popup-frame): Remove double quoting.
20614 (display-buffer-normalize-specifiers-1): Fix thinko.
20615
20616 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
20617
20618 * shell.el (shell-completion-vars): Set pcomplete-termination-string
20619 according to comint-completion-addsuffix.
20620
20621 * pcomplete.el: Convert to lexical binding and fix bug#8819.
20622 (pcomplete-suffix-list): Mark as obsolete.
20623 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
20624 pcomplete-seen in the closure.
20625 (pcomplete-comint-setup): Setup completion-at-point as well.
20626 (pcomplete--entries): New function.
20627 (pcomplete--env-regexp): New var.
20628 (pcomplete-entries): Rewrite to work with partial-completion and
20629 without relying on pcomplete-suffix-list.
20630 (pcomplete-pare-list): Remove, unused.
20631
20632 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20633
20634 * window.el (display-buffer-alist): Set pop-up-window-min-height
20635 and pop-up-window-min-width in default value. Reported by
20636 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
20637 other-window-means-other-frame.
20638 (display-buffer-macro-specifiers): Comment out entry for
20639 other-window specifier.
20640 (display-buffer-other-window-means-other-frame): New function.
20641 (display-buffer-normalize-specifiers-1): New arguments
20642 buffer-name and label. Treat other-window case specially.
20643 (display-buffer-normalize-specifiers-2): Treat other-window case
20644 specially.
20645 (display-buffer-normalize-specifiers-3): New function.
20646 (display-buffer-normalize-specifiers):
20647 Call display-buffer-normalize-specifiers-3.
20648
20649 2011-06-17 Martin Rudalics <rudalics@gmx.at>
20650
20651 * window.el (same-window-p): Fix two typos introduced when
20652 adding with-no-warnings.
20653 (display-buffer-normalize-specifiers-1): Don't check
20654 pop-up-frames for 'unset initialization.
20655 (display-buffer-normalize-specifiers-2): Major rewrite using
20656 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
20657 (pop-up-frames, display-buffer-reuse-frames)
20658 (display-buffer-mark-dedicated): Don't initialize to 'unset.
20659 Suggested by David Engster <deng@randomsample.de>.
20660 (even-window-heights): Initialize to 'unset.
20661 (display-buffer-alist-set): Handle new 'unset initializations.
20662 (display-buffer-macro-specifiers): Don't pop up a new frame in the
20663 other window case.
20664
20665 2011-06-16 Martin Rudalics <rudalics@gmx.at>
20666
20667 * window.el (display-buffer-normalize-specifiers-1):
20668 Respect current value of pop-up-frames for most reasonable values of
20669 second argument of display-buffer (Bug#8865).
20670 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
20671 (switch-to-buffer-other-window-same-frame)
20672 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
20673 Adams (Bug#8875).
20674 (display-buffer): Don't check noninteractive when calling
20675 display-buffer-pop-up-frame.
20676 (display-buffer-pop-up-frame): Never pop up a frame in
20677 noninteractive mode (Bug#8857).
20678 (enlarge-window, shrink-window): Don't report an error when the
20679 window can't be resized as requested (Bug#8862).
20680
20681 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20682
20683 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
20684
20685 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
20686
20687 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
20688
20689 2011-06-15 Alan Mackenzie <acm@muc.de>
20690
20691 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
20692 for declarators, disable knr checking to speed up for normal files.
20693 2: Refactor, replacing a sequence of nested if forms by a cond form.
20694
20695 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20696
20697 * net/network-stream.el (open-network-stream): Add the keyword
20698 :always-query-capabilities for the case where you want to force a
20699 `plain' network connection, but the protocol still requires the
20700 capabilitiy command (i.e., SMTP and EHLO).
20701
20702 * subr.el (process-live-p): Rename from `process-alive-p' for
20703 consistency with other `-live-p' functions.
20704
20705 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20706
20707 * window.el (same-window-buffer-names, same-window-regexps)
20708 (special-display-frame-alist, special-display-popup-frame)
20709 (special-display-function, special-display-buffer-names)
20710 (special-display-regexps, pop-up-frame-alist)
20711 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
20712 (pop-up-windows, split-window-preferred-function)
20713 (split-height-threshold, split-width-threshold, even-window-heights)
20714 (display-buffer-mark-dedicated): Don't encourage the use of
20715 display-buffer-alist from Elisp code.
20716
20717 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
20718
20719 * progmodes/python.el (python-mode): Derive from prog-mode.
20720 * progmodes/ps-mode.el (ps-mode):
20721 * progmodes/mixal-mode.el (mixal-mode):
20722 * progmodes/cfengine.el (cfengine-mode):
20723 * progmodes/ld-script.el (ld-script-mode): Likewise.
20724
20725 2011-06-15 Martin Rudalics <rudalics@gmx.at>
20726
20727 * window.el (display-buffer-alist): Trim default value to avoid
20728 popping up a new frame (Bug#8857) or reusing an arbitrary window
20729 on another frame.
20730 (display-buffer): Do not fall back on popping up a new frame in
20731 batch mode (Bug#8857).
20732
20733 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
20734
20735 * cus-theme.el (describe-theme-1): Use custom-theme-p.
20736 (custom-theme-summary): New function.
20737 (customize-themes): Use it.
20738
20739 2011-06-13 Glenn Morris <rgm@gnu.org>
20740
20741 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
20742
20743 2011-06-13 Martin Rudalics <rudalics@gmx.at>
20744
20745 * help.el (help-window): Remove variable.
20746 (help-window-point-marker, temp-buffer-max-height)
20747 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
20748 (help-print-return-message): Don't set help-window.
20749 (resize-temp-buffer-window): Rewrite cod eand doc-string.
20750 (help-window-setup-finish): Remove.
20751 (help-window-display-message, help-window-setup)
20752 (with-help-window): Major rewrite based on new
20753 display-buffer-window variable.
20754
20755 * help-mode.el (help-mode-finish): Remove help-window related
20756 code.
20757
20758 * view.el (view-exits-all-viewing-windows): Remove reference to
20759 view-return-to-alist in doc-string.
20760 (view-return-to-alist): Make obsolete.
20761 (view-buffer): Call pop-to-buffer-same-window and remove
20762 undo-window code.
20763 (view-buffer-other-window): Call pop-to-buffer-other-window and
20764 simplify code. Ignore second argument.
20765 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
20766 simplify code. Ignore second argument.
20767 (view-return-to-alist-update): Make obsolete.
20768 (view-mode-enter): Rename second argument to QUIT-RESTORE.
20769 Rewrite using quit-restore window parameters.
20770 (view-mode-exit): Rename second argument to EXIT-ONLY.
20771 Rewrite using quit-restore-window.
20772 (View-exit, View-exit-and-edit, View-leave, View-quit)
20773 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
20774 appropriate arguments.
20775 (view-end-message): Use quit-restore window parameter.
20776
20777 * window.el (display-buffer-function): Rewrite doc-string.
20778 (display-buffer-window, display-buffer-alist): New variables.
20779 (display-buffer-split-specifiers)
20780 (display-buffer-side-specifiers)
20781 (display-buffer-macro-specifiers): New constants.
20782 (display-buffer-even-window-sizes, display-buffer-set-height)
20783 (display-buffer-set-width, display-buffer-select-window)
20784 (display-buffer-in-window, display-buffer-reuse-window)
20785 (display-buffer-split-window-1, display-buffer-split-window)
20786 (display-buffer-split-atom-window, display-buffer-pop-up-window)
20787 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
20788 (display-buffer-in-side-window, normalize-buffer-to-display)
20789 (display-buffer-normalize-specifiers-1)
20790 (display-buffer-normalize-specifiers-2)
20791 (display-buffer-normalize-specifiers, display-buffer-frame):
20792 New functions.
20793 (display-buffer): Major rewrite.
20794 (display-buffer-other-window, display-buffer-other-frame)
20795 (pop-to-buffer, switch-to-buffer-other-window)
20796 (switch-to-buffer-other-frame): Rewrite.
20797 (display-buffer-same-window, display-buffer-same-frame)
20798 (display-buffer-same-frame-other-window)
20799 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
20800 (pop-to-buffer-other-window)
20801 (pop-to-buffer-same-frame-other-window)
20802 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
20803 (switch-to-buffer-other-window-same-frame): New functions.
20804 (same-window-p, special-display-p): Rewrite disabling warnings.
20805 Make obsolete.
20806 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
20807 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
20808 Make obsolete
20809 (same-window-buffer-names, same-window-regexps)
20810 (special-display-frame-alist, special-display-popup-frame)
20811 (special-display-function, special-display-buffer-names)
20812 (special-display-regexps, pop-up-frame-alist)
20813 (pop-up-frame-function, split-window-preferred-function)
20814 (split-height-threshold, split-width-threshold)
20815 (even-window-heights): Make obsolete.
20816
20817 2011-06-12 Glenn Morris <rgm@gnu.org>
20818
20819 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
20820 Misc simplifications.
20821
20822 2011-06-12 Martin Rudalics <rudalics@gmx.at>
20823
20824 * window.el (window-safely-shrinkable-p): Restore function which
20825 was inadvertently removed in change from 2011-06-11. Declare as
20826 obsolete.
20827
20828 * calendar/calendar.el (calendar-generate-window):
20829 Use window-iso-combined-p instead of combination of one-window-p and
20830 window-safely-shrinkable-p.
20831
20832 2011-06-12 Glenn Morris <rgm@gnu.org>
20833
20834 * progmodes/fortran.el (fortran-mode-syntax-table):
20835 * progmodes/f90.el (f90-mode-syntax-table):
20836 Set % to punctuation. (Bug#8820)
20837 (f90-find-tag-default): Remove, no longer needed.
20838
20839 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
20840
20841 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
20842
20843 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
20844
20845 * image.el (image-animated-p): Return animation delay in seconds.
20846 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
20847 (image-animate-timeout): Remove DELAY argument. Don't assume
20848 every subimage has the same delay; get it from image-animated-p.
20849 (image-animate): Caller changed.
20850
20851 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
20852
20853 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
20854 to ignored backtrace functions.
20855
20856 2011-06-11 Glenn Morris <rgm@gnu.org>
20857
20858 * calendar/appt.el (appt-disp-window-function): Doc fix.
20859 (appt-check): Handle overlapping appointments. (Bug#8337)
20860
20861 2011-06-11 Martin Rudalics <rudalics@gmx.at>
20862
20863 * window.el (window-tree-1, window-tree): New functions, moving
20864 the latter to window.el.
20865 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
20866 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
20867 (bw-refresh-edges): Remove.
20868 (balance-windows-1, balance-windows-2): New functions.
20869 (balance-windows): Rewrite in terms of window tree functions,
20870 balance-windows-1 and balance-windows-2.
20871 (bw-adjust-window): Remove.
20872 (balance-windows-area-adjust): New function with functionality of
20873 bw-adjust-window but using resize-window.
20874 (set-window-text-height): Rewrite doc-string.
20875 Use normalize-live-window and resize-window.
20876 (enlarge-window-horizontally, shrink-window-horizontally):
20877 Rename argument to DELTA.
20878 (window-buffer-height): New function.
20879 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
20880 Rewrite using new window resize routines.
20881 (kill-buffer-and-window, mouse-autoselect-window-select):
20882 Use ignore-errors instead of condition-case.
20883 (quit-window): Call delete-frame instead of delete-windows-on
20884 for the only buffer on frame.
20885
20886 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20887
20888 * loadup.el (top-level): Load window before files for the sake
20889 of replace-buffer-in-windows.
20890
20891 * files.el (read-buffer-to-switch)
20892 (switch-to-buffer-other-window)
20893 (switch-to-buffer-other-frame, display-buffer-other-frame):
20894 Move to window.el.
20895
20896 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
20897 (previous-buffer): Move to window.el.
20898
20899 * bindings.el (unbury-buffer): Move to window.el.
20900
20901 * window.el (delete-other-windows-vertically): Move after
20902 definition of delete-other-windows.
20903 (other-window, delete-windows-on, replace-buffer-in-windows):
20904 Move here from window.c.
20905 (record-window-buffer, unrecord-window-buffer)
20906 (set-window-buffer-start-and-point, switch-to-prev-buffer)
20907 (switch-to-next-buffer): New functions.
20908 (get-next-valid-buffer, last-buffer, next-buffer): Move here
20909 from simple.el. Call switch-to-next-buffer.
20910 (previous-buffer): Move here from simple.el.
20911 Call switch-to-prev-buffer.
20912 (bury-buffer): Move here from buffer.c. Switch to previous
20913 buffer when window cannot be deleted.
20914 (unbury-buffer): Move here from bindings.el.
20915 (ctl-x-map): Move binding for other-window from window.c to
20916 here.
20917 (read-buffer-to-switch, switch-to-buffer-other-window)
20918 (switch-to-buffer-other-frame): Move here from files.el.
20919 (normalize-buffer-to-switch-to): New functions.
20920 (switch-to-buffer): Move here from buffer.c.
20921 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
20922
20923 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20924
20925 * window.el (window-min-height, window-min-width): Move here
20926 from window.c. Add defcustoms and rewrite doc-strings.
20927 (resize-mini-window, resize-window): New functions.
20928 (adjust-window-trailing-edge, enlarge-window, shrink-window):
20929 Move here from window.c.
20930 (maximize-window, minimize-window): New functions.
20931 (delete-window, delete-other-windows, split-window): Move here
20932 from window.c.
20933 (window-split-min-size): New function.
20934 (split-window-keep-point): Mention split-window-above-each-other
20935 instead of split-window-vertically.
20936 (split-window-above-each-other, split-window-vertically):
20937 Rename split-window-vertically to split-window-above-each-other
20938 and provide defalias for old definition.
20939 (split-window-side-by-side, split-window-horizontally):
20940 Rename split-window-horizontally to split-window-side-by-side
20941 and provide defalias for the old definition.
20942 (ctl-x-map): Move bindings for delete-window,
20943 delete-other-windows and enlarge-window here from window.c.
20944 Replace bindings for split-window-vertically and
20945 split-window-horizontally by bindings for
20946 split-window-above-each-other and split-window-side-by-side.
20947
20948 * cus-start.el (all): Remove entries for window-min-height and
20949 window-min-width. Add entries for window-splits and
20950 window-nest.
20951
20952 2011-06-09 Glenn Morris <rgm@gnu.org>
20953
20954 * calendar/appt.el (appt-mode-line): New function.
20955 (appt-check, appt-disp-window): Use it.
20956
20957 * files.el (hack-one-local-variable-eval-safep):
20958 Allow minor-modes with explicit +/-1 arguments.
20959
20960 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
20961
20962 * term/xterm.el (xterm): Add defgroup.
20963 (xterm-extra-capabilities): Add defcustom to supply known xterm
20964 capabilities, skip querying them, or query them (default).
20965 (terminal-init-xterm): Use it.
20966 (terminal-init-xterm-modify-other-keys): New function to set up
20967 modifyOtherKeys support to simplify `terminal-init-xterm'.
20968
20969 2011-06-09 Martin Rudalics <rudalics@gmx.at>
20970
20971 * window.el (resize-window-reset, resize-window-reset-1)
20972 (resize-subwindows-skip-p, resize-subwindows-normal)
20973 (resize-subwindows, resize-other-windows, resize-this-window)
20974 (resize-root-window, resize-root-window-vertically)
20975 (window-deletable-p, window-or-subwindow-p)
20976 (frame-root-window-p): New functions.
20977
20978 2011-06-09 Glenn Morris <rgm@gnu.org>
20979
20980 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
20981 (ange-ftp-get-files): Use it.
20982
20983 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
20984
20985 * mail/sendmail.el (mail-recover-1, mail-recover):
20986 * files.el (recover-file, recover-session):
20987 Handle dired-listing-switches not being just a single short option.
20988
20989 2011-06-09 Glenn Morris <rgm@gnu.org>
20990
20991 * calendar/appt.el (appt-display-message, appt-disp-window):
20992 Handle lists of appointments.
20993
20994 2011-06-08 Martin Rudalics <rudalics@gmx.at>
20995
20996 * window.el (one-window-p): Move down in code.
20997 Rewrite doc-string.
20998 (window-current-scroll-bars): Rewrite doc-string.
20999 Normalize live window argument.
21000 (walk-windows, get-window-with-predicate, count-windows):
21001 Rewrite doc-string. Use window-list-1.
21002 (window-in-direction-2, window-in-direction, get-mru-window):
21003 New functions.
21004
21005 2011-06-08 Reuben Thomas <rrt@sc3d.org>
21006
21007 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
21008 Doc fix (Bug#8713).
21009
21010 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
21011
21012 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
21013
21014 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
21015
21016 * loadhist.el (unload-feature-special-hooks):
21017 Add `comint-output-filter-functions'.
21018
21019 2011-06-08 Ivan Kanis <gnu@kanis.fr>
21020
21021 * calendar/appt.el (appt-check): Move some initializations into the let.
21022
21023 2011-06-08 Martin Rudalics <rudalics@gmx.at>
21024
21025 * window.el (window-height): Defalias to window-total-height.
21026 (window-width): Defalias to window-body-width.
21027
21028 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
21029
21030 * image-mode.el (image-toggle-animation): New command.
21031 (image-mode-map): Bind it to RET.
21032 (image-mode): Update message.
21033 (image-toggle-display-image): Avoid a spurious cache flush.
21034 (image-transform-rotation): Doc fix.
21035 (image-transform-properties): Return quickly in the normal case.
21036 (image-animate-loop): Rename from image-animate-max-time.
21037
21038 * image.el (image-animate-max-time): Move to image-mode.el.
21039 (create-animated-image): Remove unnecessary function.
21040 (image-animate): Rename from image-animate-start. New arg.
21041 (image-animate-stop): Remove; just use image-animate-timer.
21042 (image-animate-timer): Use car-safe.
21043 (image-animate-timeout): Rename argument.
21044
21045 2011-06-07 Martin Rudalics <rudalics@gmx.at>
21046
21047 * window.el (get-lru-window, get-largest-window): Move here from
21048 window.c. Rename first argument to ALL-FRAMES.
21049 Rephrase doc-strings.
21050 (get-buffer-window-list): Rewrite using window-list-1.
21051 Rephrase doc-string.
21052 (window-safe-min-height, window-safe-min-width): New constants.
21053 (window-size-ignore, window-min-size, window-min-size-1)
21054 (window-sizable, window-sizable-p, window-size-fixed-1)
21055 (window-size-fixed-p, window-min-delta-1, window-min-delta)
21056 (window-max-delta-1, window-max-delta, window-resizable)
21057 (window-resizable-p, window-total-height, window-total-width)
21058 (window-body-width): New functions.
21059 (window-full-height-p, window-full-width-p): Rewrite using
21060 window-total-size.
21061 (window-body-height): Rewrite using window-body-size.
21062
21063 2011-06-06 Martin Rudalics <rudalics@gmx.at>
21064
21065 * window.el (window-right, window-left, window-child)
21066 (window-child-count, window-last-child, window-any-p)
21067 (normalize-live-buffer, normalize-live-frame)
21068 (normalize-any-window, normalize-live-window)
21069 (window-iso-combination-p, window-iso-combined-p)
21070 (window-iso-combinations)
21071 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
21072 (windows-with-parameter, window-with-parameter)
21073 (window-atom-root, make-window-atom, window-atom-check-1)
21074 (window-atom-check, window-side-check, window-check):
21075 New functions.
21076 (ignore-window-parameters, window-sides, window-sides-vertical)
21077 (window-sides-slots): New variables.
21078 (window-size-fixed): Move down in code. Minor doc-string fix.
21079
21080 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
21081
21082 * comint.el (comint-dynamic-complete-as-filename)
21083 (comint-dynamic-complete-filename): Correctly call
21084 completion-in-region.
21085
21086 2011-06-05 Deniz Dogan <deniz@dogan.se>
21087
21088 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
21089 in last change.
21090
21091 2011-06-05 Deniz Dogan <deniz@dogan.se>
21092
21093 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
21094 (rcirc): Use it to prompt for encryption.
21095
21096 2011-06-05 Roland Winkler <winkler@gnu.org>
21097
21098 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
21099 (bibtex-search-entries): New command bound to C-c C-a.
21100 (bibtex-display-entries): New function.
21101
21102 2011-06-05 Roland Winkler <winkler@gnu.org>
21103
21104 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
21105 (bibtex-insert-kill): After yanking insert newline if necessary.
21106 (bibtex-initialize): Call bibtex-string-files-init only once.
21107 (bibtex-mode): Do not call easy-menu-add.
21108 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
21109 (bibtex-yank): Set arg properly if nil.
21110
21111 2011-06-05 Roland Winkler <winkler@gnu.org>
21112
21113 * textmodes/bibtex.el (bibtex-search-entry-globally):
21114 New variable.
21115 (bibtex-search-entry): Use it.
21116
21117 2011-06-05 Roland Winkler <winkler@gnu.org>
21118
21119 * textmodes/bibtex.el (bibtex-entry-format): New option
21120 sort-fields.
21121 (bibtex-format-entry, bibtex-reformat): Honor this option.
21122 (bibtex-parse-entry): Return fields in proper order.
21123
21124 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
21125
21126 * doc-view.el (doc-view-remove-if): Move computation of result out
21127 of `dolist' to silence misleading lexical-binding warning.
21128
21129 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
21130
21131 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
21132 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
21133
21134 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21135
21136 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
21137 "SunOS 5.10".
21138
21139 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
21140
21141 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
21142 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
21143 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
21144 (tramp-parse-putty):
21145 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
21146 (tramp-completion-function-alist-ssh)
21147 (tramp-completion-function-alist-telnet)
21148 (tramp-completion-function-alist-su)
21149 (tramp-completion-function-alist-putty): Set `tramp-autoload'
21150 cookie.
21151
21152 * net/tramp-ftp.el:
21153 * net/tramp-sh.el:
21154 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
21155 load "tramp.el" `tramp-set-completion-function'.
21156
21157 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
21158
21159 * shell.el: Require and use pcomplete.
21160 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
21161 (shell-completion-vars): Set pcomplete-default-completion-function.
21162
21163 2011-06-04 Deniz Dogan <deniz@dogan.se>
21164
21165 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
21166 `memq' (Bug#8799).
21167
21168 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21169
21170 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
21171
21172 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
21173
21174 * bs.el (bs--mark-unmark, bs--nth-wrapper):
21175 * mpc.el (mpc-select-extend, mpc-songpointer-context):
21176 * vc/log-view.el (log-view-beginning-of-defun):
21177 * vc/smerge-mode.el (smerge-apply-resolution-patch)
21178 (smerge-refine-forward, smerge-refine-chopup-region):
21179 Silence warning for unused `dotimes' counter variables.
21180
21181 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
21182
21183 * net/tramp.el (tramp-with-progress-reporter): Rename from
21184 with-progress-reporter. Use `declare'.
21185 * net/tramp-smb.el:
21186 * net/tramp-sh.el:
21187 * net/tramp-gvfs.el: Update all uses.
21188
21189 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
21190
21191 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
21192 buffer isn't killed before making it current.
21193
21194 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21195
21196 Silence various byte-compiler warnings.
21197 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
21198 `access-type' and new obsolescence format.
21199 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
21200 new format.
21201 (byte-compile-check-variable): New `access-type' argument.
21202 Only warn if the access-type is obsolete.
21203 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21204 (byte-compile-variable-set): Adjust callers.
21205 * help-fns.el (describe-variable): Adjust to new obsolescence format.
21206 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
21207 setting it as obsolete.
21208 * simple.el (minibuffer-completing-symbol):
21209 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
21210 access as obsolete.
21211 * minibuffer.el (minibuffer-completing-file-name): Don't make it
21212 obsolete yet.
21213 * international/quail.el (quail-mouse-choose-completion): Remove unused
21214 code referring to obsolete var.
21215 (quail-choose-completion-string): Remove.
21216 * server.el (server-clients-with, server-kill-buffer-query-function)
21217 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
21218 * proced.el (proced-send-signal):
21219 * emacs-lisp/lisp.el (lisp-complete-symbol):
21220 Replace completion-annotate-function with completion-extra-properties.
21221
21222 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
21223
21224 * simple.el (goto-line): Use read-number.
21225 (overriding-map-is-bound): Remove.
21226 (saved-overriding-map): Change default.
21227 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
21228 Take the map as argument.
21229 (universal-argument, negative-argument, digit-argument): Use it.
21230 (restore-overriding-map): Adjust.
21231 (do-auto-fill): Use fill-forward-paragraph.
21232 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
21233
21234 * minibuffer.el (minibuffer-inactive-mode-map): New var.
21235 (minibuffer-inactive-mode): New major mode.
21236 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
21237 the *Messages* buffer" hack.
21238 (mouse-popup-menubar): Don't burp if the event is a normal key.
21239
21240 Miscellaneous tweaks.
21241 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
21242 lexical scoping as in subr.el's dolist and dotimes.
21243 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
21244 Silence compiler warning.
21245 * thingatpt.el (forward-whitespace): Trivial coding style fix.
21246 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
21247 * international/ccl.el (ccl-compile): Trivial simplification.
21248 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
21249 * emacs-lisp/testcover.el (testcover-end): Remove spurious
21250 `printflag' argument.
21251 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
21252 Purecopy the whole obsolescence data.
21253
21254 2011-06-01 Leo Liu <sdl.web@gmail.com>
21255
21256 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
21257 improve doc-string as suggested by Marco Pessotto
21258 <melmothx@gmail.com>.
21259 (rcirc-print): Fix last change.
21260
21261 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21262
21263 * minibuffer.el (complete-with-action): Return nil for the metadata and
21264 boundaries of non-functional tables.
21265 (completion-table-dynamic): Return nil for the metadata.
21266 (completion-table-with-terminator): Add default case, using
21267 complete-with-action.
21268 (completion--metadata): New function.
21269 (completion-all-sorted-completions, minibuffer-completion-help): Use it
21270 to try and avoid pathological performance problems.
21271 (completion--embedded-envvar-table): Return `category' metadata.
21272
21273 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
21274
21275 * subr.el (process-alive-p): New tiny convenience function.
21276
21277 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21278
21279 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
21280 content but also its previous major mode.
21281
21282 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
21283
21284 * emacs-lisp/debug.el (debug): Restore the previous content of the
21285 *Backtrace* buffer when we exit with C-M-c.
21286
21287 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
21288
21289 * minibuffer.el: Add metadata method to completion tables.
21290 (completion-category-overrides): New defcustom.
21291 (completion-metadata, completion--field-metadata)
21292 (completion-metadata-get, completion--styles)
21293 (completion--cycle-threshold): New functions.
21294 (completion-try-completion, completion-all-completions):
21295 Add `metadata' argument to choose completion-styles.
21296 (completion--do-completion): Use metadata to choose cycling.
21297 (completion-all-sorted-completions): Use metadata for sorting.
21298 Remove :completion-cycle-penalty which is not needed any more.
21299 (completion--try-word-completion): Add `metadata' argument.
21300 (minibuffer-completion-help): Check metadata for annotation function
21301 and sorting.
21302 (completion-file-name-table): Return `category' metadata.
21303 (minibuffer-completing-file-name): Make obsolete.
21304 * simple.el (minibuffer-completing-symbol): Make obsolete.
21305 * icomplete.el (icomplete-completions): Pass new `metadata' param to
21306 completion-try-completion.
21307
21308 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
21309
21310 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
21311
21312 2011-05-30 Leo Liu <sdl.web@gmail.com>
21313
21314 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
21315 (rcirc-print): Decode all incoming messages (bug#8744).
21316 (rcirc-decode-coding-system): Allow value nil for automatic coding
21317 system detection.
21318
21319 2011-06-01 Glenn Morris <rgm@gnu.org>
21320
21321 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
21322
21323 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21324
21325 * image.el (image-animate-max-time): Allow nil and t values.
21326 Default to nil.
21327 (create-animated-image): Doc fix.
21328 (image-animate-start): Remove second arg; just use
21329 image-animate-max-time.
21330 (image-animate-timeout): Doc fix. Args changed.
21331
21332 * image-mode.el (image-toggle-display-image): Ensure that the
21333 image spec passed to the animate timer is the same object as in
21334 the buffer's display property (Bug#6981).
21335 (image-transform-properties): Doc fix.
21336
21337 * image.el (image-animate-max-time): Default to nil.
21338
21339 2011-05-29 Martin Rudalics <rudalics@gmx.at>
21340
21341 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
21342 entire buffer list (Bug#8184).
21343
21344 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21345
21346 * image.el (imagemagick-types-inhibit)
21347 (imagemagick-register-types): Doc fix.
21348
21349 2011-05-29 Deniz Dogan <deniz@dogan.se>
21350
21351 * net/rcirc.el (rcirc): Use the user's stored encryption method by
21352 default.
21353
21354 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21355
21356 * select.el: Don't perform clipboard-manager saving in hooks;
21357 leave the hooks empty.
21358
21359 2011-05-28 Leo Liu <sdl.web@gmail.com>
21360
21361 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
21362 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
21363 (occur-edit-mode): New major mode (Bug#8463).
21364 (occur-after-change-function): New function.
21365 (occur-engine): Give Occur tags a read-only property.
21366
21367 2011-05-28 Kevin Ryde <user42@zip.com.au>
21368
21369 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
21370
21371 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21372
21373 * bindings.el (help-echo): Make the initial non-indicator dash
21374 empty on graphical terminals (Bug#7295).
21375
21376 * files.el (auto-mode-alist): Move config rule after the
21377 in-stripping one (Bug#8547).
21378
21379 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
21380
21381 * startup.el (normal-splash-screen): Remove gratuitous mode-line
21382 setting (Bug#8740).
21383
21384 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
21385
21386 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
21387 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
21388 (Bug#8539).
21389
21390 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21391
21392 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
21393
21394 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
21395
21396 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
21397 (hs-hide-block-at-point, hs-find-block-beginning)
21398 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
21399 (Bug#8279).
21400
21401 2011-05-28 Glenn Morris <rgm@gnu.org>
21402
21403 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
21404
21405 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
21406
21407 * help-fns.el (describe-function-1): If the function is a derived
21408 major mode, print the parent mode.
21409
21410 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
21411 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
21412
21413 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
21414
21415 * minibuffer.el (completion--capf-wrapper): Check applicability before
21416 returning non-nil for non-exclusive completion data.
21417 * progmodes/etags.el (tags-completion-at-point-function):
21418 * info-look.el (info-lookup-completions-at-point): Mark as
21419 non-exclusive.
21420 (info-complete): Adjust accordingly.
21421
21422 * info-look.el: Convert to lexical-binding and completion-at-point.
21423 (info-lookup-completions-at-point): New function.
21424 (info-complete): Use it and completion-in-region.
21425
21426 2011-05-28 Drew Adams <drew.adams@oracle.com>
21427
21428 * isearch.el: Let M-e start with point at the first mismatched char.
21429 (isearch-fail-pos): New function.
21430 (isearch-edit-string): Use it.
21431
21432 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21433
21434 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21435
21436 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
21437
21438 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
21439 traversal functions for avl-trees.
21440 (avl-tree--stack): New struct.
21441 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
21442 (avl-tree-enter): Add optional `updatefun' arg.
21443 (avl-tree--do-enter): Add optional `updatefun' arg.
21444 Change return value.
21445 (avl-tree-delete): Add optional `test' and `nilflag' args.
21446 (avl-tree--do-delete): Add `test' and `nilflag' args.
21447 Change return value.
21448 (avl-tree-member): Add optional `nilflag'
21449 (avl-tree-member-p): New function.
21450 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
21451 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
21452 (avl-tree-stack-empty-p): New functions.
21453
21454 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
21455 avl-tree--del-balance1 and make it work both ways.
21456 (avl-tree--del-balance2): Remove.
21457 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
21458 make it work both ways.
21459 (avl-tree--enter-balance2): Remove.
21460 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
21461 New macros.
21462 (avl-tree--mapc, avl-tree-map): Add direction argument.
21463
21464 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
21465
21466 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
21467
21468 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
21469
21470 * select.el: Support clipboard managers with built-in function
21471 x-clipboard-manager-save, via delete-frame-functions and
21472 kill-emacs-hook.
21473 (xselect-convert-to-targets): Add MULTIPLE target to list.
21474 (xselect-convert-to-save-targets): New function.
21475
21476 2011-05-27 Kenichi Handa <handa@m17n.org>
21477
21478 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
21479 let-binding rfc2047-encode-encoded-words to nil.
21480
21481 2011-05-27 Glenn Morris <rgm@gnu.org>
21482
21483 * mail/emacsbug.el: Don't require url-util.
21484
21485 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
21486
21487 * files.el (set-auto-mode):
21488 Also respect mode: entries at the end of the file. (Bug#8586)
21489
21490 2011-05-26 Glenn Morris <rgm@gnu.org>
21491
21492 * files.el (hack-local-variables-prop-line, hack-local-variables):
21493 Downcase mode names, as seems to be traditional.
21494 (hack-local-variables, hack-local-variables-apply): Doc fixes.
21495
21496 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
21497 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
21498
21499 2011-05-25 Julien Danjou <julien@danjou.info>
21500
21501 * textmodes/rst.el (rst-define-level-faces): Do not define face
21502 symbol if it is already defined.
21503
21504 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
21505
21506 * play/5x5.el (5x5-new-game, 5x5-randomize):
21507 Reset 5x5-solver-output to nil when a new grid is cast.
21508 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
21509 these debugging traces, as defmacro breaks the compiled code.
21510
21511 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
21512
21513 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
21514
21515 2011-05-24 Leo Liu <sdl.web@gmail.com>
21516
21517 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
21518 (vc-bzr-sha1): Adapt.
21519
21520 * sha1.el: Remove. Function `sha1' is now builtin.
21521
21522 * bindings.el: Provide sha1 feature.
21523
21524 2011-05-24 Kenichi Handa <handa@m17n.org>
21525
21526 * mail/sendmail.el: Require `rfc2047'.
21527 (mail-insert-from-field): Do not perform RFC2047 encoding.
21528 (mail-encode-header): New function.
21529 (sendmail-send-it): Set buffer-file-coding-system of the work
21530 buffer to the return value of select-message-coding-system.
21531 Call mail-encode-header.
21532
21533 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
21534
21535 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
21536
21537 * mail/supercite.el (sc-default-cite-frame):
21538 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
21539
21540 2011-05-24 Glenn Morris <rgm@gnu.org>
21541
21542 * progmodes/python.el (brm-menu): Declare.
21543
21544 * emulation/viper.el (viper-set-hooks): Declare.
21545
21546 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
21547 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
21548 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
21549 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
21550 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
21551 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
21552
21553 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
21554
21555 Add an :exit-function for completion-at-point.
21556
21557 * minibuffer.el (completion--done): New fun.
21558 (completion--do-completion): Use it. New arg `expect-exact'.
21559 (minibuffer-complete, minibuffer-complete-word): Don't output message,
21560 since completion--do-completion does it for us now.
21561 (minibuffer-force-complete): Use completion--done and
21562 completion--replace. Handle sole-completion case with more care.
21563 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
21564 (completion-extra-properties): New var.
21565 (completion-annotate-function): Make obsolete.
21566 (minibuffer-completion-help): Adjust accordingly.
21567 Use completion-list-insert-choice-function.
21568 (completion-at-point, completion-help-at-point):
21569 Bind completion-extra-properties.
21570 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
21571 * simple.el (completion-list-insert-choice-function): New var.
21572 (completion-setup-function): Preserve it.
21573 (choose-completion): Pay attention to it, shuffle the code a bit.
21574 (choose-completion-string): New arg `insert-function'.
21575
21576 * textmodes/bibtex.el: Convert to lexical binding.
21577 (bibtex-mode-map): Use completion-at-point.
21578 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
21579 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
21580 (bibtex-complete): Define as obsolete alias.
21581 (bibtex-complete-internal): Remove.
21582 (bibtex-format-entry): Remove unused sub-group in regexp.
21583 * shell.el (shell--command-completion-data)
21584 (shell-environment-variable-completion):
21585 * pcomplete.el (pcomplete-completions-at-point):
21586 * comint.el (comint--complete-file-name-data): Use :exit-function
21587 instead of completion-table-with-terminator so it also works for
21588 choose-completion.
21589
21590 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21591
21592 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
21593
21594 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
21595 (bug#8710).
21596
21597 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
21598
21599 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
21600
21601 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
21602 customization variable and implement: If non-nil, auto-fill will
21603 be inhibited while on topic's header line.
21604
21605 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
21606
21607 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
21608 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
21609 always have a solution in grid size = 5 cases.
21610 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
21611 (5x5-solver-output, 5x5-log-buffer): New vars.
21612 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
21613 Make these variables buffer local to achieve 5x5 multi-session-ness.
21614 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
21615 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
21616 (5x5-solve-suggest): New funs.
21617 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
21618 randomize a grid so that we ensure that there is always a solution.
21619 (5x5-make-random-grid): Allow other movement than flipping.
21620
21621 2011-05-23 Kevin Ryde <user42@zip.com.au>
21622
21623 * emacs-lisp/advice.el (ad-read-advised-function):
21624 Use `function-called-at-point' as the default, if it has
21625 advice and passes PREDICATE.
21626
21627 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
21628
21629 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
21630 byte-compile-lambda if it's actually a lambda.
21631
21632 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
21633 Fix function quoting. Use backquote better.
21634
21635 2011-05-22 Yuanle Song <sylecn@gmail.com>
21636
21637 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
21638 matching (Bug#8516).
21639
21640 2011-05-22 Jari Aalto <jari.aalto@cante.net>
21641
21642 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
21643 different face (Bug#8178).
21644
21645 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
21646
21647 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
21648 defface (Bug#8144).
21649
21650 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
21651
21652 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
21653 funcall as well (bug#8712). Warn when performing those conversions.
21654 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
21655
21656 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
21657
21658 2011-05-22 Glenn Morris <rgm@gnu.org>
21659
21660 * files.el (hack-local-variables-prop-line): Small simplifications.
21661 (hack-local-variables, hack-local-variables-prop-line):
21662 If MODE-ONLY, return the mode, rather than just `t'.
21663
21664 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
21665
21666 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
21667
21668 2011-05-21 Glenn Morris <rgm@gnu.org>
21669
21670 * files.el (hack-local-variables-prop-line, hack-local-variables):
21671 If only interested in the mode, don't bother doing the other stuff.
21672
21673 * image-mode.el (image-after-revert-hook):
21674 Redraw all frames on which the image is visible. (Bug#8567)
21675
21676 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
21677
21678 * wid-edit.el (widget-checklist-match-inline):
21679 Fix 2011-04-19 change. (Bug#8649)
21680
21681 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
21682
21683 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
21684 Also allow singlespace after single-letter capitals followed by a dot.
21685
21686 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
21687 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
21688
21689 2011-05-20 Nix <nix@esperi.org.uk>
21690
21691 * files.el (basic-save-buffer-2):
21692 Fix handling of break-hardlink-on-save with non-existent files.
21693
21694 2011-05-19 Deniz Dogan <deniz@dogan.se>
21695
21696 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
21697 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
21698
21699 2011-05-19 Glenn Morris <rgm@gnu.org>
21700
21701 * progmodes/f90.el (f90-type-def-re):
21702 Handle "type, bind(c)". (Bug#8691)
21703
21704 * emacs-lisp/autoload.el (batch-update-autoloads):
21705 Set autoload-excludes by parsing loadup.el rather than Makefiles.
21706
21707 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
21708
21709 * net/tramp.el (tramp-process-actions): Set "first-password-request"
21710 property for the correct connection in case of multihops.
21711
21712 2011-05-18 Glenn Morris <rgm@gnu.org>
21713
21714 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
21715 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
21716
21717 Rationalize calendar handling of day and month abbrev-arrays.
21718 * calendar/calendar.el (calendar-customized-p): New function.
21719 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
21720 (calendar-day-name-array, calendar-month-name-array): Doc fix.
21721 Add :set function.
21722 (calendar-abbrev-length, calendar-day-abbrev-array)
21723 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
21724 (calendar-day-abbrev-array, calendar-month-abbrev-array):
21725 Elements may no longer be nil.
21726 (calendar-day-name, calendar-month-name):
21727 Update for changed nature of abbrev arrays.
21728 * calendar/diary-lib.el (diary-name-pattern):
21729 Update for changed nature of abbrev arrays.
21730 (diary-mark-entries-1): Update calendar-make-alist calls.
21731 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
21732 * calendar/cal-html.el (cal-html-day-abbrev-array):
21733 Simply inherit from calendar-day-abbrev-array.
21734
21735 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
21736
21737 * progmodes/grep.el (grep-mode): Disable default
21738 compilation-directory-matcher setting (bug#8684).
21739
21740 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
21741
21742 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
21743 instead of "head" and "tail". There were problems with SunOS 5.9,
21744 and it performs better.
21745
21746 2011-05-17 Glenn Morris <rgm@gnu.org>
21747
21748 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
21749
21750 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
21751 Replace obsolete function.
21752
21753 * shell.el (pcomplete-parse-arguments-function): Declare.
21754
21755 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
21756 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
21757 (appt-check): Doc fixes.
21758 (appt-disp-window-function, appt-delete-window-function):
21759 Remove needless special case in custom :type.
21760 (appt-display-count): Default to 0, not nil.
21761 (appt-check): Reset appt-display-count to 0, not nil.
21762
21763 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
21764
21765 * progmodes/python.el (python-font-lock-keywords):
21766 Add the Python 3.X keyword "nonlocal" (bug#8639).
21767
21768 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
21769
21770 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
21771
21772 2011-05-16 Kevin Ryde <user42@zip.com.au>
21773
21774 * info-look.el (makefile-automake-mode): New setups, looking in
21775 automake manual, then makefile-mode.
21776 (makefile-mode): Remove automake manual, have it just in
21777 makefile-automake-mode since there's various things different or
21778 not relevant to plain make.
21779 (makefile-mode): Remove "other-modes" non-existent automake-mode,
21780 believe a hypothetical automake-mode would go to makefile-mode,
21781 not the other way around.
21782
21783 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
21784
21785 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
21786 hunk-end tags (Bug#8672).
21787
21788 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
21789 vc-annotate-show-diff-revision-at-line (Bug#8671).
21790
21791 2011-05-14 Glenn Morris <rgm@gnu.org>
21792
21793 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
21794 in the middle of an existing one with multiple authors. (Bug#8645)
21795 (change-log-font-lock-keywords): Also handle multiple author lines
21796 with leading tabs. (Bug#8644)
21797
21798 * calendar/appt.el (appt-check): Rename some local variables.
21799 Some simplification/reordering.
21800
21801 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
21802 (feedmail-sendmail-f-doesnt-sell-me-out)
21803 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
21804 (feedmail-debug-sit-for, feedmail-queue-express-hook)
21805 (feedmail-queue-runner-message-sender): Set :version.
21806 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
21807 (bbdb-dwim-net-address, vm-mail): Declare.
21808 (feedmail-binmail-gnulinuxish-template):
21809 Rename from feedmail-binmail-linuxish-template.
21810 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
21811 Use insert-buffer-substring.
21812
21813 2011-05-14 Bill Carpenter <bill@carpenter.org>
21814
21815 * mail/feedmail.el (feedmail-patch-level): Increase.
21816 (feedmail-debug): New custom group.
21817 (feedmail-confirm-outgoing-timeout)
21818 (feedmail-sendmail-f-doesnt-sell-me-out)
21819 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
21820 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
21821 (feedmail-sender-line, feedmail-from-line)
21822 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
21823 (feedmail-spray-this-address)
21824 (feedmail-spray-address-fiddle-plex-list)
21825 (feedmail-queue-use-send-time-for-date)
21826 (feedmail-queue-use-send-time-for-message-id)
21827 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
21828 (feedmail-buffer-eating-function):
21829 Doc fixes.
21830 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
21831 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
21832 (feedmail-message-action-scroll-down): New functions.
21833 (feedmail-queue-directory, feedmail-queue-draft-directory):
21834 Use expand-file-name.
21835 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
21836 Remove C-v help entry.
21837 (feedmail-queue-buffer-file-name): New variable.
21838 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
21839 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
21840 (feedmail-message-action-send-strong, feedmail-message-action-edit)
21841 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
21842 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
21843 (feedmail-message-action-toggle-spray)
21844 (feedmail-run-the-queue-no-prompts)
21845 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
21846 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
21847 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
21848 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
21849 (feedmail-envelope-deducer, feedmail-fiddle-from)
21850 (feedmail-fiddle-sender, feedmail-default-date-generator)
21851 (feedmail-fiddle-date, feedmail-fiddle-message-id)
21852 (feedmail-fiddle-spray-address)
21853 (feedmail-fiddle-list-of-spray-fiddle-plexes)
21854 (feedmail-fiddle-list-of-fiddle-plexes)
21855 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
21856 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
21857 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
21858 Change default. Doc fix.
21859 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
21860 (feedmail-binmail-linuxish-template): New constant.
21861 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
21862 Respect feedmail-sendmail-f-doesnt-sell-me-out.
21863 (feedmail-send-it): Add debug call.
21864 Use feedmail-queue-buffer-file-name, and
21865 feedmail-send-it-immediately-wrapper.
21866 (feedmail-message-action-send): Add debug call.
21867 Use feedmail-send-it-immediately-wrapper.
21868 (feedmail-queue-express-to-queue): Add debug call.
21869 Run feedmail-queue-express-hook.
21870 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
21871 (feedmail-message-action-help-blat):
21872 Rename from feedmail-queue-send-edit-prompt-help-first.
21873 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
21874 Check line-endings. Handle errors better.
21875 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
21876 Doc fix. Add debug call.
21877 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
21878 Use feedmail-queue-send-edit-prompt-inner.
21879 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
21880 (feedmail-queue-send-edit-prompt-inner): New function, extracted
21881 from feedmail-queue-send-edit-prompt.
21882 (feedmail-queue-send-edit-prompt-help)
21883 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
21884 (feedmail-tidy-up-slug): Add debug call.
21885 Respect feedmail-queue-slug-suspect-regexp.
21886 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
21887 (feedmail-dump-message-to-queue): Add debug call.
21888 Expand queue-directory.
21889 (feedmail-dump-message-to-queue): Change message slightly.
21890 Use feedmail-say-chatter.
21891 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
21892 (feedmail-send-it-immediately-wrapper): New function.
21893 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
21894 Insert empty string rather than newline. Handle full-frame case.
21895 Use catch/throw. Use feedmail-say-chatter.
21896 (feedmail-fiddle-from): Try mail-host-address.
21897 (feedmail-default-message-id-generator): Doc fix.
21898 Bind system-time-locale. Handle missing end.
21899 (feedmail-fiddle-x-mailer): Add debug call.
21900 Handle feedmail-x-mailer-line being nil.
21901 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
21902 Add debug call. Use buffer-substring-no-properties.
21903 (feedmail-say-debug, feedmail-say-chatter): New functions.
21904 (feedmail-find-eoh): Give an explicit error.
21905
21906 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
21907
21908 * net/newst-treeview.el (newsticker-treeview-face): Change default
21909 family from helvetica to sans.
21910 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
21911 etc/images/newsticker.
21912
21913 * net/newst-reader.el (newsticker-feed-face): Change default
21914 family from helvetica to sans.
21915
21916 * net/newst-plainview.el (newsticker-new-item-face)
21917 (newsticker-old-item-face, newsticker-immortal-item-face)
21918 (newsticker-obsolete-item-face, newsticker-date-face)
21919 (newsticker-statistics-face): Change default family from
21920 helvetica to sans.
21921 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
21922 etc/images/newsticker.
21923
21924 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
21925 (newsticker--process-auto-mark-filter-match): Tell user about
21926 auto-marking.
21927
21928 2011-05-13 Didier Verna <didier@xemacs.org>
21929
21930 Common Lisp indentation improvements on defmethod and lambda-lists.
21931 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
21932 TODO entries.
21933 (lisp-lambda-list-keyword-parameter-indentation)
21934 (lisp-lambda-list-keyword-parameter-alignment)
21935 (lisp-lambda-list-keyword-alignment): New customizable user options.
21936 (lisp-indent-defun-method): Improve docstring.
21937 (extended-loop-p): Fix comment.
21938 (lisp-indent-lambda-list-keywords-regexp): New variable.
21939 (lisp-indent-lambda-list): New function.
21940 (lisp-indent-259): Use it.
21941 (lisp-indent-defmethod): Support for more than one
21942 method qualifier and properly indent methods lambda-lists.
21943 (defgeneric): Provide a missing common-lisp-indent-function property.
21944
21945 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21946
21947 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
21948 bounds for the empty string (bug#8667).
21949
21950 2011-05-13 Glenn Morris <rgm@gnu.org>
21951
21952 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
21953
21954 * mail/sendmail.el (sendmail-program): Try executable-find first.
21955 (sendmail-send-it): `sendmail-program' cannot be unbound.
21956
21957 * calendar/appt.el (appt-make-list): Simplify.
21958 (appt-time-msg-list): Doc fix.
21959 (appt-check): Change mode-line message at the time of the appointment.
21960
21961 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
21962
21963 * progmodes/ld-script.el (ld-script-keywords)
21964 (ld-script-builtins): Update keywords list.
21965
21966 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21967
21968 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
21969
21970 * shell.el (shell-completion-vars): New function.
21971 (shell-mode):
21972 * simple.el (read-shell-command): Use it.
21973 (blink-matching-open): No need for " [...]" in minibuffer-message.
21974
21975 2011-05-12 Glenn Morris <rgm@gnu.org>
21976
21977 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
21978 (appt-check): Simplify.
21979
21980 2011-05-12 Eli Zaretskii <eliz@gnu.org>
21981
21982 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
21983 literal "/dev/null".
21984
21985 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21986
21987 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
21988 Fix typo.
21989
21990 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
21991
21992 * progmodes/which-func.el (which-function):
21993 Use add-log-current-defun instead of add-log-current-defun-function,
21994 which might not be defined (Bug#8260).
21995
21996 2011-05-12 Glenn Morris <rgm@gnu.org>
21997
21998 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
21999 Let byte-compile-initial-macro-environment always take precedence.
22000
22001 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
22002
22003 * net/rcirc.el: Add support for SSL/TLS connections.
22004 (rcirc-server-alist): New field `encryption'.
22005 (rcirc): Check `encryption' settings.
22006 (rcirc-connect): New arg `encryption'. Use open-network-stream.
22007 Merge make-local-variable into `set'.
22008 (rcirc--connection-open-p): New function.
22009 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
22010 the process is not a network process (e.g. running gnutls-cli).
22011 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
22012 Make rcirc-(en|de)code-coding-system local here.
22013 (rcirc-mode): Merge make-local-variable into `set'.
22014 (rcirc-parent-buffer): Make permanent buffer-local.
22015 (rcirc-multiline-minor-mode): Don't do it here.
22016 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
22017 there's no server buffer.
22018
22019 2011-05-11 Glenn Morris <rgm@gnu.org>
22020
22021 * newcomment.el (comment-kill): Prefix "unused" local.
22022
22023 * term/w32console.el (get-screen-color): Declare.
22024
22025 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
22026 Handle symbol elements of byte-compile-initial-macro-environment.
22027
22028 2011-05-10 Leo Liu <sdl.web@gmail.com>
22029
22030 * bookmark.el (bookmark-bmenu-mode-map):
22031 Bind bookmark-bmenu-search to `/'.
22032
22033 * mail/footnote.el: Convert to utf-8 encoding.
22034 (footnote-unicode-string, footnote-unicode-regexp): New variable.
22035 (Footnote-unicode): New function.
22036 (footnote-style-alist): Add unicode style to the list.
22037 (footnote-style): Doc fix.
22038
22039 2011-05-10 Jim Meyering <meyering@redhat.com>
22040
22041 Fix doubled-word typos.
22042 * international/quail.el (quail-insert-kbd-layout): and and -> and
22043 * kermit.el: and and -> and
22044 * net/ldap.el (ldap-search-internal): to to -> to
22045 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
22046 * progmodes/js.el (js-mode): and and -> and
22047 * textmodes/artist.el (artist-move-to-xy): at at -> at
22048 (artist-draw-region-trim-line-endings): if if -> if
22049 And Safetyc -> Safety.
22050 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
22051
22052 2011-05-10 Glenn Morris <rgm@gnu.org>
22053 Stefan Monnier <monnier@iro.umontreal.ca>
22054
22055 * files.el (hack-one-local-variable-eval-safep):
22056 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
22057
22058 2011-05-10 Glenn Morris <rgm@gnu.org>
22059
22060 * calendar/diary-lib.el (diary-list-entries-hook)
22061 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
22062 (diary-nongregorian-marking-hook, diary-list-entries)
22063 (diary-include-other-diary-files, diary-mark-entries)
22064 (diary-mark-included-diary-files): Doc fixes.
22065
22066 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22067
22068 * misc.el: Require tabulated-list.el during compilation.
22069
22070 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22071
22072 * progmodes/compile.el (compilation-start):
22073 Run compilation-filter-hook for the async case too.
22074 (compilation-filter-hook): Doc fix.
22075
22076 2011-05-09 Deniz Dogan <deniz@dogan.se>
22077
22078 * wdired.el: Remove outdated installation comment. Fix usage
22079 comment.
22080
22081 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
22082
22083 * misc.el: Implement new command `list-dynamic-libraries'.
22084 (list-dynamic-libraries--loaded-only-p): New variable.
22085 (list-dynamic-libraries--refresh): New function.
22086 (list-dynamic-libraries): New command.
22087
22088 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
22089
22090 * progmodes/compile.el (compilation-error-regexp-alist-alist):
22091 Fix the ant regexp to handle end-line and end-column info from jikes.
22092 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
22093 higher priority to avoid clobbering by gnu.
22094
22095 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22096
22097 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
22098 if the face has existing theme settings (Bug#8454).
22099
22100 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
22101
22102 * progmodes/perl-mode.el (perl-imenu-generic-expression):
22103 Only match variables declared via `my' or `our' (Bug#8261).
22104
22105 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
22106 special file names `.' and `..' (Bug#8259).
22107
22108 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
22109
22110 * progmodes/grep.el (grep-mode-font-lock-keywords):
22111 Remove buffer-changing entries.
22112 (grep-filter): New function.
22113 (grep-mode): Add it to compilation-filter-hook.
22114
22115 * progmodes/compile.el (compilation-filter-hook)
22116 (compilation-filter-start): New defvars.
22117 (compilation-filter): Call compilation-filter-hook prior to
22118 updating the process mark.
22119
22120 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
22121
22122 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
22123
22124 2011-05-07 Eli Zaretskii <eliz@gnu.org>
22125
22126 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
22127 mailclient-send-it even if window-system is nil. (Bug#8595)
22128
22129 * term/w32console.el (terminal-init-w32console):
22130 Call get-screen-color and use its output to set the frame
22131 background-mode. (Bug#8597)
22132
22133 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
22134
22135 Make bytecomp.el understand that defmethod defines funs (bug#8631).
22136 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
22137 New functions.
22138 (defgeneric, eieio--defmethod): Use them.
22139 (eieio-defgeneric): Remove.
22140 (defmethod): Call defgeneric in a way visible to the byte-compiler.
22141
22142 2011-05-07 Glenn Morris <rgm@gnu.org>
22143
22144 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
22145 Use let rather than let*.
22146 (timeclock-find-discrep): Remove unused local.
22147
22148 * calendar/diary-lib.el (diary-comment-start): Doc fix.
22149
22150 * calendar/appt.el (appt-time-msg-list): Doc fix.
22151
22152 2011-05-06 Noah Friedman <friedman@splode.com>
22153
22154 * apropos.el (apropos-print-doc): Only use
22155 emacs-lisp-docstring-fill-column when it is bound to an integer,
22156 per that variable's documentation.
22157
22158 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
22159
22160 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
22161 and warnings are not silently discarded (e.g. use -d instead of -P).
22162
22163 2011-05-06 Glenn Morris <rgm@gnu.org>
22164
22165 * calendar/appt.el (appt-message-warning-time): Doc fix.
22166 (appt-warning-time-regexp): New option.
22167 (appt-make-list): Respect appt-message-warning-time.
22168
22169 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
22170 New options.
22171 (diary-add-to-list): Strip comments from the displayed string.
22172 (diary-mode): Set comment-start and comment-end.
22173
22174 * vc/diff-mode.el (smerge-refine-subst): Declare.
22175 (diff-refine-hunk): Don't require smerge-mode when compiling.
22176
22177 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
22178
22179 * simple.el (list-processes): Return nil as the docstring says.
22180
22181 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22182
22183 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
22184 to "".
22185 (ange-ftp-write-region, ange-ftp-insert-file-contents)
22186 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
22187 determining of binary transfer. (Bug#7383)
22188
22189 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
22190
22191 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22192 Fix port computation bug. (Bug#8618)
22193
22194 2011-05-05 Glenn Morris <rgm@gnu.org>
22195
22196 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
22197
22198 * simple.el (shell-dynamic-complete-functions)
22199 (comint-dynamic-complete-functions): Declare.
22200
22201 * net/network-stream.el (gnutls-negotiate):
22202 * simple.el (tabulated-list-print): Fix declarations.
22203
22204 * progmodes/gud.el (syntax-symbol, syntax-point):
22205 Remove unnecessary and incorrect declarations.
22206
22207 * emacs-lisp/check-declare.el (check-declare-scan):
22208 Handle byte-compile-initial-macro-environment in bytecomp.el.
22209
22210 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
22211
22212 Fix earlier half-done eieio-defmethod change (bug#8338).
22213 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
22214 Streamline and change calling convention.
22215 (defmethod): Adjust accordingly and simplify.
22216 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
22217 new eieio--defmethod.
22218 (slot-boundp): Minor CSE simplification.
22219
22220 2011-05-05 Milan Zamazal <pdm@zamazal.org>
22221
22222 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
22223 (glasses-make-readable): Use glasses-separate-capital-groups.
22224
22225 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
22226
22227 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
22228 (warning-series): Doc fix.
22229 (display-warning): Don't try to create the buffer if we just found it.
22230
22231 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
22232
22233 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
22234 (autoload-find-generated-file): New function.
22235 (generate-file-autoloads): Bind generated-autoload-file to
22236 buffer-file-name.
22237 (update-file-autoloads, update-directory-autoloads):
22238 Use autoload-find-generated-file. If called interactively, prompt for
22239 output file (Bug#7989).
22240 (batch-update-autoloads): Doc fix.
22241
22242 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
22243
22244 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
22245
22246 2011-05-04 Glenn Morris <rgm@gnu.org>
22247
22248 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
22249 function, so it follows changes in calendar-date-style.
22250 (diary-fancy-date-matcher): New function.
22251 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
22252 (diary-fancy-font-lock-fontify-region-function):
22253 Use diary-fancy-date-pattern as a function.
22254
22255 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
22256 non-numbers for `year' etc pseudo-variables. (Bug#8583)
22257
22258 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
22259
22260 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
22261 instead of positional arguments. Allow :keylist and :crlfiles
22262 arguments.
22263 (open-gnutls-stream): Call it.
22264
22265 * net/network-stream.el (network-stream-open-starttls): Adjust to
22266 call `gnutls-negotiate' with :process and :hostname arguments.
22267
22268 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
22269
22270 * minibuffer.el (completion--message): New function.
22271 (completion--do-completion, minibuffer-complete)
22272 (minibuffer-force-complete, minibuffer-complete-word): Use it.
22273 (completion--do-completion): Don't ignore completion-auto-help when in
22274 icomplete-mode.
22275
22276 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
22277 internal encoding (e.g. tibetan zero is not whitespace).
22278 (global-whitespace-mode): Prefer save-current-buffer.
22279 (whitespace-trailing-regexp): Remove useless save-match-data.
22280 (whitespace-empty-at-bob-regexp): Minor simplification.
22281
22282 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
22283
22284 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
22285
22286 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
22287
22288 * textmodes/ispell.el (ispell-add-per-file-word-list):
22289 Use `concat' to create string for insertion.
22290
22291 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22292
22293 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
22294 Avoid open-line which runs post-self-insert-hook.
22295 (bibtex-fill-entry): Remove unused `end' var.
22296
22297 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
22298
22299 * textmodes/ispell.el (ispell-add-per-file-word-list):
22300 Protect against `nil' value of `comment-start' (Bug#8579).
22301
22302 2011-05-03 Leo Liu <sdl.web@gmail.com>
22303
22304 * isearch.el (isearch-yank-pop): New command.
22305 (isearch-mode-map): Bind it to `M-y'.
22306 (isearch-forward): Mention it.
22307
22308 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
22309
22310 * simple.el (minibuffer-complete-shell-command): Remove.
22311 (minibuffer-local-shell-command-map): Use completion-at-point.
22312 (read-shell-command): Setup completion vars here instead.
22313 (read-expression-map): Bind TAB to symbol completion.
22314
22315 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
22316 error directly rather via storing it into `results'.
22317
22318 2011-05-02 Leo Liu <sdl.web@gmail.com>
22319
22320 * vc/diff.el: Fix description.
22321
22322 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22323
22324 * server.el (server-eval-at): New function.
22325
22326 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
22327
22328 * net/network-stream.el (open-network-stream): Take a :nowait
22329 parameter and pass it on to `make-network-process'.
22330 (network-stream-open-plain): Ditto.
22331
22332 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
22333
22334 * faces.el (face-spec-set-match-display): Don't match toolkit
22335 options on terminal frames.
22336
22337 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
22338
22339 * progmodes/pascal.el: Use lexical binding.
22340 (pascal-mode-map): Remove author preferences.
22341
22342 * pcomplete.el (pcomplete-std-complete): Don't abuse
22343 completion-at-point.
22344
22345 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22346
22347 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
22348 removing code that has been dead since 1991 or so.
22349
22350 * startup.el (command-line): When warning about "_emacs", use a
22351 delayed warning to allow the user to filter it out.
22352
22353 2011-04-28 Deniz Dogan <deniz@dogan.se>
22354
22355 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
22356 user has not joined.
22357
22358 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22359
22360 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
22361 aren't any completions at point.
22362
22363 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
22364
22365 * subr.el (display-delayed-warnings): New function.
22366 (delayed-warnings-hook): New variable.
22367
22368 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
22369
22370 * minibuffer.el (completion-at-point, completion-help-at-point):
22371 Don't presume that a given completion-at-point-function will always
22372 use the same calling convention.
22373
22374 * pcomplete.el (pcomplete-completions-at-point):
22375 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
22376 pcomplete-seen is non-nil.
22377 (pcomplete-comint-setup): Also recognize the new comint/shell
22378 completion functions.
22379 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
22380 pcomplete-seen is non-nil.
22381
22382 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
22383
22384 * calendar/icalendar.el (diary-lib): Add require statement.
22385 (icalendar--create-uid): Read out a uid from a text-property on
22386 the first character in the entry. This allows for code to add its
22387 own uid to the entry.
22388 (icalendar--convert-float-to-ical): Add export of
22389 `diary-float'-entries save for those with the optional DAY
22390 argument.
22391
22392 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
22393
22394 * subr.el (shell-quote-argument): Use alternate escaping strategy
22395 when we spot a variable reference in a string.
22396
22397 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22398
22399 * cus-start.el (all): Define customization for debug-on-event.
22400
22401 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22402
22403 * subr.el (shell-quote-argument): Escape correctly under Windows.
22404
22405 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22406
22407 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
22408
22409 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
22410
22411 * net/tramp.el (tramp-process-actions): Add POS argument.
22412 Delete region between POS and (pos).
22413
22414 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
22415 Use `nil' position in `tramp-process-actions' call.
22416 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
22417
22418 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
22419 position in `tramp-process-actions' call.
22420
22421 * net/trampver.el: Update release number.
22422
22423 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
22424
22425 * custom.el (defcustom): Obey lexical-binding.
22426
22427 Fix octave-inf completion problems reported by Alexander Klimov.
22428 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
22429 Inherit from octave-mode-syntax-table.
22430 (inferior-octave-mode): Set info-lookup-mode.
22431 (inferior-octave-completion-at-point): New function.
22432 (inferior-octave-complete): Use it and completion-in-region.
22433 (inferior-octave-dynamic-complete-functions): Use it as well, and use
22434 comint-filename-completion.
22435 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
22436 symbol elements which shouldn't be word elements.
22437 (octave-font-lock-keywords, octave-beginning-of-defun)
22438 (octave-function-header-regexp): Adjust regexps accordingly.
22439 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
22440
22441 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
22442
22443 * net/gnutls.el (gnutls-errorp): Declare before first use.
22444
22445 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22446
22447 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
22448 verify-error, and verify-hostname-error parameters. Check whether
22449 default trustfile exists before going to use it. Add missing
22450 argument to gnutls-message-maybe call. Return value.
22451 Reported by Claudio Bley <claudio.bley@gmail.com>.
22452 (open-gnutls-stream): Add usage example.
22453
22454 * net/network-stream.el (network-stream-open-starttls): Give host
22455 parameter to `gnutls-negotiate'.
22456 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
22457 * subr.el (shell-quote-argument): Escape correctly under Windows.
22458
22459 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
22460
22461 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
22462 Use correct match group (bug#8438).
22463
22464 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22465
22466 * emacs-lisp/package.el (package-built-in-p): Fix typo.
22467 (package-menu--generate): New arg specifying packages to show.
22468 (package-menu-refresh, package-menu-execute, list-packages):
22469 Callers changed.
22470 (package-show-package-list): New function, replacing deleted
22471 package--list-packages (renamed because it is non-internal).
22472
22473 * finder.el (finder-list-matches): Use package-show-package-list
22474 instead of deleted package--list-packages.
22475
22476 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
22477 Based on a previous implementation by Juanma Barranquero (Bug#8366).
22478 (vc-annotate-mode-map): Bind it to RET.
22479
22480 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
22481
22482 * progmodes/etags.el (next-file): Don't use set-buffer to change
22483 buffers (Bug#8478).
22484
22485 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
22486
22487 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
22488
22489 * apropos.el (apropos-label-face): Avoid variable-pitch face.
22490 (apropos-accumulator): Doc fix.
22491 (apropos-function, apropos-macro, apropos-command)
22492 (apropos-variable, apropos-face, apropos-group, apropos-widget)
22493 (apropos-plist): Add face property.
22494 (apropos-symbols-internal): Fix indentation.
22495 (apropos-print): Simplify help, and recognize apropos-multi-type.
22496 (apropos-print-doc): Use button-type-get to extract the button's
22497 face property. Fill docstring (Bug#8352).
22498
22499 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
22500
22501 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
22502
22503 * play/mpuz.el (mpuz-silent): Doc fix.
22504 (mpuz-mode-map): Use mapc.
22505 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
22506 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
22507 Fix typos in docstrings.
22508
22509 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
22510 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
22511
22512 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
22513
22514 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
22515
22516 * minibuffer.el (completion--do-completion): Avoid the "Next char
22517 not unique" prompt if icomplete-mode is enabled (Bug#5849).
22518
22519 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
22520 mouse-2 into unread-command-events, it is interpreted correctly.
22521
22522 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
22523 (image-toggle-display): Doc fix.
22524
22525 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
22526
22527 * textmodes/page.el (what-page): Use line-number-at-pos to
22528 calculate line number (Bug#6825).
22529
22530 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22531
22532 * eshell/esh-mode.el (find-tag-interactive): Declare function.
22533 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
22534 Pass argument NO-DEFAULT to `find-tag-interactive'.
22535
22536 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
22537
22538 Lexical-binding cleanup.
22539
22540 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
22541 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
22542 * progmodes/ada-prj.el (ada-prj-initialize-values)
22543 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
22544 (ada-prj-show-value):
22545 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
22546 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
22547 (antlr-invalidate-context-cache, antlr-options-menu-filter)
22548 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
22549 * progmodes/bug-reference.el (bug-reference-push-button):
22550 * progmodes/fortran.el (fortran-line-length):
22551 * progmodes/glasses.el (glasses-change):
22552 * progmodes/octave-mod.el (octave-fill-paragraph):
22553 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
22554 (python-pdbtrack-grub-for-buffer, python-sentinel):
22555 * progmodes/sql.el (sql-save-connection):
22556 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
22557 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
22558 Mark unused parameters.
22559
22560 * progmodes/compile.el (compilation--flush-directory-cache)
22561 (compilation--flush-parse, compile-internal): Mark unused parameters.
22562 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
22563 (compilation-next-error-function): Remove unused variable `timestamp'.
22564
22565 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
22566 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
22567
22568 * progmodes/dcl-mode.el (dcl-end-of-command):
22569 Remove unused variable `start'.
22570 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
22571 (dcl-option-value-basic, dcl-option-value-offset)
22572 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
22573 Mark unused parameters.
22574 (dcl-save-local-variable): Remove unused variable `val'.
22575 (mode): Declare.
22576
22577 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
22578 Mark unused parameters.
22579 (delphi-ignore-changes): Move before first use.
22580 (delphi-charset-token-at): Remove unused variable `start'.
22581 (delphi-else-start): Remove unused variable `if-count'.
22582 (delphi-comment-block-start, delphi-comment-block-end):
22583 Remove unused variable `kind'.
22584 (delphi-indent-line): Remove unused variable `new-point'.
22585
22586 * progmodes/ebrowse.el (ebrowse-files-list)
22587 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
22588 Mark unused parameters. Don't quote `lambda'.
22589 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
22590 Don't quote `lambda'.
22591 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
22592 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
22593 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
22594 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
22595 Use `ignore-errors'.
22596 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
22597 (ebrowse-view/find-file-and-search-pattern)
22598 (ebrowse-view/find-member-declaration/definition):
22599 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
22600 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
22601 Rename parameter PREFIX-ARG to PREFIX.
22602 (ebrowse-tags-read-name): Remove unused variables `start' and
22603 `member-info'.
22604 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
22605 to `tags-file'.
22606
22607 * progmodes/etags.el (local-find-tag-hook): Declare.
22608 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
22609 Mark unused parameters.
22610
22611 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
22612 (executable-interpret): Mark unused parameter.
22613
22614 * progmodes/flymake.el (flymake-process-sentinel)
22615 (flymake-after-change-function)
22616 (flymake-create-temp-with-folder-structure)
22617 (flymake-get-include-dirs-dot): Mark unused parameters.
22618 (flymake-safe-delete-directory): Remove unused variable `err'.
22619
22620 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
22621 (speedbar-timer-fn, speedbar-line-text)
22622 (speedbar-change-expand-button-char, speedbar-delete-subblock)
22623 (speedbar-center-buffer-smartly): Declare functions.
22624 (gdb-find-watch-expression): Remove unused variable `array'.
22625 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
22626 (gdb-starting): Mark unused parameters.
22627 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
22628 (gdb-table-string): Remove unused variable `res'.
22629 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
22630 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
22631 (gdb-display-buffer): Remove unused variable `cur-size'.
22632
22633 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
22634 allow lexical-binding compilation.
22635 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
22636 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
22637 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
22638 Mark unused parameters.
22639 (gud-gdb-marker-filter): Remove unused variable `match'.
22640 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
22641 lambda expressions and funcall them, instead of using `fset'.
22642
22643 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
22644 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
22645
22646 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
22647 variable `header-beg'; use `let'.
22648
22649 * progmodes/icon.el (indent-icon-exp): Remove unused variables
22650 `restart', `last-sexp' and `at-do'.
22651
22652 * progmodes/js.el (js--debug): Mark unused parameter.
22653 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
22654 (js--splice-into-items): Remove unused variable `item'.
22655 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
22656
22657 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
22658 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
22659 (makefile-complete): Remove unused variable `try'.
22660 (makefile-fill-paragraph, makefile-match-function-end):
22661 Mark unused parameters.
22662
22663 * progmodes/octave-inf.el (inferior-octave-complete):
22664 Remove unused variable `proc'.
22665 (inferior-octave-output-digest): Mark unused parameter.
22666
22667 * progmodes/perl-mode.el (perl-calculate-indent):
22668 Remove unused variable `err'.
22669
22670 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
22671 (prolog-indent-line): Mark unused parameters.
22672 (prolog-indent-line): Remove unused variable `beg'.
22673
22674 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
22675 (reporter-dont-compact-list): Declare.
22676
22677 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
22678 Remove unused variable `char'.
22679 (sh-debug): Mark unused parameter.
22680 (sh-get-indent-info): Remove unused variable `start'.
22681 (sh-calculate-indent): Remove unused variable `var'.
22682
22683 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
22684 (simula-electric-keyword): Remove unused variable `null'.
22685 (simula-search-backward, simula-search-forward): Remove unused
22686 variables `begin' and `end'.
22687
22688 * progmodes/vera-mode.el (vera-guess-basic-syntax):
22689 Remove unused variable `pos'.
22690 (vera-electric-tab, vera-comment-uncomment-region):
22691 Mark unused parameters.
22692 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
22693
22694 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
22695
22696 * emacs-lisp/package.el (package--builtins, package-alist)
22697 (package-load-descriptor, package-built-in-p, package-activate)
22698 (define-package, package-installed-p)
22699 (package-compute-transaction, package-buffer-info)
22700 (package--push): Doc fix. Distinguish more clearly between
22701 version strings and version lists.
22702
22703 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
22704
22705 Lexical-binding cleanup.
22706
22707 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
22708 (5x5-make-mutate-best):
22709 * play/fortune.el (fortune-in-buffer):
22710 * play/gomoku.el (gomoku-init-display):
22711 * play/solitaire.el (solitaire, solitaire-do-check):
22712 * play/tetris.el (tetris-default-update-speed-function):
22713 Mark unused parameters.
22714
22715 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
22716 (bubbles--shift): Remove unused variable `char-org'.
22717 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
22718 (bubbles--show-images): Remove unused variable `char'.
22719
22720 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
22721 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
22722 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
22723 (decipher-analyze-buffer): Use ?\s.
22724 (decipher-make-checkpoint): Remove unused variable `mapping'.
22725
22726 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
22727
22728 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
22729 Remove unused variable `result'; use `let'.
22730
22731 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
22732 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
22733 (gametree-children-shown-p, gametree-compute-reduced-score):
22734 Use `ignore-errors'.
22735
22736 * play/handwrite.el (ps-lpr-switches): Declare.
22737 (handwrite): Remove unused variables `pmin' and `lastp'.
22738
22739 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
22740
22741 * play/landmark.el (landmark-init-display)
22742 (landmark-update-naught-weights): Mark unused parameters.
22743 (landmark-y): Remove unused variable `noise'. Simplify.
22744 (landmark-human-plays): Remove unused variable `score'.
22745
22746 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
22747 (mpuz-try-proposal): Remove unused variable `game'.
22748
22749 * play/zone.el (life-patterns): Declare.
22750
22751 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
22752
22753 * vc/vc.el (ediff-vc-internal): Declare function.
22754
22755 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22756
22757 * shell.el: Use lexical-binding and std completion UI.
22758 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
22759 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
22760 comint-preoutput-filter-functions rather than on
22761 comint-output-filter-functions.
22762 (shell-command-completion, shell--command-completion-data)
22763 (shell-filename-completion, shell-environment-variable-completion)
22764 (shell-c-a-p-replace-by-expanded-directory): New functions.
22765 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
22766 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
22767 (shell-dynamic-complete-environment-variable): Use them.
22768 (shell-dynamic-complete-as-environment-variable)
22769 (shell-dynamic-complete-as-command): Remove.
22770 (shell-match-partial-variable): Match past point.
22771 * comint.el: Clean up use of completion-at-point-functions.
22772 (comint-completion-at-point): New function.
22773 (comint-mode): Use it completion-at-point-functions.
22774 (comint-dynamic-complete): Make it obsolete.
22775 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
22776 (comint-c-a-p-replace-by-expanded-history): New function.
22777 (comint-dynamic-complete-functions)
22778 (comint-replace-by-expanded-history): Use it.
22779 * minibuffer.el (completion-table-with-terminator): Allow dynamic
22780 termination strings. Try harder to avoid second try-completion.
22781 (completion-in-region-mode-map): Disable bindings that don't work yet.
22782
22783 * comint.el: Use lexical-binding. Require CL.
22784 (comint-dynamic-complete-functions): Use comint-filename-completion.
22785 (comint-completion-addsuffix): Tweak custom type.
22786 (comint-filename-completion, comint--common-suffix)
22787 (comint--common-quoted-suffix, comint--table-subvert)
22788 (comint--complete-file-name-data): New functions.
22789 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
22790 (comint-dynamic-list-filename-completions): Use them.
22791 (comint-dynamic-simple-complete): Make obsolete.
22792
22793 * minibuffer.el (completion-in-region-mode):
22794 Keep completion-in-region-mode--predicate global.
22795 (completion-in-region--postch):
22796 Assume completion-in-region-mode--predicate is not null.
22797
22798 * progmodes/flymake.el (flymake-start-syntax-check-process):
22799 Obey `dir'. Simplify.
22800
22801 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
22802 we're in VC after all.
22803
22804 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
22805
22806 * vc/vc.el (vc-diff-build-argument-list-internal)
22807 (vc-version-ediff, vc-ediff): New commands.
22808 (vc-version-diff): Use vc-diff-build-argument-list-internal.
22809
22810 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
22811
22812 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
22813 add sanity check.
22814
22815 * obsolete/erc-hecomplete.el: Make obsolete.
22816 * obsolete/: Standardize obsolescence info in the header.
22817
22818 2011-04-20 Glenn Morris <rgm@gnu.org>
22819
22820 * calendar/solar.el (solar-horizontal-coordinates):
22821 Use the longitude argument rather than `calendar-longitude'.
22822 (solar-date-next-longitude): Remove unused locals.
22823
22824 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
22825
22826 * whitespace.el: New version 13.2.1.
22827
22828 2011-04-20 felix <EmacsWiki> (tiny change)
22829
22830 * whitespace.el (global-whitespace-mode): Keep highlight when
22831 switching between major modes on a file.
22832
22833 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
22834
22835 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
22836 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
22837 multi-line comments as well.
22838
22839 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
22840
22841 Lexical-binding cleanup.
22842
22843 * arc-mode.el (archive-mode-revert):
22844 * cmuscheme.el (scheme-interactively-start-process):
22845 * custom.el (custom-initialize-delay):
22846 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
22847 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
22848 * emacs-lock.el (emacs-lock-clear-sentinel):
22849 * ezimage.el (defezimage):
22850 * follow.el (follow-avoid-tail-recenter):
22851 * fringe.el (set-fringe-mode-1):
22852 * generic-x.el (bat-generic-mode-compile):
22853 * help-mode.el (help-info-variable, help-do-xref)
22854 (help-mode-revert-buffer):
22855 * help.el (view-emacs-todo):
22856 * iswitchb.el (iswitchb-completion-help):
22857 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
22858 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
22859 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
22860 * locate.el (locate-update):
22861 * longlines.el (longlines-encode-region)
22862 (longlines-after-change-function):
22863 * outline.el (outline-isearch-open-invisible):
22864 * ps-def.el (declare-function, charset-dimension, char-width)
22865 (encode-char):
22866 * ps-mule.el (ps-mule-plot-string):
22867 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
22868 (recentf-edit-list-select, recentf-edit-list-validate)
22869 (recentf-open-files-action):
22870 * rect.el (delete-whitespace-rectangle-line)
22871 (rectangle-number-line-callback):
22872 * register.el (window-configuration-to-register)
22873 (frame-configuration-to-register):
22874 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
22875 * select.el (xselect-convert-to-string, xselect-convert-to-length)
22876 (xselect-convert-to-targets, xselect-convert-to-delete)
22877 (xselect-convert-to-filename, xselect-convert-to-charpos)
22878 (xselect-convert-to-lineno, xselect-convert-to-colno)
22879 (xselect-convert-to-os, xselect-convert-to-host)
22880 (xselect-convert-to-user, xselect-convert-to-class)
22881 (xselect-convert-to-name, xselect-convert-to-integer)
22882 (xselect-convert-to-atom, xselect-convert-to-identity):
22883 * subr.el (declare, ignore, process-kill-without-query)
22884 (text-clone-maintain):
22885 * terminal.el (te-get-char, te-tic-sentinel):
22886 * tool-bar.el (tool-bar-make-keymap):
22887 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
22888 * type-break.el (type-break-mode, type-break-noninteractive-query):
22889 * view.el (View-back-to-mark):
22890 * wid-browse.el (widget-browse-action, widget-browse-widget)
22891 (widget-browse-widgets, widget-browse-sexp):
22892 * widget.el (define-widget-keywords):
22893 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
22894 Mark unused parameters.
22895
22896 * align.el (align-adjust-col-for-rule): Mark unused parameter.
22897 (align-areas): Remove unused variable `look'.
22898 (align-region): Remove unused variables `real-end' and `pos-list'.
22899
22900 * apropos.el (apropos-score-doc): Remove unused variable `i'.
22901
22902 * bindings.el (mode-line-modified, mode-line-remote):
22903 Mark unused parameters.
22904 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
22905
22906 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
22907 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
22908
22909 * comint.el (comint-history-isearch-pop-state)
22910 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
22911 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
22912 (comint-substitute-in-file-name): Doc fix.
22913
22914 * completion.el (cmpl-statistics-block): Mark unused parameter.
22915 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
22916 (save-completions-to-file, load-completions-from-file):
22917 Remove unused local variable `e'.
22918
22919 * composite.el (compose-chars): Remove unused variable `len'.
22920 (lgstring-insert-glyph): Remove unused variable `g'.
22921 (compose-glyph-string): Remove unused variables `ascent',
22922 `descent', `lbearing' and `rbearing'.
22923 (compose-glyph-string-relative): Remove unused variables
22924 `lbearing', `rbearing' and `wadjust'.
22925 (compose-gstring-for-graphic): Remove unused variables `header',
22926 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
22927 (compose-gstring-for-terminal): Remove unused variables `header'
22928 and `nchars'. Use `let', not `let*'.
22929
22930 * cus-edit.el (Custom-set, Custom-save, custom-reset)
22931 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
22932 (Custom-buffer-done, custom-buffer-create-internal)
22933 (custom-browse-visibility-action, custom-browse-group-tag-action)
22934 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
22935 (widget-magic-mouse-down-action, custom-toggle-parent)
22936 (custom-add-parent-links, custom-toggle-hide-variable)
22937 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
22938 (custom-toggle-hide-face, face, hook, custom-group-link-action)
22939 (custom-face-menu-create, custom-variable-menu-create, get)
22940 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
22941 (custom-reset-standard-save-and-update): Remove unused variable `value'.
22942 (customize-apropos): Remove unused variable `tests'.
22943 (custom-group-value-create): Remove unused variable `hidden-p'.
22944 (sort-fold-case): Declare.
22945
22946 * cus-theme.el (custom-reset-standard-faces-list)
22947 (custom-reset-standard-variables-list): Declare.
22948 (customize-create-theme, custom-theme-revert, custom-theme-write)
22949 (custom-theme-choose-mode, customize-themes, custom-theme-save):
22950 Mark unused parameters.
22951
22952 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
22953
22954 * delim-col.el (delimit-columns-max): Move defvar before first use.
22955
22956 * descr-text.el (describe-char-categories): Don't quote `lambda'.
22957 (describe-char): Don't quote `lambda'. Mark unused parameter.
22958
22959 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
22960 (auto-insert): Declare.
22961 (desktop-restore-file-buffer): Rename desktop-* parameters;
22962 mark unused ones.
22963 (desktop-create-buffer): Rename desktop-* parameters and bind them.
22964 (desktop-buffer): Rename desktop-* parameters.
22965
22966 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
22967 (dframe-reposition-frame-xemacs, dframe-help-echo)
22968 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
22969 Mark unused parameters.
22970
22971 * dired-aux.el (backup-extract-version-start, overwrite-query)
22972 (overwrite-backup-query, rename-regexp-query)
22973 (rename-non-directory-query): Declare.
22974 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
22975 (dired-add-entry): Remove unused variable `orig-file-name'.
22976 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
22977 Use parameter PRESERVE-TIME instead of accessing dynamic variable
22978 `dired-copy-preserve-time' directly.
22979 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
22980 (dired-insert-subdir-newpos): Rename unused variable `pos'.
22981
22982 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
22983 (dired-virtual-revert, dired-make-relative-symlink):
22984 Mark unused parameters.
22985 (manual-program): Declare.
22986 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
22987 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
22988 wrapped in `with-no-warnings' to avoid replacing one warning by another.
22989
22990 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
22991
22992 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
22993
22994 * echistory.el (electric-history-in-progress, Helper-return-blurb):
22995 Declare.
22996
22997 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
22998
22999 * electric.el (Electric-command-loop): Rename parameter
23000 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
23001
23002 * expand.el (expand-in-literal): Remove unused variable `here'.
23003
23004 * facemenu.el (facemenu-add-new-color):
23005 Remove unused variable `docstring'.
23006
23007 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
23008 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
23009 (face-attr-construct): Mark unused parameter. Doc fix.
23010 (read-color): Remove unused variable `hex-string'.
23011
23012 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
23013 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
23014 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
23015 (display-buffer-other-frame): Remove unused variable `old-window'.
23016 (kill-buffer-hook): Declare.
23017 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
23018 Mark unused parameters.
23019 (after-find-file): Pass 1 to `auto-save-mode', not t.
23020
23021 * files-x.el (auto-insert): Declare.
23022 (modify-file-local-variable-prop-line): Remove unused variable `val'.
23023
23024 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
23025 variable `buf'. Mark unused parameter.
23026 (find-lisp-insert-directory): Mark unused parameter.
23027
23028 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
23029 (format-encode-region): Remove unused variables `cur-buf' and `result'.
23030 (format-common-tail): Remove, unused.
23031 (format-deannotate-region): Remove unused variable `loc'.
23032 (format-annotate-region): Remove unused variable `p'.
23033 (format-annotate-single-property-change): Remove unused variables
23034 `default' and `tail'.
23035
23036 * forms.el (read-file-filter): Declare.
23037 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
23038
23039 * frame.el (frame-creation-function-alist): Mark unused parameter.
23040 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
23041
23042 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
23043 Remove unused parameters.
23044 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
23045 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
23046
23047 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
23048 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
23049 (hfy-prepare-tag-map): Mark unused parameters.
23050 (htmlfontify-buffer): Use `called-interactively-p'.
23051
23052 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
23053 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
23054 (ibuffer-do-occur): Mark unused parameters.
23055 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
23056 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
23057
23058 * ibuffer.el: Don't quote `lambda'.
23059 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
23060 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
23061 Mark unused parameters.
23062
23063 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
23064 (ido-completing-read): Mark unused parameters.
23065 (ido-copy-current-word): Mark unused parameters;
23066 remove unused variable `name'.
23067 (ido-sort-merged-list): Remove unused parameter `dirs'.
23068
23069 * ielm.el (ielm-input-sender): Mark unused parameter.
23070 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
23071 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
23072 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
23073 `ielm-string' as a dynamic variable accessible from the IELM prompt.
23074 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
23075
23076 * image-dired.el (image-dired-display-thumbs): Remove unused
23077 variables `curr-file' and `count'.
23078 (image-dired-remove-tag): Remove unused variable `start'.
23079 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
23080 variable `curr-file'
23081 (image-dired-rotate-original): Remove unused variable `temp-file'.
23082 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
23083 Remove unused variable `file'.
23084 (image-dired-gallery-generate): Remove unused variable `curr'.
23085 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
23086
23087 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
23088
23089 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
23090
23091 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
23092
23093 * isearch.el (minibuffer-history-symbol): Declare.
23094 (isearch-edit-string): Remove unused variable `err'.
23095 (isearch-message-prefix, isearch-message-suffix):
23096 Mark unused parameters.
23097
23098 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
23099
23100 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
23101
23102 * makesum.el (double-column): Remove unused variable `cnt'.
23103
23104 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
23105 (ido-ignore-item-temp-list): Declare.
23106
23107 * mouse-drag.el (mouse-drag-throw): Remove unused variables
23108 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
23109 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
23110 (mouse-drag-drag): Remove unused variables `mouse-delta' and
23111 `mouse-col-delta'.
23112
23113 * mouse-sel.el (mouse-extend-internal):
23114 Remove unused variable `orig-window-frame'.
23115
23116 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
23117 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
23118 Move declarations before first use.
23119 (pcomplete-opt): Mark unused parameters; doc fix.
23120
23121 * proced.el (proced-revert): Mark unused parameter.
23122 (proced-send-signal): Remove unused variable `err'.
23123
23124 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
23125 Rename parameter PREFIX-ARG to ARG.
23126 (ps-basic-plot-string, ps-basic-plot-whitespace):
23127 Mark unused parameters.
23128
23129 * replace.el (replace-count): Define.
23130 (occur-revert-function): Mark unused parameters.
23131 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
23132 (isearch-case-fold-search, isearch-string): Declare.
23133 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
23134 bind `case-fold-search'. Remove unused variables `beg' and `end',
23135 and simplify.
23136 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
23137 COUNT and bind `replace-count'.
23138 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
23139 to COUNT.
23140
23141 * savehist.el (print-readably, print-string-length): Declare.
23142
23143 * shadowfile.el (shadow-expand-cluster-in-file-name):
23144 Remove unused variable `cluster'.
23145 (shadow-copy-file): Remove unused variable `i'.
23146 (shadow-noquery, shadow-clusters, shadow-site-cluster)
23147 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
23148 (shadow-define-literal-group, shadow-define-regexp-group)
23149 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
23150
23151 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
23152 (shell): Use `called-interactively-p'.
23153 (shell-directory-tracker): Remove unused variable `chdir-failure'.
23154
23155 * simple.el (compilation-context-lines, comint-file-name-quote-list)
23156 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
23157 (delete-backward-char): Remove unused variable `ocol'.
23158 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
23159 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
23160 (event-apply-hyper-modifier, event-apply-shift-modifier)
23161 (event-apply-control-modifier, event-apply-meta-modifier):
23162 Mark unused parameters.
23163 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
23164 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
23165
23166 * speedbar.el (speedbar-ignored-directory-expressions)
23167 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
23168 (speedbar-find-file, speedbar-dir-follow)
23169 (speedbar-directory-buttons-follow, speedbar-tag-find)
23170 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
23171 (speedbar-buffers-line-directory, speedbar-buffer-click):
23172 Mark unused parameters.
23173 (speedbar-tag-file): Remove unused variable `mode'.
23174 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
23175
23176 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
23177
23178 * talk.el (talk): Remove unused variable `display'.
23179
23180 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
23181 (tar-write-region-annotate): Mark unused parameter.
23182
23183 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
23184 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
23185 Declare them, wrapped in `with-no-warnings' to avoid replacing one
23186 warning by another.
23187
23188 * time-stamp.el (time-stamp-string-preprocess):
23189 Remove unused variable `require-padding'.
23190
23191 * tree-widget.el (widget-glyph-enable): Declare.
23192 (tree-widget-action): Mark unused parameter.
23193
23194 * w32-fns.el (x-get-selection): Mark unused parameter.
23195 (autoload-make-program, generated-autoload-file): Declare.
23196
23197 * wdired.el (wdired-revert): Mark unused parameters.
23198 (wdired-xcase-word): Remove unused variable `err'.
23199
23200 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
23201 (whitespace-help-scroll): Remove unused variable `data-help'.
23202
23203 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
23204 (widget-image-insert, widget-after-change, default)
23205 (widget-default-format-handler, widget-default-notify)
23206 (widget-default-prompt-value, widget-info-link-action)
23207 (widget-url-link-action, widget-function-link-action)
23208 (widget-variable-link-action, widget-file-link-action)
23209 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
23210 (widget-field-prompt-internal, widget-field-action, widget-field-match)
23211 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
23212 (widget-insert-button-action, widget-delete-button-action, visibility)
23213 (widget-documentation-link-action, widget-documentation-string-action)
23214 (widget-const-prompt-value, widget-regexp-match, symbol)
23215 (widget-coding-system-prompt-value)
23216 (widget-key-sequence-value-to-external, sexp)
23217 (widget-sexp-value-to-internal, character, vector, cons)
23218 (widget-choice-prompt-value, widget-boolean-prompt-value)
23219 (widget-color--choose-action): Mark unused parameters.
23220 (widget-item-match-inline, widget-choice-match-inline)
23221 (widget-checklist-match, widget-checklist-match-inline)
23222 (widget-group-match): Rename parameter VALUES to VALS.
23223 (widget-field-value-set): Remove unused variable `size'.
23224 (widget-color-action): Remove unused variables `value' and `start'.
23225
23226 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
23227 variable `dir'. Doc fix.
23228 (windmove-find-other-window): Don't pass it.
23229
23230 * window.el (count-windows): Mark unused parameter.
23231 (bw-adjust-window): Remove unused variable `err'.
23232
23233 * woman.el (woman-file-name): Remove unused variable `default'.
23234 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
23235 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
23236 (global-font-lock-mode): Declare.
23237 (woman-decode-region): Mark unused parameter.
23238 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
23239
23240 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
23241 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
23242 (x-dnd-handle-moz-url): Remove unused variable `title'.
23243 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
23244
23245 * xml.el (xml-parse-tag, xml-parse-attlist):
23246 Remove unused variable `pos'.
23247
23248 2011-04-19 Glenn Morris <rgm@gnu.org>
23249
23250 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
23251 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
23252 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
23253 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
23254 * calendar/cal-html.el (cal-html-insert-minical):
23255 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
23256 (calendar-mark-date-pattern):
23257 Prefix "unused" locals.
23258
23259 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
23260 optional argument `style'.
23261
23262 * calendar/appt.el (appt-make-list):
23263 * calendar/cal-china.el (calendar-chinese-date-string):
23264 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
23265 (diary-hebrew-yahrzeit):
23266 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
23267 * calendar/calendar.el (calendar-generate-window):
23268 * calendar/time-date.el (time-to-days):
23269 Remove unused local variables.
23270
23271 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
23272
23273 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
23274 glyphless-char-display table.
23275 (tabulated-list-glyphless-char-display): New var.
23276
23277 2011-04-18 Sam Steingold <sds@gnu.org>
23278
23279 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
23280 to acknowledgments.
23281
23282 2011-04-17 Glenn Morris <rgm@gnu.org>
23283
23284 * calendar/diary-lib.el (diary-sexp-entry):
23285 * calendar/holidays.el (holiday-sexp):
23286 Set debug-on-error rather than the removed stack-trace-on-error.
23287
23288 2011-04-16 Glenn Morris <rgm@gnu.org>
23289
23290 * progmodes/f90.el: Use lexical-binding.
23291 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
23292
23293 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23294
23295 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
23296 (mail-mode): Setup mailalias completion here instead.
23297 * mail/mailalias.el: Use lexical-binding.
23298 (pattern, mailalias-done): Declare dynamic.
23299 (mail-completion-at-point-function): New function, from mail-complete.
23300 (mail-complete): Use it.
23301 (mail-completion-expand): New function.
23302 (mail-get-names): Use it.
23303 (mail-directory, mail-directory-process, mail-directory-stream):
23304 Don't use `pattern' for lexically bound arg.
23305
23306 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
23307
23308 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
23309 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
23310 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
23311
23312 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
23313 (byte-save-window-excursion, byte-temp-output-buffer-setup)
23314 (byte-interactive-p): Define them again, for use when inlining
23315 old code.
23316
23317 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
23318
23319 * loadup.el: Use `string-to-number', not `string-to-int'.
23320
23321 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
23322
23323 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
23324 gud-gdb-complete-command.
23325 (gud-gdb-completions): New function, from gud-gdb-complete-command.
23326 (gud-gdb-completion-at-point): New function.
23327 (gud-gdb-completions): Remove.
23328
23329 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
23330
23331 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
23332 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
23333 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
23334 whether `executable-find' is bound.
23335
23336 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
23337
23338 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
23339
23340 * minibuffer.el (completion-in-region-mode-predicate)
23341 (completion-in-region-mode--predicate): New vars.
23342 (completion-in-region, completion-in-region--postch)
23343 (completion-in-region-mode): Use them.
23344 (completion--capf-wrapper): Also return the hook function.
23345 (completion-at-point, completion-help-at-point):
23346 Adjust and provide a predicate.
23347
23348 Preserve arg names for advice of subr and lexical functions (bug#8457).
23349 * help-fns.el (help-function-arglist): Consolidate the subr and
23350 new-byte-code cases. Add argument `preserve-names' to extract names
23351 from the docstring when needed.
23352 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
23353 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
23354 (ad-arglist): Use help-function-arglist's new arg.
23355 (ad-definition-type): Use cond.
23356
23357 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
23358
23359 * autorevert.el (auto-revert-handler):
23360 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
23361 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
23362 Don't quote lambda.
23363
23364 * image-mode.el (image-transform-set-scale):
23365 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
23366
23367 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23368
23369 * net/network-stream.el (network-stream-open-starttls): Only do
23370 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
23371 Upgrades via gnutls-cli are too slow to be done opportunistically.
23372
23373 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
23374
23375 * dframe.el (dframe-current-frame): Remove spurious quote.
23376
23377 2011-04-12 Glenn Morris <rgm@gnu.org>
23378
23379 * calendar/cal-tex.el (cal-tex-end-document):
23380 Try to automatically use latin1 input if needed.
23381
23382 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
23383 Don't try to cons a mark onto an empty element.
23384
23385 2011-04-11 Leo Liu <sdl.web@gmail.com>
23386
23387 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
23388 buffers.
23389 (ido-kill-buffer-at-head): Support killing virtual buffers.
23390
23391 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
23392
23393 * minibuffer.el (completion-show-inline-help): New var.
23394 (completion--do-completion, minibuffer-complete)
23395 (minibuffer-force-complete, minibuffer-complete-word):
23396 Inhibit minibuffer messages if completion-show-inline-help is nil.
23397
23398 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
23399 to avoid interference from inline help (Bug#5849).
23400
23401 2011-04-10 Leo Liu <sdl.web@gmail.com>
23402
23403 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
23404 Fix typo.
23405
23406 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
23407
23408 * image-mode.el (image-toggle-display-image): Signal an error if
23409 not in Image mode.
23410 (image-transform-mode, image-transform-resize)
23411 (image-transform-set-rotation): Doc fix.
23412 (image-transform-set-resize): Delete.
23413 (image-transform-set-scale, image-transform-fit-to-height)
23414 (image-transform-fit-to-width): Handle image-toggle-display-image
23415 and image-transform-resize directly.
23416
23417 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
23418
23419 * doc-view.el (doc-view-fit-width-to-window)
23420 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
23421 New functions for fitting the shown image to the Emacs window size.
23422 (doc-view-mode-map): Add bindings for the new functions.
23423
23424 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
23425
23426 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
23427 Fix typo in docstring.
23428
23429 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23430
23431 * files.el (file-size-human-readable): Produce one digit after
23432 decimal, like "ls -lh" does.
23433
23434 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
23435 the file size representation.
23436
23437 * simple.el (list-processes): If async subprocesses are not
23438 available, error out with a clear error message.
23439
23440 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
23441
23442 * help.el (help-form-show): New function, to be called from C.
23443 Put help-form output in a buffer named differently than *Help*.
23444
23445 2011-04-08 Eli Zaretskii <eliz@gnu.org>
23446
23447 * files.el (file-size-human-readable): New function.
23448
23449 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
23450 computing the representation inline. Don't require `cl'.
23451
23452 2011-04-08 Glenn Morris <rgm@gnu.org>
23453
23454 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
23455
23456 * net/browse-url.el (browse-url-firefox):
23457 Test system-type, not system-configuration.
23458
23459 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
23460 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
23461 Use log-edit-empty-buffer-p. (Bug#7598)
23462
23463 * net/rlogin.el (rlogin-process-connection-type): Simplify.
23464 (rlogin-mode-map): Initialize in the defvar.
23465 (rlogin): Use ignore-errors.
23466
23467 * replace.el (occur-mode-map): Some fixes for menu items.
23468
23469 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
23470
23471 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
23472
23473 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23474
23475 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
23476 issuing unused warnings.
23477
23478 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
23479 macro directly.
23480
23481 * simple.el: Lisp reimplement of list-processes. Based on an
23482 earlier reimplementation by Leo Liu, but using tabulated-list.el.
23483 (process-menu-mode): New major mode.
23484 (list-processes--refresh, list-processes):
23485 (process-menu-visit-buffer): New functions.
23486
23487 * files.el (save-buffers-kill-emacs): Don't assume any return
23488 value of list-processes, which is undocumented anyway.
23489
23490 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23491
23492 * emacs-lisp/tabulated-list.el: New file.
23493
23494 * emacs-lisp/package.el: Use Tabulated List mode.
23495 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
23496 (package-menu-mode): Derive from tabulated-list-mode. Set up the
23497 table format using Tabulated List mode variables.
23498 (package--push): New macro, replacing package-list-maybe-add.
23499 (package-menu--generate): Use package--push. Renamed from
23500 package--generate-package-list.
23501 (package-menu-refresh, list-packages): Use it.
23502 (package-menu--print-info): Rename from package-print-package.
23503 Return insertion data instead of inserting it directly.
23504 (package-menu-describe-package, package-menu-execute):
23505 Use tabulated-list-get-id.
23506 (package-menu-mark-delete, package-menu-mark-install)
23507 (package-menu-mark-unmark, package-menu-backup-unmark)
23508 (package-menu-mark-obsolete-for-deletion):
23509 Use tabulated-list-put-tag.
23510 (package--list-packages, package-menu-revert)
23511 (package-menu-get-package, package-menu-get-version)
23512 (package-menu-sort-by-column): Functions deleted.
23513 (package-menu-package-list, package-menu-sort-key): Vars deleted.
23514 (package-menu--status-predicate, package-menu--version-predicate)
23515 (package-menu--name-predicate)
23516 (package-menu--description-predicate): Handle arguments in the
23517 Tabulated List format.
23518 (package-list-packages-no-fetch): Call list-packages.
23519
23520 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
23521
23522 * files.el (after-find-file-from-revert-buffer): Remove variable.
23523 (after-find-file): Don't bind it.
23524 (revert-buffer-in-progress-p): New variable.
23525 (revert-buffer): Bind it.
23526 Pass nil for `after-find-file-from-revert-buffer'.
23527
23528 * saveplace.el (save-place-find-file-hook): Use new variable
23529 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
23530
23531 2011-04-06 Glenn Morris <rgm@gnu.org>
23532
23533 * Makefile.in (AUTOGEN_VCS): New variable.
23534 (autoloads): Use $AUTOGEN_VCS.
23535
23536 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
23537 * calendar/calendar.el (calendar-mode-map):
23538 Check for toolkit scroll bars. (Bug#8305)
23539
23540 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23541
23542 * minibuffer.el (completion-in-region--postch)
23543 (completion-in-region-mode): Remove unnecessary messages.
23544
23545 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
23546
23547 * font-lock.el (font-lock-refresh-defaults):
23548 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
23549 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
23550
23551 * info.el (Info-directory-list, Info-read-node-name-2)
23552 (Info-split-parameter-string): Doc fixes.
23553 (Info-virtual-nodes): Reflow docstring.
23554 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
23555 (Info-apropos-toc-nodes, info-finder, Info-get-token)
23556 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
23557 Fix typos in docstrings.
23558 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
23559 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
23560 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
23561 (Info-restore-desktop-buffer): Mark unused parameters.
23562 (Info-directory-find-file, Info-directory-find-node)
23563 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
23564 (Info-virtual-index-find-node, Info-apropos-find-file)
23565 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
23566 Mark unused parameters; fix typos in docstrings.
23567 (Info-virtual-index): Remove unused local variable `nodename'.
23568
23569 2011-04-05 Deniz Dogan <deniz@dogan.se>
23570
23571 * net/rcirc.el: Update my e-mail address.
23572 (rcirc-mode-map): Remove M-o binding.
23573
23574 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
23575
23576 * startup.el (command-line): Save the cursor's theme-face
23577 directly, instead of using face-override-spec.
23578
23579 * custom.el (load-theme): Minor optimization in assigning faces.
23580
23581 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23582
23583 * help-fns.el (describe-variable): Complete all variables having
23584 documentation, including keywords.
23585 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
23586
23587 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
23588
23589 Convert to lexical-binding.
23590
23591 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
23592 (bs--get-marked-string, bs--get-modified-string)
23593 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
23594 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
23595 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
23596
23597 * ehelp.el (electric-help-execute-extended)
23598 (electric-help-ctrl-x-prefix):
23599 * hexl.el (hexl-revert-buffer-function):
23600 * linum.el (linum-after-change, linum-after-scroll):
23601 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
23602
23603 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
23604
23605 2011-04-04 Daiki Ueno <ueno@unixuser.org>
23606
23607 * epa-dired.el:
23608 * epa-mail.el:
23609 * epa-hook.el:
23610 * epa-file.el:
23611 * epa.el:
23612 * epg.el: Use lexical binding.
23613
23614 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
23615
23616 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
23617
23618 * textmodes/flyspell.el (flyspell-word): Recognize default
23619 dictionary case for flyspell-mark-duplications-exceptions.
23620 Use regexp matching for languages.
23621 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
23622 default dictionary (Bug#7926).
23623
23624 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
23625
23626 * emacs-lisp/package.el (package--with-work-buffer):
23627 Recognize https URLs.
23628
23629 * net/network-stream.el: Move from gnus/proto-stream.el.
23630 Change prefix to network-stream throughout.
23631 (open-protocol-stream): Merge into open-network-stream, leaving
23632 open-protocol-stream as an alias. Handle nil BUFFER args.
23633
23634 * subr.el (open-network-stream): Move to net/network-stream.el.
23635
23636 2011-04-02 Glenn Morris <rgm@gnu.org>
23637
23638 * find-dired.el (find-exec-terminator): New option.
23639 (find-ls-option): Test for -ls support.
23640 (find-ls-subdir-switches): Test for -b in find-ls-option.
23641 (find-dired, find-grep-dired): Doc fixes.
23642 (find-dired): Use find-exec-terminator.
23643
23644 * find-dired.el (find-ls-option, find-ls-subdir-switches)
23645 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
23646 (find-name-arg): Remove purecopy.
23647
23648 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
23649 (grep-compute-defaults): Check for `-exec COMMAND +' support.
23650 Set grep-find-use-xargs, grep-find-command, and grep-find-template
23651 accordingly. Don't add the null-device if not needed.
23652
23653 * files.el (save-some-buffers): Doc fix.
23654
23655 2011-04-02 Eli Zaretskii <eliz@gnu.org>
23656
23657 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
23658
23659 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
23660
23661 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
23662 Use `dolist' rather than `mapcar'.
23663
23664 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23665
23666 Add lexical binding.
23667
23668 * subr.el (apply-partially): Use new closures rather than CL.
23669 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
23670 (dolist, dotimes): Use slightly different expansion for lexical code.
23671 (functionp): Move to C.
23672 (letrec): New macro.
23673 (with-wrapper-hook): Use it and apply-partially instead of CL.
23674 (eval-after-load): Preserve lexical-binding.
23675 (save-window-excursion, with-output-to-temp-buffer): Turn them
23676 into macros.
23677
23678 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
23679
23680 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
23681 than the arglist.
23682 (help-add-fundoc-usage): Don't add `Not documented'.
23683 (help-function-arglist): Handle closures, subroutines, and new
23684 byte-code-functions.
23685 (help-make-usage): Remove leading underscores.
23686 (describe-function-1): Handle closures.
23687 (describe-variable): Use special-variable-p for completion.
23688
23689 * files.el (lexical-binding): Declare safe.
23690
23691 * emacs-lisp/pcase.el: Don't use destructuring-bind.
23692 (pcase--memoize): Rename from pcase-memoize. Change weakness.
23693 (pcase): Add `let' pattern.
23694 Change memoization so it actually works.
23695 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
23696 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
23697 <let>: New case.
23698
23699 * emacs-lisp/macroexp.el: Use lexical binding.
23700 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
23701 Don't convert ' to #' without checking that it's indeed quoting
23702 a lambda.
23703
23704 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
23705 Use eval-sexp-add-defvars.
23706 (eval-sexp-add-defvars): New fun.
23707
23708 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
23709
23710 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
23711 Don't autoload.
23712 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
23713 than the internal `byte-compile-lambda'.
23714 (defmethod): Don't hide code under quotes.
23715 (eieio-defmethod): New `code' argument.
23716
23717 * emacs-lisp/eieio-comp.el: Remove.
23718
23719 * emacs-lisp/edebug.el (edebug-eval-defun)
23720 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
23721 (edebug-toggle): Avoid `eval'.
23722
23723 * emacs-lisp/disass.el (disassemble-internal): Handle new
23724 `closure' objects.
23725 (disassemble-1): Handle new byte codes.
23726
23727 * emacs-lisp/cl.el (pushnew): Silence warning.
23728
23729 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
23730 (cl-byte-compile-throw): Remove.
23731 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
23732
23733 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
23734 closures.
23735
23736 * emacs-lisp/cconv.el: New file.
23737
23738 * emacs-lisp/bytecomp.el: Use lexical binding instead of
23739 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
23740 (byte-compile-initial-macro-environment):
23741 Handle declare-function here.
23742 (byte-compile--lexical-environment): New var.
23743 (byte-stack-ref, byte-stack-set, byte-discardN)
23744 (byte-discardN-preserve-tos): New lap codes.
23745 (byte-interactive-p): Don't use any more.
23746 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
23747 New macros.
23748 (byte-compile-lapcode): Use them and handle new lap codes.
23749 (byte-compile-obsolete): Remove.
23750 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
23751 (byte-compile-arglist-warn): Check late def of inlinable funs.
23752 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
23753 since they should have been expanded by now.
23754 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
23755 (byte-compile-from-buffer): Remove unused second arg.
23756 (byte-compile-preprocess): New function.
23757 (byte-compile-toplevel-file-form): New function to distinguish
23758 file-form calls from outside from file-form calls from hunk-handlers.
23759 (byte-compile-file-form): Simplify.
23760 (byte-compile-file-form-defsubst): Remove.
23761 (byte-compile-file-form-defmumble): Simplify now that
23762 byte-compile-lambda always returns a byte-code-function.
23763 (byte-compile): Preprocess.
23764 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
23765 Remove, not used any more.
23766 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
23767 (byte-compile-make-args-desc): New funs.
23768 (byte-compile-lambda): Handle lexical functions. Always return
23769 a byte-code-function.
23770 (byte-compile-reserved-constants): New var, to make up room for
23771 closed-over variables.
23772 (byte-compile-constants-vector): Obey it.
23773 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
23774 (byte-compile-macroexpand-declare-function): New function.
23775 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
23776 byte-code-functions.
23777 (byte-compile-form): Check obsolescence here.
23778 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
23779 (byte-compile-variable-ref): Remove.
23780 (byte-compile-dynamic-variable-op): New fun.
23781 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
23782 (byte-compile-variable-set): New funs.
23783 (byte-compile-discard): Add 2 args.
23784 (byte-compile-stack-ref, byte-compile-stack-set)
23785 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
23786 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
23787 macroexpand-all instead.
23788 (byte-compile-quote-form): Remove.
23789 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
23790 (byte-compile-bind, byte-compile-unbind): New funs.
23791 (byte-compile-let): Handle let* and lexical binding.
23792 (byte-compile-let*): Remove.
23793 (byte-compile-catch, byte-compile-unwind-protect)
23794 (byte-compile-track-mouse, byte-compile-condition-case):
23795 Handle a new :fun-body form, used for lexical scoping.
23796 (byte-compile-save-window-excursion)
23797 (byte-compile-with-output-to-temp-buffer): Remove.
23798 (byte-compile-defun): Simplify.
23799 (byte-compile-stack-adjustment): New fun.
23800 (byte-compile-out): Use it.
23801 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
23802
23803 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
23804 handler any more.
23805
23806 * emacs-lisp/byte-opt.el: Use lexical binding.
23807 (byte-inline-lapcode): Remove (to bytecomp).
23808 (byte-compile-inline-expand): Pay attention to inlining to/from
23809 lexically bound code.
23810 (byte-compile-unfold-lambda): Don't handle byte-code-functions
23811 any more.
23812 (byte-optimize-form-code-walker): Don't handle save-window-excursion
23813 any more and don't call compiler-macros.
23814 (byte-compile-splice-in-already-compiled-code): Remove.
23815 (byte-code): Don't inline any more.
23816 (disassemble-offset): Receive `bytes' as argument rather than via
23817 dynamic scoping.
23818 (byte-compile-tag-number): Declare before first use.
23819 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
23820 `return' even if make-spliceable.
23821 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
23822 obsolete interactive-p.
23823 (byte-optimize-lapcode): Optimize new lap-codes.
23824 Don't trip up on new form of `byte-constant' lap code.
23825
23826 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
23827
23828 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
23829
23830 * custom.el (custom-initialize-default, custom-declare-variable):
23831 Use `defvar'.
23832
23833 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
23834 New variables.
23835 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
23836 (COMPILE_FIRST): Add macroexp and cconv.
23837 * makefile.w32-in: Mirror changes in Makefile.in.
23838
23839 * vc/cvs-status.el:
23840 * vc/diff-mode.el:
23841 * vc/log-edit.el:
23842 * vc/log-view.el:
23843 * vc/smerge-mode.el:
23844 * textmodes/bibtex-style.el:
23845 * textmodes/css-mode.el:
23846 * startup.el:
23847 * uniquify.el:
23848 * minibuffer.el:
23849 * newcomment.el:
23850 * reveal.el:
23851 * server.el:
23852 * mpc.el:
23853 * emacs-lisp/smie.el:
23854 * doc-view.el:
23855 * dired.el:
23856 * abbrev.el: Use lexical binding.
23857
23858 2011-04-01 Eli Zaretskii <eliz@gnu.org>
23859
23860 * info.el (info-display-manual): New function.
23861
23862 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
23863
23864 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
23865
23866 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
23867
23868 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
23869 an entry for that server in rcirc-authinfo. (Bug#8385)
23870
23871 2011-03-31 Glenn Morris <rgm@gnu.org>
23872
23873 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
23874
23875 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
23876
23877 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
23878
23879 * progmodes/python.el (python-default-interpreter)
23880 (python-python-command-args, python-jython-command-args)
23881 (python-which-shell, python-which-args, python-which-bufname)
23882 (python-file-queue, python-comint-output-filter-function)
23883 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
23884 variables and functions.
23885
23886 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
23887
23888 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
23889 (completion-in-region-mode): New minor mode.
23890 (completion-in-region): Use it.
23891 (completion-in-region--data, completion-in-region-mode-map): New vars.
23892 (completion-in-region--postch): New function.
23893 (completion--capf-misbehave-funs, completion--capf-safe-funs):
23894 New vars.
23895 (completion--capf-wrapper): New function.
23896 (completion-at-point): Use it to track well-behavedness of
23897 hook functions.
23898 (completion-help-at-point): New command.
23899
23900 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
23901
23902 * vc/add-log.el (add-change-log-entry): Don't use whitespace
23903 syntax class to search for whitespace on a single line
23904 (Message-ID: <4D938140.4030905@redhat.com>).
23905
23906 2011-03-30 Leo Liu <sdl.web@gmail.com>
23907
23908 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
23909 New commands.
23910 (edit-abbrevs-map): Bind them here.
23911 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
23912
23913 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
23914
23915 * allout.el (allout-hide-by-annotation, allout-flag-region):
23916 Reduce possibility of overlay leakage by making them volatile.
23917
23918 * allout-widgets.el (allout-widgets-tally): Define as nil so the
23919 hash is not shared between buffers. Mode initialization is
23920 responsible for giving it a useful starting value.
23921 (allout-item-span): Reduce possibility of overlay leakage by
23922 making them volatile.
23923 (allout-widgets-count-buttons-in-region): Add diagnostic function
23924 for tracking down button overlay leaks.
23925
23926 2011-03-29 Leo Liu <sdl.web@gmail.com>
23927
23928 * ido.el (ido-read-internal): Use the default history var
23929 minibuffer-history if no HISTORY is specified.
23930
23931 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
23932
23933 * net/imap.el (imap-shell-open, imap-process-connection-type):
23934 Use imap-process-connection-type for 'shell' streams as well as
23935 Kerberos, SSL, other subprocesses.
23936
23937 2011-03-28 Leo Liu <sdl.web@gmail.com>
23938
23939 * abbrev.el (abbrev-table-empty-p): New function.
23940 (prepare-abbrev-list-buffer): Place empty abbrev tables after
23941 nonempty ones. (Bug#5937)
23942
23943 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
23944
23945 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
23946
23947 2011-03-27 Leo Liu <sdl.web@gmail.com>
23948
23949 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
23950 for foreground and background colors.
23951 (ansi-color-make-color-map): Adapt.
23952
23953 2011-03-25 Leo Liu <sdl.web@gmail.com>
23954
23955 * midnight.el (midnight-time-float): Remove. Note it calculates
23956 the microsecond component incorrectly and seconds-to-time does the
23957 same job.
23958 Remove redundant (require 'timer).
23959
23960 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
23961 (ido-completions): Remove unused arguments. (Bug#8329)
23962
23963 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
23964
23965 * minibuffer.el (completion--flush-all-sorted-completions):
23966 Remove itself from hook.
23967 (completion-at-point): Let the functions perform the completion
23968 immediately and return nil or t.
23969 * comint.el (comint-dynamic-complete-functions): Now identical to
23970 completion-at-point-functions.
23971 (comint-dynamic-list-input-ring): Remove unused var `index'.
23972 (comint--match-partial-filename, comint--unquote&expand-filename):
23973 New funs, split from comint-match-partial-filename.
23974 (comint-dynamic-complete): Use completion-at-point.
23975 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
23976
23977 2011-03-24 Drew Adams <drew.adams@oracle.com>
23978
23979 * thingatpt.el: Support `defun'.
23980
23981 2011-03-23 Leo Liu <sdl.web@gmail.com>
23982
23983 * abbrevlist.el: Move to obsolete/abbrevlist.el.
23984
23985 * help-mode.el (help-mode-finish): Tweak regexp.
23986
23987 2011-03-23 Glenn Morris <rgm@gnu.org>
23988
23989 * eshell/esh-opt.el (eshell-eval-using-options):
23990 Do not bind unused local variable `eshell-option-stub'.
23991
23992 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
23993
23994 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
23995
23996 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
23997 keymap variable in `with-no-warnings' to avoid a warning when the
23998 keymap has been already `defconst'ed.
23999
24000 2011-03-22 Leo Liu <sdl.web@gmail.com>
24001
24002 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
24003 encode all chars in abbrevs; otherwise use emacs-mule or
24004 utf-8-emacs. (Bug#8308)
24005
24006 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
24007
24008 * simple.el (backward-delete-char-untabify):
24009 Avoid warning about using `delete-backward-char'.
24010
24011 * image.el (image-type-file-name-regexps): Make it variable.
24012 `imagemagick-register-types' modifies it, and the user may want
24013 to add new extensions for known image types.
24014 (imagemagick-register-types): Throw error if not using ImageMagick.
24015
24016 2011-03-22 Leo Liu <sdl.web@gmail.com>
24017
24018 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
24019 located before rcirc-prompt-end-marker.
24020 (rcirc-complete): Error if point is not after rcirc prompt.
24021 Handle the case when table is nil.
24022 (rcirc-user-authenticated): Define to fix compiler warning.
24023
24024 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
24025
24026 * custom.el (custom--inhibit-theme-enable): Make it affect only
24027 custom-theme-set-variables and custom-theme-set-faces.
24028 (provide-theme): Ignore custom--inhibit-theme-enable.
24029 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
24030 (custom-enabling-themes): Delete variable.
24031 (enable-theme): Accept only loaded themes as arguments.
24032 Ignore the special custom-enabled-themes variable.
24033 (custom-enabled-themes): Forbid themes from setting this.
24034 Eliminate use of custom-enabling-themes.
24035 (custom-push-theme): Quote "changed" custom var entry.
24036
24037 2011-03-21 Leo Liu <sdl.web@gmail.com>
24038
24039 * ido.el (ido-read-internal): Add ido-selected to history instead
24040 of user input.
24041
24042 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
24043
24044 * subr.el (deferred-action-list, deferred-action-function):
24045 Mark obsolete.
24046
24047 2011-03-21 Leo Liu <sdl.web@gmail.com>
24048
24049 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
24050 change on 2011-02-13 (bug#8309).
24051
24052 * minibuffer.el (read-file-name-function): Change default value.
24053 (read-file-name--defaults): Rename from read-file-name-defaults.
24054 (read-file-name-default): Rename from read-file-name.
24055 (read-file-name): Call read-file-name-function.
24056
24057 2011-03-21 Glenn Morris <rgm@gnu.org>
24058
24059 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
24060 Doc fixes.
24061
24062 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
24063
24064 * cus-theme.el: Add missing provide statement.
24065 (customize-create-theme): Extract theme value correctly.
24066 (custom-theme-visit-theme): Autoload.
24067 (customize-create-theme): Prompt before inserting default faces.
24068
24069 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
24070
24071 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
24072 units and musical notes.
24073
24074 2011-03-20 Leo Liu <sdl.web@gmail.com>
24075
24076 * ido.el (ido-read-internal): Use completing-read-default.
24077 (ido-completing-read): Fix compatibility with completing-read.
24078
24079 2011-03-20 Christian Ohler <ohler@gnu.org>
24080
24081 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
24082 (ert-delete-all-tests): Use `called-interactively-p' rather than
24083 `interactive-p'.
24084 (ert--make-xrefs-region): Respect END.
24085
24086 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24087
24088 * dired-aux.el (dired-create-directory): Signal an error if the
24089 directory already exists (Bug#8246).
24090
24091 * facemenu.el (list-colors-display): Call list-faces-display
24092 inside with-help-window.
24093 (list-colors-print): Use display property to align the final
24094 column, instead of checking window-width.
24095
24096 2011-03-19 Eli Zaretskii <eliz@gnu.org>
24097
24098 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
24099 windows-nt systems.
24100 (emerge-protect-metachars): Quote correctly for ms-dos and
24101 windows-nt systems.
24102
24103 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
24104
24105 * info.el (info-initialize): Replace all uses of `:' with
24106 path-separator for compatibility with non-Unix systems.
24107 Cache quoting of path-separator. (Bug#8258)
24108
24109 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
24110
24111 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
24112 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
24113 (mouse-avoidance-mode): Fix typos in docstrings.
24114
24115 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
24116
24117 * startup.el (package-subdirectory-regexp): Move from package.el.
24118 Omit \\` and \\', and let callers add them.
24119
24120 * emacs-lisp/package.el (package-strip-version)
24121 (package-load-all-descriptors): Add \\` and \\' to
24122 package-subdirectory-regexp before using it.
24123 (package-untar-buffer): New arg DIR; ensure that file untars only
24124 into this expected directory. Remove superfluous delete-region.
24125 (package-unpack): Caller changed.
24126 (package-tar-file-info): Use package-subdirectory-regexp.
24127
24128 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
24129
24130 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
24131 diff-mode-shared-map (bug#8284).
24132 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
24133
24134 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
24135
24136 * calendar/time-date.el (format-seconds): Use assoc instead of
24137 assoc-string, since assoc-string doesn't exist in XEmacs.
24138
24139 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
24140
24141 * custom.el (custom-known-themes): Reflow docstring.
24142 (custom-theme-load-path): Fix typo in docstring.
24143 (load-theme): Fix typo in error message.
24144 (custom-available-themes, custom-variable-theme-value):
24145 Use `let', not `let*'.
24146
24147 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
24148
24149 * calc/README: Mention inclusion of musical notes.
24150
24151 * calc/calc-units.el (calc-lu-quant): Rename from
24152 `calc-logunits-quantity'.
24153 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
24154 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
24155 (calc-db): Rename from `calc-dblevel'.
24156 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
24157 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
24158 (calc-np): Rename from `calc-nplevel'.
24159 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
24160 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
24161 (calc-lu-plus): Rename from `calc-logunits-add'.
24162 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
24163 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
24164 (calc-lu-minus): Rename from `calc-logunits-sub'.
24165 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
24166 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
24167 (calc-lu-times): Rename from `calc-logunits-mul'.
24168 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
24169 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
24170 (calc-lu-divide): Rename from `calc-logunits-div'.
24171 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
24172 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
24173
24174 * calc/calc-ext.el (calc-init-extensions): Update the names of the
24175 functions being autoloaded.
24176
24177 * calc/calc.el (calc-lu-power-reference): Rename from
24178 `calc-logunits-power-reference'.
24179 (calc-lu-field-reference): Rename from
24180 `calc-logunits-field-reference'.
24181
24182 * calc/calc-help.el (calc-l-prefix-help):
24183 Mention musical note functions.
24184
24185 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
24186
24187 * minibuffer.el (completion-all-sorted-completions):
24188 Use :completion-cycle-penalty text property if present.
24189
24190 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
24191
24192 * allout.el (allout-yank-processing): Adjust for new rebulleting
24193 regime so bullet being yanked is used without prompting the user
24194 for a choice.
24195
24196 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24197
24198 * startup.el (command-line): Warn the user that _emacs is deprecated.
24199
24200 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24201
24202 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
24203 (delphi-verbose, delphi-comment-face, delphi-string-face)
24204 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
24205 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
24206 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
24207 (delphi-new-comment-line, delphi-font-lock-defaults)
24208 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
24209 Fix typos in docstrings.
24210
24211 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
24212
24213 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
24214 Invert the roles of character and string values for INSTEAD, so a
24215 string is used for the more common case of a defaulting prompt.
24216
24217 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24218
24219 * progmodes/ruby-mode.el (ruby-backward-sexp):
24220 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
24221 * play/gamegrid.el (gamegrid-make-face):
24222 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
24223 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
24224 * notifications.el (notifications-notify):
24225 * net/xesam.el (xesam-search-engines):
24226 * net/quickurl.el (quickurl-list-insert):
24227 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
24228
24229 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
24230
24231 * startup.el (command-line): Update package subdirectory regexp.
24232
24233 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24234
24235 * allout.el (allout-abbreviate-flattened-numbering)
24236 (allout-mode-deactivate-hook): Fix up obsolescence "date".
24237
24238 * subr.el (read-char-choice): Only show the cursor after the prompt,
24239 not after the answer.
24240
24241 2011-03-15 Kevin Ryde <user42@zip.com.au>
24242
24243 * help-fns.el (variable-at-point): Skip leading quotes, if any
24244 (bug#8253).
24245
24246 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
24247
24248 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
24249 warning message.
24250
24251 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
24252
24253 * shell.el (shell): When called interactively, offer to change the
24254 shell file name on remote hosts.
24255
24256 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
24257
24258 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
24259 integration for LDAP parameters. The host, base, user or binddn,
24260 and secret tokens can be specified in a netrc file, for instance.
24261 This is optional because an `auth-source' parameter must be
24262 specified in the search attributes.
24263
24264 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
24265
24266 * help.el (describe-mode): Link to the mode's definition (bug#8185).
24267
24268 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24269
24270 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
24271 into declaration. Remove redundant and harmful binding.
24272
24273 2011-03-12 Eli Zaretskii <eliz@gnu.org>
24274
24275 * files.el (file-ownership-preserved-p): Pass `integer' as an
24276 explicit 2nd argument to `file-attributes'. If the file's owner
24277 is the Administrators group on Windows, and the current user is
24278 Administrator, consider that a match.
24279
24280 * server.el (server-ensure-safe-dir): Consider server directory
24281 safe on MS-Windows if its owner is the Administrators group while
24282 the current Emacs user is Administrator. Use `=' to compare
24283 numerical UIDs, since they could be integers or floats.
24284
24285 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
24286
24287 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
24288
24289 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
24290
24291 Sync with Tramp 2.2.1.
24292
24293 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
24294
24295 * net/trampver.el: Update release number.
24296
24297 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
24298
24299 * progmodes/compile.el (compilation--previous-directory): Fix up
24300 various nil/dead-marker mismatches (bug#8014).
24301 (compilation-directory-properties, compilation-error-properties):
24302 Don't call it at a position past the one we're about to change.
24303
24304 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
24305 Disable obsolescence warnings in the file that declares it.
24306
24307 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
24308
24309 * allout-widgets.el (allout-widgets-tally):
24310 Initialize allout-widgets-tally as a hash table rather than nil to
24311 prevent mode-line redisplay warnings. Also, clarify the module
24312 description and fix a comment typo.
24313
24314 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
24315
24316 * help-fns.el (describe-variable): Don't complete keywords.
24317 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
24318
24319 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
24320
24321 * emacs-lisp/package.el (package-version-join): Impose a standard
24322 string representation for pre/alpha/beta version lists.
24323 (package-unpack-single): Standardize the directory name by passing
24324 it through package-version-join.
24325 (package-strip-rcs-id): Accept any version string that does not
24326 signal an error in version-to-list.
24327
24328 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
24329
24330 * simple.el (delete-trailing-whitespace): Return nil for the
24331 benefit of `write-file-functions'.
24332
24333 2011-03-10 Glenn Morris <rgm@gnu.org>
24334
24335 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
24336
24337 * vc/vc-git.el (vc-git-program): New option.
24338 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
24339 (vc-git--call): Use it.
24340
24341 * eshell/esh-util.el (eshell-condition-case): Doc fix.
24342
24343 * cus-edit.el (Custom-newline): If no button at point, look
24344 for a subgroup button at start-of-line. (Bug#2298)
24345
24346 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
24347
24348 2011-03-10 Julien Danjou <julien@danjou.info>
24349
24350 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
24351 `cursor-type' is nil.
24352
24353 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
24354
24355 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
24356
24357 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
24358
24359 * allout.el: Change so yank of distinctive-bullet items
24360 preserves the existing header prefix, rebulleting it if necessary,
24361 rather than replacing it. This is necessary for proper operation
24362 of cooperative addons like allout-widgets.
24363 (allout-make-topic-prefix, allout-rebullet-heading):
24364 Change SOLICIT arg to INSTEAD, and interpret additionally a string
24365 value as alternate bullet to be used, instead of prompting the user
24366 for a bullet character.
24367
24368 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
24369
24370 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24371 Do not use `tramp-file-name-port', because this returns also
24372 `tramp-default-port'.
24373
24374 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
24375
24376 * net/rcirc.el (rcirc-handler-001): Remove useless
24377 with-rcirc-process-buffer.
24378 (rcirc-check-auth-status): Swap arguments to string-match.
24379
24380 2011-03-09 Glenn Morris <rgm@gnu.org>
24381
24382 * shell.el (shell-mode):
24383 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
24384
24385 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
24386 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
24387
24388 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24389
24390 * emacs-lisp/package.el (package-refresh-contents)
24391 (package-menu-execute): Use condition-case-no-debug.
24392
24393 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
24394
24395 * simple.el (shell-command-to-string): Use `process-file'.
24396
24397 * emacs-lisp/package.el (package-tar-file-info): Handle also
24398 remote files.
24399
24400 * emacs-lisp/package-x.el (package-upload-buffer-internal):
24401 Use `equal' for upload base check.
24402
24403 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
24404
24405 * textmodes/texinfo.el (texinfo-environments):
24406 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
24407
24408 2011-03-08 Glenn Morris <rgm@gnu.org>
24409
24410 * cus-start.el (cursor-in-non-selected-windows):
24411 Fix :set quoting oddness. (Bug#8192)
24412
24413 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
24414 in some setf expressions. (Bug#2159)
24415
24416 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
24417
24418 * custom.el (custom-available-themes): Return themes in
24419 alphabetical order.
24420
24421 See ChangeLog.15 for earlier changes.
24422
24423 ;; Local Variables:
24424 ;; coding: utf-8
24425 ;; End:
24426
24427 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24428
24429 This file is part of GNU Emacs.
24430
24431 GNU Emacs is free software: you can redistribute it and/or modify
24432 it under the terms of the GNU General Public License as published by
24433 the Free Software Foundation, either version 3 of the License, or
24434 (at your option) any later version.
24435
24436 GNU Emacs is distributed in the hope that it will be useful,
24437 but WITHOUT ANY WARRANTY; without even the implied warranty of
24438 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24439 GNU General Public License for more details.
24440
24441 You should have received a copy of the GNU General Public License
24442 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.