calc/calc.el (calc-simplify-mode): Make 'alg the default value.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4 (calc-set-mode-line): Don't display "AlgSimp ".
5
6 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
7 (calc-lim-simplify-mode): New function.
8 (calc-set-simplify-mode): Default to 'alg.
9 (calc-default-simplify-mode): Make algebraic simplifications
10 the default.
11
12 * calc/calc-ext.el (calc-init-extensions): Remove binding for
13 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
14
15 * calc/README: Mention new default simplification mode.
16
17 * calc/calc.el (math-normalize-error): New variable.
18 (math-normalize): Set `math-normalize-error' to t
19 when there's an error.
20
21 * calc/calc-alg.el (math-simplify): Don't simplify when
22 `math-normalize' returns an error.
23
24 2012-07-29 Eli Zaretskii <eliz@gnu.org>
25
26 * international/mule-cmds.el (set-locale-environment): Revert last
27 change, since display-graphic-p returns nil when this function is
28 called during startup. Instead...
29
30 * term/w32console.el (terminal-init-w32console): ...setup the
31 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
32
33 2012-07-29 Juri Linkov <juri@jurta.org>
34
35 * simple.el (goto-line): Don't display default line number in the
36 prompt because it should be displayed by `read-number' (bug#9952).
37 Add the current line number to the defaults of `goto-line' to
38 allow its easier modification by users with `M-n' (bug#9201).
39
40 * subr.el (read-number): Support multiple default values like in
41 other minibuffer reading functions. Replace `read' with
42 `string-to-number' for consistency with `number-to-string'.
43
44 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
45
46 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
47 * emulation/viper-init.el (viper-deactivate-input-method-action):
48 Rename from viper-inactivate-input-method-action.
49 (viper-deactivate-input-method):
50 Rename from viper-inactivate-input-method.
51 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
52 * international/mule-cmds.el (deactivate-input-method):
53 Rename from inactivate-input-method.
54 Also run input-method-deactivate-hook.
55 (deactivate-current-input-method-function):
56 Rename from inactivate-current-input-method-function.
57 (input-method-deactivate-hook): New hook.
58 (input-method-inactivate-hook): Mark obsolete.
59 (inactivate-input-method): Mark obsolete.
60
61 * international/quail.el (quail-activate):
62 Also run quail-deactivate-hook.
63 (quail-deactivate): Rename from quail-inactivate.
64 * international/robin.el (robin-activate):
65 Also run robin-deactivate-hook.
66 (robin-deactivate): Rename from robin-inactivate.
67
68 2012-07-29 Chong Yidong <cyd@gnu.org>
69
70 * simple.el (indicate-copied-region): New function.
71 (kill-ring-save): Split off from here.
72
73 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
74 (kill-rectangle): Set deactivate-mark to t on read-only error.
75
76 * register.el (copy-to-register, copy-rectangle-to-register):
77 Deactivate the mark, and use indicate-copied-region (Bug#10056).
78 (append-to-register, prepend-to-register): Call
79
80 2012-07-29 Juri Linkov <juri@jurta.org>
81
82 * simple.el (async-shell-command-buffer): New defcustom.
83 (shell-command): Use it. (Bug#4719)
84
85 2012-07-28 Eli Zaretskii <eliz@gnu.org>
86
87 * international/mule-cmds.el (set-locale-environment): In a
88 console session on MS-Windows, set up keyboard and terminal
89 encoding from the OEM codepage, not the ANSI codepage.
90 (Bug#12055)
91
92 2012-07-28 Chong Yidong <cyd@gnu.org>
93
94 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
95 gdb-get-location.
96
97 2012-07-25 Leo Liu <sdl.web@gmail.com>
98
99 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
100 the alist (bug#12029).
101
102 2012-07-28 Eli Zaretskii <eliz@gnu.org>
103
104 * makefile.w32-in (custom-deps, finder-data, updates, compile)
105 (compile-always, compile-first)
106 ($(lisp)/calendar/cal-loaddefs.el)
107 ($(lisp)/calendar/diary-loaddefs.el)
108 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
109 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
110 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
111 instead of on update-subdirs.
112 (bootstrap-clean): Delete $(lisp)/subdirs.el.
113
114 2012-07-28 Chong Yidong <cyd@gnu.org>
115
116 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
117 directory if vc-deduce-backend returns nil (Bug#7350).
118
119 * simple.el (delete-trailing-lines): New option.
120 (delete-trailing-whitespace): Obey it (Bug#11879).
121
122 2012-07-28 David Engster <deng@randomsample.de>
123
124 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
125 Explanation of new 'symbol-qnames feature in doc-strings.
126 (xml-maybe-do-ns): Return expanded names as plain symbols if
127 'symbol-qnames was provided in XML-NS argument (Bug#11916).
128 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
129
130 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
131
132 Consistent completion in inferior python with emacs -nw.
133 * progmodes/python.el (inferior-python-mode): replace "<tab>"
134 binding in inferior-python-mode-map with "\t".
135 (python-shell-completion-complete-at-point)
136 (python-completion-complete-at-point): Remove interactive spec.
137
138 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
139
140 * calc/calccomp.el (math-compose-expr): Undo previous change.
141
142 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
143
144 * progmodes/python.el (python-mode-map): Added keybinding for
145 run-python.
146 (python-shell-make-comint): Fix pop-to-buffer call.
147 (run-python): Autoload. New arg SHOW.
148 (python-shell-get-or-create-process): Do not pop python process
149 buffer.
150
151 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
152
153 * notifications.el (notifications-on-action-signal)
154 (notifications-on-closed-signal): Use also the bus address for the map.
155 (notifications-notify, notifications-close-notification)
156 (notifications-get-capabilities): Add optional argument BUS.
157
158 2012-07-27 Tassilo Horn <tsdh@gnu.org>
159
160 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add
161 support for the lstlisting and minted environments, and for the
162 ctable macro.
163 * textmodes/reftex.el (reftex-compile-variables): Also recognize
164 labels written in keyvals syntax.
165
166 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
167
168 * calc/calccomp.el (math-compose-expr): Use parentheses when
169 there is a product in the denominator of a fraction.
170
171 2012-07-26 Eli Zaretskii <eliz@gnu.org>
172
173 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
174 ($(lisp)/calendar/diary-loaddefs.el)
175 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
176 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs. Fixes
177 failures in parallel bootstrap because subdirs.el is being
178 rewritten while the autoload files are built at the same time,
179 which needs to load subdirs.el.
180
181 2012-07-26 Martin Rudalics <rudalics@gmx.at>
182
183 * mouse.el (popup-menu): Fix doc-string and re-indent code.
184 (mouse-drag-line): Don't exit tracking when a switch-frame or
185 switch-window event occurs (Bug#12006).
186
187 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
188
189 * mouse.el (popup-menu): Fix last change.
190
191 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
192
193 Autoload from Lisp with more care. Follow aliases when looking for
194 function properties.
195 * subr.el (autoloadp): New function.
196 (symbol-file): Use it.
197 (function-get): New function.
198 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
199 autoload-do-load.
200 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
201 (lisp-indent-function):
202 * emacs-lisp/gv.el (gv-get):
203 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
204 * emacs-lisp/byte-opt.el (byte-optimize-form):
205 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
206 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
207 Use function-get.
208 * emacs-lisp/cl.el: Don't propagate function properties any more.
209
210 * speedbar.el (speedbar-add-localized-speedbar-support):
211 * emacs-lisp/disass.el (disassemble-internal):
212 * desktop.el (desktop-load-file):
213 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
214 (describe-function-1):
215 * emacs-lisp/find-func.el (find-function-noselect):
216 * emacs-lisp/elp.el (elp-instrument-function):
217 * emacs-lisp/advice.el (ad-has-proper-definition):
218 * apropos.el (apropos-safe-documentation, apropos-macrop):
219 * emacs-lisp/debug.el (debug-on-entry):
220 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
221 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
222 * calc/calc.el (name): Use autoloadp & autoload-do-load.
223
224 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
225
226 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
227 function, not an obsolete variable (Bug#12046).
228
229 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
230
231 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
232
233 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
234
235 * emacs-lisp/pp.el (pp-display-expression): Select old selected
236 window only if it is still live (Bug#12034).
237
238 2012-07-25 Martin Rudalics <rudalics@gmx.at>
239
240 * subr.el (redirect-frame-focus): Add advertised calling
241 convention (Bug#12030).
242
243 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
244
245 Prefer typical American spelling for "acknowledgment".
246 * vc/add-log.el (change-log-acknowledgment): Rename from
247 change-log-acknowledgement, with an alias for the old name.
248
249 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
250
251 * calc-alg.el (math-simplify-divide): Don't cross multiply
252 in an equation when the lhs is a variable.
253
254 2012-07-24 Julien Danjou <julien@danjou.info>
255
256 * net/netrc.el (netrc-find-service-number, netrc-store-data):
257 Remove, unused.
258
259 2012-07-23 Eli Zaretskii <eliz@gnu.org>
260
261 * startup.el (command-line): Don't display an empty user name in
262 the error message about non-existent home directory, when
263 init-file-user was set to an empty string. See
264 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
265 for the details and context.
266
267 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
268
269 * ses.el (ses-cell-formula-aset): New macro.
270 (ses-cell-references-aset): New macro.
271 (ses-cell-p): New function.
272 (ses-rename-cell): Do no longer rely on complex operations like
273 ses-cell-set-formula or ses-set-cell to change the cell and handle
274 the undo at the same time, but rather use lower level new macros
275 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
276 the undo directly. Refresh the mode line.
277
278 2012-07-21 Leo Liu <sdl.web@gmail.com>
279
280 * progmodes/cc-cmds.el (c-defun-name):
281 Use match-string-no-properties instead for consistency.
282
283 2012-07-20 Leo Liu <sdl.web@gmail.com>
284
285 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
286 (Bug#7879)
287
288 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
289
290 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
291
292 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
293 * progmodes/bug-reference.el, misearch.el: Provide themselves
294 (bug#11915).
295
296 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
297 of narrowed buffer (bug#11966).
298
299 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
300
301 * ses.el (ses-rename-cell): Set new name also in reference list of
302 cells of which the renamed cell depends.
303
304 2012-07-20 Masatake YAMATO <yamato@redhat.com>
305
306 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
307 to check whether menu-bar is shown or not. If not shown,
308 show the menu-bar as a popup menu instead of using tmm.
309 * mouse.el (popup-menu): Accept `point' as `position' argument.
310
311 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
312
313 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
314 up inside string symbol literal (bug#11923).
315
316 2012-07-20 Eli Zaretskii <eliz@gnu.org>
317
318 * startup.el (fancy-startup-text): Read the whole tutorial, not
319 just its first 256 bytes. Prevents gibberish in display of the
320 tutorial title.
321
322 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
323
324 Drop idle buffer compaction due to an absence of the
325 proved efficiency.
326 * compact.el: Remove.
327
328 2012-07-19 Sam Steingold <sds@gnu.org>
329
330 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
331 vc-bzr-pull & vc-bzr-merge-branch.
332 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
333 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
334 for consistency with compilation-error-regexp-alist.
335 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
336 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
337 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
338 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
339
340 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
341
342 * emacs-lisp/chart.el: Use lexical-binding.
343 (chart-emacs-storage): Don't hardcode the list of entries.
344
345 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
346
347 Next round of tweaks caused by Fgarbage_collect changes.
348 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
349
350 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
351
352 Compact buffers when idle.
353 * compact.el: New file.
354
355 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
356
357 * subr.el (eventp): Presume that if it looks vaguely like an event,
358 it's an event (bug#10190).
359
360 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
361
362 Enhancements to ppss related code (thanks Stefan).
363 * progmodes/python.el (python-indent-context)
364 (python-indent-calculate-indentation, python-indent-dedent-line)
365 (python-indent-electric-colon, python-nav-forward-block)
366 (python-mode-abbrev-table)
367 (python-info-assignment-continuation-line-p): Simplify checks
368 for ppss context.
369 (python-info-continuation-line-p): Cleanup.
370 (python-info-ppss-context): Do not catch 'quote.
371 (python-info-ppss-context-type)
372 (python-info-ppss-comment-or-string-p): Simplify.
373
374 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
375
376 * progmodes/python.el: Enhancements to eldoc support.
377 (python-info-current-symbol): New function.
378 (python-eldoc-at-point): Use python-info-current-symbol.
379 (python-info-current-defun): Fix cornercase on first defun scan.
380 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
381 and signal error when no inferior python process is available.
382
383 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
384
385 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
386 assume it's always t.
387 (vc-git-registered): Remove caching, the function is only called
388 once.
389 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
390
391 2012-07-18 Chong Yidong <cyd@gnu.org>
392
393 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
394
395 * simple.el (count-words): Report on narrowing (Bug#9959).
396
397 * bindings.el: Bind M-= to count-words.
398
399 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
400
401 2012-07-18 Masatake YAMATO <yamato@redhat.com>
402
403 * progmodes/sh-script.el (sh-imenu-generic-expression):
404 Capture a function with `function' keyword and without parentheses
405 like "function FOO" (bug#11856).
406
407 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
408
409 * window.el (split-window-sensibly): Make WINDOW argument
410 optional.
411
412 2012-07-18 Chong Yidong <cyd@gnu.org>
413
414 * subr.el (keyboard-translate): Doc fix (Bug#7261).
415
416 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
417 and make C-x 8 RET exit isearch (Bug#11439).
418
419 * international/iso-transl.el: Move isearch-mode-map key
420 definitions to isearch.el.
421
422 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
423
424 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
425 (eieio-defclass): Use gv-define-setter when possible.
426
427 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
428
429 Reflect recent changes in Fgarbage_collect.
430 * emacs-lisp/chart.el (chart-emacs-storage): Change to
431 reflect new format of data returned by Fgarbage_collect.
432
433 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
434
435 New utility functions + python-info-ppss-context fix (Bug#11910).
436 * progmodes/python.el (python-info-beginning-of-block-statement-p)
437 (python-info-ppss-comment-or-string-p): New functions.
438 (python-info-ppss-context): Small fix for string check.
439
440 2012-07-17 Juri Linkov <juri@jurta.org>
441
442 * dired-aux.el (dired-do-async-shell-command): Doc fix.
443 (dired-do-async-shell-command): Don't add `*' at the end of the
444 command (Bug#11815).
445 (dired-do-shell-command): Doc fix.
446 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
447 Join the individual commands using either "&" or ";" as the
448 separator depending on the values of these trailing characters.
449 At the end re-add the trailing "&". (Bug#10598)
450
451 * simple.el (async-shell-command): Sync the interactive spec with
452 `shell-command'. Doc fix.
453 (shell-command): Doc fix.
454
455 2012-07-17 Juri Linkov <juri@jurta.org>
456
457 * descr-text.el (describe-char): Fix format args. (Bug#10129)
458
459 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
460
461 Final renames and doc fixes for movement commands (bug#11899).
462 * progmodes/python.el (python-nav-beginning-of-statement):
463 Rename from python-nav-statement-start.
464 (python-nav-end-of-statement): Rename from
465 python-nav-statement-end.
466 (python-nav-beginning-of-block): Rename from
467 python-nav-block-start.
468 (python-nav-end-of-block): Rename from python-nav-block-end.
469
470 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
471
472 * progmodes/python.el (python-shell-send-string-no-output):
473 Allow accept-process-output to quit, keeping shell process ready for
474 future interactions (Bug#11868).
475
476 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
479
480 * emacs-lisp/elint.el (elint-find-args-in-code):
481 Use help-function-arglist, so as to handle lexical byte-code.
482
483 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
484 change (bug#11826).
485
486 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
487
488 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
489 Avoid spuriously marking the buffer as modified because of c-is-sws.
490
491 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
492 as not-a-comment (bug#11946).
493
494 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
495 for uninterned vars.
496
497 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
498 Use read-event since we don't really want to read chars but bytes.
499
500 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
501 $$..$$ but also $..$ using regexps (bug#11953).
502 Use tex-verbatim for \url and \path.
503 (tex-font-lock-keywords): Define as defconst like the others.
504 (tex-common-initialization): Don't use font-lock-syntax-table any more.
505
506 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
507
508 * international/mule-cmds.el (ucs-insert): Make it an obsolete
509 alias for insert-char.
510
511 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
512
513 * progmodes/python.el: Simplified imenu implementation.
514 (python-nav-jump-to-defun): Remove command.
515 (python-mode-map): Use `imenu' instead.
516 (python-nav-list-defun-positions-cache)
517 (python-imenu-include-defun-type, python-imenu-make-tree)
518 (python-imenu-subtree-root-label, python-imenu-index-alist):
519 Remove vars.
520 (python-nav-list-defun-positions, python-nav-read-defun)
521 (python-imenu-tree-assoc, python-imenu-make-element-tree)
522 (python-imenu-make-tree, python-imenu-create-index):
523 Remove functions.
524 (python-mode): Update to interact with imenu by setting
525 `imenu-extract-index-name-function' only.
526
527 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
528
529 * progmodes/python.el: Enhancements to navigation commands.
530 (python-nav-backward-sentence)
531 (python-nav-forward-sentence): Remove.
532 (python-nav-backward-statement, python-nav-forward-statement)
533 (python-nav-statement-start, python-nav-statement-end)
534 (python-nav-backward-block, python-nav-forward-block)
535 (python-nav-block-start, python-nav-block-end)
536 (python-nav-forward-sexp-function)
537 (python-info-current-line-comment-p)
538 (python-info-current-line-empty-p): New functions.
539 (python-indent-context): Use `python-nav-statement-start'.
540
541 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
542
543 * eshell/em-ls.el (eshell/ls): Use `apply'.
544
545 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
546 multi-hops, instead of Tramp internals.
547
548 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
549
550 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
551 when F1 and F2 are located on different hosts.
552
553 2012-07-14 Chong Yidong <cyd@gnu.org>
554
555 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
556 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
557 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
558 (xterm-mouse--read-event-sequence-1000)
559 (xterm-mouse--read-event-sequence-1006): New functions. For old
560 mouse protocol, handle M-mouse-X events correctly.
561 (xterm-mouse-event): New arg specifying mouse protocol.
562 (turn-on-xterm-mouse-tracking-on-terminal)
563 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
564 sequence to toggle extended coordinates on newer XTerms.
565 This appears to be harmless on terminals which do not support this.
566
567 2012-07-14 Leo Liu <sdl.web@gmail.com>
568
569 Add fringe bitmap indicators for flymake. (Bug#11253)
570 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
571 (flymake-make-overlay): New arg BITMAP.
572 (flymake-error-bitmap, flymake-warning-bitmap)
573 (flymake-fringe-indicator-position): New user variables.
574
575 * fringe.el: New bitmap exclamation-mark.
576
577 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
578
579 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
580 also (Bug#7879).
581
582 2012-07-14 Chong Yidong <cyd@gnu.org>
583
584 * electric.el (electric-pair-post-self-insert-function): Fix pair
585 insertion in empty-region case (Bug#11520).
586
587 2012-07-14 Chong Yidong <cyd@gnu.org>
588
589 * bindings.el: Consolidate ctl-x-r-map bindings.
590 Bind copy-rectangle-as-kill to C-x r w.
591
592 * rect.el, register.el: Move bindings to bindings.el.
593
594 2012-07-14 Reuben Thomas <rrt@sc3d.org>
595
596 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
597
598 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
599
600 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
601
602 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
603
604 * bindings.el (top): Use `mapc' instead of `mapcar'.
605
606 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
607
608 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
609
610 * progmodes/sql.el (sql-comint): Suppress the check for program on
611 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
612 (Bug#11908)
613
614 2012-07-13 Chong Yidong <cyd@gnu.org>
615
616 * bindings.el: Assign a non-nil permanent-local property to
617 per-buffer variables which lack a default value (Bug#11930).
618
619 * help-fns.el (describe-variable): In the "automatically becomes
620 local" notice, take note of permanent-local variables.
621
622 2012-07-13 Chong Yidong <cyd@gnu.org>
623
624 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
625 to allow printing the message when called from Lisp.
626
627 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
628 Remove toggle-read-only.
629
630 * bs.el (bs-toggle-readonly):
631 * buff-menu.el (Buffer-menu-toggle-read-only):
632 Remove with-no-warnings around toggle-read-only.
633
634 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
635 Remove with-no-warnings around toggle-read-only.
636 (ffap-read-only, ffap-read-only-other-window)
637 (ffap-read-only-other-frame): Callers changed.
638
639 * help-mode.el: Don't require view package.
640 (help-mode-finish): Set buffer-read-only instead of calling
641 toggle-read-only.
642
643 * bindings.el (mode-line-toggle-read-only):
644 * dired.el (dired-toggle-read-only):
645 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
646 with non-nil second arg.
647
648 * emacs-lisp/eieio-custom.el (eieio-customize-object):
649 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
650 directly.
651
652 2012-07-12 Eli Zaretskii <eliz@gnu.org>
653
654 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
655 not incf.
656
657 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
658
659 More CL cleanups and reduction of use of cl.el.
660 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
661 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
662 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
663 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
664 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
665 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
666 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
667 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
668 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
669 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
670 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
671 * eshell/em-cmpl.el, eshell/em-banner.el:
672 * calendar/parse-time.el: Use cl-lib.
673 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
674 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
675 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
676 * term/ns-win.el, term.el, shell.el, ps-samp.el:
677 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
678 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
679 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
680 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
681 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
682 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
683 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
684 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
685 `lambda' rather than with `quote'.
686 (eshell-do-opt): Adjust accordingly.
687 (eshell-process-option): Simplify.
688 * eshell/esh-var.el:
689 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
690 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
691 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
692 to `pcase--dontcare'.
693 * emacs-lisp/cl.el (labels): Mark obsolete.
694 (cl--letf, letf): Move to cl-lib.
695 (cl--letf*, letf*): Remove.
696 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
697 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
698 (cl-progv): Rewrite.
699 (cl--letf, cl-letf): Move from cl.el.
700 (cl-letf*): New macro.
701 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
702
703 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
704
705 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
706
707 2012-07-11 Chong Yidong <cyd@gnu.org>
708
709 * vc/log-edit.el (log-edit-vc-backend): New variable.
710 (log-edit): Doc fix.
711
712 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
713 argument of log-edit to set up all local variables.
714 (vc-start-logentry): New optional arg specifying VC backend.
715
716 * vc/vc.el (vc-checkin): Use it.
717 (vc-deduce-fileset): Handle Log Edit buffers.
718 (vc-diff): Make first argument optional too.
719
720 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
721
722 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
723
724 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
725 command, just in case. The function is not needed anymore.
726 (eshell-external-command): Do not call `eshell-remote-command'.
727
728 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
729
730 Reduce use of (require 'cl).
731 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
732 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
733 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
734 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
735 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
736 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
737 * battery.el, avoid.el, abbrev.el: Use cl-lib.
738 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
739 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
740 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
741 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
742 * calculator.el, autorevert.el, apropos.el: Don't require CL.
743 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
744 (byte-compile-unfold-bcf, byte-compile-check-variable):
745 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
746 (byte-compile-nilconstp):
747 * emacs-lisp/autoload.el (make-autoload): Use pcase.
748 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
749
750 * emacs-lisp/gv.el (cond): Make it a valid place.
751 (if): Simplify slightly.
752
753 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
754 (pcase--self-quoting-p): New function.
755 (pcase--u1): Use it.
756
757 2012-07-10 Glenn Morris <rgm@gnu.org>
758
759 * emacs-lisp/authors.el (authors-fixed-entries):
760 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
761
762 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
763
764 Rename configure.in to configure.ac (Bug#11603).
765 * emacs-lisp/authors.el (authors-canonical-file-name):
766 * progmodes/autoconf.el (autoconf-mode):
767 Prefer configure.ac to configure.in.
768
769 2012-07-08 Chong Yidong <cyd@gnu.org>
770
771 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
772 Implement the mouse-1-click-follows-link handling properly.
773
774 * info.el (Info-link-keymap): Use follow-link mechanism for
775 header-line links (Bug#374).
776
777 * simple.el (deactivate-mark): Do not set the primary selection
778 if another program has acquired it (Bug#11772).
779
780 2012-07-07 Kevin Ryde <user42@zip.com.au>
781
782 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
783 (woman-decode-region): Replace escaped-escapes without destroying
784 bold or underline (Bug#11552).
785 (woman2-process-escapes): Handle nofill regions (Bug#11591).
786
787 2012-07-07 Chong Yidong <cyd@gnu.org>
788
789 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
790 (interprogram-cut-function, interprogram-paste-function):
791 Mention that we typically mean the clipboard.
792
793 2012-07-06 Glenn Morris <rgm@gnu.org>
794
795 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
796
797 * files.el (toggle-read-only): Restrict message to interactive use.
798
799 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
800
801 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
802
803 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
804
805 2012-07-06 Glenn Morris <rgm@gnu.org>
806
807 * Makefile.in (compile-one-process): Rename from "recompile".
808
809 * Makefile.in (bzr-update): "compile" is the same as "recompile
810 autoloads", but parallelizable, so use that instead.
811
812 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
813
814 * window.el (quit-window): Always restore window height when
815 it's saved in quit-restore parameter (Bug#11810).
816
817 2012-07-06 Glenn Morris <rgm@gnu.org>
818
819 * simple.el (kill-whole-line): Doc tweak.
820
821 2012-07-06 Eli Zaretskii <eliz@gnu.org>
822
823 * files.el (file-relative-name): Compare file names
824 case-insensitively if on MS-Windows or MS-DOS, or if
825 read-file-name-completion-ignore-case is non-nil. Don't use
826 case-fold-search for this purpose. (Bug#11827)
827
828 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
829
830 * calendar/cal-dst.el (calendar-current-time-zone):
831 Return calendar-current-time-zone-cache if non-nil.
832
833 2012-07-17 Masatake YAMATO <yamato@redhat.com>
834 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
835
836 * calendar/cal-dst.el (calendar-current-time-zone):
837 Return calendar-current-time-zone-cache if non-nil.
838
839 2012-07-06 Glenn Morris <rgm@gnu.org>
840
841 * Makefile.in (cvs-update): Remove old alias.
842
843 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
844
845 Sync with Tramp 2.2.6-pre.
846
847 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
848 compatible declaration.
849
850 * net/tramp-cmds.el (tramp-append-tramp-buffers):
851 Protect `list-load-path-shadows' call.
852
853 * net/tramp-compat.el (top): Require packages, which aren't
854 autoloaded anymore for XEmacs. Protect call of
855 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
856 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
857 it hurts at least for SXEmacs.
858 (tramp-compat-temporary-file-directory): In XEmacs, there is no
859 standard-value for `temporary-file-directory'.
860
861 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
862 Redirect stderr to /dev/null.
863 (tramp-sh-handle-write-region): uid and gid can be floats.
864 Reported by Russell Sim <russell.sim@gmail.com>.
865 (tramp-sh-handle-vc-registered): Hide errors.
866 (tramp-vc-file-name-handler): Use dummy results for `process-file'
867 and `start-file-process'.
868 (tramp-maybe-open-connection): Check also whether `non-essential'
869 is bound.
870
871 2012-07-04 Chong Yidong <cyd@gnu.org>
872
873 * xml.el (xml--parse-buffer): Use xml-syntax-table.
874 (xml-parse-tag): Likewise, and avoid changing entity tables.
875 (xml-syntax-table): Define from scratch, making sure not to give
876 x2000 and other Unicode spaces whitespace syntax, since those are
877 not spaces in XML.
878 (xml-parse-fragment): Delete unused function.
879 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
880 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
881 (xml-entity-ref, xml-pe-reference-re)
882 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
883 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
884 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
885 (xml-entity-value-re): Use syntax references in regexps where
886 possible; no need to define inside a let-binding.
887 (xml-parse-dtd): Use xml-pe-reference-re.
888 (xml-entity-or-char-ref-re): New defconst.
889 (xml-parse-string, xml-substitute-special): Use it.
890
891 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
892
893 * files.el (locate-dominating-file): Allow `name' to be a predicate.
894 (find-file--read-only): New function.
895 (find-file-read-only, find-file-read-only-other-window)
896 (find-file-read-only-other-frame): Use it.
897 (insert-file-contents-literally): Don't `fset'.
898 (get-free-disk-space): Use locate-dominating-file.
899
900 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
901 function is already compiled.
902
903 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
904
905 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
906
907 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
908 files on the same host.
909
910 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
911
912 * help-fns.el (describe-function-1): Only call
913 help-fns--autoloaded-p when we have a file name. (Bug#11848)
914
915 2012-07-03 Chong Yidong <cyd@gnu.org>
916
917 * xml.el: Protect parser against XML bombs.
918 (xml-entity-expansion-limit): New variable.
919 (xml-parse-string, xml-substitute-special): Use it.
920 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
921
922 2012-07-03 Glenn Morris <rgm@gnu.org>
923
924 * progmodes/bug-reference.el (bug-reference-bug-regexp):
925 Allow linking to specific messages in debbugs reports (eg 123#5).
926
927 2012-07-02 Chong Yidong <cyd@gnu.org>
928
929 * xml.el: Fix entity and character reference expansion, allowing
930 them to expand into markup as per XML spec.
931 (xml-default-ns): New variable.
932 (xml-entity-alist): Use XML spec definitions for lt and amp.
933 (xml-parse-region): Make first two arguments optional.
934 Discard text properties.
935 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
936 All callers changed.
937 (xml-parse-tag): Call xml-parse-tag-1. For backward
938 compatibility, this function should not modify buffer contents.
939 (xml-parse-tag-1): Fix opening-tag regexp.
940 (xml-parse-string): Rewrite, handling entity and character
941 references properly.
942 (xml--entity-replacement-text): Signal an error if a parameter
943 entity is undefined.
944
945 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
946
947 * comint.el (comint-output-filter): Filter out repeated prompts.
948
949 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
950 and file-name-absolute-p.
951 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
952 internal calls.
953
954 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
955
956 Spelling fixes.
957 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
958 Rename from byte-compile--refiy-function. All uses changed.
959
960 2012-07-01 Chong Yidong <cyd@gnu.org>
961
962 * xml.el (xml--parse-buffer): New function. Move most of
963 xml-parse-region here.
964 (xml-parse-region): Copy region into a temporary buffer, since
965 parameter entity substitution requires changing buffer contents.
966 Use xml--parse-buffer.
967 (xml-parse-file): Use xml--parse-buffer.
968 (xml-parse-dtd): Make parameter entity substitution work right.
969 Use proper regexps for ELEMENT declarations (Bug#7172).
970
971 2012-06-30 Glenn Morris <rgm@gnu.org>
972
973 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
974
975 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
976 Remove outdated and unnecessary dbus declarations.
977
978 2012-06-30 Eli Zaretskii <eliz@gnu.org>
979
980 * emacs-lisp/timer.el (timer-until): Subtract results of
981 float-time, instead of taking float-time of the result of
982 time-subtract, since float-time signals an error for negative time
983 arguments.
984
985 2012-06-30 Chong Yidong <cyd@gnu.org>
986
987 * xml.el (xml-*-re): Convert defvars into defconsts, and
988 eval-and-compile them so eval-and-compile works on derivatives.
989 (xml--entity-replacement-text): Use eval-and-comple.
990
991 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
992
993 * vc/vc-git.el (vc-git-registered): Use cache property
994 `git-registered'.
995 (vc-git-mode-line-string): Call `vc-working-revision' instead of
996 `vc-git-working-revision' in order to benefit from the cache.
997 (vc-git-root): Use cache property `git-root'. (Bug#11757)
998
999 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
1000
1001 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
1002 removed (likely outside Emacs). (Bug#11757)
1003
1004 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1005
1006 * emacs-lisp/cl-lib.el: Require macroexp.
1007
1008 2012-06-30 Chong Yidong <cyd@gnu.org>
1009
1010 * xml.el: Implement XML parameter entities.
1011 (xml-parameter-entity-alist): New variable.
1012 (xml-parse-region, xml-parse-fragment): Preserve previous values
1013 of xml-entity-alist and xml-parameter-entity-alist, so that
1014 repeated calls on different documents do not change them.
1015 (xml-parse-tag): Fix doctype regexp.
1016 (xml--entity-replacement-text): New function.
1017 (xml-parse-dtd): Use it. Don't handle system entities; doing that
1018 properly requires url retrieval which is unimplemented.
1019 (xml-escape-string): Doc fix.
1020
1021 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1022
1023 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
1024
1025 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
1026
1027 * fringe.el (fringe-mode): Doc fix.
1028
1029 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
1030
1031 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
1032 is non-nil.
1033 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
1034 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
1035
1036 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
1037
1038 * calendar/cal-dst.el (calendar-current-time-zone):
1039 Return calendar-current-time-zone-cache if non-nil.
1040
1041 2012-06-29 Masatake YAMATO <yamato@redhat.com>
1042
1043 * progmodes/which-func.el (which-func-format):
1044 Add mouse-face. (Bug#11698)
1045
1046 2012-06-29 Leo Liu <sdl.web@gmail.com>
1047
1048 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
1049
1050 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1051
1052 * minibuffer.el (minibuffer-confirm-exit-commands):
1053 Add completion-at-point (bug#11725).
1054
1055 2012-06-29 Glenn Morris <rgm@gnu.org>
1056
1057 * progmodes/f90.el (f90-font-lock-keywords-2):
1058 Add some preprocessor elements. (Bug#10499)
1059
1060 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1061
1062 * progmodes/cperl-mode.el (cperl-update-syntaxification):
1063 Use syntax-propertize (bug#11739).
1064
1065 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
1066
1067 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
1068
1069 2012-06-28 Julien Danjou <julien@danjou.info>
1070
1071 * term.el (term-handle-colors-array): Use a set of new faces to
1072 color the terminal. Also uses :inverse-video property.
1073 (term-default-fg-color): Set to nil by default, deprecate in favor
1074 of `term-face'.
1075 (term-default-bg-color): Set to nil by default, deprecate in favor
1076 of `term-face'.
1077 (term-current-face): Use `term-face' by default.
1078 (term-bold-attribute): Variable deleted.
1079
1080 2012-06-28 Glenn Morris <rgm@gnu.org>
1081
1082 * simple.el (completion-list-mode-finish):
1083 Don't use toggle-read-only. (Since completion-list-mode has
1084 a special mode-class, it wasn't doing anything extra anyway.)
1085
1086 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
1087
1088 Make inlining of other-mode interpreted functions work (bug#11799).
1089 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
1090 (byte-compile): Use it to fix compilation of lexical-binding closures.
1091 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
1092 function, if needed.
1093
1094 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
1095
1096 * help-mode.el (help-make-xrefs): Don't just withstand
1097 cyclic-variable-indirection but any error in documentation-property.
1098
1099 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
1100 memory use.
1101 * bindings.el (bindings--define-key): New function.
1102 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
1103 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
1104 * bindings.el: Use it to purecopy define-key bindings.
1105
1106 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
1107
1108 * emacs-lisp/cl.el (flet): Mark obsolete.
1109 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
1110 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
1111 * progmodes/js.el (js-c-fill-paragraph):
1112 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
1113 (ebrowse-switch-member-buffer-to-derived-class):
1114 * play/5x5.el (5x5-solver): Use cl-flet.
1115
1116 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
1117 (cl--symbol-function): New macro.
1118 (cl--letf, cl--letf*): Use it.
1119
1120 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
1121 Strip "toggle-" if any.
1122
1123 2012-06-27 Glenn Morris <rgm@gnu.org>
1124
1125 * info.el (Info-default-directory-list): Move here from paths.el.
1126 * paths.el: Remove file, which is now empty.
1127 * loadup.el: No longer load "paths".
1128
1129 * custom.el (custom-initialize-delay): Doc fix.
1130
1131 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1132 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1133 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1134 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1135 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1136 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
1137 * eshell/eshell.el (eshell-defgroup): Remove alias.
1138
1139 2012-06-27 Chong Yidong <cyd@gnu.org>
1140
1141 * help.el (help-enable-auto-load): New variable.
1142
1143 * help-fns.el (help-fns--autoloaded-p): New function.
1144 (describe-function-1): Refer to a function as "autoloaded" if it
1145 was autoloaded at any time in the past. Perform autoloading if
1146 help-enable-auto-load is non-nil.
1147
1148 2012-06-26 Eli Zaretskii <eliz@gnu.org>
1149
1150 * makefile.w32-in (compile, compile-always): Depend on
1151 update-subdirs, not on subdirs.el. Otherwise, several different
1152 sub-targets of 'bootstrap' running in parallel could
1153 simultaneously write to subdirs.el, producing a garbled file.
1154
1155 2012-06-26 Sam Steingold <sds@gnu.org>
1156
1157 * files.el (file-name-base): New convenience function.
1158 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
1159 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
1160 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
1161 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
1162 * textmodes/ispell.el, textmodes/reftex-ref.el:
1163 * textmodes/tex-mode.el: Use it.
1164 Did not touch cedet and org because they are maintained elsewhere.
1165
1166 2012-06-26 Martin Rudalics <rudalics@gmx.at>
1167
1168 * calendar/calendar.el (calendar-exit): Don't try to delete or
1169 iconify last frame. See:
1170 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
1171
1172 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
1173
1174 * server.el (server-process-filter): Remember dir in the
1175 process's `server-client-directory' properties.
1176
1177 2012-06-24 Chong Yidong <cyd@gnu.org>
1178
1179 * xml.el (xml-parse-tag): Correctly handle comment embedded in
1180 non-tag text.
1181
1182 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
1183
1184 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
1185
1186 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * help-fns.el (describe-variable): Don't croak when doc is not found.
1189 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
1190 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
1191 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
1192 * emacs-lisp/smie.el (smie-next-sexp): CSE.
1193 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
1194 ((lambda ..) ..).
1195 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
1196
1197 2012-06-23 Chong Yidong <cyd@gnu.org>
1198
1199 * info.el (Info-mouse-follow-link): Accept symbol values of
1200 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
1201 (Info-fontify-node): Use Info-link-keymap for all navigation
1202 buttons, with link-args property to perform the desired action.
1203 (Info-link-keymap): Doc fix.
1204 (Info-next-link-keymap, Info-prev-link-keymap)
1205 (Info-up-link-keymap): Delete now-unused keymaps.
1206
1207 2012-06-23 Chong Yidong <cyd@gnu.org>
1208
1209 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
1210
1211 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
1212 system abbrevs.
1213
1214 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
1215
1216 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1217
1218 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
1219 (bug#11719).
1220
1221 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
1222 the requote function doesn't work properly (bug#11714).
1223
1224 2012-06-23 Glenn Morris <rgm@gnu.org>
1225
1226 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
1227
1228 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1229
1230 Further GV/CL cleanups.
1231 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
1232 gv-expander.
1233 (gv--defun-declaration): New function.
1234 (defun-declarations-alist): Use it.
1235 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
1236 (gv-place): Autoload.
1237 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
1238 original definition of dotimes and dolist.
1239 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
1240 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
1241 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
1242 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1243 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
1244 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
1245 to the function's definition.
1246 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
1247 * window.el:
1248 * files.el:
1249 * faces.el:
1250 * env.el: Don't use CL.
1251
1252 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1253
1254 Support higher-resolution time stamps (Bug#9000).
1255
1256 * calendar/time-date.el (with-decoded-time-value): New arg
1257 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
1258 (encode-time-value): New optional arg PICO. New type 3.
1259 (time-to-seconds) [!float-time]: Support the new picoseconds
1260 component if it's used.
1261 (seconds-to-time, time-subtract, time-add):
1262 Support ps-resolution time stamps as well.
1263
1264 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
1265 (timerp): Timer vectors now have length 9, not 8.
1266 (timer--time): Support new-style (4-part) time stamps.
1267 (timer-next-integral-multiple-of-time): Time stamps now have
1268 picosecond resolution, so take a bit more care about rounding.
1269 (timer-relative-time, timer-inc-time): New optional arg psecs.
1270 (timer-set-time-with-usecs): Set psecs to 0.
1271 (timer--activate): Check psecs component, too.
1272
1273 * proced.el (proced-time-lessp): Support ps-resolution stamps.
1274
1275 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1276
1277 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
1278 Move the non-essential binding to the post/pre-command-hook where it is
1279 more obviously correct.
1280
1281 * subr.el (read-passwd): Don't use a history at all.
1282 * savehist.el (savehist-save): Remove password saved accidentally
1283 because of the above bug.
1284
1285 2012-06-22 Bastien Guerry <bzg@gnu.org>
1286
1287 * files.el (toggle-read-only): Display a message telling whether
1288 the buffer is read-only or not (bug#11726).
1289
1290 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1291
1292 * emacs-lisp/gv.el: New file.
1293 * subr.el (push, pop): Extend to generalized variables.
1294 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
1295 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
1296 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
1297 gv-define-simple-setter, and gv-define-expander.
1298 Remove setf-methods defined in gv. Rename cl-setf -> setf.
1299 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
1300 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
1301 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
1302 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
1303 gv-letplace.
1304 (cl-defstruct): Don't define setf-method any more.
1305 * emacs-lisp/cl.el (flet): Don't autoload.
1306 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
1307 (define-setf-expander, defsetf, define-modify-macro)
1308 (cl-struct-setf-expander): Move from cl-lib.el.
1309 * emacs-lisp/syntax.el:
1310 * emacs-lisp/ewoc.el:
1311 * emacs-lisp/smie.el:
1312 * emacs-lisp/cconv.el:
1313 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
1314 (timer--time): Use gv-define-simple-setter.
1315 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
1316 to avoid coding-system problems in subr.el. Adjust all users.
1317 (macroexp--maxsize, macroexp-small-p): New functions.
1318 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
1319 * scroll-bar.el (scroll-bar-mode):
1320 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
1321 (normal-erase-is-backspace-mode): Don't use the `eq' place.
1322 * winner.el (winner-configuration, winner-make-point-alist)
1323 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
1324 * files.el (locate-file-completion-table): Avoid list*.
1325
1326 2012-06-22 Chong Yidong <cyd@gnu.org>
1327
1328 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
1329 (dired-create-files): Doc fix (Bug#11329).
1330 (dired-do-copy): Doc fix (Bug#11334).
1331 (dired-mark-read-string): Doc fix (Bug#11553).
1332
1333 * dired.el (dired-recursive-copies, dired-recursive-deletes):
1334 Doc fix (Bug#11326).
1335 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
1336 (dired-dwim-target): Doc fix.
1337
1338 * wdired.el (wdired-mode): Doc fix.
1339
1340 2012-06-22 Glenn Morris <rgm@gnu.org>
1341
1342 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
1343 (pcmpl-rpm-cache-stamp-file): New constant.
1344 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
1345 (pcmpl-rpm-packages): Optionally cache list of packages.
1346
1347 * pcmpl-rpm.el (pcmpl-rpm): New group.
1348 (pcmpl-rpm-query-options): New option.
1349 (pcmpl-rpm-packages): No need to inline it.
1350 Use pcmpl-rpm-query-options.
1351
1352 * calendar/calendar.el (calendar-in-read-only-buffer):
1353 Avoid some needless mode changes.
1354
1355 2012-06-21 Chong Yidong <cyd@gnu.org>
1356
1357 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
1358 (desktop-path): Remove . from the default value (Bug#10977).
1359 (desktop-read): Use user-emacs-directory if desktop-path is nil.
1360
1361 2012-06-20 Chong Yidong <cyd@gnu.org>
1362
1363 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
1364
1365 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
1366
1367 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
1368 (bug#11201).
1369
1370 2012-06-20 Chong Yidong <cyd@gnu.org>
1371
1372 * term.el (term-window-width): Handle the case of a missing right
1373 fringe (Bug#8837).
1374 (term-check-size): Use window-text-height (Bug#5445).
1375 (term-mode): Use define-derived-mode. Minor cleanups.
1376 Set font-lock-defaults (Bug#7692).
1377 (term-move-columns, term-insert-char, term-emulate-terminal)
1378 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
1379
1380 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
1381
1382 * net/ange-ftp.el (ange-ftp-get-passwd):
1383 Bind `enable-recursive-minibuffers'.
1384 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
1385
1386 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
1387
1388 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
1389
1390 2012-06-19 Glenn Morris <rgm@gnu.org>
1391
1392 * progmodes/python.el (python-mode): Derive from prog-mode.
1393
1394 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
1395
1396 * emulation/edt.el (edt-default-menu-bar-update-buffers)
1397 (edt-user-menu-bar-update-buffers): New functions.
1398 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
1399
1400 2012-06-19 Chong Yidong <cyd@gnu.org>
1401
1402 * subr.el (with-selected-window): Preserve the selected window's
1403 terminal's top-frame (Bug#4702).
1404
1405 * window.el (save-selected-window): Likewise.
1406
1407 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1408
1409 * progmodes/python.el (python-rx-constituents): Move backquote.
1410 (python-skeleton-define, python-define-auxiliary-skeleton):
1411 Use `declare'.
1412
1413 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
1414
1415 * minibuffer.el (read-file-name-default): Revert the patch from
1416 2012-06-17.
1417
1418 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1419
1420 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
1421 (pcase--u1, pcase--q1): Don't use apply-partially.
1422
1423 2012-06-18 Glenn Morris <rgm@gnu.org>
1424
1425 * progmodes/python.el (python-proc, python-buffer)
1426 (python-send-receive, python-send-string): Fix obsolete versions.
1427
1428 2012-06-18 Martin Rudalics <rudalics@gmx.at>
1429
1430 * window.el (special-display-p): Completely remove stringp
1431 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
1432
1433 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
1434
1435 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
1436
1437 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
1438
1439 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
1440 * net/tramp-sh.el (tramp-maybe-open-connection):
1441 Throw if `non-essential' is non-nil.
1442
1443 2012-06-17 Martin Rudalics <rudalics@gmx.at>
1444
1445 * window.el (special-display-p): Signal an error if BUFFER-NAME
1446 is not a string (Bug#11713).
1447
1448 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
1449
1450 * progmodes/python.el (python-info-beginning-of-backslash):
1451 Rename from python-info-beginning-of-backlash, as a spelling fix.
1452
1453 2012-06-17 Chong Yidong <cyd@gnu.org>
1454
1455 * term.el (term-emulate-terminal): If term-check-size is called,
1456 move point to the process mark without resetting point (Bug#4635).
1457
1458 2012-06-17 Glenn Morris <rgm@gnu.org>
1459
1460 * international/mule-cmds.el (mule-menu-keymap)
1461 (set-language-environment, set-locale-environment): Doc tweaks.
1462
1463 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
1464
1465 * cus-face.el (custom-face-attributes): Add wave-style underline
1466 attribute.
1467 * faces.el (set-face-attribute): Update docstring to describe
1468 wave-style underline attribute.
1469
1470 2012-06-16 Chong Yidong <cyd@gnu.org>
1471
1472 * term/xterm.el (terminal-init-xterm): Discard input before
1473 querying background mode (Bug#10959).
1474
1475 2012-06-16 Stefan Merten <smerten@oekonux.de>
1476
1477 * textmodes/rst.el: Added and corrected some comments.
1478 (rst-re-alist-def): Improve symbol syntax.
1479 (rst-mode-syntax-table): Correct syntax entries.
1480 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1481 (rst-official-version, rst-official-cvs-rev): Update version
1482 information.
1483
1484 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
1485
1486 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
1487 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
1488
1489 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
1490
1491 * progmodes/python.el: New python.el merge.
1492 (python-guess-indent): Obsolete var.
1493 (python-indent-guess-indent-offset): New defcustom.
1494 (python-indent): Obsolete var.
1495 (python-indent-offset): New defcustom.
1496 (python-python-command, python-jython-command): Delete var.
1497 (python-shell-interpreter): New defcustom.
1498 (python-pdbtrack-do-tracking-p): Delete var.
1499 (python-pdbtrack-activate): New defcustom.
1500 (python-use-skeletons): Obsolete var.
1501 (python-skeleton-autoinsert): New defcustom.
1502 (inferior-python-filter-regexp, python-continuation-offset)
1503 (python-honour-comment-indentation, python-indent-string-contents)
1504 (python-jython-packages, python-mode-hook)
1505 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
1506 (python-shell-prompt-alist)
1507 (python-source-modes): Delete defcustoms.
1508 (python-check-buffer-name, python-eldoc-setup-code)
1509 (python-eldoc-string-code, python-ffap-setup-code)
1510 (python-ffap-string-code, python-fill-comment-function)
1511 (python-fill-decorator-function, python-fill-paren-function)
1512 (python-fill-string-function, python-imenu-include-defun-type)
1513 (python-imenu-make-tree, python-imenu-subtree-root-label)
1514 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
1515 (python-shell-compilation-regexp-alist)
1516 (python-shell-completion-module-string-code)
1517 (python-shell-completion-pdb-string-code)
1518 (python-shell-completion-setup-code)
1519 (python-shell-completion-string-code)
1520 (python-shell-enable-font-lock, python-shell-exec-path)
1521 (python-shell-extra-pythonpaths)
1522 (python-shell-internal-buffer-name, python-shell-interpreter-args)
1523 (python-shell-process-environment)
1524 (python-shell-prompt-block-regexp)
1525 (python-shell-prompt-output-regexp)
1526 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
1527 (python-shell-send-setup-max-wait, python-shell-setup-codes)
1528 (python-shell-virtualenv-path): New defcustoms.
1529 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
1530 (inferior-python-mode-syntax-table, python--prompt-regexp)
1531 (python-buffer, python-command python-python-command)
1532 (python-default-template, python-imports, python-indent-index)
1533 (python-indent-list, python-indent-list-length)
1534 (python-mode-running, python-pdbtrack-is-tracking-p)
1535 (python-preoutput-continuation, python-preoutput-leftover)
1536 (python-preoutput-result, python-preoutput-skip-next-prompt)
1537 (python-prev-dir/file, python-recursing)
1538 (python-saved-check-command, python-version-checked)
1539 (python-which-func-length-limit)
1540 (view-return-to-alist): Delete vars.
1541 (python-check-custom-command, python-dotty-syntax-table)
1542 (python-imenu-index-alist, python-indent-current-level)
1543 (python-indent-dedenters, python-indent-levels)
1544 (python-nav-beginning-of-defun-regexp)
1545 (python-nav-list-defun-positions-cache)
1546 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
1547 (python-shell-internal-buffer)
1548 (python-skeleton-available): New vars.
1549 (def-python-skeleton): Delete macro.
1550 (python-skeleton-define): New macro.
1551 (python-define-auxiliary-skeleton, python-rx): New macros.
1552 (python-insert-class): Delete command.
1553 (python-skeleton-class): New command.
1554 (python-insert-def): Delete command.
1555 (python-skeleton-def): New command.
1556 (python-insert-for): Delete command.
1557 (python-skeleton-for): New command.
1558 (python-insert-if): Delete command.
1559 (python-skeleton-if): New command.
1560 (python-insert-try/except, python-insert-try/finally): Delete commands.
1561 (python-skeleton-try): New command.
1562 (python-insert-while): Delete command.
1563 (python-skeleton-while): New command.
1564 (python-backspace): Delete command.
1565 (python-indent-dedent-line-backspace): New command.
1566 (python-electric-colon): Delete command.
1567 (python-indent-electric-colon): New command.
1568 (python-guess-indent): Delete command.
1569 (python-indent-guess-indent-offset): New command.
1570 (python-shift-left): Delete command.
1571 (python-indent-shift-left): New command.
1572 (python-shift-right): Delete command.
1573 (python-indent-shift-right): New command.
1574 (python-find-function): Delete command.
1575 (python-nav-jump-to-defun): New command.
1576 (python-next-statement): Delete command.
1577 (python-nav-forward-sentence): New command.
1578 (python-previous-statement): Delete command.
1579 (python-nav-backward-sentence): New command.
1580 (python-fill-paragraph): Delete command.
1581 (python-fill-paragraph-function): New command.
1582 (python-send-buffer): Delete command.
1583 (python-shell-send-buffer): New command.
1584 (python-send-defun): Delete command.
1585 (python-shell-send-defun): New command.
1586 (python-send-region, python-send-region-and-go): Delete commands.
1587 (python-shell-send-region)
1588 (python-shell-switch-to-shell): New commands.
1589 (python-send-string): Delete command.
1590 (python-shell-send-string): New command.
1591 (python-switch-to-python): Delete command.
1592 (python-shell-switch-to-shell): New command.
1593 (python-describe-symbol): Delete command.
1594 (python-eldoc-at-point): New command.
1595 (python--set-prompt-regexp, python-args-to-list)
1596 (python-after-info-look, python-check-version)
1597 (python-check-comint-prompt, python-find-imports)
1598 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
1599 (python-unload-function, python-expand-template)
1600 (python-maybe-jython, python-preoutput-filter)
1601 (python-pdbtrack-get-source-buffer)
1602 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
1603 (python-pdbtrack-toggle-stack-tracking)
1604 (python-pdbtrack-track-stack-file, python-initial-text)
1605 (python-first-word, python-comment-line-p, python-send-command)
1606 (python-setup-brm, python-sentinel, python-set-proc)
1607 (python-skip-out, python-input-filter, python-outdent-p)
1608 (python-outline-level, python-backslash-continuation-line-p)
1609 (python-end-of-block, python-end-of-statement, python-mark-block)
1610 (python-beginning-of-block, python-beginning-of-statement)
1611 (python-blank-line-p, python-beginning-of-string)
1612 (python-open-block-statement-p): Delete functions.
1613 (python-indent-line, python-indent-line-1): Delete functions.
1614 (python-indent-line): New function.
1615 (python-indentation-levels): Delete function.
1616 (python-indent-calculate-levels): New function.
1617 (python-proc): Delete function.
1618 (python-shell-get-process): New function.
1619 (python-send-receive): Delete function.
1620 (python-shell-send-string-no-output): New function.
1621 (python-module-path): Delete function.
1622 (python-ffap-module-path): New function.
1623 (python-completion-at-point)
1624 (python-symbol-completions): Delete functions.
1625 (python-completion-complete-at-point): New function.
1626 (python-load-file): Delete function.
1627 (python-shell-send-file): New function.
1628 (python-calculate-indentation): Delete function.
1629 (python-indent-calculate-indentation): New function.
1630 (python-skip-comments/blanks): Delete function.
1631 (python-util-forward-comment): New function.
1632 (python-continuation-line-p): Delete function.
1633 (python-info-continuation-line-p): New function.
1634 (python-which-func, python-current-defun): Delete function.
1635 (python-info-current-defun): New function.
1636 (python-beginning-of-defun): Delete function.
1637 (python-nav-beginning-of-defun): New function.
1638 (python-close-block-statement-p)
1639 (python-block-end-p): Delete function.
1640 (python-info-closing-block): New function.
1641 (python-comint-output-filter-function)
1642 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
1643 (python-fill-comment, python-fill-decorator, python-fill-paren)
1644 (python-fill-string, python-imenu-make-element-tree)
1645 (python-imenu-make-tree, python-imenu-tree-assoc)
1646 (python-indent-context, python-indent-dedent-line)
1647 (python-indent-line-function)
1648 (python-indent-post-self-insert-function)
1649 (python-indent-toggle-levels)
1650 (python-info-assignment-continuation-line-p)
1651 (python-info-beginning-of-backlash)
1652 (python-info-block-continuation-line-p)
1653 (python-info-closing-block-message)
1654 (python-info-line-ends-backslash-p)
1655 (python-info-looking-at-beginning-of-defun)
1656 (python-info-ppss-context, python-info-ppss-context-type)
1657 (python-nav-list-defun-positions, python-nav-read-defun)
1658 (python-nav-sentence-end, python-nav-sentence-start)
1659 (python-pdbtrack-comint-output-filter-function)
1660 (python-pdbtrack-set-tracked-buffer)
1661 (python-shell-calculate-exec-path)
1662 (python-shell-calculate-process-environment)
1663 (python-shell-completion--do-completion-at-point)
1664 (python-shell-completion--get-completions)
1665 (python-shell-completion-complete-at-point)
1666 (python-shell-completion-complete-or-indent)
1667 (python-shell-get-or-create-process)
1668 (python-shell-get-process-name)
1669 (python-shell-internal-get-or-create-process)
1670 (python-shell-internal-get-process-name)
1671 (python-shell-internal-send-string, python-shell-make-comint)
1672 (python-shell-parse-command, python-shell-send-setup-code)
1673 (python-skeleton-add-menu-items)
1674 (python-util-clone-local-variables, python-util-position)
1675 (run-python-internal, python-indentation-levels)
1676 (python-nav-beginning-of-defun)
1677 (python-completion-complete-at-point): New functions.
1678 (run-python): Change arguments. New API requirements.
1679
1680 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1681
1682 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
1683 (bug#11649).
1684
1685 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
1686 (macroexp--expand-all): Use it.
1687
1688 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
1689 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
1690 Use `cl-function' instead.
1691
1692 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
1693
1694 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
1695 Suggested by Stefan Monnier while discussing bug#11657.
1696
1697 2012-06-14 Sam Steingold <sds@gnu.org>
1698
1699 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
1700
1701 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
1702
1703 * play/doctor.el (doctor-doc): Remove parameter and use
1704 doctor-sent instead of sent.
1705 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
1706
1707 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1708
1709 * files.el: Require cl-lib.
1710 (file-name-non-special): Replace case -> cl-case.
1711
1712 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
1713
1714 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
1715 mapping from #' to function*.
1716
1717 2012-06-13 Chong Yidong <cyd@gnu.org>
1718
1719 * mouse.el (mouse-drag-track): Do not set the mark if the user
1720 releases the mouse without selecting anything (Bug#11588).
1721
1722 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1723
1724 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
1725 as well (bug#11646).
1726
1727 * loadup.el: Count byte-code functions as well.
1728
1729 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
1730 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
1731
1732 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
1733 (bug#11649). Add cl-defun and cl-defmacro.
1734
1735 2012-06-13 Drew Adams <drew.adams@oracle.com>
1736
1737 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1738 Fix last change.
1739
1740 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
1741
1742 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
1743 Otherwise, it blocks in batch mode.
1744
1745 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
1746
1747 * help-mode.el (bookmark-make-record-default): Declare.
1748
1749 2012-06-13 Chong Yidong <cyd@gnu.org>
1750
1751 * emacs-lisp/package.el (list-packages): Compute a list of
1752 packages that are newly-available since the last list-packages
1753 invocation.
1754 (package-menu--new-package-list): New var.
1755 (package-menu--generate, package-menu--print-info)
1756 (package-menu--status-predicate, package-menu-mark-install):
1757 Handle new status label "new".
1758
1759 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
1760
1761 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
1762 conversion to backquotes.
1763
1764 2012-06-12 Chong Yidong <cyd@gnu.org>
1765
1766 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
1767 Rename from gud-inhibit-global-bindings.
1768
1769 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
1770
1771 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
1772 hook from nxml-glyph-set-hook.
1773
1774 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
1775 declaration.
1776
1777 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
1778
1779 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
1780 Convert to defcustom.
1781
1782 2012-06-12 Drew Adams <drew.adams@oracle.com>
1783
1784 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1785 New functions.
1786 (help-mode): Use them.
1787
1788 2012-06-11 Glenn Morris <rgm@gnu.org>
1789
1790 * progmodes/fortran.el (fortran-font-lock-keywords-3):
1791 Use preprocessor face for directives.
1792 (fortran-directive-re): Doc fix.
1793
1794 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1795
1796 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
1797 conversion to backquotes (bug#11652).
1798
1799 Fix compiler-expansion of CL's cXXr functions (bug#11673).
1800 * emacs-lisp/cl-lib.el (cl--defalias): New function.
1801 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
1802 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
1803 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1804 (cl-ninth, cl-tenth): Mark them as inlinable.
1805 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
1806 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
1807 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
1808 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
1809 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
1810 (cl-list*, cl-adjoin): Don't put an autoload manually.
1811 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
1812 (cl--compiler-macro-list*): Add autoload cookie.
1813 (cl--compiler-macro-cXXr): New function.
1814
1815 * help-fns.el (help-fns--compiler-macro): New function extracted from
1816 describe-function-1; follow aliases and use `compiler-macro' property.
1817 (describe-function-1): Use it.
1818
1819 2012-06-11 Chong Yidong <cyd@gnu.org>
1820
1821 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
1822 is uninstalled, if imagemagick is installed.
1823
1824 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1825
1826 * emacs-lisp/cl-lib.el: Use lexical-binding.
1827 (cl-map-extents, cl-maclisp-member): Remove.
1828 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
1829 (cl--set-substring, cl--block-wrapper, cl--block-throw)
1830 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
1831 * emacs-lisp/cl-extra.el: Use lexical-binding.
1832 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
1833 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
1834 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
1835 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
1836 * emacs-lisp/cl-seq.el: Use lexical-binding.
1837 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
1838 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
1839 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
1840 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
1841 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
1842 CL's internals.
1843
1844 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
1845
1846 Sync with Tramp 2.2.6-pre.
1847
1848 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
1849 `print-length' and `print-level' to nil, in order to avoid
1850 truncation. Reported by Christopher Schmidt
1851 <christopher@ristopher.com>.
1852
1853 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
1854
1855 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
1856 New defmacro.
1857 (tramp-compat-copy-directory): Add optional argument
1858 COPY-CONTENTS. It is not handled yet.
1859
1860 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
1861 (tramp-ftp-file-name-p): Simplify.
1862
1863 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
1864 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
1865 connection vector.
1866
1867 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
1868 (tramp-methods): Do not use `tramp-password-end-of-line'.
1869 (tramp-completion-function-alist-putty): Handle UNIX case.
1870 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
1871 (tramp-do-file-attributes-with-stat)
1872 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
1873 gid as real numbers. They could run out of integer range on cygwin.
1874 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
1875 (tramp-sh-handle-expand-file-name): Handle hops.
1876 (tramp-open-connection-setup-interactive-shell):
1877 Use `tramp-cleanup'. Move check for busyboxes ...
1878 (tramp-find-shell): ... here. Simplify implementation.
1879 Set "remote-shell" property also for alternative shells.
1880 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
1881 If failing, a regular file would be written otherwise.
1882 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
1883 (tramp-find-inline-encoding): Cache the coding commands in the
1884 process cache. Apply test command on the remote side, if defined.
1885 (tramp-find-inline-compress): Cache the compress commands in the
1886 process cache.
1887 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
1888 when requested. Handle hops.
1889 (tramp-current-connection): New defvar.
1890 (tramp-maybe-open-connection): Use `tramp-cleanup'.
1891 Throw `suppress', if there was a failed connection shortly before.
1892 Handle user interrupt. (Bug#10187)
1893 (tramp-get-inline-compress, tramp-get-inline-coding):
1894 Read connection properties from the process cache.
1895
1896 * net/tramp-smb.el (tramp-smb-server-version)
1897 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
1898 New defconsts.
1899 (tramp-smb-prompt): Extend for powershell prompt.
1900 (tramp-smb-file-name-handler-alist): Add handlers for
1901 `process-file', `shell-command' and `start-file-process'.
1902 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
1903 (tramp-smb-winexe-shell-command-switch): New defcustoms.
1904 (tramp-smb-file-name-p): Simplify.
1905 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
1906 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
1907 (tramp-smb-shell-quote-argument): New defuns.
1908 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
1909 Implement using "tar". By this, time-stamps are preserved.
1910 (tramp-smb-handle-copy-file): Handle also the case of directories.
1911 (tramp-smb-do-file-attributes-with-stat)
1912 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
1913 Use `tramp-get-connection-buffer').
1914 (tramp-smb-handle-rename-file): Use "rename", when source and
1915 target are on the same share.
1916 (tramp-smb-maybe-open-connection): Handle wrong passwords.
1917 Use `tramp-smb-server-version'.
1918 (tramp-smb-wait-for-output): Remove prompt.
1919
1920 * net/tramp.el (top): Require 'cl.
1921 (tramp-methods, tramp-rsh-end-of-line):
1922 Remove `tramp-password-end-of-line' from docstring.
1923 (tramp-save-ad-hoc-proxies): New defcustom.
1924 (tramp-completion-function-alist): Adapt docstring.
1925 (tramp-default-password-end-of-line): Remove defcustom.
1926 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
1927 (tramp-user-regexp, tramp-file-name-regexp-unified)
1928 (tramp-file-name-regexp-url): Extend regexp by hop separator.
1929 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
1930 (tramp-remote-file-name-spec-regexp): New defconst.
1931 (tramp-file-name-structure): Extend structure for hops.
1932 (tramp-get-method-parameter): Move up.
1933 (tramp-file-name-p, tramp-dissect-file-name)
1934 (with-parsed-tramp-file-name): Handle hops.
1935 (tramp-file-name-hop): New defun.
1936 (tramp-make-tramp-file-name): New optional arg HOP.
1937 (tramp-message-show-progress-reporter-message): New defvar.
1938 (tramp-with-progress-reporter): Use it. We cannot use
1939 `tramp-message-show-message' here, because this suppresses also
1940 error buffers.
1941 (tramp-error-with-buffer): Suppress buffer view, if
1942 `tramp-message-show-message' is nil.
1943 Use `tramp-get-connection-buffer'.
1944 (tramp-cleanup): New defun.
1945 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
1946 (tramp-file-name-handler): If `debug-on-error' is set, propagate
1947 an error unchanged.
1948 (tramp-completion-handle-file-name-all-completions): Handle hops.
1949 Fix an error when called from ido.
1950 (tramp-completion-dissect-file-name): Use better local variable
1951 name. Add hop to the vector.
1952 (tramp-handle-insert-file-contents): Use progress-reporter for the
1953 whole scenario.
1954 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
1955 to `t'.
1956 (tramp-check-for-regexp): Simplify search.
1957 (tramp-enter-password): Remove it. Move implementation ...
1958 (tramp-action-password): ... here.
1959 (tramp-mode-string-to-int, tramp-local-host-p)
1960 (tramp-make-tramp-temp-file, tramp-read-passwd)
1961 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
1962 Set tramp-autoload cookie.
1963
1964 * net/trampver.el: Update release number.
1965
1966 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1967 Michael Albinus <michael.albinus@gmx.de>
1968
1969 * net/tramp.el (tramp-set-completion-function): Fix docstring.
1970 (tramp-parse-group, tramp-parse-file)
1971 (tramp-parse-shostkeys-sknownhosts): New defuns.
1972 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
1973 (tramp-parse-shosts-group, tramp-parse-sconfig)
1974 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
1975 (tramp-parse-sknownhosts, tramp-parse-hosts)
1976 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
1977 Use them.
1978 (tramp-parse-passwd-group, tramp-parse-netrc-group)
1979 (tramp-parse-putty-group): Don't narrow.
1980 (tramp-parse-putty): Make a loop.
1981 (tramp-file-name-handler): Catch the `suppress' signal.
1982
1983 2012-06-11 Chong Yidong <cyd@gnu.org>
1984
1985 * image.el (imagemagick-register-types): Put the ImageMagick entry
1986 at the end of image-type-file-name-regexps.
1987
1988 2012-06-11 Johan Bockgård <bojohan@gnu.org>
1989
1990 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
1991 (pcase, pcase-let*, pcase-dolist): Use them.
1992
1993 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1994
1995 * emacs-lisp/pcase.el (pcase--let*): New function.
1996 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
1997 (pcase--expand): Use macroexp-let².
1998
1999 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
2000
2001 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
2002 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
2003 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
2004 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
2005 * emacs-lisp/derived.el: Use pcase instead of `cl'.
2006 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
2007
2008 2012-06-10 Glenn Morris <rgm@gnu.org>
2009
2010 * mail/rmail.el (rmail-yank-current-message): Leave point at
2011 correct position. (Bug#11660)
2012
2013 2012-06-10 Chong Yidong <cyd@gnu.org>
2014
2015 * allout-widgets.el: Fix code header.
2016
2017 2012-06-10 Chong Yidong <cyd@gnu.org>
2018
2019 * cus-edit.el (customize-changed-options-previous-release):
2020 Bump to 24.1.
2021
2022 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
2023
2024 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
2025
2026 2012-06-09 Chong Yidong <cyd@gnu.org>
2027
2028 * ebuff-menu.el (electric-buffer-list): Preserve header line.
2029
2030 2012-06-09 Martin Rudalics <rudalics@gmx.at>
2031
2032 * window.el (special-display-popup-frame): Don't use
2033 window--display-buffer (Bug#11651).
2034
2035 2012-06-09 Eli Zaretskii <eliz@gnu.org>
2036
2037 Fix parallel builds: make sure loaddefs.el is not being written
2038 while Lisp files are compiled.
2039 (compile): Don't depend on 'mh-autoloads'.
2040 (compile-CMD, compile-SH): Depend on 'autoloads'.
2041 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
2042
2043 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
2044
2045 2012-06-09 Chong Yidong <cyd@gnu.org>
2046
2047 * face-remap.el (face-remap-add-relative, face-remap-set-base)
2048 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
2049 Doc fixes (Bug#11225).
2050
2051 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2052
2053 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
2054 a function if there's a clear indication that it has a compiler-macro.
2055 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
2056 (macro-declarations-alist): Add arglist to declaration functions.
2057 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
2058 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
2059 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
2060 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
2061 Also add autoload to find the compiler macro.
2062 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
2063 (cl--compiler-macro-member, cl--compiler-macro-assoc)
2064 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
2065 (cl--compiler-macro-get): New functions, replacing calls to
2066 cl-define-compiler-macro.
2067 (cl-typep) [compiler-macro]: Use macroexp-let².
2068
2069 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
2070
2071 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
2072 string properly, fixes Bug#11473.
2073
2074 2012-06-08 Chong Yidong <cyd@gnu.org>
2075
2076 * faces.el (set-face-attribute): Doc fix.
2077 (modify-face): Don't use :bold and :italic.
2078 (error, warning, success): Tweak definitions.
2079
2080 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
2081 (custom-modified, custom-set, custom-changed, custom-themed)
2082 (custom-saved, custom-button, custom-button-mouse)
2083 (custom-button-pressed, custom-state, custom-comment-tag)
2084 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
2085 (custom-group-subtitle): Use new-style face specs.
2086 (custom-invalid-face, custom-rogue-face, custom-modified-face)
2087 (custom-set-face, custom-changed-face, custom-saved-face)
2088 (custom-button-face, custom-button-pressed-face)
2089 (custom-documentation-face, custom-state-face)
2090 (custom-comment-face, custom-comment-tag-face)
2091 (custom-variable-tag-face, custom-variable-button-face)
2092 (custom-face-tag-face, custom-group-tag-face-1)
2093 (custom-group-tag-face): Remove obsolete face alias.
2094
2095 * epa.el (epa-validity-high, epa-validity-medium)
2096 (epa-validity-low, epa-mark, epa-field-name, epa-string)
2097 (epa-field-name, epa-field-body):
2098 * font-lock.el (font-lock-comment-face, font-lock-string-face)
2099 (font-lock-keyword-face, font-lock-builtin-face)
2100 (font-lock-function-name-face, font-lock-variable-name-face)
2101 (font-lock-type-face, font-lock-constant-face):
2102 * ido.el (ido-first-match, ido-only-match, ido-subdir)
2103 (ido-virtual, ido-indicator, ido-incomplete-regexp):
2104 * speedbar.el (speedbar-button-face, speedbar-file-face)
2105 (speedbar-directory-face, speedbar-tag-face)
2106 (speedbar-selected-face, speedbar-highlight-face)
2107 (speedbar-separator-face):
2108 * whitespace.el (whitespace-newline, whitespace-space)
2109 (whitespace-hspace, whitespace-tab, whitespace-trailing)
2110 (whitespace-line, whitespace-space-before-tab)
2111 (whitespace-space-after-tab, whitespace-indentation)
2112 (whitespace-empty):
2113 * emulation/cua-base.el (cua-global-mark):
2114 * eshell/em-prompt.el (eshell-prompt):
2115 * net/newst-plainview.el (newsticker-new-item-face)
2116 (newsticker-old-item-face, newsticker-immortal-item-face)
2117 (newsticker-obsolete-item-face, newsticker-date-face)
2118 (newsticker-statistics-face, newsticker-default-face):
2119 * net/newst-reader.el (newsticker-feed-face)
2120 (newsticker-extra-face, newsticker-enclosure-face):
2121 * net/newst-treeview.el (newsticker-treeview-face)
2122 (newsticker-treeview-new-face, newsticker-treeview-old-face)
2123 (newsticker-treeview-immortal-face)
2124 (newsticker-treeview-obsolete-face)
2125 (newsticker-treeview-selection-face):
2126 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
2127 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
2128 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
2129 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
2130 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
2131 (nxml-outline-active-indicator, nxml-outline-ellipsis):
2132 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
2133 (mpuz-text):
2134 * progmodes/vera-mode.el (vera-font-lock-number)
2135 (vera-font-lock-function, vera-font-lock-interface):
2136 * textmodes/table.el (table-cell): Use new-style face specs, and
2137 don't use the old :bold and :italic attributes.
2138
2139 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
2140 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
2141 (ebrowse-member-class, ebrowse-progress): Likewise.
2142 (ebrowse-tree-mark-face, ebrowse-root-class-face)
2143 (ebrowse-file-name-face, ebrowse-default-face)
2144 (ebrowse-member-attribute-face, ebrowse-member-class-face)
2145 (ebrowse-progress-face): Remove obsolete faces.
2146
2147 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2148 Inherit from error and warning faces respectively.
2149
2150 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2151 Likewise.
2152 (flyspell-incorrect-face, flyspell-duplicate-face):
2153 Remove obsolete aliases.
2154
2155 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
2156
2157 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2158 Avoid infloop.
2159
2160 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2161
2162 * startup.el (argv, argi): Make lexically scoped.
2163 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
2164 * emacs-lisp/cl-macs.el: Use lexical-binding.
2165 Rename cl-bind-* to cl--bind-*.
2166 * files.el: Don't require `cl' since it doesn't use it.
2167 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
2168
2169 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
2170
2171 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
2172 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
2173 instead of calling external sort utility.
2174 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
2175
2176 2012-06-08 Eli Zaretskii <eliz@gnu.org>
2177
2178 * descr-text.el (describe-char): Mention how to insert the
2179 character, if the current input method doesn't support it.
2180 See the discussion in this thread for the details:
2181 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
2182
2183 2012-06-08 Sam Steingold <sds@gnu.org>
2184
2185 * bindings.el (global-map): Bind XF86Forward to next-buffer and
2186 XF86Back to previous-buffer.
2187 (minibuffer-local-map): Bind them to next-history-element and
2188 previous-history-element respectively.
2189 * help-mode.el (help-mode-map): Bind them to help-go-forward and
2190 help-go-back respectively.
2191 * info.el (Info-mode-map): Bind them to Info-history-forward and
2192 Info-history-back respectively.
2193 These are the keys next to Up on the ThinkPad keyboard.
2194
2195 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2196
2197 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
2198 * emacs-lisp/cl-macs.el: Provide itself.
2199 (cl--labels-convert-cache): New var.
2200 (cl--labels-convert): New function.
2201 (cl-flet, cl-labels): New implementation with new semantics, relying on
2202 lexical-binding.
2203 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
2204 (cl-closure-vars, cl--function-convert-cache)
2205 (cl--function-convert): Move from cl-macs.el.
2206 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
2207 rename by removing the "cl-" prefix.
2208 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
2209
2210 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2211
2212 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
2213 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
2214 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
2215 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
2216 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
2217 (cl-hash-table-count): Add old compatibility aliases.
2218
2219 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
2220 Use macroexpand-all-environment instead.
2221 (cl--old-macroexpand): New var.
2222 (cl--sm-macroexpand): New function.
2223 (cl-symbol-macrolet): Use it during macro expansion.
2224 (cl--function-convert-cache): New var.
2225 (cl--function-convert): New function, extracted from
2226 cl-macroexpand-all.
2227 (cl-lexical-let): Use it.
2228
2229 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
2230 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
2231 (cl-member): Remove old alias.
2232
2233 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
2234 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
2235 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
2236 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
2237 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
2238 (cl-macroexpand-cmacs): Remove var.
2239 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
2240 Use macroexpand-all instead.
2241
2242 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2243
2244 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
2245 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
2246 (macroexp-copyable-p): New functions and macros.
2247 * emacs-lisp/edebug.el (edebug-unwrap):
2248 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
2249 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
2250 (pcase--let*): Remove.
2251 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
2252 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
2253 macroexp-const-p instead.
2254 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
2255
2256 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
2257 instead of "cl-" for internal definitions. Use macroexp-const-p.
2258 (cl-old-bc-file-form): Remove var.
2259 (cl-const-exprs-p): Remove fun.
2260 (cl-labels, cl-macrolet): Use backquote.
2261 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
2262 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
2263 (cl-define-setf-expander): Rename from cl-define-setf-method.
2264 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
2265
2266 * international/mule-cmds.el: Don't require CL.
2267 (view-hello-file): Don't use `letf'.
2268
2269 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2270
2271 * tmm.el (tmm-prompt): Use string-prefix-p.
2272 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
2273 (tmm-add-prompt): Use minibuffer-completion-help.
2274 (tmm-delete-map): Remove.
2275
2276 * subr.el (kbd): Make it its own function.
2277
2278 2012-06-07 Stefan Merten <smerten@oekonux.de>
2279
2280 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
2281 Silence compiler warnings. Fix versions.
2282 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
2283 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
2284 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
2285 (rst-package-emacs-version-alist): Correct Emacs version to
2286 represent major merge with upstream.
2287 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
2288
2289 2012-06-06 Glenn Morris <rgm@gnu.org>
2290
2291 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
2292 Only print environment variables if set.
2293
2294 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2295
2296 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
2297 (macroexp--cons): Rename from maybe-cons.
2298 (macroexp--accumulate): Rename from macroexp-accumulate.
2299 (macroexp--all-forms): Rename from macroexpand-all-forms.
2300 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
2301 (macroexp--expand-all): Rename from macroexpand-all-1.
2302
2303 2012-06-06 Sam Steingold <sds@gnu.org>
2304
2305 * calendar/calendar.el (calendar-in-read-only-buffer):
2306 Call `special-mode' to enable the standard read-only keybindings.
2307
2308 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2309
2310 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
2311 with "loading" messages (bug#11635).
2312
2313 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
2314
2315 * files.el (enable-remote-dir-locals): New option.
2316 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
2317
2318 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2319 Ensure, that the temp directory is local.
2320
2321 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
2322 `temporary-file-directory'.
2323
2324 * progmodes/python.el (python-send-region): Ensure, that the
2325 temporary file is created also in the remote case.
2326
2327 2012-06-06 Glenn Morris <rgm@gnu.org>
2328
2329 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
2330 (vc-rcs-update-changelog): Use it.
2331
2332 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
2333
2334 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
2335 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
2336 (vc-sccs-diff): Replace use of the external vcdiff script.
2337
2338 2012-06-05 Glenn Morris <rgm@gnu.org>
2339
2340 * ledit.el: Move to obsolete/.
2341
2342 2012-06-05 Sam Steingold <sds@gnu.org>
2343
2344 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
2345 patch (Bug#11140).
2346
2347 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
2348
2349 * emacs-lisp/cust-print.el: Move to obsolete.
2350
2351 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
2352 compiler-macro expansion.
2353
2354 Add native compiler-macro support.
2355 * emacs-lisp/macroexp.el (macroexpand-all-1):
2356 Support compiler-macros directly. Properly follow aliases and apply
2357 the compiler macros more thoroughly.
2358 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
2359 macroexpand now properly follows aliases.
2360 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
2361 (cl-compiler-macroexpand): Use new prop.
2362 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
2363
2364 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
2365
2366 2012-06-05 Martin Rudalics <rudalics@gmx.at>
2367
2368 * window.el (get-lru-window, get-mru-window, get-largest-window):
2369 New argument NOT-SELECTED to avoid picking the selected window.
2370 (window--display-buffer-1, window--display-buffer-2): Replace by
2371 new function window--display-buffer
2372 (display-buffer-same-window, display-buffer-reuse-window)
2373 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2374 Use window--display-buffer.
2375 (display-buffer-use-some-window): Remove temporary dedication
2376 hack by calling get-lru-window and get-largest-window with
2377 NOT-SELECTED argument non-nil. Call window--display-buffer.
2378
2379 2012-06-05 Glenn Morris <rgm@gnu.org>
2380
2381 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
2382 Replace external vcdiff script.
2383
2384 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2385
2386 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
2387
2388 2012-06-04 Chong Yidong <cyd@gnu.org>
2389
2390 * image.el (imagemagick-types-inhibit): Revert last change.
2391 Add INFO and M.
2392 (imagemagick-enabled-types): Remove CIN and EPS*.
2393
2394 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2395
2396 * emacs-lisp/cl-lib.el: Rename from cl.el.
2397 * emacs-lisp/cl.el: New compatibility file.
2398 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
2399 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
2400 to obey the "cl-" prefix.
2401 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
2402
2403 2012-06-03 Glenn Morris <rgm@gnu.org>
2404
2405 * emacs-lisp/authors.el (authors-aliases): Addition.
2406
2407 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
2408 Fix :version.
2409
2410 2012-06-03 Stefan Merten <smerten@oekonux.de>
2411
2412 * textmodes/rst.el: Add comments.
2413 (rst-transition, rst-adornment): New faces.
2414 (rst-adornment-faces-alist): Make default safe to reevaluate.
2415 Fixes
2416 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
2417 Improve customization tags.
2418 (rst-define-level-faces): Clarify meaning.
2419
2420 2012-06-03 Chong Yidong <cyd@gnu.org>
2421
2422 * progmodes/compile.el (compilation-mode-line-fail)
2423 (compilation-mode-line-run, compilation-mode-line-exit):
2424 New faces.
2425 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
2426
2427 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
2428
2429 * progmodes/which-func.el (which-func-update-ediff-windows):
2430 New function. Use it in ediff-select-hook (Bug#11478).
2431
2432 2012-06-03 Chong Yidong <cyd@gnu.org>
2433
2434 * bindings.el: Remove explicit help text from format-mode-line.
2435 It is now supplied by mode-line-default-help-echo.
2436 (mode-line-front-space, mode-line-end-spaces)
2437 (mode-line-misc-info): New variables.
2438 (mode-line-modes, mode-line-position): Move the default value to
2439 the variable definition.
2440 (mode-line-default-help-echo): New defcustom.
2441 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
2442 (mode-line-modified-help-echo): New functions.
2443 (mode-line-mule-info, mode-line-modified): Use them.
2444 (mode-line-eol-desc, propertized-buffer-identification):
2445 Consistency fixes for help text.
2446 (mode-line-coding-system-map): Allow using mouse-3 to invoke
2447 set-buffer-file-coding-system (Bug#289).
2448 (mode-line-mule-info-help-echo): Update help text.
2449
2450 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2451
2452 * simple.el (execute-extended-command): Set real-this-command
2453 (bug#11506).
2454
2455 2012-06-02 Chong Yidong <cyd@gnu.org>
2456
2457 Remove incorrect uses of "modeline" in comments, docstrings, and
2458 function/variable names (Bug#10329).
2459
2460 * cus-edit.el (mode-line):
2461 * dframe.el (dframe-mouse-hscroll):
2462 * emacs-lisp/re-builder.el:
2463 * emacs-lisp/easy-mmode.el (define-minor-mode):
2464 * frame.el (set-frame-name):
2465 * help.el (lookup-minor-mode-from-indicator):
2466 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
2467 * progmodes/cc-cmds.el (c-toggle-auto-newline)
2468 (c-toggle-hungry-state):
2469 * progmodes/antlr-mode.el (antlr-language-alist):
2470 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
2471 * progmodes/vhdl-mode.el (vhdl-mode):
2472 * progmodes/which-func.el (which-func, which-func-cleanup-function):
2473 * term/ns-win.el (ns-face-at-pos):
2474 * term/sup-mouse.el (sup-mouse-report):
2475 * textmodes/flyspell.el (flyspell-mode-line-string):
2476 * textmodes/ispell.el (ispell-highlight-face):
2477 * textmodes/reftex-global.el:
2478 * vc/vc-arch.el (vc-arch-mode-line-string):
2479 * vc/vc-cvs.el (vc-cvs-mode-line-string):
2480 * vc/vc-git.el (vc-git-mode-line-string):
2481 * vc/vc-hooks.el (vc-display-status)
2482 (vc-default-mode-line-string):
2483 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
2484
2485 * ansi-color.el (ansi-color-faces-vector): Change default faces.
2486
2487 * dired.el (dired-sort-set-mode-line): Rename from
2488 dired-sort-set-modeline. All callers changed.
2489
2490 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
2491 eshell-status-in-modeline.
2492
2493 * foldout.el (foldout-mode-line-string): Rename from
2494 foldout-modeline-string. All callers changed.
2495 (foldout-update-mode-line): Rename from foldout-update-modeline.
2496
2497 * subr.el (redraw-modeline): Make into obsolete alias.
2498
2499 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
2500 timeclock-modeline-display. Make old name an alias.
2501 (timeclock-update-mode-line): Likewise. All callers changed.
2502 (timeclock-mode-line-display): No need to check before using
2503 add-hook.
2504 (timeclock-relative, timeclock-day-over-hook)
2505 (timeclock-use-elapsed, timeclock-mode-string)
2506 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
2507
2508 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
2509 crisp-mode-modeline-string.
2510
2511 * play/solitaire.el (solitaire-build-mode-line): Rename from
2512 solitaire-build-modeline. All callers changed.
2513
2514 * play/zone.el (zone-hiding-mode-line): Rename from
2515 zone-hiding-modeline. All callers changed.
2516 (zone): Remove unusued `modeline-hidden-level' property.
2517
2518 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
2519 xscheme-modeline-initialize. All callers changed.
2520
2521 * strokes.el (strokes-lighter): Rename from
2522 strokes-modeline-string.
2523
2524 * textmodes/sgml-mode.el (html-face-tag-alist)
2525 (html-tag-face-alist): Use mode-line face instead of obsolete
2526 alias modeline.
2527
2528 2012-06-02 Stefan Merten <smerten@oekonux.de>
2529
2530 * textmodes/rst.el: Always require `cl'.
2531 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
2532
2533 2012-06-02 Chong Yidong <cyd@gnu.org>
2534
2535 * image.el (imagemagick-enabled-types): Rename from
2536 imagemagick-types-enable. Add many more types.
2537 (imagemagick-types-inhibit): Change default to nil.
2538 (imagemagick-filter-types): Caller changed.
2539
2540 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2541
2542 * emacs-lisp/cl-macs.el: Use backquotes.
2543 (cl-transform-function-property): Use eval-and-compile rather than
2544 abusing `require'.
2545 (defstruct): Use declare-function instead of with-no-warnings.
2546
2547 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
2548 (byte-compile-output-docform): Re-add the print-circle bindings.
2549 (byte-compile-fix-header): Use #$ just because it's shorter.
2550 (byte-compile-output-file-form): Remove defun/defmacro.
2551
2552 2012-06-01 Martin Rudalics <rudalics@gmx.at>
2553
2554 * simple.el (choose-completion): Remove now obsolete binding for
2555 owindow.
2556
2557 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
2558
2559 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
2560 in order to avoid "Stack overflow in regexp matcher".
2561
2562 2012-05-31 Glenn Morris <rgm@gnu.org>
2563
2564 * image.el: For clarity, call imagemagick-register-types at
2565 top-level, rather than relying on a custom :initialize.
2566 (imagemagick-types-enable): New option. (Bug#11557)
2567 (imagemagick-filter-types): New function. (Bug#7406)
2568 (imagemagick-register-types): Use imagemagick-filter-types.
2569 If disabling support, remove elements altogether rather
2570 than using an impossible regexp.
2571 (imagemagick-types-inhibit): Give it the default init function.
2572
2573 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2574
2575 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
2576 Handle arbitrary file name lengths (Bug#11585).
2577
2578 2012-05-31 Martin Rudalics <rudalics@gmx.at>
2579
2580 * desktop.el (desktop-read): Clear previous and next buffers for
2581 all windows and bury *Messages* buffer (bug#11556).
2582
2583 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2584
2585 Add `declare' for `defun'. Align `defmacro's with it.
2586 * emacs-lisp/easy-mmode.el (define-minor-mode)
2587 (define-globalized-minor-mode): Don't autoload the var definitions.
2588 * emacs-lisp/byte-run.el: Use lexical-binding.
2589 (defun-declarations-alist, macro-declarations-alist): New vars.
2590 (defmacro, defun): Use them.
2591 (make-obsolete, define-obsolete-function-alias)
2592 (make-obsolete-variable, define-obsolete-variable-alias):
2593 Use `declare'.
2594 (macro-declaration-function): Mark obsolete.
2595 * emacs-lisp/autoload.el: Use lexical-binding.
2596 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
2597
2598 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2599
2600 * textmodes/ispell.el (ispell-with-no-warnings):
2601 Define as a macro.
2602 (ispell-kill-ispell, ispell-change-dictionary):
2603 Use `called-interactively-p' for Emacs instead of obsolete
2604 `interactive-p'.
2605
2606 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2607
2608 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
2609 (macro-declaration-function): Move var from C code.
2610 (macro-declaration-function): Define function with defalias.
2611 * emacs-lisp/macroexp.el (macroexpand-all-1):
2612 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
2613 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
2614 defun/defmacro any more.
2615 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
2616 Provide fallback for unknown arglist.
2617 (byte-compile-arglist-warn): Change calling convention.
2618 (byte-compile-output-file-form): Move print-vars binding.
2619 (byte-compile-output-docform): Simplify accordingly.
2620 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
2621 (byte-compile-defmacro-declaration): Remove.
2622 (byte-compile-file-form-defmumble): Generalize to defalias.
2623 (byte-compile-output-as-comment): Return byte-positions.
2624 Simplify callers accordingly.
2625 (byte-compile-lambda): Use `assert'.
2626 (byte-compile-defun, byte-compile-defmacro): Remove.
2627 (byte-compile-file-form-defalias):
2628 Use byte-compile-file-form-defmumble.
2629 (byte-compile-defalias-warn): Remove.
2630
2631 2012-05-29 Stefan Merten <smerten@oekonux.de>
2632
2633 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
2634 possible. Fix authors. Improve comments. Improve loading of `cl'.
2635
2636 (rst-mode-abbrev-table): Merge definition.
2637 (rst-mode): Make sure `font-lock-defaults' is buffer local.
2638 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
2639
2640 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
2641
2642 * calendar/icalendar.el
2643 (icalendar-export-region): Export UID properly.
2644
2645 2012-05-29 Leo Liu <sdl.web@gmail.com>
2646 * calendar/icalendar.el (icalendar-import-format):
2647 Add `icalendar-import-format-uid' (Bug#11525).
2648 (icalendar-import-format-uid): New.
2649 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
2650 Export UID.
2651
2652 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2653
2654 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
2655 different alternative patterns.
2656 (pcase-codegen): Be more careful to preserve identity.
2657 (pcase--u1): Don't forget to mark vars as used.
2658
2659 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
2660 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
2661 (byte-compile-from-buffer): ...rather than here.
2662
2663 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
2664 functions from byte-compile-function-environment.
2665
2666 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
2667
2668 * window.el (window-deletable-p): Avoid deleting the root window
2669 of a frame with an active minibuffer.
2670
2671 2012-05-29 Martin Rudalics <rudalics@gmx.at>
2672
2673 * simple.el (choose-completion): Use quit-window (Bug#11567).
2674
2675 2012-05-29 Chong Yidong <cyd@gnu.org>
2676
2677 * whitespace.el (whitespace-cleanup): Fix usage of
2678 whitespace-empty-at-bob-regexp (Bug#11492).
2679
2680 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2681
2682 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
2683 revert (Bug#11488).
2684
2685 2012-05-29 Juri Linkov <juri@jurta.org>
2686
2687 * isearch.el (isearch-mode-map): Bind `M-s _' to
2688 `isearch-toggle-symbol'. Bind `M-s c' to
2689 `isearch-toggle-case-fold'.
2690 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
2691 (isearch-forward): Add `M-s _' to the docstring.
2692 (isearch-forward-symbol, isearch-toggle-case-fold)
2693 (isearch-symbol-regexp): New functions. (Bug#11381)
2694
2695 2012-05-29 Juri Linkov <juri@jurta.org>
2696
2697 * isearch.el (isearch-word): Add docstring. (Bug#11381)
2698 (isearch-occur, isearch-search-and-update): If `isearch-word' is
2699 a function, call it to get the regexp.
2700 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
2701 property `isearch-message-prefix' instead of the string "word ".
2702 (isearch-search-fun-default): For the case of `isearch-word',
2703 return a lambda that calls re-search-forward/re-search-backward
2704 with a regexp returned by `word-search-regexp' or by the function
2705 in `isearch-word'.
2706
2707 2012-05-29 Juri Linkov <juri@jurta.org>
2708
2709 * isearch.el (isearch-search-fun-default): New function.
2710 (isearch-search-fun): Move default part to the new function
2711 `isearch-search-fun-default'.
2712 (isearch-search-fun-function): Set the default value to
2713 `isearch-search-fun-default'. (Bug#11381)
2714
2715 * comint.el (comint-history-isearch-end):
2716 Use `isearch-search-fun-default'.
2717 (comint-history-isearch-search): Use `isearch-search-fun-default'
2718 and remove spacial case for `isearch-word'.
2719 (comint-history-isearch-wrap): Remove spacial case for
2720 `isearch-word'.
2721
2722 * hexl.el (hexl-isearch-search-function):
2723 Use `isearch-search-fun-default'.
2724
2725 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
2726 Use `word-search-regexp' for `isearch-word'.
2727
2728 * misearch.el (multi-isearch-search-fun):
2729 Use `isearch-search-fun-default'.
2730
2731 * simple.el (minibuffer-history-isearch-search):
2732 Use `isearch-search-fun-default' and remove spacial case for
2733 `isearch-word'.
2734 (minibuffer-history-isearch-wrap): Remove spacial case for
2735 `isearch-word'.
2736
2737 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
2738 Remove spacial case for `isearch-word'.
2739 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
2740
2741 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2742
2743 Decrease XEmacs incompatibilities.
2744 * textmodes/flyspell.el (flyspell-check-pre-word-p):
2745 Use `string-match'.
2746 (flyspell-delete-region-overlays): Use alternative definition for
2747 XEmacs.
2748 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
2749 (flyspell-word): Use `process-kill-without-query' if XEmacs.
2750 (flyspell-mode-on): Use `interactive-p' if XEmacs.
2751 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
2752 `define-obsolete-face-alias' under XEmacs, but old method.
2753
2754 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
2755 `with-no-warnings' definition or Emacs alias.
2756 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
2757 (ispell-word): Do not use `region-p' if XEmacs.
2758
2759 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2760
2761 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
2762 Check for `ispell-dictionary-base-alist' instead of full
2763 `ispell-dictionary-alist'.
2764 (ispell-init-process): Show spellchecker when starting new Ispell
2765 process.
2766
2767 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2768
2769 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
2770 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
2771
2772 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
2773
2774 * version.el (motif-version-string, gtk-version-string)
2775 (ns-version-string): Declare.
2776
2777 2012-05-27 Juri Linkov <juri@jurta.org>
2778
2779 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
2780 after the `eval-defun-1' specialcaseing
2781 like in `edebug-eval-defun' (bug#10181).
2782
2783 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
2784 like in `eval-defun-1'.
2785
2786 2012-05-27 Eli Zaretskii <eliz@gnu.org>
2787
2788 * mail/sendmail.el (mail-yank-region):
2789 Recognize rmail-yank-current-message in addition to insert-buffer.
2790 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
2791 a *mail* buffer created through rmail-start-mail with sendmail as
2792 mail-user-agent.
2793
2794 2012-05-27 Chong Yidong <cyd@gnu.org>
2795
2796 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
2797 Default to 256 (Bug#11267).
2798
2799 * help.el (describe-mode): Doc fix.
2800
2801 2012-05-26 Glenn Morris <rgm@gnu.org>
2802
2803 * w32-fns.el (w32-init-info): Remove.
2804 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
2805
2806 * info.el (info-initialize): For self-contained NS builds, put the
2807 included info/ directory at the front. (Bug#2791)
2808
2809 * paths.el (Info-default-directory-list): Make it a defcustom,
2810 mainly so that we can use custom-initialize-delay.
2811
2812 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
2813
2814 * subr.el (buffer-has-markers-at): Mark obsolete.
2815
2816 * subr.el (lambda): Use declare.
2817
2818 * emacs-lisp/lisp-mode.el (lambda):
2819 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
2820
2821 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2822
2823 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
2824
2825 2012-05-26 Glenn Morris <rgm@gnu.org>
2826
2827 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
2828
2829 2012-05-25 Glenn Morris <rgm@gnu.org>
2830
2831 * paths.el: Remove no-byte-compile.
2832 * loadup.el: No need to load paths.el uncompiled.
2833
2834 * image.el (imagemagick-types-inhibit): Doc fix.
2835
2836 * version.el: Remove no-byte-compile and associated formatting.
2837 * loadup.el: No need to load version.el uncompiled. AFAICS, this
2838 is ancient code from when there was an "inc-vers.el".
2839
2840 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
2841
2842 * progmodes/gdb-mi.el: Minor style changes.
2843 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
2844 Turn into minor modes.
2845 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
2846 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
2847 (gdb-shell): Remove unneeded let-binding.
2848 (gdb-get-many-fields): Eliminate O(n²) behavior.
2849
2850 2012-05-25 Eli Zaretskii <eliz@gnu.org>
2851
2852 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
2853 platforms that don't link in fontset.c.
2854
2855 2012-05-25 Juri Linkov <juri@jurta.org>
2856
2857 Use the same diff color scheme as in modern VCSes (bug#10181).
2858
2859 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
2860 to avoid confusion with `diff-added' that now uses green colors.
2861 (diff-removed): Use shades of red.
2862 (diff-added): Use shades of green.
2863 (diff-changed): Leave just the yellow color.
2864 (diff-use-changed-face): New variable.
2865 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
2866 how to highlight context diff changes.
2867 (diff-refine-change): Use shades of yellow.
2868 (diff-refine-removed): New face that uses shades of red.
2869 (diff-refine-added): New face that uses shades of green.
2870 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
2871 `diff-refine-removed' in the call to `smerge-refine-subst'
2872 depending on the value of `diff-use-changed-face'.
2873
2874 * vc/smerge-mode.el (smerge-mine): Use shades of red.
2875 (smerge-other): Use shades of green.
2876 (smerge-base): Use shades of yellow.
2877 (smerge-refined-change): Empty face.
2878 (smerge-refined-removed): New face that uses shades of red.
2879 (smerge-refined-added): New face that uses shades of green.
2880 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
2881 args `props-r' and `props-a', and use them. Doc fix.
2882 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
2883 on its value use different faces `smerge-refined-change',
2884 `smerge-refined-removed', `smerge-refined-added' in the call to
2885 `smerge-refine-subst'.
2886
2887 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
2888 Add face condition `min-colors 88' with shades of red.
2889 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
2890 `min-colors 88' with shades of green.
2891 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
2892 `min-colors 88' with shades of yellow.
2893
2894 2012-05-24 Glenn Morris <rgm@gnu.org>
2895
2896 * paths.el (prune-directory-list, remote-shell-program): Move to...
2897 * files.el (prune-directory-list, remote-shell-program): ...here.
2898 For the latter, delay initialization, prefer ssh, just search PATH.
2899
2900 * paths.el (term-file-prefix): Move to faces.el (the only user).
2901 * faces.el (term-file-prefix): Move here, make it a defcustom.
2902
2903 * paths.el (news-directory, news-path, news-inews-program):
2904 Move to gnus/nnspool.el.
2905
2906 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
2907
2908 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
2909 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
2910 Make the latter a defcustom, with a delayed initialization.
2911
2912 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
2913 These were deleted from Gnus itself late 2010.
2914
2915 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
2916
2917 * progmodes/which-func.el (which-func-ff-hook):
2918 Check against user-error, not error.
2919
2920 * emacs-lisp/edebug.el (top): Do not load or set up loading of
2921 cl-specs.el, which no longer exists.
2922
2923 2012-05-22 Glenn Morris <rgm@gnu.org>
2924
2925 * info.el (info-emacs-bug): New command.
2926 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
2927 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
2928
2929 2012-05-21 Glenn Morris <rgm@gnu.org>
2930
2931 * makefile.w32-in (update-subdirs-SH):
2932 * Makefile.in (update-subdirs): Update for moved update-subdirs.
2933
2934 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
2935
2936 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
2937
2938 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2939 Simplify Maven regexp, and make sure the file can't start with a space
2940 (bug#11517).
2941
2942 2012-05-21 Glenn Morris <rgm@gnu.org>
2943
2944 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2945 Scrap superfluous subshells.
2946
2947 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2948
2949 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
2950 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
2951
2952 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
2953
2954 * calc/calc.el (calc-ensure-consistent-units): New variable.
2955
2956 * calc/calc-units.el (math-consistent-units-p)
2957 (math-check-unit-consistency): New functions.
2958 (calc-quick-units, calc-convert-units):
2959 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
2960 is non-nil.
2961 (calc-extract-units): Fix typo.
2962
2963 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2964
2965 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
2966
2967 * textmodes/flyspell.el: Commenting style, plus code simplifications.
2968 (flyspell-default-deplacement-commands): Don't spell check after
2969 repeated window/frame switches (e.g. triggered by mouse-movement).
2970 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
2971 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
2972 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
2973 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
2974 Remove unused vars.
2975 (flyspell-get-casechars, flyspell-get-not-casechars):
2976 Simplify; Don't bother removing a ] just to add it back.
2977 * textmodes/ispell.el (ispell-program-name): Use executable-find.
2978
2979 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2980
2981 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
2982 New functions.
2983 (math-function-table): Add support for more C functions.
2984
2985 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2986
2987 * textmodes/flyspell.el (flyspell-check-pre-word-p)
2988 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
2989 Protect delay handling for otherchars against empty otherchars.
2990
2991 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2992
2993 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
2994 their respective macro declarations.
2995 * skeleton.el (define-skeleton):
2996 * progmodes/compile.el (define-compilation-mode):
2997 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
2998 (define-ibuffer-filter):
2999 * emacs-lisp/generic.el (define-generic-mode):
3000 * emacs-lisp/easy-mmode.el (define-minor-mode)
3001 (define-globalized-minor-mode):
3002 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
3003 * emacs-lisp/byte-run.el (defsubst):
3004 * custom.el (deftheme): Add doc-string metadata.
3005
3006 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3007
3008 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
3009
3010 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3011
3012 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
3013
3014 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
3015 * emacs-lisp/cl-macs.el: Idem.
3016 * emacs-lisp/cl-specs.el: Remove.
3017
3018 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3019
3020 Minor renaming of internal CL functions and variables.
3021 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
3022 (cl--position): Rename from cl-position.
3023 (cl--delete-duplicates): Rename from cl-delete-duplicates.
3024 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
3025 (cl--random-state): Rename from *random-state*.
3026
3027 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3028
3029 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
3030 parens around the arg list (bug#11499).
3031
3032 2012-05-17 Juri Linkov <juri@jurta.org>
3033
3034 * isearch.el (word-search-regexp, word-search-backward)
3035 (word-search-forward, word-search-backward-lax)
3036 (word-search-forward-lax): Move functions from search.c
3037 (bug#10145, bug#11381).
3038
3039 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3040
3041 * textmodes/flyspell.el (flyspell-check-pre-word-p)
3042 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
3043 Delay for otherchars as for normal word components.
3044
3045 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3046
3047 * minibuffer.el (completion--sifn-requote): Fix last change.
3048 (minibuffer-local-must-match-filename-map):
3049 Move define-obsolete-variable-alias before its var.
3050
3051 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3052
3053 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
3054
3055 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
3056 behavior.
3057 (completion--string-equal-p): New function.
3058 (completion--twq-all): Use it to get better assertion failure data.
3059
3060 Only handle ".." and '..' quoting in shell-mode (bug#11466).
3061 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
3062 (shell--requote-argument): New functions.
3063 (shell-completion-vars): Use them.
3064 (shell--parse-pcomplete-arguments): Rename from
3065 shell-parse-pcomplete-arguments.
3066 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
3067 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
3068 Obey comint-file-name-quote-list.
3069
3070 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
3071 (smie-indent-keyword): Use it.
3072
3073 2012-05-14 Stefan Merten <smerten@oekonux.de>
3074
3075 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
3076
3077 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
3078
3079 * net/rlogin.el (rlogin-mode-map): Fix last change.
3080
3081 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
3082
3083 * mail/smtpmail.el (smtpmail-send-command): Send the command and
3084 the following \r\n using a single `process-send-string', since the
3085 Lotus SMTP server refuses to accept any commands if they are sent
3086 with two `process-send-string's (Bug#11444).
3087
3088 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * shell.el (shell-parse-pcomplete-arguments):
3091 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
3092
3093 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3094
3095 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
3096 (image-transform-scale, image-transform-right-angle-fudge): New vars.
3097 (image-transform-width, image-transform-fit-width): New functions.
3098 (image-transform-properties): Use them.
3099 (image-transform-check-size): New function.
3100 (image-toggle-display-image): Use it (for testing).
3101 (image-transform-set-rotation): Reduce angle mod 360.
3102 Delete obsolete comment.
3103
3104 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3105
3106 * image-mode.el: Fix scaling (bug#11399).
3107 (image-transform-resize): Doc fix.
3108 (image-transform-properties): Default scale is 1 and height should
3109 be an integer.
3110
3111 2012-05-13 Johan Bockgård <bojohan@gnu.org>
3112
3113 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
3114 than hard-coding `car', to fix misbehavior when moving forward.
3115
3116 2012-05-13 Chong Yidong <cyd@gnu.org>
3117
3118 * emacs-lisp/tabulated-list.el (tabulated-list-format)
3119 (tabulated-list-entries, tabulated-list-padding)
3120 (tabulated-list-sort-key): Make permanent-local.
3121
3122 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
3123 (electric-buffer-list): Put electric buffer menu
3124 command descriptions in this docstring, instead of the docstring
3125 of electric-buffer-menu-mode. Code cleanups.
3126 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
3127 Electric-buffer-menu-mode.
3128 (electric-buffer-update-highlight): Minor code cleanup.
3129
3130 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
3131
3132 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
3133 (Bug#11447)
3134
3135 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
3136
3137 Move define-obsolete-variable-alias before the var's definition.
3138 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
3139 * tooltip.el (tooltip-hook):
3140 * textmodes/reftex-toc.el (reftex-toc-map):
3141 * textmodes/reftex-sel.el (reftex-select-label-map)
3142 (reftex-select-bib-map):
3143 * textmodes/reftex-index.el (reftex-index-map)
3144 (reftex-index-phrases-map):
3145 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
3146 * progmodes/meta-mode.el (meta-mode-map):
3147 * novice.el (disabled-command-hook):
3148 * loadhist.el (unload-hook-features-list):
3149 * frame.el (blink-cursor):
3150 * files.el (find-file-not-found-hooks, write-file-hooks)
3151 (write-contents-hooks):
3152 * emulation/tpu-edt.el (GOLD-map):
3153 * emacs-lock.el (emacs-lock-from-exiting):
3154 * emacs-lisp/generic.el (generic-font-lock-defaults):
3155 * emacs-lisp/chart.el (chart-map):
3156 * dos-fns.el (register-name-alist):
3157 * dired-x.el (dired-omit-files-p):
3158 * desktop.el (desktop-enable):
3159 * cus-edit.el (custom-mode-hook):
3160 * buff-menu.el (buffer-menu-mode-hook):
3161 * bookmark.el (bookmark-read-annotation-text-func)
3162 (bookmark-exit-hooks):
3163 * allout.el (allout-mode-deactivate-hook)
3164 (allout-exposure-change-hook, allout-structure-added-hook)
3165 (allout-structure-deleted-hook, allout-structure-shifted-hook):
3166 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
3167 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
3168 comes before the corresponding variable's definition.
3169
3170 2012-05-12 Chong Yidong <cyd@gnu.org>
3171
3172 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
3173 (Buffer-menu-mouse-select): Restore function (Bug#11459).
3174 (Buffer-menu-mode-map): Bind it.
3175 (Buffer-menu--pretty-name): Add a mouse-face property.
3176
3177 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
3178
3179 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
3180 (prolog-upper-case-string, prolog-lower-case-string)
3181 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
3182 (prolog-use-smie, prolog-smie-grammar): New vars.
3183 (prolog-smie-forward-token, prolog-smie-backward-token)
3184 (prolog-smie-rules): New funs.
3185 (prolog-comment-indent): Remove.
3186 (prolog-mode-variables): Use default comment indentation instead.
3187 Setup SMIE.
3188 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
3189 (prolog-mode): Don't call them any more.
3190 (prolog-electric-colon, prolog-electric-dash)
3191 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
3192
3193 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
3194
3195 * minibuffer.el (completion--twq-all): Again, allow case differences.
3196
3197 * term.el: Move keymap initialization code to be more idiomatic.
3198 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
3199 (term-terminal-menu): Move initialization into declaration.
3200 (term-escape-char): Let the user set it in her .emacs.
3201
3202 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
3203 Provide SMIE-based indentation (not enabled by default yet).
3204 (sh-mode-map): Don't bind electric keys.
3205 Use electric-pair-mode instead of skeleton-pair.
3206 (sh-assignment-regexp): Fit within 80 columns.
3207 (sh-indent-supported): Specify actual shell name instead of boolean.
3208 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
3209 (sh-maybe-here-document): Use it. Make obsolete.
3210 (sh-electric-here-document-mode) New minor mode.
3211 (sh-mode): Use it. Don't set sh-indent-supported-here here.
3212 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
3213 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
3214 (sh-smie-rc-grammar, sh-use-smie): New vars.
3215 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
3216 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
3217 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
3218 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
3219 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
3220 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
3221 (sh-set-shell): Use smie-setup if requested.
3222
3223 * term.el (term-set-escape-char): Properly set term-escape-char.
3224 See http://stackoverflow.com/questions/10524656.
3225
3226 2012-05-10 Chong Yidong <cyd@gnu.org>
3227
3228 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
3229 Use url-generic-parse-url, and handle host names and Windows
3230 filenames properly.
3231 (ffap-url-unwrap-remote): Use url-generic-parse-url.
3232 (ffap-url-unwrap-remote): Accept list values, specifying a list of
3233 URL schemes to work on.
3234 (ffap--toggle-read-only): New function.
3235 (ffap-read-only, ffap-read-only-other-window)
3236 (ffap-read-only-other-frame): Use it.
3237 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
3238 necessary for ffap-url-unwrap-remote.
3239
3240 2012-05-10 Dave Abrahams <dave@boostpro.com>
3241
3242 * cus-start.el (create-lockfiles): Add it.
3243
3244 2012-05-09 Chong Yidong <cyd@gnu.org>
3245
3246 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
3247 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
3248
3249 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3250
3251 * shell.el (shell-completion-vars): Fix last change (bug#11348).
3252
3253 2012-05-09 Chong Yidong <cyd@gnu.org>
3254
3255 * ansi-color.el (ansi-color-process-output): Check for validity of
3256 comint-last-output-start before using it. This avoids a bad
3257 interaction with gdb-mi's input/output buffer.
3258
3259 2012-05-09 Glenn Morris <rgm@gnu.org>
3260
3261 * files.el (dir-locals-read-from-file):
3262 Mention dir-locals in any error message.
3263
3264 2012-05-09 Chong Yidong <cyd@gnu.org>
3265
3266 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
3267 package (Bug#11410).
3268
3269 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
3270 variables into description.
3271
3272 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3273
3274 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
3275 shell-delimiter-argument-list (bug#11348).
3276 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
3277
3278 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
3279
3280 * textmodes/rst.el: Silence byte-compiler warnings.
3281 (rst-re-alist, rst-reset-section-caches): Move around.
3282 (rst-re): Use `characterp', not `char-valid-p'.
3283 (font-lock-beg, font-lock-end): Declare.
3284
3285 * progmodes/idlw-shell.el (specs): Remove reference to deleted
3286 variable `idlwave-shell-activate-alt-keybindings' and simplify.
3287
3288 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
3289
3290 2012-05-08 Glenn Morris <rgm@gnu.org>
3291
3292 * files.el (auto-mode-alist): Treat ".make" like ".mk".
3293
3294 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3295
3296 * vc/log-edit.el: Add GNU coding standards highlighting.
3297 (log-edit-font-lock-gnu-style)
3298 (log-edit-font-lock-gnu-keywords): New vars.
3299 (log-edit-font-lock-keywords): New fun.
3300 (log-edit-mode): Don't fold case in font-lock.
3301 (log-edit-font-lock-keywords): Do not assume case-folding.
3302
3303 * imenu.el: Misc cleanup. Make docstrings out of comments.
3304 Use lexical-binding.
3305 (imenu--index-alist, imenu--last-menubar-index-alist)
3306 (imenu-menubar-modified-tick): Use defvar-local.
3307 (imenu--split-menu): Remove unused var.
3308 (imenu--cleanup-seen): Declare as global.
3309 (imenu--cleanup): Use dolist.
3310
3311 * subr.el (defvar-local): Add debug spec and doc-string position.
3312
3313 2012-05-08 Glenn Morris <rgm@gnu.org>
3314
3315 * language/burmese.el, language/cham.el, language/czech.el:
3316 * language/english.el, language/georgian.el, language/greek.el:
3317 * language/japanese.el, language/khmer.el, language/korean.el:
3318 * language/lao.el, language/misc-lang.el, language/romanian.el:
3319 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
3320 * language/thai.el, language/utf-8-lang.el:
3321 Remove no-byte-compile setting.
3322
3323 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
3324
3325 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3326
3327 * progmodes/make-mode.el (makefile-browse):
3328 Remove unnecessary interactive. (Bug#11324)
3329
3330 2012-05-07 Glenn Morris <rgm@gnu.org>
3331
3332 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
3333
3334 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
3335
3336 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3337
3338 * loadup.el: Preload newcomment.el.
3339 * newcomment.el: Move autoload-only code to toplevel.
3340
3341 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
3342 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
3343 Handle new :right-align column property.
3344 (tabulated-list-print-col): Idem, plus use `display' text-property to
3345 try and preserve alignment for variable pitch fonts.
3346
3347 2012-05-07 Chong Yidong <cyd@gnu.org>
3348
3349 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
3350 (tabulated-list-use-header-line): New var.
3351 (tabulated-list-init-header): Use it.
3352 (tabulated-list-print-fake-header): New function.
3353 (tabulated-list-print): Use it.
3354 (tabulated-list-sort-button-map): Add non-header-line commands.
3355 (tabulated-list-init-header): Add column name property to basic
3356 labels as well.
3357 (tabulated-list-col-sort): Handle non-header-line button case.
3358 (tabulated-list--sort-by-column-name): Fix a corner case.
3359
3360 * buff-menu.el (list-buffers--refresh):
3361 Handle Buffer-menu-use-header-line.
3362
3363 2012-05-06 Chong Yidong <cyd@gnu.org>
3364
3365 * buff-menu.el: Convert to Tabulated List mode.
3366 (Buffer-menu-buffer+size-width): Make obsolete.
3367 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
3368 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
3369 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
3370 documentation into docstring of buffer-menu.
3371 (Buffer-menu-toggle-files-only): Add an informative message.
3372 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
3373 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
3374 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
3375 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
3376 (Buffer-menu-execute, Buffer-menu-select)
3377 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
3378 (Buffer-menu-bury): Use Tabulated List machinery.
3379 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
3380 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
3381 Delete.
3382 (list-buffers--refresh): New function.
3383 (list-buffers-noselect): Use it.
3384 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
3385 (Buffer-menu--pretty-file-name): New helper functions.
3386
3387 * loadup.el: Preload tabulated-list.
3388
3389 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
3390 tabulated-list-sort-column.
3391 (tabulated-list-init-header): Add the initial aligning space even
3392 if tabulated-list-padding is zero.
3393
3394 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
3395
3396 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
3397 whose cdr is not a cons cell correctly (bug#11038).
3398
3399 2012-05-06 Chong Yidong <cyd@gnu.org>
3400
3401 * emacs-lisp/tabulated-list.el (tabulated-list-format):
3402 Accept additional plist in column descriptors.
3403 (tabulated-list-init-header): Obey it.
3404 (tabulated-list-get-entry): New function.
3405 (tabulated-list-put-tag): Use it. Use string-width instead of
3406 length.
3407 (tabulated-list--column-number): New function.
3408 (tabulated-list-print): Use it.
3409 (tabulated-list-print-col): New function.
3410 Set `tabulated-list-column-name' property on each column's text.
3411 (tabulated-list-print-entry): Use it.
3412 (tabulated-list-delete-entry, tabulated-list-set-col):
3413 New functions.
3414 (tabulated-list-sort-column): New command (Bug#11337).
3415
3416 * buff-menu.el (list-buffers): Move C-x C-b binding from
3417 buff-menu.el to bindings.el.
3418
3419 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
3420 :advertised-binding feature.
3421
3422 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
3423
3424 * progmodes/compile.el (compilation-internal-error-properties):
3425 Calculate start position correctly when end-col is set but
3426 end-line is not (Bug#11382).
3427
3428 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
3429
3430 * man.el (Man-unindent): Use text-property-default-nonsticky to
3431 prevent untabify from inheriting face properties (Bug#11408).
3432
3433 2012-05-05 Stefan Merten <smerten@oekonux.de>
3434
3435 * textmodes/rst.el: Major merge with upstream development up to
3436 Docutils SVN r7399 / rst.el V1.2.1.
3437
3438 Clarify maintainership and authors.
3439
3440 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
3441 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
3442 (rst-official-version, rst-official-cvs-rev, rst-version)
3443 (rst-package-emacs-version-alist): New functions and variables
3444 for version information.
3445
3446 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
3447 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
3448 (rst-mode-syntax-table, rst-mode): New and corrected functions
3449 and variables representing reStructuredText features.
3450
3451 (rst-re): New function for reStructuredText regexes. Use in
3452 many places.
3453
3454 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
3455 (rst-mode-map): Rebind keys.
3456
3457 (rst-mode-lazy, rst-font-lock-keywords)
3458 (rst-font-lock-extend-region)
3459 (rst-font-lock-extend-region-internal)
3460 (rst-font-lock-extend-region-extend)
3461 (rst-font-lock-find-unindented-line-limit)
3462 (rst-font-lock-find-unindented-line-match)
3463 (rst-adornment-level, rst-font-lock-adornment-level)
3464 (rst-font-lock-adornment-match)
3465 (rst-font-lock-handle-adornment-pre-match-form)
3466 (rst-font-lock-handle-adornment-matcher): Major revision of
3467 font-locking. Integrate with other code. Use `jit-lock-mode'.
3468
3469 (rst-preferred-adornments, rst-adjust-hook)
3470 (rst-new-adornment-down, rst-preferred-bullets)
3471 (rst-preferred-bullets, rst-indent, rst-indent-width)
3472 (rst-indent-field, rst-indent-literal-normal)
3473 (rst-indent-literal-minimized, rst-indent-comment): Change,
3474 extend and improve customization.
3475
3476 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
3477 (rst-normalize-cursor-position, rst-get-decoration)
3478 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
3479 (rst-rstrip, rst-toc-insert-find-delete-contents)
3480 (rst-shift-fill-region, rst-compute-bullet-tabs)
3481 (rst-debug-print-tabs, rst-debug-mark-found)
3482 (rst-shift-region-guts, rst-shift-region-right)
3483 (rst-shift-region-left, rst-use-char-classes)
3484 (rst-font-lock-keywords-function)
3485 (rst-font-lock-indentation-point)
3486 (rst-font-lock-find-unindented-line-begin)
3487 (rst-font-lock-find-unindented-line-end)
3488 (rst-font-lock-find-unindented-line)
3489 (rst-font-lock-adornment-point, rst-font-lock-level)
3490 (rst-adornment-level-alist): Remove functions and variables.
3491
3492 (rst-compare-adornments, rst-get-adornment-match)
3493 (rst-suggest-new-adornment, rst-get-adornments-around)
3494 (rst-adornment-complete-p, rst-get-next-adornment)
3495 (rst-adjust-adornment, rst-display-adornments-hierarchy)
3496 (rst-straighten-adornments): Standardize function names to
3497 use "adornment" instead of "decoration". Correct callers.
3498 Similar standardizing in many places.
3499
3500 (rst-update-section, rst-adjust, rst-promote-region)
3501 (rst-enumerate-region, rst-bullet-list-region)
3502 (rst-repeat-last-character): Correct use of `interactive'.
3503
3504 (rst-classify-adornment, rst-find-all-adornments)
3505 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
3506 (rst-find-leftmost-column, rst-repeat-last-character):
3507 Refactor functions.
3508
3509 (rst-find-title-line, rst-reset-section-caches)
3510 (rst-get-adornments-around, rst-adjust-adornment-work)
3511 (rst-arabic-to-roman, rst-roman-to-arabic)
3512 (rst-insert-list-pos, rst-insert-list-new-item)
3513 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
3514 New functions.
3515
3516 (rst-all-sections, rst-section-hierarchy)
3517 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
3518 New variables.
3519
3520 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
3521 configuration instead of only buffer. Change where necessary.
3522
3523 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
3524 (rst-shift-region, rst-adaptive-fill): New functions for
3525 indentation and filling.
3526
3527 (rst-comment-line-break, rst-comment-indent)
3528 (rst-comment-insert-comment, rst-comment-region)
3529 (rst-uncomment-region): New functions for handling comments.
3530
3531 (rst-compile): Quote shell arguments.
3532
3533 (rst-compile-pdf-preview, rst-compile-slides-preview):
3534 Delete temporary files after use.
3535
3536 2012-05-05 Glenn Morris <rgm@gnu.org>
3537
3538 * calendar/cal-html.el: Optionally include holidays in the output.
3539 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
3540 (cal-html-holidays): New option.
3541 (cal-html-css-default): Add holiday entry.
3542 (holiday-in-range): Autoload it.
3543 (cal-html-htmlify-entry): Add optional class argument.
3544 (cal-html-htmlify-list): Add optional holidays argument.
3545 (cal-html-insert-agenda-days): Include holidays in the output.
3546 (cal-html-one-month): Maybe include holidays.
3547
3548 * calendar/holidays.el (holiday-in-range):
3549 Move here from cal-tex-list-holidays.
3550 * calendar/cal-tex.el (cal-tex-list-holidays):
3551 Make it an obsolete alias for holiday-in-range. Update all callers.
3552
3553 2012-05-05 Chong Yidong <cyd@gnu.org>
3554
3555 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
3556 Nextstep.
3557
3558 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
3559
3560 * files.el (file-auto-mode-skip): New var.
3561 (set-auto-mode-1): Use it.
3562
3563 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
3564
3565 * repeat.el: Use lexical-binding.
3566 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
3567 (repeat-undo-count): Remove.
3568 (repeat):
3569 * progmodes/octave-mod.el (octave-abbrev-start):
3570 * progmodes/f90.el (f90-abbrev-start):
3571 * face-remap.el (text-scale-adjust):
3572 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
3573
3574 * emacs-lisp/pcase.el (pcase--let*): New function.
3575 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
3576 a bit more.
3577 (pcase--split-pred): Be more clever about ruling out overlap between
3578 a predicate and some constant pattern.
3579 (pcase--q1): Use `null' instead of (eq foo nil).
3580
3581 * subr.el (setq-local, defvar-local): New macros.
3582 (kbd): Redefine as an alias.
3583 (with-selected-window): Leave unrelated frames alone.
3584 (set-temporary-overlay-map): New function.
3585
3586 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3587
3588 * subr.el (user-error): New function.
3589 * window.el (switch-to-buffer):
3590 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
3591 (smerge-match-conflict):
3592 * simple.el (previous-matching-history-element)
3593 (next-matching-history-element, goto-history-element, undo-more)
3594 (undo-start):
3595 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
3596 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
3597 (next-file, tags-loop-scan, list-tags, complete-tag):
3598 * progmodes/compile.el (compilation-loop):
3599 * mouse.el (mouse-minibuffer-check):
3600 * man.el (Man-bgproc-sentinel, Man-goto-page):
3601 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
3602 (Info-history-forward, Info-follow-reference, Info-menu)
3603 (Info-extract-menu-item, Info-extract-menu-counting)
3604 (Info-forward-node, Info-backward-node, Info-next-menu-item)
3605 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
3606 (Info-next-reference, Info-prev-reference, Info-index)
3607 (Info-index-next, Info-follow-nearest-node)
3608 (Info-copy-current-node-name):
3609 * imenu.el (imenu--make-index-alist)
3610 (imenu-default-create-index-function, imenu-add-to-menubar):
3611 * files.el (basic-save-buffer, recover-file):
3612 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3613 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
3614 (checkdoc-message-text, checkdoc-defun):
3615 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
3616 * cus-edit.el (customize-changed-options, customize-rogue)
3617 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
3618 (custom-variable-mark-to-reset-standard)
3619 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
3620 (custom-file):
3621 * completion.el (check-completion-length):
3622 * comint.el (comint-search-arg)
3623 (comint-previous-matching-input-string-position)
3624 (comint-previous-matching-input)
3625 (comint-replace-by-expanded-history-before-point, comint-send-input)
3626 (comint-copy-old-input, comint-backward-matching-input)
3627 (comint-goto-process-mark, comint-set-process-mark):
3628 * calendar/calendar.el (calendar-cursor-to-date): Use it.
3629 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
3630
3631 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3632
3633 * dabbrev.el (dabbrev--ignore-case-p): New function.
3634 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
3635 Use it.
3636
3637 * files.el (automount-dir-prefix): Mark as obsolete.
3638
3639 2012-05-04 Glenn Morris <rgm@gnu.org>
3640
3641 * patcomp.el, play/bruce.el: Move to obsolete/.
3642
3643 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
3644
3645 Fix minor Y10k bugs.
3646 * arc-mode.el (archive-unixdate):
3647 * autoinsert.el (auto-insert-alist):
3648 * calc/calc-forms.el (math-this-year):
3649 * emacs-lisp/copyright.el (copyright-current-year)
3650 (copyright-update-year, copyright):
3651 * tar-mode.el (tar-clip-time-string):
3652 * time.el (display-time-update):
3653 Don't assume years have 4 digits.
3654
3655 2012-05-04 Chong Yidong <cyd@gnu.org>
3656
3657 * dos-w32.el (file-name-buffer-file-type-alist)
3658 (direct-print-region-use-command-dot-com):
3659 * ffap.el (ffap-menu-regexp):
3660 * find-file.el (ff-special-constructs):
3661 * follow.el (follow-debug):
3662 * forms.el (forms--debug):
3663 * iswitchb.el (iswitchb-all-frames):
3664 * ido.el (ido-all-frames):
3665 * emacs-lisp/timer.el (timer-max-repeats):
3666 * mail/feedmail.el (feedmail-mail-send-hook)
3667 (feedmail-mail-send-hook-queued):
3668 * mail/footnote.el (footnote-signature-separator):
3669 * mail/mailabbrev.el (mail-alias-separator-string)
3670 (mail-abbrev-mode-regexp):
3671 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
3672 * progmodes/idlwave.el (idlwave-libinfo-file)
3673 (idlwave-default-completion-case-is-down)
3674 (idlwave-library-routines): Convert defvars to defcustoms.
3675
3676 * mail/rmail.el (rmail-decode-mime-charset):
3677 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
3678 (idlwave-shell-fix-inserted-breaks)
3679 (idlwave-shell-activate-alt-keybindings)
3680 (idlwave-shell-use-breakpoint-glyph):
3681 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
3682
3683 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3684
3685 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
3686
3687 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
3688
3689 * progmodes/verilog-mode.el (font-lock-keywords):
3690 Fix mis-highligting auto. Reported by Craig Barner.
3691 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
3692 defines from global name space. Reported by Dan Dever.
3693 (verilog-auto-reset, verilog-auto-reset-widths)
3694 (verilog-auto-tieoff): Support using unbased numbers for
3695 AUTORESET and AUTOTIEOFF.
3696 (verilog-submit-bug-report): Update variable list.
3697 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
3698 parenthesis from not matching. Reported by Michael Rytting.
3699 (verilog-auto-template-lint): Fix hash error when linting modules
3700 with no used templates.
3701 (verilog-warn, verilog-warn-error)
3702 (verilog-warn-fatal): When non-interactive report multiple
3703 warnings before exiting. Suggested by Brad Dobbie.
3704 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
3705 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
3706 to report unused template errors. Reported by Brad Dobbie.
3707 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
3708 nets, bug438. Reported by Vns Blore.
3709 (verilog-auto-inout-module, verilog-auto-reg)
3710 (verilog-read-decls, verilog-read-sub-decls-sig)
3711 (verilog-signals-edit-wire-reg, verilog-signals-with):
3712 Fix passing of Verilog data types in ANSI input/output ports
3713 such as "output logic" into the AUTOs. Special case "wire" and
3714 "reg" for backwards compatibility presuming Verilog 2001.
3715 (verilog-auto-ascii-enum): Add "auto enum" as alias.
3716 (verilog-preprocess): Fix replication of preprocess output.
3717 Reported by Brad Dobbie.
3718 (verilog-auto-inst-interfaced-ports):
3719 Create verilog-auto-inst-interfaced-ports, bug429.
3720 Reported by Julian Gorfajn.
3721 (verilog-after-save-font-hook)
3722 (verilog-before-save-font-hook): New variable.
3723 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
3724 (verilog-save-font-mods): Wrap disabling fontification, reported
3725 by David Rogoff.
3726 (verilog-do-indent, verilog-pretty-declarations-auto)
3727 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
3728 Reported by Pierre-David Pfister.
3729 (verilog-set-auto-endcomments): Fix endtask auto comments outside
3730 of class declarations, bug292. Reported by Kevin Heilman.
3731 (verilog-read-decls): Fix 'parameter type' not appearing in
3732 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
3733 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
3734 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
3735 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
3736 Reported by David Kravitz.
3737
3738 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
3739
3740 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
3741 assignment with tests in ifs and for loops.
3742 (verilog-extended-complete-re, verilog-complete-reg): Change so
3743 that DPI inport functions don't look like fuction declarations.
3744 (verilog-pretty-expr): Don't line up assignment
3745 operations to the test and increment in if and for loops
3746 (verilog-extended-complete-re, verilog-complete-reg): Change so
3747 that DPI inport functions don't look like fuction declarations.
3748
3749 2012-05-03 Kenichi Handa <handa@m17n.org>
3750
3751 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
3752 decoding, and show a warning message without signaling an error
3753 (Bug#11282).
3754
3755 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3756
3757 * emacs-lisp/bytecomp.el
3758 (byte-compile-file-form-custom-declare-variable): Compile all elements,
3759 since cconv.el might have introduced :fun-body, internal-make-closure,
3760 and friends for bytecomp to handle (bug#11391).
3761 * custom.el (defcustom): Avoid ((λ ..) ..).
3762
3763 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
3764
3765 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
3766
3767 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
3768
3769 * notifications.el (dbus-debug):
3770 * term/linux.el (gpm-mouse-enable):
3771 * term/screen.el (xterm-register-default-colors): Declare.
3772
3773 2012-05-02 Chong Yidong <cyd@gnu.org>
3774
3775 * cus-start.el (gc-cons-percentage, exec-suffixes)
3776 (dos-display-scancodes, dos-hyper-key, dos-super-key)
3777 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
3778 (make-cursor-line-fully-visible, void-text-area-pointer)
3779 (font-list-limit): Add customization data.
3780
3781 * allout.el (allout-exposure-change-functions)
3782 (allout-structure-added-functions)
3783 (allout-structure-deleted-functions)
3784 (allout-structure-shifted-functions): Rename abnormal hooks from
3785 *-hook, and convert to defcustoms.
3786 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
3787 Convert to defcustoms.
3788 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
3789
3790 * allout-widgets.el: Hook callers changed.
3791
3792 2012-05-02 Eli Zaretskii <eliz@gnu.org>
3793
3794 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
3795 the yanked message in preference to the default value of
3796 buffer-file-coding-system.
3797
3798 2012-05-02 Martin Rudalics <rudalics@gmx.at>
3799
3800 * window.el (display-buffer--action-function-custom-type):
3801 Fix entry.
3802
3803 2012-05-02 Alan Mackenzie <acm@muc.de>
3804
3805 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
3806
3807 2012-05-01 Glenn Morris <rgm@gnu.org>
3808
3809 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
3810
3811 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
3812
3813 * cus-edit.el (custom-variable-documentation): Simplify with format.
3814
3815 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3816 Stefan Monnier <monnier@iro.umontreal.ca>
3817
3818 * simple.el (suggest-key-bindings, execute-extended-command):
3819 Move from keyboard.c.
3820
3821 2012-05-01 Chong Yidong <cyd@gnu.org>
3822
3823 * follow.el: Eliminate advice.
3824 (set-process-filter, process-filter, sit-for): Advice deleted.
3825 (follow-mode-off-hook): Obsolete hook removed.
3826 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
3827 Vars deleted.
3828 (follow-auto): Use a :set function.
3829 (follow-mode): Rewritten. Don't advise process filters.
3830 (follow-switch-to-current-buffer-all, follow-scroll-up)
3831 (follow-scroll-down): Assume follow-mode is bound.
3832 (follow-comint-scroll-to-bottom)
3833 (follow-align-compilation-windows): New functions.
3834 (follow--window-sorter): New function.
3835 (follow-all-followers): Use it to explicitly sort windows by their
3836 positions; don't make assumptions about next-window order.
3837 (follow-windows-start-end, follow-delete-other-windows-and-split)
3838 (follow-calc-win-start): Doc fix.
3839 (follow-windows-aligned-p, follow-select-if-visible): Don't call
3840 vertical-motion unnecessarily.
3841 (follow-adjust-window): New function.
3842 (follow-post-command-hook): Use it.
3843 (follow-call-set-process-filter, follow-call-process-filter)
3844 (follow-intercept-process-output, follow-tidy-process-filter-alist)
3845 (follow-stop-intercept-process-output, follow-generic-filter):
3846 Functions deleted.
3847 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
3848 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
3849 New functions, replacing advice on scroll-bar-* commands.
3850 (follow-mwheel-scroll): New function (Bug#4112).
3851
3852 * comint.el (comint-adjust-point): New function.
3853 (comint-postoutput-scroll-to-bottom): Use it.
3854 Call follow-comint-scroll-to-bottom for Follow mode buffers.
3855
3856 2012-05-01 Glenn Morris <rgm@gnu.org>
3857
3858 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
3859 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
3860 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
3861 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
3862 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
3863 Remove no-byte-compile setting.
3864
3865 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
3866
3867 * minibuffer.el (completion-table-with-quoting): Fix compatibility
3868 all-completions code to not return a number in the last cdr.
3869
3870 2012-04-30 Leo Liu <sdl.web@gmail.com>
3871
3872 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
3873 read-only error.
3874
3875 2012-04-29 Chong Yidong <cyd@gnu.org>
3876
3877 * follow.el (follow-calc-win-end): Rewrite to handle partial
3878 screen lines correctly (Bug#8390).
3879 (follow-avoid-tail-recenter): Minor cleanup.
3880
3881 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
3882
3883 Avoid the obsolete `assoc' package.
3884 * speedbar.el (speedbar-refresh): Avoid adelete.
3885 (speedbar-file-lists): Simplify and avoid aput.
3886 * man.el (Man--sections, Man--refpages): New vars, replacing
3887 Man-sections-alist and Man-refpages-alist.
3888 (Man-build-section-alist, Man-build-references-alist):
3889 Use them; avoid aput.
3890 (Man--last-section, Man--last-refpage): New vars.
3891 (Man-follow-manual-reference): Use them.
3892 Use the `default' arg of completing-read.
3893 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
3894
3895 2012-04-27 Chong Yidong <cyd@gnu.org>
3896
3897 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
3898
3899 * startup.el (x-apply-session-resources): New function.
3900
3901 * term/ns-win.el (ns-initialize-window-system):
3902 * term/w32-win.el (w32-initialize-window-system):
3903 * term/x-win.el (x-initialize-window-system): Use it to properly
3904 set menu-bar-mode and other vars from X resources, even if the
3905 initial frame is not a window-system frame (Bug#2299).
3906
3907 * subr.el (read-key): Avoid running filter function when setting
3908 up temporary tool bar entries (Bug#9922).
3909
3910 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3911
3912 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
3913 (Bug#11344)
3914
3915 2012-04-27 Chong Yidong <cyd@gnu.org>
3916
3917 * select.el (xselect--encode-string): New function, split from
3918 xselect-convert-to-string.
3919 (xselect-convert-to-string): Use it.
3920 (xselect-convert-to-filename, xselect-convert-to-os)
3921 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
3922 returned strings are properly encoded (Bug#11315).
3923
3924 2012-04-27 Chong Yidong <cyd@gnu.org>
3925
3926 * simple.el (delete-active-region): Move to killing custom group.
3927
3928 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3929
3930 * progmodes/which-func.el (which-func-current): Quote %
3931 characters for mode-line processing.
3932
3933 2012-04-27 Chong Yidong <cyd@gnu.org>
3934
3935 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
3936 reaching eob (Bug#11286).
3937
3938 2012-04-27 Eli Zaretskii <eliz@gnu.org>
3939
3940 * progmodes/gdb-mi.el (gdb-control-level): New variable.
3941 (gdb): Make it buffer-local and init to zero.
3942 (gdb-control-commands-regexp): New variable.
3943 (gdb-send): Don't wrap in "-interpreter-exec console" if
3944 gdb-control-level is positive. Increment gdb-control-level
3945 whenever the command matches gdb-control-commands-regexp, and
3946 decrement it each time the command is "end". (Bug#11279)
3947
3948 2012-04-27 Martin Rudalics <rudalics@gmx.at>
3949
3950 * window.el (adjust-window-trailing-edge, enlarge-window)
3951 (shrink-window, window-resize):
3952 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
3953 windows (Bug#11276).
3954
3955 2012-04-27 Chong Yidong <cyd@gnu.org>
3956
3957 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
3958 fix "missing prefix" warning. All callers changed.
3959
3960 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
3961
3962 * emacs-lisp/assoc.el: Move to obsolete/.
3963
3964 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3965
3966 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
3967
3968 * term/ns-win.el (ns-define-service):
3969 * progmodes/pascal.el (pascal-goto-defun):
3970 * progmodes/js.el (js--read-tab):
3971 * progmodes/etags.el (tags-lazy-completion-table):
3972 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
3973 * emacs-lisp/ewoc.el (ewoc--wrap):
3974 * emacs-lisp/assoc.el (aput, adelete, amake):
3975 * doc-view.el (doc-view-convert-current-doc):
3976 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
3977
3978 2012-04-26 Chong Yidong <cyd@gnu.org>
3979
3980 * image.el (image-type-from-buffer): Only return supported image
3981 type (Bug#9045).
3982
3983 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
3984 value, for symmetry with diff-end-of-hunk.
3985 (diff-split-hunk, diff-find-source-location)
3986 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
3987 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
3988 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
3989 compute the relevant hunk or file properly (Bug#6005).
3990 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
3991
3992 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3993
3994 * vc/vc-mtn.el:
3995 * vc/vc-hg.el:
3996 * vc/vc-git.el:
3997 * vc/vc-dir.el:
3998 * vc/vc-cvs.el:
3999 * vc/vc-bzr.el:
4000 * vc/vc-arch.el:
4001 * vc/vc.el: Replace lexical-let by lexical-binding.
4002 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
4003 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
4004 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
4005
4006 2012-04-26 Chong Yidong <cyd@gnu.org>
4007
4008 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
4009 (diff-mode-shared-map): Bind it to / and [remap undo].
4010
4011 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
4012 (ediff-window-setup-function): Use it as the default, to set up
4013 windows based on whether the current frame is graphical (Bug#2138).
4014 (ediff-choose-window-setup-function-automatically): Make obsolete.
4015
4016 * vc/ediff-init.el: Always define ediff-pixel-width/height.
4017
4018 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
4019
4020 * ffap.el: Remove old code for obsolete package.
4021 (ffap-complete-as-file-p): Remove.
4022
4023 Use completion-table-with-quoting for comint and pcomplete.
4024 * comint.el (comint--unquote&requote-argument)
4025 (comint--unquote-argument, comint--requote-argument): New functions.
4026 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
4027 (comint-quote-filename): Use regexp-opt-charset.
4028 (comint--common-suffix, comint--common-quoted-suffix)
4029 (comint--table-subvert): Remove.
4030 (comint-unquote-function, comint-requote-function): New vars.
4031 (comint--complete-file-name-data): Use them with
4032 completion-table-with-quoting.
4033 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
4034 * pcomplete.el (pcomplete-arg-quote-list)
4035 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
4036 (pcomplete-unquote-argument-function): Default to non-nil.
4037 (pcomplete-unquote-argument): Simplify.
4038 (pcomplete--common-quoted-suffix): Remove.
4039 (pcomplete-requote-argument-function): New var.
4040 (pcomplete--common-suffix): New function.
4041 (pcomplete-completions-at-point): Use completion-table-with-quoting
4042 and completion-table-subvert.
4043
4044 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
4045 (minibuffer--double-dollars): Preserve properties.
4046 (completion--sifn-requote): New function.
4047 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
4048
4049 * minibuffer.el: Add support for completion of quoted/escaped data.
4050 (completion-table-with-quoting, completion-table-subvert): New funs.
4051 (completion--twq-try, completion--twq-all): New functions.
4052 (completion--nth-completion): New function.
4053 (completion-try-completion, completion-all-completions): Use it.
4054
4055 2012-04-25 Leo Liu <sdl.web@gmail.com>
4056
4057 * progmodes/python.el (python-pdbtrack-get-source-buffer):
4058 Use compilation-message if available to find real filename.
4059
4060 2012-04-25 Chong Yidong <cyd@gnu.org>
4061
4062 * vc/diff-mode.el (diff-setup-whitespace): New function.
4063 (diff-mode): Use it.
4064
4065 * vc/diff.el (diff-sentinel):
4066 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
4067 Whitespace mode variables based on diff style (Bug#8612).
4068
4069 2012-04-25 Leo Liu <sdl.web@gmail.com>
4070
4071 * progmodes/python.el (python-send-region): Add suffix .py to the
4072 temp file.
4073
4074 * files.el (auto-mode-alist): Use javascript-mode instead.
4075
4076 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
4077
4078 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
4079
4080 * net/soap-client.el (soap-resolve-references-for-sequence-type)
4081 (soap-resolve-references-for-array-type): Hack to prevent self
4082 references, see Bug#9.
4083 (soap-parse-envelope): Report the contents of the 'detail' node
4084 when receiving a fault reply.
4085 (soap-parse-envelope): Report the contents of the entire 'detail' node.
4086
4087 * net/soap-inspect.el (soap-sample-value-for-simple-type)
4088 (soap-inspect-simple-type): New function.
4089
4090 * net/soap-client.el (soap-simple-type): New struct.
4091 (soap-default-xsd-types, soap-default-soapenc-types)
4092 (soap-decode-basic-type, soap-encode-basic-type):
4093 support unsignedInt and double basic types.
4094 (soap-resolve-references-for-simple-type)
4095 (soap-parse-simple-type, soap-encode-simple-type): New function.
4096 (soap-parse-schema): Parse xsd:simpleType declarations.
4097
4098 * net/soap-client.el (soap-default-xsd-types)
4099 (soap-default-soapenc-types): Add integer, byte and anyURI types.
4100 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
4101 the local name of "soapenc:Array".
4102 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
4103 decoding integer, byte and anyURI xsd types.
4104
4105 2012-04-25 Chong Yidong <cyd@gnu.org>
4106
4107 * cus-edit.el (custom-buffer-create-internal): Update header text.
4108
4109 2012-04-25 Eli Zaretskii <eliz@gnu.org>
4110
4111 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
4112 settings on 'system-type', not on 'window-system'. On MS-Windows,
4113 set interactive-mode on in GDB.
4114
4115 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4116
4117 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
4118 (ruby-syntax-propertize-regexp): Remove.
4119 (ruby-syntax-propertize-function): Split regexp into chunks.
4120 Match following code directly.
4121
4122 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
4123
4124 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
4125 (ruby-syntax-propertize-regexp): New function.
4126 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
4127 by a special keyword.
4128
4129 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
4130 (ruby-syntax-general-delimiters-goto-beg)
4131 (ruby-syntax-propertize-general-delimiters): New functions.
4132 (ruby-syntax-propertize-function): Use them to handle GDL.
4133 (ruby-font-lock-keywords): Move old handling of GDL...
4134 (ruby-font-lock-syntactic-keywords): .. to here.
4135 (ruby-calculate-indent): Adjust indentation for GDL.
4136
4137 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
4138
4139 * notifications.el (top): Remove unneeded declarations.
4140 (notifications-specification-version): Change to "1.2".
4141 (notifications-interface, notifications-notify-method)
4142 (notifications-close-notification-method): Fix docstring.
4143 (notifications-get-capabilities-method): New defconst.
4144 (notifications-notify): Add :action-items, :resident and
4145 :transient hints. Change "image_data" to "image-data" and
4146 "image_path" to "image-path".
4147 (notifications-get-capabilities): New defun.
4148
4149 2012-04-24 Leo Liu <sdl.web@gmail.com>
4150
4151 * progmodes/python.el: Move hideshow setup to the end.
4152
4153 2012-04-24 Martin Rudalics <rudalics@gmx.at>
4154
4155 * window.el (handle-select-window): Clear echo area since this is
4156 no more done by read_char (Bug#11304).
4157
4158 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4159
4160 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
4161 and `/ M' to filter-derived-mode.
4162 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
4163 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
4164 (ibuffer-mark-by-mode): Use default rather than initial-input.
4165 (ibuffer-filter-by-derived-mode): Autoload and require-match.
4166
4167 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
4168
4169 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
4170 (ibuffer-filter-by-derived-mode): New filter.
4171 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
4172
4173 2012-04-23 Andreas Politz <politza@fh-trier.de>
4174
4175 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
4176
4177 2012-04-23 Chong Yidong <cyd@gnu.org>
4178
4179 * cus-edit.el (customize-apropos, customize-apropos-options):
4180 Disable matching of non-option variables (Bug#11176).
4181 (customize-option, customize-option-other-window)
4182 (customize-changed-options): Doc fix.
4183 (customize-apropos-options, customize-apropos-faces)
4184 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
4185
4186 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
4187 Fix word list splitting (Bug#11132).
4188 (apropos-symbol, apropos-keybinding, apropos-label)
4189 (apropos-property, apropos-function-button)
4190 (apropos-variable-button, apropos-misc-button): New faces.
4191 (apropos-symbol-face, apropos-keybinding-face)
4192 (apropos-label-face, apropos-property-face, apropos-match-face):
4193 Variables removed (Bug#8396).
4194 (apropos-library-button, apropos-format-plist, apropos-print)
4195 (apropos-print-doc, apropos-describe-plist): Callers changed.
4196
4197 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
4198
4199 * net/xesam.el (xesam-mode-map): Use let-bound map in
4200 initialization. (Bug#11292)
4201
4202 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4203
4204 Preserve ispell session localwords when switching back to
4205 original buffer.
4206
4207 * textmodes/ispell.el (ispell-buffer-session-localwords):
4208 New buffer-local variable to hold buffer session localwords.
4209 (ispell-kill-ispell): Add option 'clear to delete session
4210 localwords.
4211 (ispell-command-loop, ispell-change-dictionary)
4212 (ispell-buffer-local-words): Preserve session localwords when
4213 needed.
4214
4215 * textmodes/flyspell.el (flyspell-process-localwords)
4216 (flyspell-do-correct): Preserve session localwords when needed.
4217
4218 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4219
4220 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
4221 using obsolete `translation-table-for-input'.
4222 (ispell-word, ispell-process-line, ispell-complete-word):
4223 Use plain `insert' instead of removed `ispell-insert-word'.
4224
4225 2012-04-22 Chong Yidong <cyd@gnu.org>
4226
4227 * cus-edit.el (custom-variable-menu)
4228 (custom-variable-reset-saved, custom-face-menu)
4229 (custom-face-reset-saved): If there is no saved value, make the
4230 "reset-saved" operation bring back the default (Bug#9509).
4231 (custom-face-state): Properly detect themed faces.
4232
4233 * faces.el (face-spec-set): Stop supporting deprecated form of
4234 third arg.
4235
4236 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
4237
4238 Move functions from C to Lisp. Make non-blocking method calls
4239 the default. Implement further D-Bus standard interfaces.
4240
4241 * net/dbus.el (dbus-message-internal): Declare function.
4242 Remove unneeded function declarations.
4243 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
4244 (dbus-message-type-method-return, dbus-message-type-error)
4245 (dbus-message-type-signal): Declare variables. Remove local
4246 definitions.
4247 (dbus-interface-dbus, dbus-interface-peer)
4248 (dbus-interface-introspectable, dbus-interface-properties)
4249 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
4250 Adapt docstring.
4251 (dbus-interface-objectmanager): New defconst.
4252 (dbus-call-method, dbus-call-method-asynchronously)
4253 (dbus-send-signal, dbus-method-return-internal)
4254 (dbus-method-error-internal, dbus-register-service)
4255 (dbus-register-signal, dbus-register-method): New defuns, moved
4256 from dbusbind.c
4257 (dbus-call-method-handler, dbus-setenv)
4258 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
4259 New defuns.
4260 (dbus-call-method-non-blocking): Make it an obsolete function.
4261 (dbus-unregister-object, dbus-unregister-service)
4262 (dbus-handle-event, dbus-register-property)
4263 (dbus-property-handler): Obey the new structure of
4264 `bus-registered-objects'.
4265 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
4266 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4267 Use `dbus-call-method'.
4268
4269 2012-04-22 Chong Yidong <cyd@gnu.org>
4270
4271 * cus-edit.el (custom-commands, custom-reset-menu)
4272 (Custom-reset-standard): Tweak labels.
4273 (custom-reset-button-menu): Change default to t.
4274 (custom-buffer-create-internal): For the custom-reset-button-menu
4275 case, put the revert button first.
4276 (custom-group-subtitle): New face.
4277 (custom-group-value-create): Align docstring to a specific column.
4278
4279 * wid-edit.el (widget-documentation-link-add): Don't handle
4280 indentation in this function.
4281 (widget-documentation-string-indent-to): New function.
4282 (widget-documentation-string-value-create): Use it.
4283
4284 * autorevert.el (auto-revert):
4285 * epg-config.el (epg):
4286 * ibuffer.el (ibuffer):
4287 * mpc.el (mpc):
4288 * ses.el (ses):
4289 * eshell/eshell.el (eshell):
4290 * net/ange-ftp.el (ange-ftp):
4291 * progmodes/ebnf2ps.el (postscript):
4292 * progmodes/flymake.el (flymake):
4293 * progmodes/prolog.el (prolog):
4294 * progmodes/verilog-mode.el (verilog-mode):
4295 * progmodes/which-func.el (which-func):
4296 * term/xterm.el (xterm):
4297 * textmodes/picture.el (picture):
4298 * textmodes/tildify.el (tildify):
4299 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
4300 customization buffers.
4301
4302 2012-04-22 Alan Mackenzie <acm@muc.de>
4303
4304 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
4305 Adding a ) can hide the resulting (..) from searches. Fix it.
4306 Bound the backward search to the position of the existing (.
4307
4308 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
4309
4310 * progmodes/verilog-mode.el (verilog-mode): Check whether
4311 which-func-modes is t before adding verilog-mode.
4312 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4313
4314 2012-04-21 Leo Liu <sdl.web@gmail.com>
4315
4316 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
4317
4318 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
4319
4320 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
4321 filling of the last column of a table (Bug#5635).
4322 (woman-find-next-control-line): New arg, specifying an additional
4323 regexp component for the control line.
4324 (woman2-roff-buffer): Use it.
4325 (woman-break-table): New function.
4326 (woman2-TS): Use it.
4327
4328 2012-04-21 Chong Yidong <cyd@gnu.org>
4329
4330 * woman.el (woman-set-buffer-display-table, woman-decode-region)
4331 (woman-horizontal-escapes, woman-negative-vertical-space)
4332 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
4333 (WoMan-warn-ignored): Use ?\s instead of ?\ .
4334
4335 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4336
4337 * minibuffer.el (completion-file-name-table): Complete user names.
4338
4339 2012-04-20 Leo Liu <sdl.web@gmail.com>
4340
4341 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
4342 and pcase-let*.
4343
4344 2012-04-20 Chong Yidong <cyd@gnu.org>
4345
4346 * server.el (server-execute): Respect initial-buffer-choice if it
4347 is a string and there are no files to open (Bug#2825).
4348 (server-create-window-system-frame, server-create-tty-frame):
4349 Don't switch buffers here.
4350 (server-process-filter): Only try to open a window system frame if
4351 compiled with graphical support (Bug#8314).
4352
4353 2012-04-20 Dan Nicolaescu <dann@gnu.org>
4354
4355 * battery.el (battery-echo-area-format): Display remaining time
4356 for sysfs backend too (Bug#11269).
4357 (battery-linux-sysfs): Fix conditional for the charge.
4358
4359 2012-04-20 Chong Yidong <cyd@gnu.org>
4360
4361 * progmodes/gdb-mi.el (gdb): Revert previous change.
4362 (gdb-inferior-io--init-proc): New function.
4363 (gdb-init-1): Use it.
4364 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
4365 responsible for allocating a new pty and hooking it to gdb when
4366 the old pty gets an EIO due to process exit.
4367 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
4368 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
4369 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
4370
4371 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4372
4373 * window.el (window-min-size, window-sizable, window-min-delta)
4374 (window-max-delta, window--resizable, window-resizable)
4375 (window-total-size, window-full-height-p, window-full-width-p)
4376 (window-in-direction, window--resize-mini-window, window-resize)
4377 (window--resize-child-windows-normal)
4378 (window--resize-child-windows, window--resize-siblings)
4379 (window--resize-this-window, adjust-window-trailing-edge)
4380 (enlarge-window, shrink-window): Doc fixes.
4381
4382 2012-04-20 Chong Yidong <cyd@gnu.org>
4383
4384 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
4385 New function to call delete-process on the gdb-inferior buffer's pty.
4386 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
4387 pty process (Bug#11273).
4388 (gdb-update): New arg to suppress talking to the gdb process.
4389 (gdb-done-or-error): Use it.
4390 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
4391 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
4392 sentinel not being called.
4393
4394 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
4395
4396 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
4397
4398 2012-04-20 Glenn Morris <rgm@gnu.org>
4399
4400 * net/network-stream.el (open-network-stream): Doc fix.
4401
4402 2012-04-20 Chong Yidong <cyd@gnu.org>
4403
4404 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
4405
4406 2012-04-20 Alan Mackenzie <acm@muc.de>
4407
4408 Ensure searching for keywords is case sensitive.
4409
4410 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
4411 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
4412 (c-defun-name, c-mark-function, c-cpp-define-name)
4413 (c-comment-indent, c-scan-conditionals, c-indent-defun)
4414 (c-context-line-break): Bind case-fold-search to nil.
4415
4416 * progmodes/cc-mode.el (c-font-lock-fontify-region):
4417 Bind case-fold-search to nil.
4418
4419 2012-04-20 Chong Yidong <cyd@gnu.org>
4420
4421 * mail/sendmail.el (mail-bury): Call return action with the right
4422 Rmail buffer (Bug#11242).
4423
4424 * server.el (server-process-filter): Handle corner case where both
4425 tty and nowait options are present (Bug#11102).
4426
4427 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4428
4429 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
4430 (top level): Put into the executable the ident-style '$Id:' tag on
4431 windows-nt as well.
4432
4433 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * electric.el (electric-indent-post-self-insert-function): Check that
4436 electric-indent-mode is enabled in current buffer.
4437
4438 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4439
4440 * imenu.el (imenu-progress-message): Restore; it is "used" in
4441 erc/erc-imenu.el and net/snmp-mode.el.
4442
4443 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4444
4445 * avoid.el (mouse-avoidance-mode): Mark unused arg.
4446 (mouse-avoidance-nudge-mouse): Remove unused binding.
4447
4448 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
4449
4450 * descr-text.el (describe-char):
4451 * progmodes/python.el (python-describe-symbol):
4452 Don't call `toggle-read-only', set `buffer-read-only'.
4453
4454 * imenu.el (imenu-default-goto-function): Mark unused args.
4455 (imenu-progress-message): Remove obsolete macro; all callers changed.
4456
4457 * subr.el (keymap-canonicalize): Remove unused binding.
4458 (read-passwd): Mark unused arg.
4459
4460 * tutorial.el (tutorial--display-changes): Remove unused binding.
4461 (tutorial--save-tutorial-to): Remove unused variable.
4462
4463 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
4464 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
4465 (package-generate-autoloads, package-menu--generate)
4466 (package-menu--find-upgrades): Remove unused bindings.
4467
4468 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
4469 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
4470 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
4471 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
4472 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
4473 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
4474 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
4475 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
4476 (cua-delete-char-rectangle): Mark unused args.
4477 (cua-align-rectangle): Remove unused binding.
4478
4479 * mail/rmail.el (compilation--message->loc)
4480 (epa--find-coding-system-for-mime-charset): Declare.
4481
4482 * net/dbus.el (dbus-register-service): Declare.
4483 (dbus-name-owner-changed-handler): Remove unused binding.
4484
4485 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
4486 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
4487 (nxml-scan-backward-within): Mark unused arg.
4488 (nxml-dynamic-markup-word): Remove unused binding.
4489
4490 * mouse.el (mouse-menu-major-mode-map):
4491 * emacs-lisp/authors.el (authors-scan-change-log)
4492 (authors-add-to-author-list):
4493 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
4494 * emacs-lisp/smie.el (smie-auto-fill):
4495 * mail/sendmail.el (mail-bury):
4496 * mail/unrmail.el (unrmail):
4497 * net/tls.el (open-tls-stream):
4498 * textmodes/picture.el (picture-mouse-set-point):
4499 Remove unused bindings.
4500
4501 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
4502
4503 * net/tramp.el (tramp-action-password): Let-bind
4504 `enable-recursive-minibuffers' to t.
4505
4506 2012-04-18 Sam Steingold <sds@gnu.org>
4507
4508 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
4509 instead of 'string to accommodate values like [f11].
4510 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
4511 * progmodes/gdb-mi.el: Likewise.
4512
4513 2012-04-18 Leo Liu <sdl.web@gmail.com>
4514
4515 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
4516 current buffer.
4517 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
4518 LOCAL is nil.
4519
4520 2012-04-18 Chong Yidong <cyd@gnu.org>
4521
4522 * simple.el (line-move): Use forward-line if in batch mode
4523 (Bug#11053).
4524
4525 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
4526
4527 * files.el (after-find-file): Do not try to add a final newline if
4528 the buffer is read-only (Bug#11156).
4529
4530 2012-04-17 Richard Stallman <rms@gnu.org>
4531
4532 * mail/rmail.el (rmail-start-mail):
4533 Pass (rmail-mail-return...) for the return-action.
4534 Pass (rmail-yank-current-message...) for the yank-action.
4535 (rmail-yank-current-message): New function.
4536 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
4537 (rmail-reply): Likewise.
4538 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
4539
4540 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
4541 buffer, not the last. Reject temp buffers. Use the rmail-mode
4542 buffer, not newbuf.
4543
4544 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
4545
4546 * server.el (server-ensure-safe-dir): Simplify.
4547
4548 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4549
4550 * emacs-lisp/smie.el: Provide smarter auto-filling.
4551 (smie-auto-fill): New function.
4552 (smie-setup): Use it.
4553
4554 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
4555
4556 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
4557
4558 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
4559 (comment-indent): Use it.
4560
4561 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4562
4563 * ses.el: The overall change is to add cell renaming, that is
4564 setting fancy names for cell symbols other than name matching
4565 "\\`[A-Z]+[0-9]+\\'" regexp .
4566 (ses-localvars): Add ses--renamed-cell-symb-list.
4567 (ses-create-cell-variable): New defun.
4568 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4569 (ses-relocate-formula): Relocate formulas only for cells the
4570 symbols of which are not renamed, i.e. symbols whose names do not
4571 match regexp "\\`[A-Z]+[0-9]+\\'".
4572 (ses-relocate-all): Relocate values only for cells the symbols of
4573 which are not renamed.
4574 (ses-load): Create cells variables as the (ses-cell ...) are read,
4575 in order to check row col consistency with cell symbol name only
4576 for cells that are not renamed.
4577 (ses-replace-name-in-formula): New defun.
4578 (ses-rename-cell): New defun.
4579
4580 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
4581
4582 * progmodes/perl-mode.el (perl-indent-parens-as-block):
4583 New option (bug#11118).
4584 (perl-calculate-indent): Respect it.
4585
4586 2012-04-17 Glenn Morris <rgm@gnu.org>
4587
4588 * dired-aux.el (dired-mark-read-string): Doc fix.
4589
4590 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
4591
4592 * dired-aux.el (dired-mark-read-string): Offer optional completion.
4593 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
4594
4595 2012-04-17 Glenn Morris <rgm@gnu.org>
4596
4597 * mouse.el (mouse-drag-track):
4598 * speedbar.el (speedbar-frame-mode):
4599 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
4600
4601 2012-04-16 Leo Liu <sdl.web@gmail.com>
4602
4603 * progmodes/python.el: Trivial cleanup.
4604
4605 2012-04-16 Glenn Morris <rgm@gnu.org>
4606
4607 * vc/vc.el (vc-string-prefix-p):
4608 * vc/pcvs-util.el (cvs-string-prefix-p):
4609 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
4610 * mpc.el (mpc-string-prefix-p):
4611 Make all of these into obsolete aliases for string-prefix-p.
4612 Update callers.
4613 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
4614
4615 * textmodes/two-column.el: Move custom options to the start.
4616 (frame-width): Remove compat definition.
4617 (2C-associate-buffer, 2C-dissociate):
4618 Use with-current-buffer rather than save-excursion.
4619 (2C-dissociate): Force a mode-line update.
4620 (2C-autoscroll): Use ignore-errors.
4621
4622 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
4623 Autoload trivia.
4624
4625 * emacs-lisp/cl-extra.el (*random-state*):
4626 Remove unnecessary declaration.
4627
4628 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
4629
4630 * play/cookie1.el (cookie-snarf):
4631 Give an explicit error if input file cannot be read.
4632
4633 * play/yow.el (yow-file): Use expand-file-name rather than concat.
4634
4635 * progmodes/perl-mode.el (c-macro-expand):
4636 Remove unnecessary autoload (it is in loaddefs.el).
4637
4638 * textmodes/picture.el (picture-desired-column)
4639 (picture-update-desired-column): Convert comments to doc-strings.
4640 (picture-substitute): Remove function.
4641 (picture-mode-map): Initialize in the defvar.
4642
4643 * woman.el: Remove eval-after-load for tar-mode.
4644 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
4645 (woman-tar-extract-file): Autoload it.
4646
4647 * frame.el (automatic-hscrolling): Make this alias obsolete.
4648
4649 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4650
4651 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
4652 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
4653 (ispell-dictionary-base-alist): Revert to original XEmacs
4654 friendly version for default. [:alpha:] will be added in
4655 `ispell-set-spellchecker-params' if needed.
4656
4657 2012-04-16 Chong Yidong <cyd@gnu.org>
4658
4659 * image.el (imagemagick--file-regexp): New variable.
4660 (imagemagick-register-types): Use it.
4661 (imagemagick-types-inhibit): Add :set function. Allow new value
4662 of t to inhibit all types.
4663
4664 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
4665 so we can preload it.
4666
4667 * loadup.el (fboundp): Preload regexp-opt, needed by
4668 imagemagick-register-types.
4669
4670 2012-04-15 Chong Yidong <cyd@gnu.org>
4671
4672 * frame.el (scrolling): Remove nearly unused customization group.
4673
4674 * scroll-all.el (scroll-all-mode): Move to windows group.
4675
4676 2012-04-15 Chong Yidong <cyd@gnu.org>
4677
4678 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
4679
4680 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4681
4682 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4683 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
4684
4685 2012-04-15 Glenn Morris <rgm@gnu.org>
4686
4687 * simple.el (process-file-side-effects): Doc fix.
4688
4689 2012-04-15 Glenn Morris <rgm@gnu.org>
4690
4691 * international/mule-cmds.el (set-language-environment): Doc fix.
4692
4693 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
4694
4695 * server.el (server-auth-key, server-generate-key): Doc fixes.
4696 (server-get-auth-key): Doc fix. Use `string-match-p'.
4697 (server-start): Reflow docstring.
4698
4699 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
4700
4701 * server.el (server-generate-key): `called-interactively-p'
4702 requires a parameter.
4703
4704 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
4705
4706 * server.el (server-auth-key): New variable.
4707 (server-generate-key, server-get-auth-key): New function.
4708 (server-start): Use the new variable and functions to allow
4709 setting a permanent server key (bug#9423).
4710
4711 2012-04-14 Leo Liu <sdl.web@gmail.com>
4712
4713 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
4714
4715 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
4716
4717 Spelling fixes.
4718 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
4719 Emacs uses American spelling.
4720
4721 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
4722
4723 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
4724 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
4725 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
4726 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
4727
4728 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4729
4730 * progmodes/which-func.el (which-func-modes): Change default.
4731
4732 2012-04-14 Kim F. Storm <storm@cua.dk>
4733
4734 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
4735 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
4736
4737 2012-04-14 Chong Yidong <cyd@gnu.org>
4738
4739 * custom.el (custom-theme-set-variables): Doc fix.
4740
4741 2012-04-14 Glenn Morris <rgm@gnu.org>
4742
4743 * international/mule.el (set-auto-coding-for-load): Doc fix.
4744
4745 2012-04-14 Alan Mackenzie <acm@muc.de>
4746
4747 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
4748 imenu work again for Objective C Mode. Correct the *-index values,
4749 these having been disturbed by a previous change in 2011-08.
4750
4751 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
4752 Correct two search limits.
4753
4754 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4755
4756 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
4757
4758 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
4759
4760 * international/characters.el: Fix sorting.
4761
4762 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4763
4764 * international/characters.el: Add more missing Latin case pairs.
4765
4766 2012-04-14 Glenn Morris <rgm@gnu.org>
4767
4768 * files.el (dir-locals-set-class-variables): Doc fix.
4769
4770 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4771
4772 * international/characters.el: Add set-case-syntax-pair call for
4773 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
4774 counterpart. (Bug#11209)
4775
4776 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
4777
4778 2012-04-14 Glenn Morris <rgm@gnu.org>
4779
4780 * calendar/holidays.el (calendar-check-holidays): Doc fix.
4781
4782 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4783
4784 * textmodes/ispell.el (ispell-dictionary-base-alist):
4785 Add data for Hebrew.
4786
4787 2012-04-14 Chong Yidong <cyd@gnu.org>
4788
4789 * net/rcirc.el (rcirc-cmd-quit):
4790 Revert 2012-03-18 change (Bug#11192).
4791
4792 2012-04-14 Glenn Morris <rgm@gnu.org>
4793
4794 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
4795
4796 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4797
4798 * minibuffer.el (completion-in-region-mode-map):
4799 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
4800
4801 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
4802
4803 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
4804
4805 2012-04-13 Masatake YAMATO <yamato@redhat.com>
4806
4807 * minibuffer.el (minibuffer-local-filename-syntax): New variable
4808 to allow `C-M-f' and `C-M-b' to move to the nearest path
4809 separator (bug#9511).
4810
4811 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
4812
4813 * avoid.el: Require cl when compiling. And also move the
4814 `provide' to the end.
4815
4816 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4817
4818 * avoid.el (mouse-avoidance-banish-position): New variable.
4819 (mouse-avoidance-banish-destination): Use it (bug#10165).
4820
4821 2012-04-13 Leo Liu <sdl.web@gmail.com>
4822
4823 * progmodes/which-func.el (which-func-modes): Add objc-mode.
4824
4825 2012-04-13 Ken Brown <kbrown@cornell.edu>
4826
4827 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
4828 this is no longer needed now that cygstart understands file:// URLs.
4829 (browse-url-filename-alist): For the same reason, don't modify
4830 file:// URLs on Cygwin.
4831
4832 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4833
4834 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
4835 the region on shift if the binding is already shifted (bug#11221).
4836
4837 2012-04-12 Glenn Morris <rgm@gnu.org>
4838
4839 * mail/mailpost.el: Move to obsolete/.
4840
4841 2012-04-12 Drew Adams <drew.adams@oracle.com>
4842
4843 * imenu.el (imenu--generic-function): Ignore invisible definitions
4844 (bug#10123).
4845
4846 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
4847
4848 * hexl.el (hexl-bits): New variable.
4849 (hexl-options): Mention the variable in the doc string.
4850 (hexl-rulerise, hexl-line-displen): New functions.
4851 (hexl-mode): Mention the new variable.
4852 (hexl-mode, hexl-current-address, hexl-current-address):
4853 Use the displen.
4854 (hexl-ascii-start-column): New function.
4855 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
4856 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
4857
4858 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4859
4860 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
4861 '("-i" ENCODING), in 2 separate command-line arguments, to specify
4862 the encoding, as expected by hunspell.
4863
4864 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4865
4866 * battery.el (battery--linux-sysfs-regexp): New const.
4867 (battery-status-function): Use it. Remove yeeloong special case.
4868 (battery-yeeloong-sysfs): Remove.
4869 (battery-echo-area-format): Remove yeeloong special case.
4870
4871 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4872
4873 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
4874 Reported by Noah Friedman.
4875
4876 * subr.el (read-passwd): Use read-string.
4877
4878 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4879
4880 * vcursor.el (vcursor-move): Increase the priority of the overlay
4881 (bug#9663).
4882
4883 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4884
4885 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
4886 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
4887
4888 2012-04-11 William Stevenson <yhvh2000@gmail.com>
4889
4890 * textmodes/artist.el (artist-mode): Convert artist-mode to use
4891 define-minor-mode (bug#10760).
4892
4893 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4894
4895 * progmodes/grep.el (rgrep): Tweak the find command line so
4896 that directories matching `grep-find-ignored-files' won't be
4897 pruned (bug#10351).
4898
4899 2012-04-11 Chong Yidong <cyd@gnu.org>
4900
4901 * startup.el (command-line): Remove support for long-obsolete
4902 variable font-lock-face-attributes.
4903
4904 2012-04-11 Glenn Morris <rgm@gnu.org>
4905
4906 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
4907
4908 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4909
4910 * window.el (window--state-get-1): Obey window-point-insertion-type.
4911
4912 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
4913
4914 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
4915 to previous function when point is on the first character of a
4916 function. Take care of that in `narrow-to-defun' (bug#6157).
4917
4918 2012-04-11 Glenn Morris <rgm@gnu.org>
4919
4920 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
4921 not just file-errors.
4922
4923 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
4924 (vc-bzr-sha1): Use internal sha1.
4925
4926 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4927
4928 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
4929
4930 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
4931
4932 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
4933 that start in the middle of the line (bug#10496).
4934
4935 2012-04-10 Dan Nicolaescu <dann@gnu.org>
4936
4937 * battery.el (battery-linux-proc-acpi): Only one battery is
4938 discharged at a time, but that seems to confuse battery.el when
4939 computing `rate-type' for the battery not being discharged
4940 (bug#10332).
4941
4942 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4943
4944 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
4945
4946 * international/quail.el: Use dolist and simplify.
4947 (quail-define-package, quail-update-keyboard-layout)
4948 (quail-define-rules): Use dolist.
4949 (quail-insert-kbd-layout, quail-get-translation): CSE.
4950
4951 * tmm.el: Use dolist, remove left over hook.
4952 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
4953 Use dolist.
4954 (calendar-load-hook): Don't mess with it.
4955
4956 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4957 Use derived-mode-p. Run the diff asynchronously.
4958
4959 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4960
4961 * obsolete/mouse-sel.el: Add an Obsolete-since header.
4962
4963 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
4964
4965 * misc.el: Display absolute path of loaded DLLs (bug#10424).
4966 (list-dynamic-libraries--loaded): New function.
4967 (list-dynamic-libraries--refresh): Use it.
4968
4969 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
4970
4971 * progmodes/python.el (python-fill-paragraph):
4972 Make python-fill-region in a multiline string work when font-lock is
4973 disabled (bug#7018).
4974
4975 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
4976
4977 * language/european.el (cp775): Add oem/legacy (en)coding on
4978 DOS/MS Windows for the Baltic languages. There are still plenty
4979 of texts written in this encoding/codepage (bug#6519).
4980
4981 2012-04-10 Glenn Morris <rgm@gnu.org>
4982
4983 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
4984 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
4985
4986 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
4987
4988 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
4989 next-line "n" and previous-line "p" in order to make recentf more
4990 consistent with ibuffer, dired or org-mode (bug#9387).
4991
4992 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4993
4994 * image.el (put-image): Return the overlay created instead of the
4995 optional input string (bug#7834). Note that this may break code
4996 that is (for some reason or other) depending on `put-image'
4997 returning the string.
4998
4999 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
5000
5001 * simple.el (zap-to-char): Allow zapping using input methods
5002 (bug#1580).
5003
5004 * textmodes/fill.el (fill-region): Leave point and mark where they
5005 were before filling (bug#5399).
5006
5007 2012-04-09 Glenn Morris <rgm@gnu.org>
5008
5009 * version.el (emacs-bzr-get-version):
5010 Handle lightweight checkouts of local branches.
5011
5012 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
5013
5014 * international/characters.el: Recover lost case pairs. (Bug#11209)
5015
5016 2012-04-09 Chong Yidong <cyd@gnu.org>
5017
5018 * custom.el (custom-variable-p): Return nil for non-symbol
5019 arguments instead of signaling an error.
5020 (user-variable-p): Obsolete alias for custom-variable-p.
5021
5022 * apropos.el (apropos-variable):
5023 * files-x.el (read-file-local-variable):
5024 * simple.el (set-variable):
5025 * woman.el (woman-mini-help):
5026 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
5027
5028 2012-04-09 Glenn Morris <rgm@gnu.org>
5029
5030 * startup.el (normal-top-level): Don't look for leim-list.el
5031 in places where it will not be found. (Bug#910)
5032
5033 * international/mule-cmds.el (set-default-coding-systems):
5034 * files.el (normal-mode):
5035 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
5036 This function was removed with ucs-tables.el in 2008.
5037
5038 2012-04-08 Eli Zaretskii <eliz@gnu.org>
5039
5040 * textmodes/ispell.el (ispell-check-version): For hunspell, set
5041 ispell-encoding8-command to "-i", without a trailing space.
5042 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
5043 separate command-line arguments, to specify the encoding, since
5044 that's how hunspell expects it.
5045
5046 2012-04-08 Glenn Morris <rgm@gnu.org>
5047
5048 * loadup.el: Load bindings before cus-start.
5049 This reduces somewhat the number of "rogue" settings in emacs -Q.
5050
5051 2012-04-07 Glenn Morris <rgm@gnu.org>
5052
5053 * version.el (emacs-bzr-get-version): New function.
5054 (emacs-bzr-version): New variable.
5055 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
5056 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
5057
5058 2012-04-07 Eli Zaretskii <eliz@gnu.org>
5059
5060 * international/uni-bidi.el, international/uni-category.el:
5061 * international/uni-combining.el, international/uni-decimal.el:
5062 * international/uni-decomposition.el, international/uni-digit.el:
5063 * international/uni-lowercase.el, international/uni-mirrored.el:
5064 * international/uni-name.el, international/uni-numeric.el:
5065 * international/uni-titlecase.el, international/uni-uppercase.el:
5066 Update for Unicode 6.1.
5067
5068 2012-04-07 Eli Zaretskii <eliz@gnu.org>
5069
5070 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
5071
5072 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5073
5074 * window.el (shrink-window): Mention the `window-min-height'
5075 variable in the doc string.
5076
5077 2012-04-05 Bastien Guerry <bzg@altern.org>
5078
5079 * color.el (color-lighten-name): Fix typo.
5080
5081 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5082
5083 * server.el (server--on-display-p): New function.
5084 (server--on-display-p): Use it.
5085
5086 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
5087
5088 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
5089 (bug#11145).
5090
5091 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5092
5093 * comint.el (comint--common-quoted-suffix): Check string boundary
5094 before comparing (bug#11158).
5095 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
5096
5097 2012-04-04 Chong Yidong <cyd@gnu.org>
5098
5099 * minibuffer.el (completion-extra-properties): Doc fix.
5100
5101 * subr.el (delayed-warnings-hook): Doc fix.
5102
5103 2012-04-04 Daiki Ueno <ueno@unixuser.org>
5104
5105 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
5106 selection (Bug#11159).
5107 (epa-insert-keys): Inform that the default public key will be
5108 exported if no key is selected.
5109
5110 2012-04-04 Richard Stallman <rms@gnu.org>
5111
5112 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
5113
5114 2012-04-03 Chong Yidong <cyd@gnu.org>
5115
5116 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
5117 mail-insert-file, not its obsolete alias mail-attach-file.
5118
5119 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
5120
5121 * notifications.el (notifications-notify): Fix docstring.
5122
5123 2012-04-02 Glenn Morris <rgm@gnu.org>
5124
5125 * emacs-lisp/authors.el (authors-aliases): Another addition.
5126
5127 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
5128
5129 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
5130 `tramp-compat-call-process' instead of `tramp-local-call-process'.
5131 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
5132
5133 2012-04-01 Chong Yidong <cyd@gnu.org>
5134
5135 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
5136 Handle root directory properly.
5137 (copy-directory): Caller changed.
5138
5139 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5140 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
5141
5142 2012-03-31 Glenn Morris <rgm@gnu.org>
5143
5144 * term/xterm.el (xterm-extra-capabilities): Doc fix.
5145
5146 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
5147
5148 * calendar/calendar.el (calendar-window-list)
5149 (calendar-hide-window): Restore. (Bug#11140)
5150 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
5151
5152 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
5153
5154 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5155
5156 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5157 Check if file is a symlink (Bug#10489).
5158
5159 * files.el (copy-directory): Likewise.
5160
5161 2012-03-30 Chong Yidong <cyd@gnu.org>
5162
5163 * image.el (imagemagick-types-inhibit)
5164 (imagemagick-register-types): Doc fix.
5165
5166 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5167
5168 * textmodes/ispell.el (ispell-get-extended-character-mode):
5169 Disable extended-char-mode for hunspell. hunspell does not support it
5170 and treats ~word as ordinary words in pipe mode.
5171
5172 2012-03-30 Glenn Morris <rgm@gnu.org>
5173
5174 * tutorial.el (help-with-tutorial): Ensure local variables don't
5175 happen to make the buffer read-only. (Bug#11127)
5176
5177 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
5178
5179 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
5180 (perl-calculate-indent): Return `noindent' in strings.
5181
5182 2012-03-28 Sam Steingold <sds@gnu.org>
5183
5184 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
5185 instead of the broken adhockery which does not prevent calendar
5186 buffers from being displayed at random after exit.
5187 (calendar-window-list, calendar-hide-window): Remove the broken
5188 adhockery.
5189
5190 2012-03-28 Glenn Morris <rgm@gnu.org>
5191
5192 * replace.el (query-replace-map): Doc fix.
5193
5194 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
5195
5196 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
5197 contents. (Bug#11109)
5198
5199 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
5200
5201 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
5202 (bug#11077).
5203 (avl-tree--check, avl-tree--check-node): New funs.
5204
5205 2012-03-27 Martin Rudalics <rudalics@gmx.at>
5206
5207 * window.el (switch-to-visible-buffer): New option.
5208 (switch-to-prev-buffer, switch-to-next-buffer):
5209 Observe switch-to-visible-buffer. Make sure that checking for a window
5210 showing a buffer already is done on the same frame.
5211
5212 2012-03-27 Glenn Morris <rgm@gnu.org>
5213
5214 * startup.el (mail-host-address): Doc fix.
5215
5216 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5217
5218 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
5219 than 197 variables.
5220
5221 2012-03-26 Ami Fischman <ami@fischman.org>
5222
5223 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
5224
5225 2012-03-26 Glenn Morris <rgm@gnu.org>
5226
5227 * files.el (save-buffers-kill-emacs): Doc fix.
5228
5229 * startup.el (normal-top-level, command-line, command-line-1):
5230 Give them doc strings.
5231
5232 2012-03-25 Eli Zaretskii <eliz@gnu.org>
5233
5234 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
5235 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
5236
5237 2012-03-25 Chong Yidong <cyd@gnu.org>
5238
5239 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
5240 theme if it was previously enabled before (Bug#11031).
5241
5242 * cus-theme.el (custom-theme-write-faces): Retrieve current face
5243 spec with custom-face-get-current-spec if its :shown-value is not
5244 determined yet (Bug#9337).
5245 (customize-create-theme, custom-theme-revert): Doc fixes.
5246
5247 * button.el (button-at): Minor addition to docstring.
5248
5249 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
5250
5251 * vc/vc.el (vc-merge): Fix a prompt.
5252
5253 2012-03-24 Chong Yidong <cyd@gnu.org>
5254
5255 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
5256 point (Bug#9623).
5257
5258 * button.el (button-at): Minor addition to docstring.
5259
5260 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * newcomment.el (comment-choose-indent): No space after BOL.
5263
5264 2012-03-22 Sam Steingold <sds@gnu.org>
5265
5266 * window.el (switch-to-prev-buffer): Revert last patch because the
5267 bug turned out to be an advertised feature (Elisp manual 28.14).
5268
5269 2012-03-22 Glenn Morris <rgm@gnu.org>
5270
5271 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
5272 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
5273
5274 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5275
5276 * net/network-stream.el (network-stream-open-starttls): Make error
5277 message under Windows be less misleading.
5278
5279 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
5280
5281 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
5282 understands (bug#9942).
5283
5284 2012-03-22 Chong Yidong <cyd@gnu.org>
5285
5286 * simple.el (end-of-visible-line): Handle return value of
5287 next-single-property-change properly (Bug#9371).
5288
5289 2012-03-22 Kenichi Handa <handa@m17n.org>
5290
5291 * international/quail.el (quail-insert-kbd-layout): Fix previous
5292 change. To avoid unwanted bidi reordering, use
5293 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
5294
5295 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
5296
5297 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
5298 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
5299 (ruby-beginning-of-indent): Be more careful with the difference
5300 between word-boundary and symbol boundary.
5301 (ruby-mode-syntax-table): Make : a symbol constituent.
5302
5303 2012-03-21 Andreas Politz <politza@fh-trier.de>
5304
5305 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
5306
5307 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5308
5309 * progmodes/etags.el (tags-completion-at-point-function):
5310 Improve last fix.
5311
5312 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
5313
5314 2012-03-21 Sam Steingold <sds@gnu.org>
5315
5316 * progmodes/etags.el (tags-completion-at-point-function):
5317 Avoid the error when point is inside the pattern.
5318
5319 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
5320
5321 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
5322 line (Bug#10855).
5323
5324 2012-03-21 Drew Adams <drew.adams@oracle.com>
5325
5326 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
5327
5328 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
5329
5330 * ido.el (ido-set-current-directory, ido-read-internal)
5331 (ido-choose-completion-string, ido-completion-help): Handle nil
5332 value of ido-completion-buffer (Bug#11008).
5333
5334 2012-03-21 Sam Steingold <sds@gnu.org>
5335
5336 * window.el (switch-to-prev-buffer): Do not switch to a visible
5337 window previous buffer, just like with the frame previous buffers.
5338
5339 2012-03-21 Chong Yidong <cyd@gnu.org>
5340
5341 * faces.el (make-face, make-empty-face, copy-face):
5342 * face-remap.el (face-remap-add-relative, face-remap-set-base):
5343 Doc fixes.
5344
5345 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5346
5347 * wid-edit.el (widget-complete-field): Remove (bug#11051).
5348 (widget-complete): Remove broken use of it.
5349
5350 2012-03-20 Chong Yidong <cyd@gnu.org>
5351
5352 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
5353 Use string-width and truncate-string-width to handle arbitrary
5354 characters.
5355
5356 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
5357
5358 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
5359 to draw rectangles, not squares. (Regression introduced by revno
5360 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
5361
5362 2012-03-18 Chong Yidong <cyd@gnu.org>
5363
5364 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
5365 it is not yet defined (for temacs).
5366
5367 2012-03-18 Leo Liu <sdl.web@gmail.com>
5368
5369 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
5370
5371 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5372
5373 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
5374 (ispell-choices-win-default-height, ispell-silently-savep)
5375 (ispell-dictionary-alist, ispell-encoding8-command)
5376 (ispell-check-version, ispell-aspell-find-dictionary)
5377 (ispell-valid-dictionary-list, ispell-words-keyword)
5378 (ispell-get-word, ispell-internal-change-dictionary)
5379 (ispell-region, ispell-skip-region-list)
5380 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
5381 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
5382 (ispell-message-text-end, ispell-message)
5383 (ispell-buffer-local-parsing): Doc fix.
5384
5385 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
5386
5387 * htmlfontify.el: Add support for code block fontification for ODT
5388 export (Bug #9914).
5389 (hfy-optimisations): Define new option
5390 `body-text-only'
5391 (hfy-fontify-buffer): Honor above setting.
5392 (hfy-begin-span, hfy-end-span): New routines factored out form
5393 `hfy-fontify-buffer'.
5394 (hfy-begin-span-handler, hfy-end-span-handler): New variables
5395 that permit insertion of custom tags.
5396 (hfy-fontify-buffer): Use above handlers.
5397 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
5398 (hfy-face-to-css): Re-defined to be a variable.
5399 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
5400 over multiple runs. This is made possible by having the caller let
5401 bind a special variable `hfy-user-sheet-assoc'.
5402 (htmlfontify-string): New defun.
5403 (hfy-compile-face-map): Make sure that the last char in the
5404 buffer is correctly fontified.
5405 (hfy-face-resolve-face): Whitespace only change.
5406
5407 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5408
5409 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
5410 message more clear.
5411
5412 2012-03-16 Leo Liu <sdl.web@gmail.com>
5413
5414 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
5415
5416 2012-03-16 Alan Mackenzie <acm@muc.de>
5417
5418 Further optimise the handling of large macros.
5419
5420 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
5421 limit to a call of `c-literal-limits'.
5422 (c-determine-+ve-limit): New function.
5423 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
5424 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
5425 In CASE 5B, restrict a search limit to 500.
5426 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
5427
5428 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
5429 Restrict macro bounds to +-500 from after-change's BEG END.
5430
5431 2012-03-16 Leo Liu <sdl.web@gmail.com>
5432
5433 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
5434
5435 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
5436
5437 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
5438 `special-mode' setting of `buffer-read-only'. (Bug#11010)
5439
5440 2012-03-16 Glenn Morris <rgm@gnu.org>
5441
5442 * view.el (view-buffer, view-buffer-other-window)
5443 (view-buffer-other-frame): Doc fixes re special mode-class.
5444
5445 * subr.el (eval-after-load): If named feature is provided not from
5446 a file, run after-load forms. (Bug#10946)
5447
5448 * calendar/calendar.el (calendar-insert-at-column):
5449 Handle non-unit-width characters a bit better. (Bug#10978)
5450
5451 2012-03-15 Chong Yidong <cyd@gnu.org>
5452
5453 * emacs-lisp/ring.el (ring-extend): New function.
5454 (ring-insert+extend): Extend the ring correctly (Bug#11019).
5455
5456 * comint.el (comint-read-input-ring)
5457 (comint-add-to-input-history): Grow comint-input-ring lazily.
5458
5459 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5460
5461 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
5462 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
5463
5464 * imenu.el: Fix multiple inheritance breakage (bug#9199).
5465 (imenu-add-to-menubar): Don't add a redundant index.
5466 (imenu-update-menubar): Handle a dynamically composed keymap.
5467
5468 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
5469
5470 * mail/sendmail.el (mail-encode-header):
5471 Bind rfc2047-encode-encoded-words to nil.
5472
5473 2012-03-13 Glenn Morris <rgm@gnu.org>
5474
5475 * calendar/calendar.el (calendar-string-spread):
5476 Handle non-unit-width characters a bit better. (Bug#10978)
5477
5478 2012-03-13 Leo Liu <sdl.web@gmail.com>
5479
5480 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
5481 directory and file as argument (Bug#10822).
5482
5483 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5484
5485 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
5486 For dynamically generated code, follow $PC.
5487 (gdb-disassembly-handler-custom): Handle no function name case.
5488
5489 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
5490
5491 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
5492 * emulation/ws-mode.el (ws-query-replace):
5493 * sort.el (sort-regexp-fields):
5494 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
5495
5496 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5497
5498 * dabbrev.el: Fix cycle completion order (bug#10963).
5499 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
5500 (dabbrev-completion): Don't use an obarray; provide
5501 a cycle-sort-function.
5502
5503 2012-03-12 Leo Liu <sdl.web@gmail.com>
5504
5505 * simple.el (kill-new): Use equal-including-properties for comparison.
5506 (kill-do-not-save-duplicates): Doc fix.
5507
5508 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5509
5510 * dabbrev.el: Fix cycle completion (bug#10963).
5511 Use lexical binding and wrap to 80 columns.
5512 (dabbrev-completion): Delay computing the list of completions.
5513
5514 2012-03-12 Kenichi Handa <handa@m17n.org>
5515
5516 * international/quail.el (quail-insert-kbd-layout): Surround each
5517 row by LRO and PDF instead of inserting many LRMs. Pad the left
5518 and right of each non-spacing marks. Insert invisible space
5519 between lower and upper characters to prevent composition.
5520
5521 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5522
5523 * minibuffer.el (minibuffer-complete): Don't get confused when the
5524 function is run twice via different commands (bug#10958).
5525 (complete-with-action): Fix docstring.
5526
5527 2012-03-12 Chong Yidong <cyd@gnu.org>
5528
5529 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
5530 (nxml-completion-at-point-function): New function.
5531 (nxml-mode): Use it.
5532 (nxml-bind-meta-tab-to-complete-flag): Default to t.
5533
5534 * emacs-lisp/package.el (package-unpack, package-unpack-single):
5535 Load generated autoloads file before byte compiling (Bug#10970).
5536 (package--make-autoloads-and-compile): New helper fun.
5537
5538 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
5539
5540 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
5541
5542 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
5543
5544 * autorevert.el (auto-revert-handler): Ensure, that
5545 file-readable-p is applied only for local files or in
5546 auto-revert-tail-mode.
5547
5548 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
5549
5550 * server.el (server-eval-at): Handle non-tcp connections.
5551 Decode result string.
5552
5553 * server.el (server-msg-size): New constant.
5554 (server-reply-print): New function.
5555 (server-eval-and-print): Use it.
5556 (server-eval-at): Use server-quote-arg and server-unquote-arg.
5557 Handle -print-nonl.
5558
5559 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
5560
5561 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
5562 (Bug#10987).
5563
5564 2012-03-11 Chong Yidong <cyd@gnu.org>
5565
5566 * simple.el (goto-line): Doc fix (Bug#9938).
5567
5568 * subr.el (save-window-excursion): Doc fix (Bug#9979).
5569
5570 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
5571 when finished (Bug#10963).
5572
5573 2012-03-11 Martin Rudalics <rudalics@gmx.at>
5574
5575 * window.el (split-window-below): Fix bug in case where
5576 split-window-keep-point is nil (Bug#10971).
5577
5578 2012-03-11 Juri Linkov <juri@jurta.org>
5579
5580 * replace.el (replace-highlight): Set isearch-word to nil
5581 unconditionally. (Bug#10887)
5582
5583 2012-03-10 Eli Zaretskii <eliz@gnu.org>
5584
5585 * net/mairix.el (mairix-replace-invalid-chars): Rename from
5586 mairix-replace-illegal-chars; all callers changed. Don't remove
5587 ^, ~, and = characters: they are meaningful in mairix search specs.
5588 (mairix-widget-create-query): Add usage information about mairix
5589 search forms: negating words, searching for substrings, etc.
5590
5591 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
5592
5593 * international/fontset.el (font-encoding-alist): Add an entry for
5594 ksx1001 (Bug#5667).
5595
5596 2012-03-10 Richard Stallman <rms@gnu.org>
5597
5598 * mail/sendmail.el (mail-encode-header):
5599 Set rfc2047-encode-encoded-words.
5600
5601 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
5602
5603 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
5604 view buffer means not swapped.
5605 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
5606 (rmail-write-region-annotate): Error if real text has disappeared.
5607
5608 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
5609
5610 2012-03-10 Chong Yidong <cyd@gnu.org>
5611
5612 * emulation/cua-rect.el (cua--init-rectangles):
5613 * emulation/cua-base.el (cua--init-keymaps):
5614 Add delete-forward-char to remappings (Bug#9666).
5615
5616 2012-03-10 Martin Rudalics <rudalics@gmx.at>
5617
5618 * speedbar.el (speedbar-unhighlight-one-tag-line):
5619 Avoid unhighlighting due to frame switching (Bug#10275).
5620
5621 2012-03-10 Chong Yidong <cyd@gnu.org>
5622
5623 * minibuffer.el (completion-in-region, completion-help-at-point):
5624 Give the completion field overlay a high priority (Bug#6830).
5625
5626 * dired.el (dired-goto-file): Recognize absolute file name
5627 listings (Bug#7126).
5628 (dired-goto-file-1): New helper function.
5629 (dired-toggle-read-only): Inhibit warnings.
5630
5631 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
5632
5633 * net/dbus.el (dbus-property-handler): Return empty array if
5634 there are no properties.
5635
5636 2012-03-09 Leo Liu <sdl.web@gmail.com>
5637
5638 * savehist.el (savehist-printable): Stricter check for string
5639 value (Bug#10937).
5640
5641 2012-03-09 Eli Zaretskii <eliz@gnu.org>
5642
5643 * mail/smtpmail.el (smtpmail-send-it):
5644 Bind coding-system-for-write to *-unix, so that FCC files are kept in
5645 valid mbox format.
5646
5647 2012-03-09 Glenn Morris <rgm@gnu.org>
5648
5649 * files.el (dir-locals-find-file):
5650 Don't check result is regular, readable.
5651 (dir-locals-read-from-file): Demote errors.
5652
5653 2012-03-08 Eli Zaretskii <eliz@gnu.org>
5654
5655 * international/quail.el (quail-insert-kbd-layout):
5656 Insert invisible LRM characters before each character in a keyboard
5657 layout cell, to prevent their reordering by bidi display engine.
5658 For details, see the discussion in
5659 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
5660
5661 2012-03-08 Alan Mackenzie <acm@muc.de>
5662
5663 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
5664 the starting position; make it extend the marked region when
5665 invoked repeatedly - all under appropriate circumstances.
5666 Fixes bugs #5525, #10906.
5667
5668 2012-03-08 Glenn Morris <rgm@gnu.org>
5669
5670 * files.el (locate-dominating-file, dir-locals-find-file):
5671 Undo 2012-03-06 change.
5672
5673 2012-03-07 Eli Zaretskii <eliz@gnu.org>
5674
5675 * international/quail.el (quail-help):
5676 Force bidi-paragraph-direction be left-to-right. See discussion in
5677 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
5678 for the reason.
5679
5680 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
5681
5682 Avoid superfluous registering of signals. (Bug#10807)
5683
5684 * notifications.el (notifications-on-action-object)
5685 (notifications-on-close-object): New defvars.
5686 (notifications-on-action-signal, notifications-on-closed-signal):
5687 Unregister the signal if not needed any longer.
5688 (notifications-notify): Register `notifications-action-signal' or
5689 `notifications-closed-signal', if :on-action or :on-close has been
5690 passed as argument.
5691
5692 2012-03-07 Chong Yidong <cyd@gnu.org>
5693
5694 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
5695 non-X platforms.
5696
5697 2012-03-06 Glenn Morris <rgm@gnu.org>
5698
5699 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5700 (x-disown-selection-internal, x-get-selection-internal):
5701 Doc fix (add arglist signatures). (Bug#10783)
5702
5703 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5704
5705 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
5706 Handle breakpoints with no "type".
5707
5708 2012-03-06 Glenn Morris <rgm@gnu.org>
5709
5710 * files.el (locate-dominating-file): Add optional predicate argument.
5711 (dir-locals-find-file): Make use of above change.
5712
5713 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
5714
5715 * info.el (Info-insert-dir): Also try "dir.gz".
5716
5717 2012-03-06 Glenn Morris <rgm@gnu.org>
5718
5719 * files.el (dir-locals-find-file):
5720 Ignore non-readable or non-regular files. (Bug#10928)
5721
5722 * files.el (locate-dominating-file): Doc fix.
5723
5724 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
5725
5726 * calendar/calendar.el (calendar-set-mode-line):
5727 `getenv' returns a string. (Bug#10951)
5728
5729 2012-03-05 Leo Liu <sdl.web@gmail.com>
5730
5731 * simple.el (backward-delete-char-untabify): Constrain point to
5732 field (Bug#10939).
5733
5734 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
5735
5736 2012-03-05 Chong Yidong <cyd@gnu.org>
5737
5738 * simple.el (count-words): If called from Lisp, return the word
5739 count, for symmetry with `count-lines'. Arglist changed.
5740 (count-words--message): Args changed. Consolidate counting code
5741 from count-words and count-words-region.
5742 (count-words-region): Caller changed.
5743 (count-lines-region): Make it an obsolete alias.
5744
5745 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
5746
5747 * saveplace.el (save-place-to-alist)
5748 (save-place-ignore-files-regexp): Allow value nil to disable this
5749 feature.
5750
5751 2012-03-04 Chong Yidong <cyd@gnu.org>
5752
5753 * faces.el (face-spec-reset-face): For the default face, reset the
5754 attributes to default values (Bug#10748).
5755
5756 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
5757
5758 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
5759 previous patch: Check `message-send-mail-function', and not the
5760 default function (bug#10897).
5761
5762 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
5763
5764 * notifications.el (notifications-on-action-signal)
5765 (notifications-on-closed-signal): Check for unique service name of
5766 incoming event. Fix error in removing entry.
5767 (top): Register for signals with wildcard service name.
5768 (notifications-notify): Use daemon unique service name for map entries.
5769
5770 2012-03-04 Chong Yidong <cyd@gnu.org>
5771
5772 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
5773
5774 2012-03-04 Glenn Morris <rgm@gnu.org>
5775
5776 * abbrev.el (copy-abbrev-table, abbrev-table-p)
5777 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
5778 (expand-abbrev, define-abbrev-table): Doc fixes.
5779
5780 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5781
5782 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
5783 `message-default-send-mail-function' and not `send-mail-function'
5784 when doing the prompting for `sendmail-query-once' before sending
5785 in Message buffers (bug#10897).
5786
5787 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
5788 This is inconsistent with all the other stream functions, which leave
5789 the setting up to the higher levels (if so wanted) (bug#10931).
5790
5791 2012-03-02 Alan Mackenzie <acm@muc.de>
5792
5793 Depessimize the handling of very large macros.
5794
5795 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
5796 (c-macro-cache-syntactic): New variables to implement a one
5797 element macro cache.
5798 (c-invalidate-macro-cache): New function.
5799 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
5800 Adapt to use the new cache.
5801 (c-state-safe-place): Use better the cache of safe positions.
5802 (c-state-semi-nonlit-pos-cache)
5803 (c-state-semi-nonlit-pos-cache-limit):
5804 New variables for...
5805 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
5806 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
5807 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
5808 Use c-state-semi-safe-place.
5809
5810 * progmodes/cc-langs.el (c-get-state-before-change-functions):
5811 Add c-invalidate-macro-cache to the C, C++, Obj entries.
5812
5813 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
5814
5815 * jka-compr.el (jka-compr-call-process):
5816 Apply `file-accessible-directory-p' only when the default directory is
5817 not remote.
5818
5819 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
5820
5821 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
5822 access of FILE2, if FILE1 does not exist.
5823
5824 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
5825 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
5826
5827 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
5828 Add "PAGER=" to `process-environment'.
5829
5830 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
5831
5832 * progmodes/sql.el: Bug fix
5833 (sql-get-login-ext): Save login values in globals.
5834 (sql-get-login): Use new version of `sql-get-login-ext'.
5835 (sql-interactive-mode): Set global `sql-connection' to nil.
5836 (sql-connect): Set global values for connection.
5837 (sql-product-interactive): Save global values as buffer local.
5838
5839 2012-02-29 Leo Liu <sdl.web@gmail.com>
5840
5841 * abbrev.el (define-abbrevs): Reset sys to nil.
5842
5843 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5844
5845 * files.el (file-equal-p): Rename from `files-equal-p'.
5846 Return nil when one or both files don't exist.
5847 (file-subdir-of-p): Now only top directory must exists,
5848 return nil if it doesn't.
5849 (copy-directory): No need to test with `file-subdir-of-p' after
5850 creating dir.
5851 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
5852 to `file-equal-p'.
5853
5854 2012-02-28 Glenn Morris <rgm@gnu.org>
5855
5856 * shell.el (shell-mode):
5857 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
5858 * play/landmark.el (landmark-font-lock-face-O):
5859 * play/handwrite.el (handwrite):
5860 * play/gomoku.el (gomoku-O):
5861 * net/browse-url.el (browse-url-browser-display):
5862 * international/mule.el (define-charset):
5863 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
5864 * filesets.el (filesets-find-file-delay):
5865 * eshell/em-xtra.el (eshell-xtra):
5866 * eshell/em-unix.el (eshell-grep):
5867 * emulation/viper.el (viper-mode):
5868 * emacs-lisp/regexp-opt.el (regexp-opt-group):
5869 * emacs-lisp/easymenu.el (easy-menu-define):
5870 * calendar/timeclock.el (timeclock-use-display-time):
5871 * bs.el (bs-mode):
5872 * bookmark.el (bookmark-save-flag):
5873 Doc fix (standardize possessive apostrophe usage).
5874
5875 2012-02-27 Chong Yidong <cyd@gnu.org>
5876
5877 * emulation/viper-cmd.el (viper-intercept-ESC-key):
5878 Fix key-binding lookup for ESC key (Bug#9146).
5879
5880 * font-lock.el (font-lock-specified-p): Rename from
5881 font-lock-spec-present. Callers changed.
5882
5883 2012-02-27 Daniel Hackney <dan@haxney.org>
5884
5885 * emacs-lisp/package.el (package-compute-transaction):
5886 Handle holding a package version to t in package-load-list.
5887
5888 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
5889
5890 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
5891 (tramp-get-inode, tramp-get-device): Use cached values.
5892
5893 2012-02-26 Alan Mackenzie <acm@muc.de>
5894
5895 Check there is a font-lock specification before doing initial
5896 fontification.
5897
5898 * font-core.el (font-lock-mode): Move the conditional from
5899 :after-hook to font-lock-initial-fontify.
5900 (font-lock-default-function): Move the check for a specification
5901 to font-lock-spec-present.
5902
5903 * font-lock.el (font-lock-initial-fontify): Call ...
5904 (font-lock-spec-present): New function.
5905
5906 2012-02-26 Jim Blandy <jimb@red-bean.com>
5907
5908 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
5909 (gdb-send): Apply it to the operand of the '-interpreter-exec
5910 console' command, so that we can pass arguments with (say) quotes
5911 in them. Store exact string sent in gdb-debug-log (Bug#10765).
5912
5913 2012-02-26 Chong Yidong <cyd@gnu.org>
5914
5915 * help-fns.el (describe-function-1): Clarify description of
5916 remapping (Bug#10844).
5917
5918 * files.el (files-equal-p): Doc fix.
5919 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
5920 and quit the loop once a mismatch is found.
5921
5922 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
5923
5924 * bs.el (bs--show-with-configuration): Don't throw an error
5925 if the window cannot be split; otherwise, subsequent calls to
5926 bs-show fail, restoring a stale window config. (Bug#10882)
5927
5928 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
5929
5930 * term/ns-win.el (global-map): Bind ns-drag-file to
5931 ns-find-file (Bug#5855, Bug#10050).
5932
5933 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
5934
5935 * calendar/parse-time.el (parse-time-string): Allow extractor to
5936 return nil.
5937
5938 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
5939
5940 * net/tramp.el (tramp-file-name-for-operation):
5941 Add `files-equal-p' and `file-subdir-of-p'.
5942
5943 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
5944 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
5945 Add COPY-CONTENTS argument.
5946
5947 2012-02-25 Chong Yidong <cyd@gnu.org>
5948
5949 Add custom groups for VC backends, for consistency with vc-bzr.
5950
5951 * vc/vc-arch.el (vc-arch):
5952 * vc/vc-cvs.el (vc-cvs):
5953 * vc/vc-git.el (vc-git):
5954 * vc/vc-hg.el (vc-hg):
5955 * vc/vc-mtn.el (vc-mtn):
5956 * vc/vc-rcs.el (vc-rcs):
5957 * vc/vc-sccs.el (vc-sccs):
5958 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
5959 All relevant defcustoms reassigned.
5960
5961 2012-02-25 Chong Yidong <cyd@gnu.org>
5962
5963 * newcomment.el (comment-styles): Add autoload (Bug#10868).
5964
5965 * term/x-win.el (x-initialize-window-system): Reduce default for
5966 x-selection-timeout to 5 seconds (Bug#8869).
5967
5968 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5969
5970 * files.el (files-equal-p, file-subdir-of-p): New functions.
5971 (copy-directory): Error when trying to copy a directory on itself.
5972 Add missing copy-contents arg to tramp handler.
5973 * dired-aux.el (dired-copy-file-recursive): Same.
5974 (dired-create-files): Modify destination when source is equal to
5975 dest when copying files.
5976 Return also when dest is a subdir of source. (Bug#10489)
5977
5978 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
5979
5980 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
5981 (Bug#10874)
5982
5983 2012-02-23 Alan Mackenzie <acm@muc.de>
5984
5985 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
5986 parameter "after-hook:" to allow the expansion to run code after
5987 the execution of the mode hooks.
5988
5989 * font-lock.el (font-lock-initial-fontify): New function extracted
5990 from font-lock-mode-internal.
5991
5992 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
5993 :after-hook.
5994
5995 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5996
5997 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
5998 (completion--cache-all-sorted-completions): New function.
5999 (completion-all-sorted-completions): Use it.
6000 (completion--do-completion, minibuffer-force-complete):
6001 Use it to re-instate the flush hook.
6002
6003 * icomplete.el (icomplete-completions): Replace last fix with a better
6004 one (bug#10850).
6005
6006 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
6007
6008 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
6009 when it might call us back infinitely (bug#10797).
6010
6011 2012-02-23 Glenn Morris <rgm@gnu.org>
6012
6013 * minibuffer.el (completion-category-overrides): Doc fix.
6014
6015 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6016
6017 * minibuffer.el (completion-table-with-context): Fix inf-loop.
6018 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
6019
6020 2012-02-23 Glenn Morris <rgm@gnu.org>
6021
6022 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
6023 (authors-obsolete-files-regexps, authors-ignored-files)
6024 (authors-ambiguous-files, authors-renamed-files-alist):
6025 Add more entries.
6026
6027 2012-02-23 Juri Linkov <juri@jurta.org>
6028
6029 * isearch.el (isearch-occur): Sync interactive spec with occur's
6030 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
6031
6032 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
6033
6034 2012-02-22 Juri Linkov <juri@jurta.org>
6035
6036 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
6037 (ucs-insert): Doc fix. Check for hex digits in the string.
6038 Don't display `nil' in the error message. (Bug#10857)
6039
6040 2012-02-22 Alan Mackenzie <acm@muc.de>
6041
6042 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
6043
6044 2012-02-22 Glenn Morris <rgm@gnu.org>
6045
6046 * ffap.el (ffap-c-path):
6047 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
6048
6049 2012-02-22 Chong Yidong <cyd@gnu.org>
6050
6051 * custom.el (load-theme): Doc fix.
6052
6053 2012-02-22 Glenn Morris <rgm@gnu.org>
6054
6055 * dired-x.el (dired-guess-shell-alist-default):
6056 Remove escape sequences from nroff output. (Bug#172)
6057
6058 2012-02-21 Glenn Morris <rgm@gnu.org>
6059
6060 * vc/emerge.el (emerge-defvar-local):
6061 Set `permanent-local' property rather than unused `preserved'.
6062
6063 * textmodes/picture.el (picture-delete-char): New alias.
6064 (picture-mode-map): Use it. (Bug#10860)
6065 (picture-mode): Doc fix.
6066
6067 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
6068
6069 * newcomment.el (uncomment-region-default): Remove unused binding.
6070
6071 2012-02-21 Glenn Morris <rgm@gnu.org>
6072
6073 * textmodes/picture.el (picture-motion, picture-motion-reverse)
6074 (picture-self-insert, picture-tab-chars): Doc fix.
6075 (picture-mode-map): Fix C-a, C-e.
6076
6077 2012-02-20 Glenn Morris <rgm@gnu.org>
6078
6079 * emacs-lisp/authors.el (authors-aliases): Add another entry.
6080
6081 2012-02-20 Leo Liu <sdl.web@gmail.com>
6082
6083 * icomplete.el (icomplete-completions): Check FROM arg before
6084 passing to substring (Bug#10850).
6085
6086 2012-02-19 Chong Yidong <cyd@gnu.org>
6087
6088 * comint.el: Require ansi-color.
6089 (comint-output-filter-functions): Add ansi-color-process-output.
6090
6091 * ansi-color.el: Don't set comint-output-filter-functions; it is
6092 now in the initial value defined in comint.el.
6093 (ansi-color-apply-face-function): New variable.
6094 (ansi-color-apply-on-region): Use it.
6095 (ansi-color-apply-overlay-face): New function.
6096
6097 * shell.el (shell): No need to require ansi-color.
6098 (shell-mode): Use ansi-color-apply-face-function to highlight
6099 color escapes using font-lock-face property (Bug#10835).
6100
6101 2012-02-19 Chong Yidong <cyd@gnu.org>
6102
6103 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
6104 mode-line formats (Bug#10839).
6105
6106 2012-02-18 Glenn Morris <rgm@gnu.org>
6107
6108 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
6109
6110 * mail/undigest.el (unforward-rmail-message): Doc fix.
6111
6112 * saveplace.el (save-place-ignore-files-regexp): Add :version.
6113
6114 2012-02-18 Eli Zaretskii <eliz@gnu.org>
6115
6116 * international/characters.el (script-list): Sync with the latest
6117 Unicode Character Database.
6118
6119 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
6120
6121 * international/titdic-cnv.el: Remove duplicate coding tag.
6122 * language/cham.el: Likewise.
6123 * language/tai-viet.el: Likewise.
6124
6125 2012-02-18 Glenn Morris <rgm@gnu.org>
6126
6127 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
6128 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
6129 (calendar-bahai-all-holidays-flag, calendar-other-dates):
6130 * calendar/diary-lib.el (diary-abbreviated-year-flag):
6131 * calendar/holidays.el (holiday-bahai-holidays)
6132 (calendar-holidays, list-holidays):
6133 Use utf-8 Bahá'í in doc-strings, menus, etc.
6134
6135 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
6136
6137 * saveplace.el (save-place-ignore-files-regexp): New variable
6138 allowing for excluding files from saving their location of point.
6139 The default value matches the temporary commit message editing
6140 files from Git, SVN, Bazaar, and Mercurial.
6141 (save-place-to-alist): Use it.
6142
6143 2012-02-17 Lawrence Mitchell <wence@gmx.li>
6144 Stefan Monnier <monnier@iro.umontreal.ca>
6145
6146 * newcomment.el (uncomment-region-default): Don't leave extra space
6147 when an arg is provided (bug#8150).
6148
6149 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
6150
6151 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
6152
6153 2012-02-17 Glenn Morris <rgm@gnu.org>
6154
6155 * net/socks.el: Require network-stream. (Bug#10599)
6156
6157 2012-02-17 Kenichi Handa <handa@m17n.org>
6158
6159 * international/charprop.el:
6160 * international/uni-name.el:
6161 * international/uni-old-name.el:
6162 * international/uni-comment.el: Regenerate.
6163
6164 2012-02-16 Glenn Morris <rgm@gnu.org>
6165
6166 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
6167 Interactively in calendar buffer, give an error if not on a date.
6168
6169 2012-02-15 Glenn Morris <rgm@gnu.org>
6170
6171 * shell.el (shell-delimiter-argument-list):
6172 Revert 2011-02-17 change. (Bug#8027)
6173
6174 2012-02-15 Chong Yidong <cyd@gnu.org>
6175
6176 * minibuffer.el (completion-at-point-functions): Doc fix.
6177
6178 * custom.el (defcustom): Doc fix; note use of defvar.
6179
6180 2012-02-15 Glenn Morris <rgm@gnu.org>
6181
6182 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
6183 Doc fixes.
6184
6185 2012-02-14 Glenn Morris <rgm@gnu.org>
6186
6187 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
6188
6189 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
6190
6191 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
6192 way the ports list is computed.
6193 (smtpmail-query-smtp-server): Prompt the user for a port number if
6194 we can't connect to any of the standard ports (bug#10810).
6195
6196 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
6197
6198 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
6199
6200 2012-02-13 Glenn Morris <rgm@gnu.org>
6201
6202 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
6203
6204 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
6205
6206 * net/gnutls.el (gnutls-trustfiles): New variable.
6207 (gnutls-negotiate): Use it.
6208
6209 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
6210
6211 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
6212 does its stuff if Gnus is running.
6213
6214 2012-02-13 Alan Mackenzie <acm@muc.de>
6215
6216 Fix a loop in c-set-fl-decl-start.
6217
6218 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
6219 c-backward-syntactic-ws actually moves backwards.
6220
6221 2012-02-13 Leo Liu <sdl.web@gmail.com>
6222
6223 * net/rcirc.el (rcirc-markup-attributes): Move point to the
6224 beginning so that all \C-o chars are removed.
6225
6226 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
6227
6228 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
6229
6230 2012-02-12 Alan Mackenzie <acm@muc.de>
6231
6232 Fix infinite loop with long macros.
6233 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
6234
6235 2012-02-12 Chong Yidong <cyd@gnu.org>
6236
6237 * window.el (display-buffer): Doc fix (Bug#10785).
6238
6239 2012-02-12 Glenn Morris <rgm@gnu.org>
6240
6241 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6242 (x-disown-selection-internal, x-get-selection-internal):
6243 Sync docs with the xselect.c versions.
6244
6245 * allout-widgets.el: Add missing license notice.
6246
6247 2012-02-11 Glenn Morris <rgm@gnu.org>
6248
6249 * select.el (x-get-selection-internal, x-own-selection-internal)
6250 (x-disown-selection-internal):
6251 * x-dnd.el (x-get-selection-internal): Update declarations.
6252
6253 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
6254
6255 * window.el (window-sides-slots):
6256 * tool-bar.el (tool-bar-position):
6257 * term/xterm.el (xterm-extra-capabilities):
6258 * ses.el (ses-self-reference-early-detection):
6259 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
6260 (verilog-auto-wire-type)
6261 (verilog-auto-delete-trailing-whitespace)
6262 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
6263 (verilog-auto-tieoff-declaration):
6264 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
6265 (sql-oracle-statement-starters, sql-oracle-scan-on):
6266 * progmodes/prolog.el (prolog-align-comments-flag)
6267 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
6268 (prolog-left-indent-regexp, prolog-paren-indent-p)
6269 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
6270 (prolog-types, prolog-mode-specificators)
6271 (prolog-determinism-specificators, prolog-directives)
6272 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
6273 (prolog-electric-dot-flag)
6274 (prolog-electric-dot-full-predicate-template)
6275 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
6276 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
6277 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
6278 (prolog-program-switches, prolog-prompt-regexp)
6279 (prolog-debug-on-string, prolog-debug-off-string)
6280 (prolog-trace-on-string, prolog-trace-off-string)
6281 (prolog-zip-on-string, prolog-zip-off-string)
6282 (prolog-use-standard-consult-compile-method-flag)
6283 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
6284 (prolog-imenu-max-lines, prolog-info-predicate-index)
6285 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
6286 (prolog-char-quote-workaround):
6287 * progmodes/cc-vars.el (c-defun-tactic):
6288 * net/tramp.el (tramp-encoding-command-interactive)
6289 (tramp-local-end-of-line):
6290 * net/soap-client.el (soap-client):
6291 * net/netrc.el (netrc-file):
6292 * net/gnutls.el (gnutls):
6293 * minibuffer.el (completion-category-overrides)
6294 (completion-cycle-threshold)
6295 (completion-pcm-complete-word-inserts-delimiters):
6296 * man.el (Man-name-local-regexp):
6297 * mail/feedmail.el (feedmail-display-full-frame):
6298 * international/characters.el (glyphless-char-display-control):
6299 * eshell/em-ls.el (eshell-ls-date-format):
6300 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
6301 (lisp-lambda-list-keyword-parameter-indentation)
6302 (lisp-lambda-list-keyword-parameter-alignment):
6303 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
6304 * dired-x.el (dired-omit-verbose):
6305 * cus-theme.el (custom-theme-allow-multiple-selections):
6306 * calc/calc.el (calc-highlight-selections-with-faces)
6307 (calc-lu-field-reference, calc-lu-power-reference)
6308 (calc-note-threshold):
6309 * battery.el (battery-mode-line-limit):
6310 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6311 (archive-7z-update):
6312 * allout.el (allout-prefixed-keybindings)
6313 (allout-unprefixed-keybindings)
6314 (allout-inhibit-auto-fill-on-headline)
6315 (allout-flattened-numbering-abbreviation):
6316 * allout-widgets.el (allout-widgets-auto-activation)
6317 (allout-widgets-icons-dark-subdir)
6318 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
6319 (allout-widgets-theme-dark-background)
6320 (allout-widgets-theme-light-background)
6321 (allout-widgets-item-image-properties-emacs)
6322 (allout-widgets-item-image-properties-xemacs)
6323 (allout-widgets-run-unit-tests-on-load)
6324 (allout-widgets-time-decoration-activity)
6325 (allout-widgets-hook-error-post-time)
6326 (allout-widgets-track-decoration):
6327 Add missing :version tags to new defcustoms and defgroups.
6328
6329 * progmodes/sql.el (sql-ansi-statement-starters)
6330 (sql-oracle-statement-starters): Add custom type.
6331
6332 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
6333 (prolog-system-version): Give it a type.
6334
6335 2012-02-11 Eli Zaretskii <eliz@gnu.org>
6336
6337 * term/pc-win.el (x-select-text, x-selection-owner-p)
6338 (x-own-selection-internal, x-disown-selection-internal)
6339 (x-get-selection-internal): Sync doc strings and argument lists
6340 with xselect.c, common-win.el and x-win.el. (Bug#10783)
6341
6342 2012-02-11 Leo Liu <sdl.web@gmail.com>
6343
6344 * progmodes/python.el (python-end-of-statement): Fix infinite
6345 loop. (Bug#10788)
6346
6347 2012-02-10 Glenn Morris <rgm@gnu.org>
6348
6349 * international/mule-cmds.el (unify-8859-on-encoding-mode)
6350 (unify-8859-on-decoding-mode): Properly mark as obsolete.
6351
6352 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
6353
6354 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
6355 about SMTP before checking the From header.
6356
6357 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
6358 into own function for reuse by emacsbug.el.
6359
6360 2012-02-10 Leo Liu <sdl.web@gmail.com>
6361
6362 * subr.el (condition-case-unless-debug): Rename from
6363 condition-case-no-debug. All callers changed.
6364 (with-demoted-errors): Fix caller.
6365
6366 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
6367 * nxml/rng-valid.el (rng-do-some-validation):
6368 * emacs-lisp/package.el (package-refresh-contents)
6369 (package-menu-execute):
6370 * desktop.el (desktop-create-buffer):
6371 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
6372
6373 2012-02-10 Glenn Morris <rgm@gnu.org>
6374
6375 * textmodes/bibtex.el:
6376 Add missing :version tags for new/changed defcustoms.
6377
6378 * files.el (remote-file-name-inhibit-cache): Doc fixes.
6379
6380 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
6381
6382 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
6383 (smtpmail-via-smtp): Use it, or fall back on the From address.
6384 (smtpmail-send-it): Ditto.
6385
6386 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
6389 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
6390 (byte-compile-tmp-var): New const.
6391 (byte-compile-defvar): Use it to minimize .elc size.
6392 Just use `defvar' rather than simulate it (bug#10761).
6393
6394 2012-02-09 Glenn Morris <rgm@gnu.org>
6395
6396 * files.el (rename-uniquely): Doc fix. (Bug#3806)
6397
6398 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
6399 Add :version tags.
6400
6401 * progmodes/compile.el (compilation-error-screen-columns)
6402 (compilation-first-column, compilation-filter-start): Doc fixes.
6403
6404 * vc/log-view.el (log-view-toggle-entry-display):
6405 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
6406
6407 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
6408 (report-emacs-bug-can-use-xdg-email):
6409 (report-emacs-bug-insert-to-mailer): Doc fixes.
6410 (report-emacs-bug): Message fix.
6411
6412 * net/browse-url.el (browse-url-can-use-xdg-open)
6413 (browse-url-xdg-open): Doc fixes.
6414
6415 * electric.el (electric-indent-mode, electric-pair-mode)
6416 (electric-layout-rules, electric-layout-mode): Doc fixes.
6417 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
6418
6419 2012-02-08 Martin Rudalics <rudalics@gmx.at>
6420
6421 * server.el (server-unselect-display): Don't inadvertently kill
6422 the current buffer. (Bug#10729)
6423
6424 2012-02-08 Glenn Morris <rgm@gnu.org>
6425
6426 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
6427 (sql-list-table): Doc fixes.
6428
6429 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
6430 Comment out (does nothing).
6431
6432 * completion.el (dynamic-completion-mode):
6433 * dirtrack.el (dirtrack-debug-mode):
6434 * electric.el (electric-layout-mode):
6435 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
6436 * face-remap.el (text-scale-mode, buffer-face-mode):
6437 * iimage.el (iimage-mode):
6438 * image-mode.el (image-transform-mode):
6439 * minibuffer.el (completion-in-region-mode):
6440 * scroll-lock.el (scroll-lock-mode):
6441 * simple.el (next-error-follow-minor-mode):
6442 * tar-mode.el (tar-subfile-mode):
6443 * tooltip.el (tooltip-mode):
6444 * vcursor.el (vcursor-use-vcursor-map):
6445 * wid-browse.el (widget-minor-mode):
6446 * emulation/tpu-edt.el (tpu-edt-mode):
6447 * emulation/tpu-extras.el (tpu-cursor-free-mode):
6448 * international/iso-ascii.el (iso-ascii-mode):
6449 * language/thai-util.el (thai-word-mode):
6450 * mail/supercite.el (sc-minor-mode):
6451 * net/goto-addr.el (goto-address-mode):
6452 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
6453 * progmodes/cwarn.el (cwarn-mode):
6454 * progmodes/flymake.el (flymake-mode):
6455 * progmodes/glasses.el (glasses-mode):
6456 * progmodes/hideshow.el (hs-minor-mode):
6457 * progmodes/pascal.el (pascal-outline-mode):
6458 * textmodes/enriched.el (enriched-mode):
6459 * vc/smerge-mode.el (smerge-mode):
6460 Doc fixes (minor mode argument).
6461
6462 2012-02-07 Eli Zaretskii <eliz@gnu.org>
6463
6464 * ls-lisp.el (ls-lisp-sanitize): New function.
6465 (ls-lisp-insert-directory): Use it to fix or remove any elements
6466 in file-alist with missing attributes. (Bug#4673)
6467
6468 2012-02-07 Alan Mackenzie <acm@muc.de>
6469
6470 Fix spurious recognition of c-in-knr-argdecl.
6471
6472 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
6473 putative K&R region.
6474
6475 2012-02-07 Alan Mackenzie <acm@muc.de>
6476
6477 * progmodes/cc-engine.el (c-forward-objc-directive):
6478 Prevent looping in "#pragma mark @implementation".
6479
6480 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
6481
6482 * notifications.el (notifications-on-closed-signal): Make `reason'
6483 optional. (Bug#10744)
6484
6485 2012-02-07 Glenn Morris <rgm@gnu.org>
6486
6487 * emacs-lisp/easy-mmode.el (define-minor-mode):
6488 Doc fixes for the macro and the mode it defines.
6489
6490 * image.el (imagemagick-types-inhibit): Doc fix.
6491
6492 * cus-start.el (imagemagick-render-type): Add it.
6493
6494 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
6495
6496 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
6497 Set the default at load time, too, so that `font-lock-fontify-buffer'
6498 can be called without setting up the entire mode first. This fixes
6499 a bug in `mm-inline-text' with C MIME parts.
6500
6501 2012-02-06 Chong Yidong <cyd@gnu.org>
6502
6503 * simple.el (list-processes--refresh): Delete exited processes
6504 (Bug#8094).
6505
6506 * comint.el (comint-next-prompt): next-single-char-property-change
6507 and prev-single-char-property-change never return nil (Bug#8657).
6508
6509 * custom.el (defcustom): Doc fix (Bug#9711).
6510
6511 2012-02-05 Chong Yidong <cyd@gnu.org>
6512
6513 * cus-edit.el (custom-variable-reset-backup): Quote the value
6514 before storing it in the customized-value property (Bug#6712).
6515 (custom-display): Add a customization type tag.
6516 (custom-buffer-create-internal): Improve tooltip message.
6517
6518 * wid-edit.el (widget-field-value-get): New optional arg to
6519 suppress trailing whitespace truncation.
6520 (character): Use it (Bug#2689).
6521
6522 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
6523
6524 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
6525 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
6526
6527 2012-02-05 Chong Yidong <cyd@gnu.org>
6528
6529 * cus-edit.el (custom-variable-value-create): For mismatched
6530 types, show the current value (Bug#7600).
6531
6532 * custom.el (defcustom): Doc fix.
6533
6534 2012-02-05 Glenn Morris <rgm@gnu.org>
6535
6536 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
6537
6538 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
6539
6540 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
6541 (pp-buffer): Use `ignore-errors', `looking-at-p'.
6542 (pp-last-sexp): Use `looking-at-p'.
6543
6544 2012-02-04 Glenn Morris <rgm@gnu.org>
6545
6546 * files.el (revert-buffer):
6547 Doc fix (mention revert-buffer-in-progress-p).
6548
6549 * emacs-lisp/ert-x.el (ert-simulate-command):
6550 Check deferred-action-list (which is obsolete) is bound.
6551
6552 * subr.el (with-wrapper-hook): Doc fixes.
6553
6554 * simple.el (filter-buffer-substring-functions)
6555 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
6556
6557 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
6558
6559 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
6560 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
6561
6562 2012-02-04 Leo Liu <sdl.web@gmail.com>
6563
6564 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
6565
6566 2012-02-04 Glenn Morris <rgm@gnu.org>
6567
6568 * image.el (image-extension-data): Add obsolete alias.
6569
6570 * isearch.el (isearch-update): Doc fix.
6571
6572 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
6573
6574 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
6575
6576 2012-02-03 Glenn Morris <rgm@gnu.org>
6577
6578 * image.el (image-animated-p): Doc fix. Use image-animated-types.
6579 (image-animate-timeout): Doc fix.
6580
6581 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
6582
6583 2012-02-02 Glenn Morris <rgm@gnu.org>
6584
6585 * server.el (server-auth-dir): Doc fix.
6586 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
6587
6588 * subr.el (run-mode-hooks): Doc fix.
6589
6590 2012-02-02 Juri Linkov <juri@jurta.org>
6591
6592 * image-mode.el (image-toggle-display-image): Remove tautological
6593 `major-mode' from the `derived-mode-p' test.
6594
6595 2012-02-02 Kenichi Handa <handa@m17n.org>
6596
6597 * composite.el (compose-region): Cancel previous change.
6598
6599 2012-02-02 Kenichi Handa <handa@m17n.org>
6600
6601 * composite.el (compose-region, compose-string): Signal error for
6602 a null string component (Bug#6988).
6603
6604 2012-02-01 Chong Yidong <cyd@gnu.org>
6605
6606 * view.el (view-buffer-other-window, view-buffer-other-frame):
6607 Handle special modes like view-buffer (Bug#10650).
6608 (view-buffer): Simplify.
6609
6610 * frame.el (set-frame-font): Tweak meaning of third argument.
6611
6612 * dynamic-setting.el (font-setting-change-default-font):
6613 Use set-frame-font (Bug#9982).
6614
6615 2012-02-01 Glenn Morris <rgm@gnu.org>
6616
6617 * progmodes/compile.el (compilation-internal-error-properties):
6618 Respect compilation-first-column in the "*compilation*" buffer.
6619
6620 * emacs-lisp/easy-mmode.el (define-minor-mode):
6621 Relax :variable's test for a named function.
6622
6623 2012-01-31 Alan Mackenzie <acm@muc.de>
6624
6625 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
6626 off by one error.
6627
6628 2012-01-31 Chong Yidong <cyd@gnu.org>
6629
6630 * frame.el (set-frame-font): New arg ALL-FRAMES.
6631
6632 * menu-bar.el (menu-set-font): Use set-frame-font.
6633
6634 * faces.el (face-spec-reset-face): Don't apply unspecified
6635 attribute values to the default face.
6636
6637 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
6638
6639 * progmodes/cwarn.el (cwarn): Remove dead link.
6640 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
6641 Remove * from defcustom docstrings.
6642 (turn-on-cwarn-mode): Make obsolete.
6643 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
6644 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
6645
6646 2012-01-31 Glenn Morris <rgm@gnu.org>
6647
6648 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6649 Fix :variable handling of mode a symbol not equal to modefun.
6650 Allow named functions to be used as the cdr of :variable.
6651
6652 2012-01-30 Glenn Morris <rgm@gnu.org>
6653
6654 * emacs-lisp/authors.el (authors-fixed-entries):
6655 Remove reference to deleted file rnewspost.el.
6656
6657 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
6658
6659 * window.el (window-with-parameter): Remove unused variable `windows'.
6660 (window--side-check): Remove unused variable `code'.
6661 (window--resize-siblings): Remove unused variable `first'.
6662 (adjust-window-trailing-edge): Remove unused variable `failed'.
6663 (window-deletable-p, window--delete): Remove unused variable `buffer'.
6664 Use `let', not `let*'.
6665 (balance-windows-2): Remove unused variable `found'.
6666 (window--state-put-2): Remove unused variable `splits'.
6667 (window-state-put): Remove unused variable `selected'.
6668 (same-window-p): Use `string-match-p'.
6669 (display-buffer-assq-regexp): Remove unused variable `value'.
6670 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6671 Mark argument ALIST as ignored.
6672 (pop-to-buffer): Remove unused variable `old-window'.
6673
6674 2012-01-29 Eli Zaretskii <eliz@gnu.org>
6675
6676 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
6677 and .lzma compressed files.
6678
6679 2012-01-29 Chong Yidong <cyd@gnu.org>
6680
6681 * frame.el (window-system-default-frame-alist): Doc fix.
6682
6683 * dynamic-setting.el (font-setting-change-default-font): Don't
6684 change the default face if SET-FONT argument is non-nil (Bug#9982).
6685
6686 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
6687
6688 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
6689
6690 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6691
6692 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
6693 breakpoints in files outside current directory (Bug#6098).
6694
6695 2012-01-29 Chong Yidong <cyd@gnu.org>
6696
6697 * progmodes/python.el: Require ansi-color at top-level.
6698
6699 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
6700 Define and use in Emacs Lisp mode (Bug#9360).
6701 (lisp-mode-abbrev-table): Add doc.
6702 (lisp-mode-variables): Don't set local-abbrev-table.
6703 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
6704
6705 2012-01-28 Roland Winkler <winkler@gnu.org>
6706
6707 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
6708
6709 2012-01-28 Roland Winkler <winkler@gnu.org>
6710
6711 * textmodes/bibtex.el (bibtex-entry-alist): New function.
6712 (bibtex-set-dialect): Use it. Either set global values of
6713 dialect-dependent variables or bind these variables buffer-locally
6714 (Bug#10254).
6715 (bibtex-mode): Call bibtex-set-dialect via
6716 hack-local-variables-hook.
6717 (bibtex-dialect): Update docstring.
6718 Add safe-local-variable predicate.
6719 (bibtex-entry-alist, bibtex-field-alist): Initialize via
6720 bibtex-set-dialect.
6721 (bibtex-mode-map): Define menu for each dialect.
6722 (bibtex-entry): Fix docstring.
6723
6724 2012-01-28 Chong Yidong <cyd@gnu.org>
6725
6726 * eshell/esh-arg.el (eshell-quote-argument): New function.
6727
6728 * eshell/esh-ext.el (eshell-invoke-batch-file):
6729 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
6730 first arg to eshell-parse-command (Bug#10523).
6731
6732 2012-01-28 Drew Adams <drew.adams@oracle.com>
6733
6734 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
6735 `default-directory' is non-nil.
6736
6737 2012-01-28 Eli Zaretskii <eliz@gnu.org>
6738
6739 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
6740 line that displays system-configuration-options. (Bug#9924)
6741
6742 2012-01-28 Drew Adams <drew.adams@oracle.com>
6743
6744 * descr-text.el (describe-char): Show information about POS, in
6745 addition to information about the character at POS. Improve and
6746 update the doc string. Change "code point" to "code point in
6747 charset", to avoid confusion with the character's Unicode code
6748 point shown above that. (Bug#10129)
6749
6750 2012-01-28 Eli Zaretskii <eliz@gnu.org>
6751
6752 * descr-text.el (describe-char): Show the raw character, not only
6753 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
6754 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
6755 for the reasons.
6756
6757 2012-01-28 Phil Hagelberg <phil@hagelb.org>
6758
6759 * emacs-lisp/package.el (package-install):
6760 Run package-refresh-contents if there is no archive yet (Bug#9798).
6761
6762 2012-01-28 Chong Yidong <cyd@gnu.org>
6763
6764 * emacs-lisp/package.el (package-maybe-load-descriptor):
6765 New function, split from package-maybe-load-descriptor.
6766 (package-maybe-load-descriptor): Use it.
6767 (package-download-transaction): Fully load required packages
6768 inside the loop, so that `require' calls work (Bug#10593).
6769 (package-install): No need to call package-initialize now.
6770
6771 2012-01-28 Chong Yidong <cyd@gnu.org>
6772
6773 * simple.el (deactivate-mark): Doc fix (Bug#8614).
6774
6775 * tooltip.el (tooltip-mode): Doc fix.
6776 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
6777
6778 * frame.el (set-cursor-color): Doc fix (Bug#352).
6779
6780 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
6781 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
6782
6783 * cus-edit.el (custom-buffer-create-internal): Fix search button
6784 action (Bug#10542).
6785 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
6786
6787 2012-01-27 Eduard Wiebe <usenet@pusto.de>
6788
6789 * dired.el (dired-mark-files-regexp):
6790 Include any subdirectory components. (Bug#10445)
6791
6792 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
6793
6794 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
6795 Handle [host]:port syntax. (Bug#10533)
6796
6797 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
6798
6799 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
6800
6801 2012-01-26 Glenn Morris <rgm@gnu.org>
6802
6803 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
6804 * term.el (term-raw-escape-map): Use Control-X-prefix.
6805 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
6806
6807 2012-01-25 Martin Rudalics <rudalics@gmx.at>
6808
6809 * window.el (window-state-get, window--state-get-1): Don't deal
6810 with fixed-sizeness of windows. Simplify code.
6811
6812 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
6813
6814 * window.el (window--state-get-1, window--state-put-2):
6815 Don't save and restore the mark.
6816
6817 2012-01-25 Chong Yidong <cyd@gnu.org>
6818
6819 * custom.el (custom-variable-p): Doc fix.
6820
6821 2012-01-25 Glenn Morris <rgm@gnu.org>
6822
6823 * dired.el (dired-goto-file): Handle some of the more common
6824 characters that `ls -b' escapes. (Bug#10596)
6825
6826 * progmodes/compile.el (compilation-next-error-function):
6827 Respect compilation-first-column in the "*compilation*" buffer.
6828 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
6829
6830 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
6831
6832 2012-01-24 Glenn Morris <rgm@gnu.org>
6833
6834 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
6835
6836 2012-01-24 Julien Danjou <julien@danjou.info>
6837
6838 * color.el (color-rgb-to-hsl): Fix value computing.
6839 (color-hue-to-rgb): New function.
6840 (color-hsl-to-rgb): New function.
6841 (color-clamp, color-saturate-hsl, color-saturate-name)
6842 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
6843 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
6844
6845 2012-01-24 Glenn Morris <rgm@gnu.org>
6846
6847 * vc/vc-rcs.el (vc-rcs-create-tag):
6848 * vc/vc-sccs.el (vc-sccs-create-tag):
6849 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
6850
6851 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
6852
6853 * eshell/esh-util.el (eshell-read-hosts-file):
6854 Skip comment lines. (Bug#10549)
6855
6856 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
6857
6858 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
6859
6860 * subr.el (display-delayed-warnings): Doc fix.
6861 (collapse-delayed-warnings): New function to collapse identical
6862 adjacent warnings.
6863 (delayed-warnings-hook): Add it.
6864
6865 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
6866
6867 * net/tramp.el (tramp-action-login): Set connection property "login-as".
6868
6869 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
6870 (tramp-default-user-alist): Don't add "pscp".
6871 (tramp-do-copy-or-rename-file-out-of-band): Use connection
6872 property "login-as", if set. (Bug#10530)
6873
6874 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
6875
6876 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
6877 "plink1" and "psftp". (Bug#10530)
6878
6879 2012-01-21 Kenichi Handa <handa@m17n.org>
6880
6881 * international/mule-cmds.el (prefer-coding-system): Show a
6882 warning message if the default value of file-name-coding-system
6883 was not changed.
6884
6885 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6886
6887 * windmove.el (windmove-reference-loc):
6888 Fix windmove-reference-loc miscalculation.
6889
6890 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
6891
6892 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
6893 default unit.
6894
6895 2012-01-21 Glenn Morris <rgm@gnu.org>
6896
6897 * international/mule.el (auto-coding-alist): Add .tbz.
6898
6899 * files.el (local-enable-local-variables): Doc fix.
6900 (inhibit-local-variables-regexps): Rename from
6901 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
6902 Doc fix. Add some extensions from auto-coding-alist.
6903 (inhibit-local-variables-suffixes):
6904 Rename from inhibit-first-line-modes-suffixes. Doc fix.
6905 (inhibit-local-variables-p):
6906 New function, extracted from set-auto-mode-1.
6907 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
6908 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
6909 (hack-local-variables): Doc fix. Make the mode-only case
6910 respect enable-local-variables and friends.
6911 Respect inhibit-local-variables-regexps for file-locals, but
6912 not for directory-locals.
6913 (set-visited-file-name):
6914 Take account of inhibit-local-variables-regexps.
6915 Whether it applies may change as the file name is changed.
6916 * jka-cmpr-hook.el (jka-compr-install):
6917 * jka-compr.el (jka-compr-uninstall):
6918 Update for inhibit-first-line-modes-suffixes name change.
6919
6920 2012-01-20 Martin Rudalics <rudalics@gmx.at>
6921
6922 * help-macro.el (make-help-screen): Temporarily restore original
6923 binding for minor-mode-map-alist (Bug#10454).
6924
6925 2012-01-19 Julien Danjou <julien@danjou.info>
6926
6927 * color.el (color-name-to-rgb): Use the white color to find the max
6928 color component value and return correctly computed values.
6929 (color-name-to-rgb): Add missing float conversion for max value.
6930
6931 2012-01-19 Martin Rudalics <rudalics@gmx.at>
6932
6933 * window.el (window--state-get-1, window-state-get): Do not use
6934 special state value for window-persistent-parameters.
6935 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
6936 (window--state-put-2): Reset all window parameters to nil before
6937 assigning values of persistent parameters.
6938
6939 2012-01-18 Alan Mackenzie <acm@muc.de>
6940
6941 Eliminate sluggishness and hangs in fontification of "semicolon
6942 deserts".
6943
6944 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
6945 Change value 10000 -> 3000.
6946 (c-state-safe-place): Reformulate so it doesn't stack up an
6947 infinite number of wrong entries in c-state-nonlit-pos-cache.
6948 (c-determine-limit-get-base, c-determine-limit): New functions to
6949 determine backward search limits disregarding literals.
6950 (c-find-decl-spots): Amend commenting.
6951 (c-cheap-inside-bracelist-p): New function which detects "={".
6952
6953 * progmodes/cc-fonts.el
6954 (c-make-font-lock-BO-decl-search-function): Give a limit to a
6955 backward search.
6956 (c-font-lock-declarations): Fix an occurrence of point being
6957 undefined. Check additionally for point being in a bracelist or
6958 near a macro invocation without a semicolon so as to avoid a
6959 fruitless time consuming search for a declarator. Give a more
6960 precise search limit for declarators using the new
6961 c-determine-limit.
6962
6963 2012-01-18 Glenn Morris <rgm@gnu.org>
6964
6965 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
6966 (set-auto-mode): Doc fixes.
6967
6968 2012-01-17 Glenn Morris <rgm@gnu.org>
6969
6970 * isearch.el (search-nonincremental-instead): Fix doc typo.
6971
6972 * dired.el (dired-insert-directory): Handle newlines in directory name.
6973 (dired-build-subdir-alist): Unescape newlines in directory name.
6974
6975 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
6976
6977 * net/tramp.el (tramp-local-end-of-line): New defcustom.
6978 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
6979 (tramp-action-terminal): Use it. (Bug#10530)
6980
6981 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6982
6983 * minibuffer.el (completion--replace): Strip properties (bug#10062).
6984
6985 2012-01-16 Martin Rudalics <rudalics@gmx.at>
6986
6987 * window.el (window-state-ignored-parameters): Remove variable.
6988 (window--state-get-1): Rename argument MARKERS to IGNORE.
6989 Handle persistent window parameters. Make copy of clone-of
6990 parameter only if requested. (Bug#10348)
6991 (window--state-put-2): Install a window parameter only if it has
6992 a non-nil value or an existing parameter shall be overwritten.
6993
6994 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
6995
6996 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
6997
6998 2012-01-14 Eli Zaretskii <eliz@gnu.org>
6999
7000 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
7001 don't pass the (nil) value of `upnode' to string-match.
7002
7003 2012-01-14 Chong Yidong <cyd@gnu.org>
7004
7005 * startup.el (command-line): Fix X resource class for cursorColor.
7006 Fix values recognized by the cursorBlink resource.
7007
7008 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
7009
7010 * epg.el (epg--make-temp-file): Avoid permission race condition
7011 when running on old Emacs versions (bug#10403).
7012
7013 2012-01-14 Glenn Morris <rgm@gnu.org>
7014
7015 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
7016
7017 2012-01-13 Alan Mackenzie <acm@muc.de>
7018
7019 Fix filling for when filladapt mode is enabled.
7020
7021 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
7022 c-mask-paragraph, pass in `fill-paragraph' rather than
7023 `fill-region-as-paragraph'. (This is a reversion of a previous
7024 change.)
7025 * progmodes/cc-mode.el (c-basic-common-init):
7026 Make fill-paragraph-handle-comment buffer local and set it to nil.
7027
7028 2012-01-13 Glenn Morris <rgm@gnu.org>
7029
7030 * dired.el (dired-switches-escape-p): New function.
7031 (dired-insert-directory): Use dired-switches-escape-p.
7032 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
7033
7034 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
7035
7036 2012-01-12 Glenn Morris <rgm@gnu.org>
7037
7038 * mail/sendmail.el (mail-mode): Update paragraph-separate for
7039 changes in adaptive-fill-regexp. (Bug#10276)
7040
7041 2012-01-11 Alan Mackenzie <acm@muc.de>
7042
7043 Fix Emacs bug #10463 - put `widen's around the critical spots.
7044
7045 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
7046 widen around each invocation of c-state-pp-to-literal. Remove an
7047 unused let variable.
7048
7049 2012-01-11 Glenn Morris <rgm@gnu.org>
7050
7051 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
7052 Doc fix.
7053
7054 2012-01-10 Chong Yidong <cyd@gnu.org>
7055
7056 * net/network-stream.el (network-stream-open-starttls):
7057 Avoid emitting a confusing error message when the server gives a bad
7058 response to the capability command.
7059
7060 2012-01-10 Glenn Morris <rgm@gnu.org>
7061
7062 * mail/unrmail.el (unrmail): Tweak previous change.
7063
7064 2012-01-09 Chong Yidong <cyd@gnu.org>
7065
7066 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
7067
7068 2012-01-08 Alan Mackenzie <acm@muc.de>
7069
7070 Optimise font locking in long enum definitions.
7071
7072 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
7073 arm to a cond form to handle enums.
7074 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
7075 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
7076
7077 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
7078
7079 * files.el (move-file-to-trash): Preserve default file modes on error.
7080 (Bug#10401)
7081
7082 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
7083
7084 * faces.el (set-face-attribute): Clarify the meaning of the nil
7085 frame (bug#10294).
7086
7087 * subr.el (with-selected-frame): Mention that the selected frame
7088 is restored (bug#9980).
7089
7090 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
7091 (bug#9759).
7092
7093 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
7094 (password-read): Don't autoload unused function.
7095
7096 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
7097
7098 * progmodes/which-func.el (which-func-mode): Turn into a
7099 non-interactive function and mark as obsolete (bug#10428).
7100
7101 2012-01-06 Chong Yidong <cyd@gnu.org>
7102
7103 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
7104 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
7105 functions, along with 1 and -1.
7106
7107 2012-01-06 Eli Zaretskii <eliz@gnu.org>
7108
7109 * time.el (display-time-load-average)
7110 (display-time-default-load-average): Doc fixes. See the thread
7111 starting at
7112 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
7113 for the details.
7114
7115 2012-01-06 Glenn Morris <rgm@gnu.org>
7116
7117 * mail/unrmail.el (unrmail): Give an explicit error if the input file
7118 has no messages. (Bug#10377)
7119
7120 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
7121 than Info-edit. (Bug#10385)
7122
7123 * time.el (display-time-load-average, display-time-next-load-average):
7124 Doc fixes.
7125
7126 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
7127 local setting of buffer-read-only to the input buffer. (Bug#10419)
7128
7129 * calendar/calendar.el (calendar-mode):
7130 Locally set scroll-margin to 0. (Bug#10379)
7131
7132 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
7133
7134 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
7135
7136 2012-01-05 Glenn Morris <rgm@gnu.org>
7137
7138 * eshell/em-unix.el (diff-no-select): Autoload it.
7139 (eshell/diff): Use diff-no-select. (Bug#10420)
7140
7141 2012-01-05 Chong Yidong <cyd@gnu.org>
7142
7143 * shell.el (shell-dynamic-complete-functions): Revert last change.
7144 (shell-command-completion-function): New function.
7145 (shell-completion-vars): Use it to implement
7146 shell-completion-execonly (Bug#10417).
7147
7148 * custom.el (enable-theme): Don't set custom-safe-themes.
7149
7150 * cus-theme.el (custom-theme-merge-theme):
7151 Ignore custom-enabled-themes and custom-safe-themes.
7152
7153 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
7154
7155 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
7156 first prompt in `sql-interacive-mode'.
7157 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
7158 keywords.
7159 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
7160 (sql-product-interactive): Bug fix: Set `sql-buffer' in
7161 context of original buffer. Invoke `sql-login-hook'.
7162
7163 2012-01-04 Eli Zaretskii <eliz@gnu.org>
7164
7165 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
7166 letters in cite-prefix.
7167
7168 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7169
7170 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
7171
7172 2012-01-03 Chong Yidong <cyd@gnu.org>
7173
7174 * shell.el (shell-dynamic-complete-functions):
7175 Put pcomplete-completions-at-point, so as to try
7176 comint-filename-completion first (Bug#10417).
7177
7178 2012-01-02 Richard Stallman <rms@gnu.org>
7179
7180 * battery.el (battery-status-function):
7181 Detect when to use battery-yeeloong-sysfs.
7182 (battery-echo-area-format): Add string for Yeeloong.
7183 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
7184 (battery-yeeloong-sysfs): New function.
7185
7186 2012-01-02 Chong Yidong <cyd@gnu.org>
7187
7188 * dirtrack.el (dirtrack-list): Eliminate unused third element.
7189 (dirtrack): Merge code for handling relative filenames in prompt
7190 from shell-dir-cookie-watcher.
7191 (dirtrack-debug-message): New arg to avoid excess format calls.
7192
7193 * shell.el (shell-dir-cookie-re): Variable deleted.
7194 (shell-dir-cookie-watcher): Function deleted.
7195 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
7196 with dirtrack-mode.
7197
7198 2012-01-01 Eli Zaretskii <eliz@gnu.org>
7199
7200 * term/w32-win.el (dynamic-library-alist) <gnutls>:
7201 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
7202 libgnutls-26.dll.
7203
7204 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
7205
7206 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
7207
7208 2011-12-31 Eli Zaretskii <eliz@gnu.org>
7209
7210 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
7211 headers of non-MIME messages, when rmail-enable-mime is non-nil.
7212
7213 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
7214
7215 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
7216 also for alternative shells.
7217 (tramp-open-connection-setup-interactive-shell): Check, whether
7218 the shell is a busybox.
7219 (tramp-send-command): Don't suppress multiple prompts for
7220 busyboxes, it hurts.
7221
7222 2011-12-28 Chong Yidong <cyd@gnu.org>
7223
7224 * progmodes/gdb-mi.el (gdb-get-source-file-list)
7225 (gdb-get-source-file): Move mode line update to
7226 gdb-get-source-file (Bug#10087).
7227
7228 2011-12-25 Chong Yidong <cyd@gnu.org>
7229
7230 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
7231 gud-gdb-marker-filter without taking it as an argument.
7232 (gud-gdb-run-command-fetch-lines): Caller changed.
7233 (gud-gdb-completion-function): New variable.
7234 (gud-gdb-completion-at-point): Use it.
7235 (gud-gdb-completions-1): Split from gud-gdb-completions.
7236
7237 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
7238 function as separate arguments.
7239 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
7240 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
7241 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
7242 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
7243 (gdb-stopped, def-gdb-auto-update-trigger)
7244 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
7245 (gdb-get-changed-registers, gdb-get-main-selected-frame):
7246 Callers changed.
7247 (gud-gdbmi-completions): New function.
7248 (gdb): Use it for generating the completion table.
7249
7250 2011-12-24 Alan Mackenzie <acm@muc.de>
7251
7252 Introduce a mechanism to widen the region used in context font
7253 locking. Use this to protect declarations from losing their contexts.
7254
7255 * progmodes/cc-langs.el (c-before-font-lock-functions):
7256 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
7257 (c-before-context-fontification-functions): New defvar, a list of
7258 functions to be run just before context (etc.) font locking.
7259
7260 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
7261 New, functionality extracted from
7262 c-neutralize-syntax-in-and-mark-CPP.
7263 (c-in-after-change-fontification): New variable.
7264 (c-after-change): Set c-in-after-change-fontification.
7265 (c-set-fl-decl-start): Rejig its interface, so it can be called
7266 from both after-change and context fontifying.
7267 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
7268 New functions.
7269 (c-standard-font-lock-fontify-region-function): New variable.
7270 (c-font-lock-fontify-region): New function.
7271
7272 2011-12-24 Juri Linkov <juri@jurta.org>
7273
7274 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
7275 (Bug#10348)
7276
7277 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
7278
7279 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
7280 existence of source file. (Bug#10325)
7281
7282 2011-12-23 Alan Mackenzie <acm@muc.de>
7283
7284 Fix unstable fontification inside templates.
7285
7286 * progmodes/cc-langs.el (c-before-font-lock-functions):
7287 Newly created from the singular version. The (c c++ objc) entry now
7288 additionally has c-set-fl-decl-start. The other languages (apart
7289 from AWK) have that as a single entry.
7290
7291 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7292 The functionality for "local" declarations has been extracted to
7293 c-set-fl-decl-start.
7294
7295 * progmodes/cc-mode.el (c-common-init, c-after-change):
7296 Changes due to pluralisation of c-before-font-lock-functions.
7297 (c-set-fl-decl-start): New function, extracted from
7298 c-font-lock-enclosing-decls and enhanced.
7299
7300 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
7301
7302 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
7303
7304 2011-12-22 Juri Linkov <juri@jurta.org>
7305
7306 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
7307
7308 2011-12-22 Chong Yidong <cyd@gnu.org>
7309
7310 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
7311
7312 2011-12-21 Drew Adams <drew.adams@oracle.com>
7313
7314 * files.el (file-remote-p): Fix docstring. (Bug#10319)
7315
7316 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7317
7318 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
7319
7320 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
7321
7322 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
7323 highlighting and support. Fix up comments for capitalization.
7324 (cfengine-mode-debug): New var.
7325 (cfengine3-mode): Change the modeline indicator to "CFE3".
7326 (cfengine3-font-lock-keywords): Improve defun highlighting.
7327 (cfengine2-actions): Rename from `cfengine-actions'.
7328 (cfengine2-font-lock-keywords): Rename from
7329 `cfengine-font-lock-keywords'.
7330 (cfengine2-imenu-expression): Rename from
7331 `cfengine-imenu-expression'.
7332 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
7333 (cfengine2-beginning-of-defun): Rename from
7334 `cfengine-beginning-of-defun'.
7335 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
7336 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
7337 (cfengine2-mode): Rename from `cfengine-mode'. Change the
7338 modeline indicator to "CFE2".
7339 (cfengine-mode): Defalias to `cfengine-auto-mode'.
7340 (cfengine-mode-abbrevs): Mark obsolete.
7341
7342 2011-12-21 Chong Yidong <cyd@gnu.org>
7343
7344 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
7345 filename argument.
7346
7347 2011-12-20 Martin Rudalics <rudalics@gmx.at>
7348
7349 * window.el (window-normalize-buffer-to-display): Remove.
7350 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
7351
7352 2011-12-19 Chong Yidong <cyd@gnu.org>
7353
7354 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
7355 Don't signal an error in a predicate function; return non-nil.
7356 (vc-dir-mark-file): Move the error here.
7357 (vc-dir-mark-unmark): If acting on the region, keep going if one
7358 of the entries cannot be marked/unmarked.
7359 (vc-dir-mark-all-files): If current entry is a directory, mark
7360 only child files, as documented.
7361
7362 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
7363
7364 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
7365 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
7366 addition.
7367
7368 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
7369
7370 * term/ns-win.el (ns-get-selection-internal)
7371 (ns-store-selection-internal): Declare.
7372 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
7373 Declare as obsolete.
7374 (ns-get-pasteboard, ns-paste-secondary):
7375 Use ns-get-selection-internal.
7376 (ns-set-pasteboard, ns-copy-including-secondary):
7377 Use ns-store-selection-internal.
7378
7379 2011-12-17 Chong Yidong <cyd@gnu.org>
7380
7381 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
7382 (vc-deduce-fileset): Doc fix.
7383
7384 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
7385
7386 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
7387
7388 2011-12-13 Sam Steingold <sds@gnu.org>
7389
7390 * man.el (Man-getpage-in-background): When running under a
7391 window-system, ignore $MANWIDTH and $COLUMNS.
7392
7393 2011-12-15 Kenichi Handa <handa@m17n.org>
7394
7395 * language/ethio-util.el: Change coding tag to utf-8-emacs.
7396 (setup-ethiopic-environment-internal): Comment out key-binding for
7397 ethio-toggle-punctuation.
7398
7399 2011-12-13 Alan Mackenzie <acm@muc.de>
7400
7401 Add the switch statement to AWK Mode.
7402
7403 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
7404 "default" to the keywords regexp.
7405
7406 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
7407 expression as the rest.
7408 (c-nonlabel-token-key): Allow string literals for AWK.
7409 Refactor for the other modes.
7410
7411 Large brace-block initialisation makes CC Mode slow: Fix.
7412 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
7413 routines. Limit backward searching in c-font-lock-enclosing.decl.
7414
7415 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
7416 pp-state and literal type in addition to the limits.
7417 (c-state-safe-place): New defun, extracted from c-state-literal-at.
7418 (c-state-literal-at): Use the above new defun.
7419 (c-slow-in-literal, c-fast-in-literal): Remove.
7420 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
7421
7422 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
7423 being in a literal. Add a limit for backward searching.
7424
7425 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
7426 c-slow-in-literal.
7427
7428 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
7429
7430 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
7431
7432 2011-12-13 Martin Rudalics <rudalics@gmx.at>
7433
7434 * window.el (delete-other-windows): Use correct frame in call to
7435 window-with-parameter.
7436
7437 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
7438
7439 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
7440 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
7441 (makefile-gmake-statements, makefile-makepp-statements):
7442 Use it and add new makepp keywords.
7443 (makefile-makepp-font-lock-keywords): Add new patterns.
7444 (makefile-match-function-end): Match new [...] and [[...]].
7445
7446 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
7447
7448 * ses.el (ses-call-printer-return, ses-cell-property-get)
7449 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
7450 (ses-create-cell-variable, ses-reset-header-string)
7451 (ses-cell-set-formula, ses-repair-cell-reference-all)
7452 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
7453 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
7454 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
7455 (ses-aset-with-undo, ses-load, ses-truncate-cell)
7456 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
7457 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
7458 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
7459 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
7460 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
7461 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
7462 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
7463 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
7464
7465 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
7466
7467 * ses.el: The overall change is to add cell renaming, that is
7468 setting fancy names for cell symbols other than name matching
7469 "\\`[A-Z]+[0-9]+\\'" regexp .
7470 (ses-create-cell-variable): New defun.
7471 (ses-relocate-formula): Relocate formulas only for cells the
7472 symbols of which are not renamed, i.e. symbols whose names do not
7473 match regexp "\\`[A-Z]+[0-9]+\\'".
7474 (ses-relocate-all): Relocate values only for cells the symbols of
7475 which are not renamed.
7476 (ses-load): Create cells variables as the (ses-cell ...) are read,
7477 in order to check row col consistency with cell symbol name only
7478 for cells that are not renamed.
7479 (ses-replace-name-in-formula): New defun.
7480 (ses-rename-cell): New defun.
7481
7482 2011-12-11 Chong Yidong <cyd@gnu.org>
7483
7484 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
7485 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
7486
7487 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
7488
7489 * window.el (other-window): Fix docstring.
7490
7491 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7492
7493 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
7494 `from' or `to' address before taking its substring.
7495 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
7496 encoded name is chopped in the middle of the encoded string, and
7497 thus displayed encoded.
7498
7499 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
7500
7501 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
7502
7503 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7504
7505 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
7506 to use texinfo-update-node and commands that call it if the
7507 Texinfo file uses @node lines without next/prev/up pointers.
7508 Correct outdated description about texinfo-master-menu.
7509 (texinfo-all-menus-update, texinfo-master-menu)
7510 (texinfo-update-node, texinfo-every-node-update)
7511 (texinfo-multiple-files-update): Doc fix. Warn against updating
7512 all the @node lines.
7513 (texinfo-master-menu): Only call texinfo-update-node if the prefix
7514 argument is numeric. Explain better in the doc string what the
7515 function really does.
7516 (texinfo-insert-master-menu-list): Improve the error message
7517 displayed if there's no menu in the Top node.
7518 (Bug#2975) See also this thread:
7519 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
7520
7521 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
7522
7523 * speedbar.el (speedbar-supported-extension-expressions):
7524 Add .adb and .ads, commonly used for Ada source code (bug#10256).
7525
7526 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
7527
7528 * printing.el (pr-mode-alist):
7529 * simple.el (filter-buffer-substring-functions)
7530 (completion-list-insert-choice-function):
7531 * window.el (window-with-parameter, window-atom-root)
7532 (window-sides-slots, window-size-fixed, window-min-delta)
7533 (window-max-delta, window--resize-mini-window)
7534 (window--resize-child-windows-normal, window-tree)
7535 (delete-other-windows, quit-window, split-window)
7536 (display-buffer-record-window, special-display-buffer-names)
7537 (special-display-regexps, special-display-popup-frame)
7538 (same-window-p, split-window-sensibly)
7539 (display-buffer-overriding-action, display-buffer-alist)
7540 (display-buffer-base-action, display-buffer, switch-to-buffer)
7541 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
7542 (fit-window-to-buffer, recenter-positions)
7543 (mouse-autoselect-window-state, mouse-autoselect-window-select):
7544 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
7545 and remove unneeded backslashes in docstrings.
7546
7547 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
7548
7549 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
7550
7551 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
7552 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
7553 end in ".mk".
7554 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
7555 when reading the makefile (bug#10116).
7556
7557 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
7558
7559 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
7560 (bug#10116).
7561
7562 2011-12-06 Glenn Morris <rgm@gnu.org>
7563
7564 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
7565
7566 2011-12-06 Chong Yidong <cyd@gnu.org>
7567
7568 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
7569
7570 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
7571
7572 * textmodes/table.el (table-shorten-cell): Fix typo.
7573
7574 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
7575
7576 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
7577
7578 2011-12-05 Eli Zaretskii <eliz@gnu.org>
7579
7580 * descr-text.el (describe-char): Fix display of strong
7581 right-to-left characters and directional embeddings and overrides.
7582
7583 * simple.el (what-cursor-position): Fix display of codepoints of
7584 strong right-to-left characters.
7585
7586 2011-12-05 Chong Yidong <cyd@gnu.org>
7587
7588 * faces.el (read-color): Doc fix.
7589
7590 2011-12-05 Glenn Morris <rgm@gnu.org>
7591
7592 * align.el (align--set-marker): Add doc-string.
7593 Don't try to move something that is not a marker. (Bug#10216)
7594
7595 2011-12-04 Glenn Morris <rgm@gnu.org>
7596
7597 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
7598 overly zealous deletion of trailing whitespace.
7599
7600 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
7601
7602 * server.el (server-delete-client): On Windows, do not try to delete
7603 the only terminal.
7604 (server-process-filter): On Windows, treat requests for a tty frame as
7605 if they were for a GUI frame if the running server is in GUI mode.
7606
7607 2011-12-03 Glenn Morris <rgm@gnu.org>
7608
7609 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
7610
7611 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
7612
7613 * electric.el: Streamline electric-indent's hook.
7614 (electric-indent-chars): Revert to simple list.
7615 (electric-indent-functions): New var.
7616 (electric-indent-post-self-insert-function): Use it.
7617
7618 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
7619 there's no inferior buffer (bug#10196).
7620 (prolog-consult-compile): Don't use toggle-read-only.
7621
7622 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
7623
7624 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
7625 interrupt. (Bug#10187)
7626
7627 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
7628
7629 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
7630 (bug#9160).
7631
7632 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
7633 (bug#10191).
7634
7635 2011-12-02 Juri Linkov <juri@jurta.org>
7636
7637 * info.el (Info-search): Display "end of manual" when Isearch
7638 reaches the end of single-file Info manual. (Bug#9918)
7639
7640 2011-12-02 Eli Zaretskii <eliz@gnu.org>
7641
7642 * isearch.el (isearch-message-prefix): Run the input method part
7643 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
7644
7645 2011-12-02 Juri Linkov <juri@jurta.org>
7646
7647 * isearch.el (isearch-occur): Use `word-search-regexp' for
7648 `isearch-word'.
7649 (isearch-search-and-update): Add condition for `isearch-word' and
7650 call `word-search-regexp'. (Bug#10145)
7651
7652 2011-12-01 Glenn Morris <rgm@gnu.org>
7653
7654 * eshell/em-hist.el (eshell-hist-initialize):
7655 Handle eshell-history-size nil and HISTSIZE set or unset.
7656 (eshell-history-file-name, eshell-history-size): Fix custom type.
7657
7658 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
7659
7660 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
7661
7662 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
7663
7664 * progmodes/verilog-mode.el (verilog-pretty-expr):
7665 Rework verilog-pretty-expr to handle new assignment operators in system
7666 verilog, such as += *= and the like.
7667 (verilog-assignment-operator-re): Regular expression to find the
7668 assigment operator in a verilog assignment.
7669 (verilog-assignment-operation-re): Regular expression to find an
7670 assignment statement for pretty-expr.
7671 (verilog-in-attribute-p): Query returns true if point is in an
7672 attribute context; used to skip these for expression line up from
7673 pretty-expr.
7674 (verilog-in-parameter-p): Query returns true if point is in an
7675 parameter definition context; used to skip these for expression
7676 line up from pretty-expr.
7677 (verilog-in-parenthesis-p): Query returns true if point is in a
7678 parenthetical expression, specifically ( ) but not [ ] or { };
7679 used by pretty-expr.
7680 (verilog-just-one-space): If there is no space, don't add one.
7681 (verilog-get-lineup-indent-2): Specifically skip just attribute
7682 contexts for expression lineup, rather than skipping all
7683 parenthetical expressions.
7684 (verilog-calculate-indent): Fix comment, and fix indent.
7685 (verilog-do-indent): Indent declarations in lists (suggested by
7686 Joachim Lechner).
7687 (verilog-mode-abbrev-table): Populate abbrev mode with the various
7688 skeleton items.
7689 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
7690 by Alain Mellan).
7691
7692 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
7693
7694 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
7695 parameters with embedded comments. Reported by Ray Stevens.
7696 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
7697 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
7698 Reported by Tim Holt.
7699 (verilog-auto): Fix AUTOing a upper module then AUTOing module
7700 instantiated by upper module causing wrong expansion until AUTOed a
7701 second time. Reported by K C Buckenmaier.
7702 (verilog-diff-auto): Fix showing .* as a difference when
7703 `verilog-auto-star-save' off. Reported by Dan Dever.
7704 (verilog-auto-reset, verilog-read-always-signals)
7705 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
7706 temporary signals in reset list if
7707 verilog-auto-reset-blocking-in-non is nil, and match assignment
7708 style to each signal's assignment type, bug381.
7709 Reported by Thomas Esposito.
7710 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
7711 (verilog-uvm-statement-re): Support UVM indentation and
7712 highlighting, with old OVM keywords only.
7713 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
7714 Support AUTOTIEOFF creating non-wire data types.
7715 Suggested by Jonathan Greenlaw.
7716 (verilog-auto-insert-lisp, verilog-delete-to-paren)
7717 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
7718 (verilog-inject-sense, verilog-read-inst-pins)
7719 (verilog-read-sub-decls, verilog-read-sub-decls-line):
7720 Fix mismatching parenthesis inside commented out code when deleting
7721 AUTOINST, bug383. Reported by Jonathan Greenlaw.
7722 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
7723 non-numeric vector width. Reported by Alex Reed.
7724 (verilog-auto-ascii-enum): Add "onehot" option to work around not
7725 detecting signals with parameter widths. Reported by Alex Reed.
7726 (verilog-auto-delete-trailing-whitespace):
7727 With `verilog-auto-delete-trailing-whitespace' remove trailing
7728 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
7729 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
7730 Fix verilog-scan-cache corruption when running user AUTO expansion
7731 hooks that call indentation routines.
7732 (verilog-simplify-range-expression): Fix typo ignoring lower case
7733 identifiers.
7734 (verilog-delete-auto): Fix delete-autos to also remove user created
7735 automatics, as long as they start with AUTO.
7736 (verilog-batch-diff-auto, verilog-diff-auto)
7737 (verilog-diff-function): Add `verilog-diff-auto' and bind to
7738 "C-c?" to report differences in AUTO expansion, ignoring spaces.
7739 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
7740 (verilog-in-paren-quick, verilog-re-search-backward-quick)
7741 (verilog-re-search-forward-quick, verilog-syntax-ppss):
7742 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
7743 is disabled and its cache will get corrupt, causing AUTOS not to
7744 expand. Instead use only -quick functions.
7745 (verilog-scan-region): Fix scanning over escaped quotes.
7746 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
7747 (verilog-re-search-backward-quick)
7748 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
7749 related functions now ignore strings, to fix misparsing of strings
7750 with magic comments embedded in them.
7751 (verilog-read-auto-template):
7752 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
7753 Reported by Brad Dobbie.
7754 (verilog-read-auto-template):
7755 Fix 'verilog-auto-inst-template-numbers' with comments.
7756 Reported by Brad Dobbie.
7757 (verilog-auto-inst, verilog-auto-inst-param)
7758 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
7759 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
7760 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
7761 debugging templates without merge conflicts, bug357.
7762 Reported by Brad Dobbie.
7763 (verilog-read-auto-template):
7764 Fix verilog-auto-inst-template-numbers with multiple templates.
7765 Reported by Brad Dobbie.
7766 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
7767 abbrevs so user won't be asked to save.
7768 (verilog-read-auto-lisp-present): Fix to start at beginning of
7769 buffer in case called outside of verilog-auto.
7770 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
7771 to "X-2". Reported by Matthew Myers.
7772 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
7773 all inputs from module templates. Reported by Leith Johnson.
7774 (verilog-module-inside-filename-p): Fix locating programs as with
7775 modules.
7776 (verilog-auto-inst-port): Fix vl-width expressions when using
7777 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
7778 (verilog-decls-get-regs, verilog-decls-get-signals,
7779 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
7780 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
7781 verilog-read-decls): Combine reg and wire structures into one var
7782 structure to represent SystemVerilog concepts.
7783 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
7784 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
7785 (verilog-auto-wire-type, verilog-insert-definition):
7786 Add verilog-auto-wire-type and AUTOLOGIC to support using
7787 SystemVerilog "logic" keyword instead of "wire"/"reg".
7788 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
7789 to declares outputs that also have assignments (presumably in an
7790 ifdef or generate if so there's not a driver conflict).
7791 Reported by Matthew Myers.
7792 (verilog-auto-declare-nettype, verilog-insert-definition):
7793 Add verilog-auto-declare-nettype to fix declarations using
7794 `default_nettype none. Reported by Julian Gorfajn.
7795 (verilog-read-always-signals-recurse, verilog-read-decls)
7796 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
7797 malformed end statement, bug325. Reported by Joshua Wise and
7798 Andrew Drake.
7799 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
7800 (verilog-inst-comment-re): Fix not deleting Interfaced comment
7801 when expanding .* in interfaces, bug320.
7802 Reported by Pierre-David Pfister.
7803 (verilog-read-module-name): Fix import statements between module
7804 name and open parenthesis, bug317.
7805 Reported by Pierre-David Pfister.
7806 (verilog-simplify-range-expression): Fix simplification of
7807 multiplications inside AUTOWIRE connections, bug303.
7808 (verilog-auto-inst-port): Support parameter expansion in
7809 multidimensional arrays.
7810 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
7811 after "assert property". Reported by Julian Gorfajn.
7812 (verilog-simplify-range-expression): Fix "couldn't merge" errors
7813 with multiplication, bug303.
7814 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
7815 Reported by Jan Frode Lonnum.
7816
7817 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
7818
7819 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
7820 (hfy-shell-file-name, hfy-shell):
7821 * international/fontset.el (x-decompose-font-name): Fix typos.
7822
7823 2011-11-29 Ken Brown <kbrown@cornell.edu>
7824
7825 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
7826 (gdb-version): Remove defvar.
7827 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
7828 (gdb-gud-context-command, gdb-non-stop-handler)
7829 (gdb-current-context-command, gdb-stopped): Use it.
7830 (gdb-init-1): Enable pretty printing here.
7831 (gdb-non-stop-handler): Don't enable pretty-printing here.
7832 Check to see if the target supports non-stop mode; if not, turn off
7833 non-stop mode. Use the following.
7834 (gdb-check-target-async): New defun.
7835 (gud-watch, gdb-stopped): Fix whitespace.
7836 (gdb-get-source-file): Don't try to display the source file if
7837 `gdb-main-file' is nil.
7838
7839 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7840
7841 * align.el: Try to generate fewer markers (bug#10047).
7842 (align--set-marker): New macro.
7843 (align-region): Use it.
7844
7845 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7846
7847 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
7848
7849 2011-11-29 Chong Yidong <cyd@gnu.org>
7850
7851 * indent.el (indent-for-tab-command, indent-according-to-mode):
7852 Doc fix.
7853 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
7854
7855 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
7856
7857 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
7858 aware of remote file names. (Bug#10124)
7859
7860 2011-11-29 Chong Yidong <cyd@gnu.org>
7861
7862 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
7863
7864 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
7865
7866 * files.el (find-file): Don't use force-same-window (bug#10144).
7867 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
7868 use pop-to-buffer if the selected window can't be used.
7869 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
7870
7871 2011-11-28 Eli Zaretskii <eliz@gnu.org>
7872
7873 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
7874 special-mode-map.
7875
7876 2011-11-28 Chong Yidong <cyd@gnu.org>
7877
7878 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
7879
7880 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
7881
7882 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
7883 gdb-get-source-file-list on gdb-create-source-file-list.
7884
7885 2011-11-26 Eli Zaretskii <eliz@gnu.org>
7886
7887 * whitespace.el (whitespace-newline): Use a different foreground
7888 color for 16-color light-background displays.
7889
7890 2011-11-24 Chong Yidong <cyd@gnu.org>
7891
7892 * window.el (display-buffer--special-action): Doc fix.
7893
7894 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
7895
7896 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
7897 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
7898 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
7899 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
7900 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
7901 (avl-tree-stack-first):
7902 * emacs-lisp/cconv.el (cconv--analyse-use):
7903 * net/gnutls.el (gnutls-negotiate): Fix typos.
7904
7905 2011-11-24 Glenn Morris <rgm@gnu.org>
7906
7907 * lpr.el (lpr-windows-system, lpr-lp-system):
7908 * mail/binhex.el (binhex-begin-line):
7909 * progmodes/grep.el (grep-history, grep-find-history):
7910 * textmodes/flyspell.el:
7911 * vc/pcvs-defs.el (cvs-global-menu):
7912 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
7913 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
7914 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
7915
7916 * net/tls.el: Fix case of "GnuTLS".
7917
7918 * paths.el (rmail-file-name): Format doc-string for make-docfile.
7919
7920 * version.el (emacs-build-system): Give it a doc-string.
7921
7922 2011-11-24 Juri Linkov <juri@jurta.org>
7923
7924 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
7925
7926 2011-11-24 Glenn Morris <rgm@gnu.org>
7927
7928 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
7929 if called on a non-mime message just toggle the headers. (Bug#8006)
7930
7931 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
7932
7933 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
7934 (allout-lead-with-comment-string, allout-structure-deleted-hook)
7935 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
7936 (allout-rebullet-heading, allout-open-sibtopic)
7937 (allout-toggle-current-subtree-encryption)
7938 (allout-toggle-subtree-encryption, allout-encrypt-string)
7939 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
7940 (allout-distinctive-bullets-string, allout-auto-activation):
7941 * window.el (window-normalize-buffer-to-display):
7942 * progmodes/verilog-mode.el (verilog-batch-indent):
7943 * textmodes/bibtex.el (bibtex-field-braces-opt)
7944 (bibtex-field-strings-opt):
7945 * vc/cvs-status.el (cvs-tree-merge):
7946 Fix typos.
7947
7948 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
7949
7950 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
7951 `non-essential' to t, in order to avoid remote connections.
7952
7953 2011-11-23 Eli Zaretskii <eliz@gnu.org>
7954
7955 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7956 On MS-DOS and MS-Windows, compare with loaddefs.el
7957 case-insensitively.
7958
7959 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7960
7961 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
7962
7963 2011-11-23 Glenn Morris <rgm@gnu.org>
7964
7965 * paths.el (rmail-file-name): Reformat the doc-string so that it
7966 is picked up.
7967
7968 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
7969 (rmail-auto-file): Ignore case in the "special" field names,
7970 as mail-fetch-field does for all others.
7971
7972 * mail/rmail.el (rmail-forward):
7973 * mail/rmailkwd.el (rmail-set-label):
7974 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
7975 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
7976
7977 * mail/rmail.el (rmail-current-message): Doc fix.
7978
7979 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
7980
7981 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7982
7983 * server.el (server-eval-and-print): Allow C-g (bug#6585).
7984
7985 2011-11-22 Glenn Morris <rgm@gnu.org>
7986
7987 * mail/rmailmm.el (test-rmail-mime-handler)
7988 (test-rmail-mime-bulk-handler)
7989 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
7990
7991 2011-11-21 Juri Linkov <juri@jurta.org>
7992
7993 * calc/calc.el (calc-read-key-sequence):
7994 Let-bind `input-method-function' to nil. (Bug#10018)
7995
7996 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7997
7998 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
7999 Tell the caller that the next line needs recomputation, even
8000 though it doesn't start a sexp (bug#10094).
8001
8002 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8003
8004 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
8005
8006 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8007
8008 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8009 Use force-same-window.
8010
8011 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8012
8013 * descr-text.el (describe-char-unicode-data):
8014 * json.el (json-string-escape):
8015 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
8016 (Footnote-unicode, Footnote-style-p):
8017 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
8018
8019 2011-11-20 Chong Yidong <cyd@gnu.org>
8020
8021 * window.el (replace-buffer-in-windows): Restore interactive spec.
8022
8023 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8024
8025 * electric.el (electric-indent-mode): Fix last change (too optimistic).
8026
8027 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
8028 (byte-compile-global-not-obsolete-vars): New var.
8029 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
8030 Use it.
8031 (byte-compile-warn-obsolete): Align text with the one in *Help*.
8032
8033 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8034
8035 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
8036 * progmodes/pascal.el (electric-pascal-equal):
8037 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
8038 * xml.el (xml-substitute-special): Fix typos.
8039
8040 2011-11-20 Glenn Morris <rgm@gnu.org>
8041
8042 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
8043 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
8044 Doc fixes.
8045 (rmail-decode-mime-charset): Mark as obsolete.
8046
8047 * mail/rmailsum.el (rmail-message-regexp-p-1):
8048 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
8049 Before using mime functions, check they are set. (Bug#10077)
8050
8051 2011-11-19 Juri Linkov <juri@jurta.org>
8052
8053 * info.el (Info-finder-find-node): Use `package--builtins' instead
8054 of `package-alist'. Use node names formed by the pattern "Keyword "
8055 and the keyword name.
8056
8057 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8058
8059 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
8060
8061 2011-11-19 Juri Linkov <juri@jurta.org>
8062
8063 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
8064 that calls `revert-buffer' on all Info buffers. (Bug#9915)
8065 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
8066 `old-history', `old-history-forward'. Add let-binding
8067 `window-selected'. Remove calls to `kill-buffer',
8068 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
8069 before calling `Info-find-node', so `Info-find-node-2' will reread
8070 the Info file. Restore window positions only when `window-selected'
8071 is non-nil.
8072
8073 2011-11-19 Juri Linkov <juri@jurta.org>
8074
8075 * isearch.el (isearch-lazy-highlight-new-loop):
8076 Remove condition `(not isearch-error)'. (Bug#9918)
8077
8078 * misearch.el (multi-isearch-search-fun): Add condition
8079 `(not bound)' to ignore lazy-highlighting search.
8080 Add the search-failed message "end of multi" when the end of
8081 multi-sequence is reached. Uncapitalize the search-failed
8082 message "Repeat for next buffer".
8083
8084 * info.el (Info-search): Add the search-failed message
8085 "end of the manual" when the end of the manual is reached
8086 in Isearch mode.
8087
8088 2011-11-19 Juri Linkov <juri@jurta.org>
8089
8090 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
8091 Use non-destructive `remove' instead of `delete' because
8092 `Info-history-list' stored to `Info-isearch-initial-history-list' in
8093 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
8094
8095 2011-11-19 Juri Linkov <juri@jurta.org>
8096
8097 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
8098 to nil instead of binding `search-ring' and `regexp-search-ring'.
8099 (Bug#9185)
8100
8101 2011-11-19 Eli Zaretskii <eliz@gnu.org>
8102
8103 * simple.el (line-move): Force movement by logical lines for any
8104 hscrolled window, not only when auto-hscroll-mode is on.
8105 (line-move-visual): Update doc string to that effect. (Bug#10076)
8106
8107 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8108
8109 * language/european.el (macintosh): Define as alias for mac-roman.
8110
8111 2011-11-19 Eli Zaretskii <eliz@gnu.org>
8112
8113 * mail/rmailmm.el (rmail-mime-display-header)
8114 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
8115 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
8116 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
8117 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
8118 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
8119 of a raw aref.
8120 (rmail-mime-entity-segment): To get past the tagline, move forward
8121 2 more lines, to account for the 2 empty lines that precede and
8122 follow the line with the buttons.
8123 (rmail-mime-update-tagline): Move one more line, to get past the
8124 empty line that follows the buttons in the tagline. (Bug#9520)
8125
8126 2011-11-19 Martin Rudalics <rudalics@gmx.at>
8127
8128 * window.el (window-max-delta-1, window-min-delta-1)
8129 (window-min-size-1, window-state-get-1, window-state-put-1)
8130 (window-state-put-2): Use "window--" prefix.
8131
8132 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
8133
8134 * emacs-lisp/smie.el: Improve warnings and conflict detection.
8135 (smie-warning-count): New var.
8136 (smie-set-prec2tab): Use it.
8137 (smie-bnf->prec2): Improve warnings. Add docstring.
8138 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
8139 (smie-bnf--set-class): New function.
8140 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
8141 corner case.
8142
8143 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
8144 (compilation-error-properties, compilation-move-to-column):
8145 Handle compilation-first-column while in the target buffer.
8146
8147 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
8148 Don't hardcode point-min==1.
8149
8150 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
8151 (eshell-rewrite-for-command): Remove workaround.
8152 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
8153 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
8154 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
8155
8156 * files-x.el (modify-file-local-variable): Obey commenting conventions.
8157
8158 2011-11-17 Glenn Morris <rgm@gnu.org>
8159
8160 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8161 Ignore buffer-local generated-autoload-file if it is the same
8162 as the global value. (Bug#10049)
8163
8164 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
8165
8166 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
8167 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
8168 (reftex-toc-previous-heading, reftex-toc-max-level)
8169 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
8170 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
8171 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8172 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8173 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
8174 (reftex-toc-rename-label, reftex-toc-visit-location)
8175 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
8176 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
8177 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
8178 leaving "*toc*" only for references to the buffer.
8179
8180 2011-11-17 Martin Rudalics <rudalics@gmx.at>
8181
8182 * window.el (window-resize, delete-window, split-window):
8183 Replace window-splits by window-combination-resize.
8184 * cus-start.el (window-splits): Replace by window-combination-resize.
8185
8186 2011-11-17 Glenn Morris <rgm@gnu.org>
8187
8188 * progmodes/sh-script.el (sh-font-lock-keywords-var):
8189 Make bash entry derive from sh entry, not shell entry.
8190
8191 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
8192
8193 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
8194 local file name.
8195
8196 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8197
8198 * menu-bar.el (menu-bar-file-menu):
8199 * printing.el (pr-ps-utility):
8200 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
8201 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
8202 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
8203 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
8204 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
8205 (icalendar--convert-cyclic-to-ical)
8206 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
8207 (icalendar--convert-ical-to-diary)
8208 (icalendar--convert-recurring-to-diary)
8209 (icalendar--convert-non-recurring-all-day-to-diary)
8210 (icalendar-import-format-sample):
8211 * progmodes/idlw-shell.el (idlwave-shell-mode):
8212 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
8213 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
8214 (vhdl-ps-print-init): Fix typos.
8215
8216 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
8217
8218 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
8219 FSF and collapse date sequence, obscure author/maintainer email address
8220 better, remove extra version line, track relocation of author's webpage.
8221
8222 * progmodes/python.el (python-pdbtrack-input-prompt)
8223 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
8224 regular python pdb prompts. Adjustments shamelessly taken exactly as
8225 suggested in EmacsWiki page (tiny change):
8226 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8227
8228 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8229
8230 * expand.el (expand-pos, expand-index, expand-point):
8231 Remove redundant info from docstring.
8232 (expand-add-abbrevs): Doc fix.
8233 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
8234 (expand-sample-perl-mode-expand-list): Fix typos.
8235
8236 * net/dbus.el (dbus-event-member-name):
8237 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
8238 * term/pc-win.el (msdos-create-frame-with-faces):
8239 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
8240
8241 2011-11-16 Martin Rudalics <rudalics@gmx.at>
8242
8243 * window.el (split-window, window-state-get-1)
8244 (window-state-put-1, window-state-put-2): Rename occurrences of
8245 window-nest to window-combination-limit.
8246 * cus-start.el (window-nest): Rename to window-combination-limit.
8247
8248 2011-11-16 Chong Yidong <cyd@gnu.org>
8249
8250 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
8251 regexp (Bug#10033).
8252
8253 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8254
8255 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
8256 `completing-read' will remove *Completions* and will preserve
8257 current-buffer for us.
8258 (tmm-add-prompt): Users of *Completions* will always (re)set its
8259 major mode.
8260 (tmm-old-comp-map): Remove.
8261
8262 2011-11-16 Glenn Morris <rgm@gnu.org>
8263
8264 * mail/rmailedit.el: Require rmailmm when compiling.
8265 (rmail-old-mime-state): New declaration.
8266 (rmail-edit-current-message): If editing a mime message,
8267 edit the "raw" message from the mbox buffer.
8268 (rmail-cease-edit): Handle mime messages. (Bug#9840)
8269
8270 2011-11-15 Glenn Morris <rgm@gnu.org>
8271
8272 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
8273 which wasn't being used. Add optional arg to force given state.
8274 (rmail-mime): Add optional arg to force given state.
8275
8276 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8277
8278 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8279 * frame.el (display-mm-dimensions-alist):
8280 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
8281 (outline-move-subtree-down):
8282 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
8283 (newsticker--treeview-do-get-node):
8284 * net/quickurl.el (quickurl-list-buffer-name):
8285 * progmodes/dcl-mode.el (dcl-mode):
8286 * progmodes/gdb-mi.el (gdb-mapcar*):
8287 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
8288
8289 2011-11-15 Glenn Morris <rgm@gnu.org>
8290
8291 * mail/rmail.el (rmail-file-coding-system): It's only ever used
8292 in a boolean sense, so just make it a boolean, and fix the doc.
8293 (rmail-show-mime-function, rmail-mime-feature)
8294 (rmail-require-mime-maybe): Doc fixes.
8295 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
8296
8297 * mail/rmailmm.el (rmail-show-mime): Doc fix.
8298
8299 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8300
8301 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
8302 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
8303 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
8304 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
8305
8306 2011-11-15 Glenn Morris <rgm@gnu.org>
8307
8308 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
8309 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
8310 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
8311 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
8312 (rmail-mime, rmail-show-mime): Doc fixes.
8313
8314 * term/ns-win.el (mode-line-frame-identification):
8315 Leave it alone. (Bug#10051)
8316
8317 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
8318
8319 * mail/rmailout.el (rmail-output-to-rmail-buffer):
8320 Handle empty buffers. (Bug#9978)
8321
8322 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
8323
8324 * international/mule.el (define-charset):
8325 * mail/rmailmm.el (rmail-mime-find-header-encoding):
8326 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
8327 * progmodes/verilog-mode.el (verilog-backward-token):
8328 * textmodes/ispell.el (lookup-words):
8329 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
8330
8331 2011-11-14 Glenn Morris <rgm@gnu.org>
8332
8333 * progmodes/executable.el
8334 (executable-make-buffer-file-executable-if-script-p):
8335 Handle file-modes returning nil.
8336
8337 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
8338 message - not necessary, and causes problems. (Bug#9831)
8339
8340 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
8341
8342 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
8343
8344 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
8345 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
8346 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
8347
8348 2011-11-12 Martin Rudalics <rudalics@gmx.at>
8349
8350 * window.el (window-resize, delete-window): Use window-splits
8351 variable instead of function.
8352 (window-state-get-1, window-state-put-2, window-state-put):
8353 Don't deal with windows' splits status.
8354
8355 2011-11-12 Glenn Morris <rgm@gnu.org>
8356
8357 * apropos.el (apropos-do-all, apropos-library, apropos-value)
8358 (apropos-documentation): Doc fixes.
8359
8360 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
8361
8362 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
8363 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
8364
8365 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
8366
8367 * electric.el (electric-indent-post-self-insert-function): Make it
8368 possible for a char to only indent in some circumstances.
8369 (electric-indent-mode): Simplify.
8370
8371 2011-11-11 Martin Rudalics <rudalics@gmx.at>
8372
8373 * window.el (windows-with-parameter): Remove unused function.
8374 (windows-at-side): Rename to window-at-side-list.
8375 (window-check, window-atom-check, window-atom-check-1)
8376 (window-side-check, window-size-ignore, window-size-fixed-1)
8377 (window-in-direction-2): Prefix with "window--".
8378 (window-tree-1): Rename to window--subtree, fix doc-string.
8379
8380 2011-11-11 Glenn Morris <rgm@gnu.org>
8381
8382 * subr.el (eval-after-load): If FILE is already loaded,
8383 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
8384
8385 2011-11-10 Glenn Morris <rgm@gnu.org>
8386
8387 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
8388 Call svn via vc-svn-command rather than vc-do-command.
8389 (vc-svn-command): Add --non-interactive. (Bug#9993)
8390 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
8391
8392 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8393 Add toggle-read-only. (Bug#7292)
8394 * files.el (toggle-read-only): Mention that it should only
8395 be used interactively. (Bug#10006)
8396
8397 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
8398
8399 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8400 Adjust regexp for OCaml warnings.
8401
8402 * electric.el (electric-pair-post-self-insert-function): Let user
8403 turn it off buffer-locally (bug#9932).
8404
8405 * progmodes/python.el (python-beginning-of-statement):
8406 Rewrite (bug#2703).
8407
8408 * progmodes/compile.el: Better handle TABs (bug#9749).
8409 (compilation-internal-error-properties)
8410 (compilation-next-error-function): Obey the target buffer's
8411 compilation-error-screen-columns.
8412
8413 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
8414
8415 * progmodes/meta-mode.el: Remove obsolete comments.
8416 (meta-right-comment-regexp, meta-ignore-comment-regexp):
8417 Fix typos in docstrings.
8418
8419 2011-11-09 Martin Rudalics <rudalics@gmx.at>
8420
8421 * window.el (window-size-fixed-p): Rewrite doc-string.
8422 (window-resizable-p): Rename to window--resizable-p. Update callers.
8423 (window--resizable): New function. Make all callers of
8424 window-resizable call window--resizable instead.
8425 (window-resizable): Rewrite in terms of window--resizable.
8426
8427 2011-11-08 Glenn Morris <rgm@gnu.org>
8428
8429 * progmodes/delphi.el (delphi-mode-syntax-table):
8430 Let define-derived-mode define a proper syntax table. (Bug#9994)
8431
8432 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8433
8434 * window.el: Stay away from defsubst.
8435 (window-list-no-nils): Remove.
8436 (window-state-get-1, window-state-get): Use backquote instead.
8437
8438 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8439
8440 * emacs-lisp/find-func.el (find-function-read):
8441 Fix incorrect use of default argument in `completing-read'.
8442
8443 2011-11-08 Martin Rudalics <rudalics@gmx.at>
8444
8445 * window.el (display-buffer-function, special-display-function):
8446 Mention display-buffer-record-window but do not mention
8447 help-setup parameter in doc-strings.
8448 (window-min-delta): Fix doc-string typo.
8449
8450 2011-11-08 Chong Yidong <cyd@gnu.org>
8451
8452 * window.el (window-total-height, window-total-width): Doc fix.
8453 (window-body-size): Move from C.
8454 (window-body-height, window-body-width): Move to C.
8455
8456 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8457
8458 * window.el: Make special-display like display-buffer-alist (bug#9532).
8459 (display-buffer--special-action): New function, morphed
8460 from display-buffer--special.
8461 (display-buffer): Use it to handle special-display-buffers at higher
8462 priority (just after display-buffer-alist).
8463 (display-buffer-fallback-action, display-buffer--other-frame-action)
8464 (pop-to-buffer-same-window): Remove display-buffer--special.
8465
8466 2011-11-07 Glenn Morris <rgm@gnu.org>
8467
8468 * calendar/cal-menu.el (cal-menu-set-date-title):
8469 Do nothing if not in a calendar. (Bug#9976)
8470
8471 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
8472
8473 * files.el (find-file): Always use selected-window.
8474
8475 2011-11-07 Martin Rudalics <rudalics@gmx.at>
8476
8477 * window.el (window-combinations): Make WINDOW argument
8478 mandatory. Rewrite doc-string.
8479 (walk-window-subtree, window-atom-check, window-min-delta)
8480 (window-max-delta, window--resize-this-window)
8481 (window--resize-root-window-vertically, window-tree)
8482 (balance-windows, window-state-put): Rewrite doc-strings as to
8483 not mention the term "subwindow".
8484 (window--resize-subwindows-skip-p): Rename to
8485 window--resize-child-windows-skip-p.
8486 (window--resize-subwindows-normal): Rename to
8487 window--resize-child-windows-normal.
8488 (window--resize-subwindows): Rename to
8489 window--resize-child-windows.
8490 (window-or-subwindow-p): Rename to window--in-subtree-p.
8491
8492 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8493
8494 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
8495 Ensure that mbox format messages end in two newlines (Bug#9974).
8496
8497 2011-11-06 Chong Yidong <cyd@gnu.org>
8498
8499 * window.el (window-combination-p): Function deleted; its
8500 side-effect is not used in any existing code.
8501 (window-combinations, window-combined-p): Call window-*-child
8502 directly.
8503
8504 2011-11-05 Chong Yidong <cyd@gnu.org>
8505
8506 * window.el (window-valid-p): Rename from window-any-p.
8507 (window-size-ignore, window-state-get): Callers changed.
8508 (window-normalize-window): Rename from window-normalize-any-window.
8509 New arg LIVE-ONLY, replacing window-normalize-live-window.
8510 (window-normalize-live-window): Delete.
8511 (window-combination-p, window-combined-p, window-combinations)
8512 (walk-window-subtree, window-atom-root, window-min-size)
8513 (window-sizable, window-sizable-p, window-size-fixed-p)
8514 (window-min-delta, window-max-delta, window-resizable)
8515 (window-resizable-p, window-full-height-p, window-full-width-p)
8516 (window-current-scroll-bars, window-point-1, set-window-point-1)
8517 (window-at-side-p, window-in-direction, window-resize)
8518 (adjust-window-trailing-edge, maximize-window, minimize-window)
8519 (window-deletable-p, delete-window, delete-other-windows)
8520 (record-window-buffer, unrecord-window-buffer)
8521 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
8522 (quit-window, split-window, window-state-put)
8523 (set-window-text-height, fit-window-to-buffer)
8524 (shrink-window-if-larger-than-buffer): Callers changed.
8525
8526 2011-11-04 Eli Zaretskii <eliz@gnu.org>
8527
8528 * mail/rmail.el (rmail-simplified-subject): Decode subject with
8529 rfc2047-decode-string.
8530 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
8531 warnings.
8532
8533 * window.el (window-body-height, window-body-width): Mention in
8534 the doc string that the return values are in frame's canonical
8535 units. (Bug#9949)
8536
8537 2011-11-03 Alan Mackenzie <acm@muc.de>
8538
8539 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
8540 change in cc-engine.el.
8541
8542 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
8543
8544 * window.el (switch-to-buffer): Use `force-same-window' interactively.
8545
8546 2011-11-02 Martin Rudalics <rudalics@gmx.at>
8547
8548 * window.el (quit-window): Call unrecord-window-buffer after
8549 showing another buffer in the window. (Bug#9937)
8550 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
8551
8552 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
8553
8554 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
8555 Accept status with more than 9 shelves. (Bug#9935)
8556 Reported by Colin D Bennett <colin@gibibit.com>.
8557
8558 2011-11-01 Martin Rudalics <rudalics@gmx.at>
8559
8560 * help.el (with-help-window): Don't reference
8561 temp-buffer-show-specifiers in doc-string.
8562
8563 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
8564
8565 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
8566 menu-item.
8567
8568 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8569
8570 * whitespace.el: New version 13.2.2.
8571 (whitespace-newline-mode): Disable properly. Reported by Sarah
8572 <EmacsWiki>.
8573
8574 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
8575
8576 * net/newst-treeview.el: Remove "Time-stamp".
8577 (newsticker--group-manage-orphan-feeds): Do not call
8578 newsticker--treeview-tree-update.
8579 (newsticker-treeview-update, newsticker-treeview):
8580 Call newsticker--treeview-tree-update if necessary.
8581
8582 2011-10-30 Martin Rudalics <rudalics@gmx.at>
8583
8584 * window.el (window-iso-combination-p, window-iso-combined-p)
8585 (window-iso-combinations): Remove "iso-" infix.
8586 Suggested by Chong Yidong.
8587 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
8588 (window-max-delta-1, window-resize, window--resize-siblings)
8589 (window--resize-this-window, adjust-window-trailing-edge)
8590 (split-window, balance-windows-1)
8591 (shrink-window-if-larger-than-buffer):
8592 * calendar/calendar.el (calendar-generate-window):
8593 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
8594
8595 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
8596
8597 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
8598 in place (bug#9907).
8599 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
8600 (eshell-rewrite-if-command, eshell-rewrite-for-command)
8601 (eshell-structure-basic-command, eshell-rewrite-while-command)
8602 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
8603 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
8604 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
8605 (eshell-do-pipelines-synchronously, eshell-eval-command):
8606 Use backquotes and prefer setq to set.
8607 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
8608 (eshell-macrop): Use functionp.
8609 (eshell-do-eval): Handle multiple expressions in `while' body.
8610
8611 2011-10-30 Chong Yidong <cyd@gnu.org>
8612
8613 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
8614 instead of set-mark (Bug#9810).
8615
8616 2011-10-30 Chong Yidong <cyd@gnu.org>
8617
8618 * window.el (split-window-below, split-window-right): Rename from
8619 split-window-above-each-other and split-window-side-by-side
8620 respectively. All callers changed.
8621 (split-window-sensibly, split-window-sensibly): Use them.
8622 (split-window-keep-point): Doc fix.
8623
8624 * isearch.el: Add isearch-scroll property to split-window-below
8625 and split-window-right.
8626
8627 * follow.el (follow-mode):
8628 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8629 * progmodes/ada-xref.el (ada-gdb-application):
8630 * emulation/vip.el (vip-buffer-in-two-windows):
8631 * image-dired.el (image-dired-dired-with-window-configuration):
8632 * dired-x.el (dired-do-find-marked-files):
8633 * dired.el (dired-pop-to-buffer):
8634 * bs.el (bs--show-with-configuration):
8635 * vc/emerge.el (emerge-setup-windows):
8636 * textmodes/two-column.el (2C-two-columns):
8637 * textmodes/reftex-toc.el (reftex-toc):
8638 * progmodes/gdb-mi.el (gdb-setup-windows):
8639 * progmodes/fortran.el (fortran-window-create):
8640 * net/newst-treeview.el (newsticker--treeview-window-init):
8641 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
8642 * emulation/tpu-edt.el (tpu-gold-map):
8643 * emulation/crisp.el (crisp-mode-map):
8644 * calendar/calendar.el (calendar-basic-setup): Callers changed.
8645
8646 2011-10-29 Chong Yidong <cyd@gnu.org>
8647
8648 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
8649
8650 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
8651
8652 * textmodes/flyspell.el (flyspell-word): Fix char offset for
8653 forged Ispell output (Bug#7904).
8654
8655 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
8656
8657 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8658
8659 * doc-view.el: Avoid ugly errors about not finding nil.
8660 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
8661 (doc-view-dvipdf-program, doc-view-unoconv-program)
8662 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
8663 Avoid nil or absolute file name as default value.
8664 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
8665
8666 2011-10-28 Alan Mackenzie <acm@muc.de>
8667
8668 * progmodes/cc-defs.el (c-version): -> 5.32.2.
8669
8670 2011-10-28 Alan Mackenzie <acm@muc.de>
8671
8672 Amend the handling of c-beginning/end-of-defun in nested declaration
8673 scopes.
8674
8675 * progmodes/cc-vars.el (c-defun-tactic): Move here from
8676 cc-langs.el. Change it to a defcustom.
8677
8678 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
8679 cc-vars.el.
8680
8681 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8682 Prevent "class foo : bar" being spuriously recognized as a label.
8683
8684 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
8685 Add parameter `inclusive' (to include enclosing braces in the region).
8686 (c-widen-to-enclosing-decl-scope): New function.
8687 (c-while-widening-to-decl-block): New macro.
8688 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
8689 outward for defun boundaries, and correspondingly change symbol
8690 `respect-enclosure' to `go-outward'.
8691 (c-declaration-limits): Change algorithm to report only the "innermost"
8692 defun's boundaries.
8693
8694 2011-10-28 Deniz Dogan <deniz@dogan.se>
8695
8696 * net/rcirc.el (rcirc-mode): Use hard newlines.
8697
8698 2011-10-28 Alan Mackenzie <acm@muc.de>
8699
8700 Amend to indent and fontify macros "which include their own semicolon"
8701 correctly, using the "virtual semicolon" mechanism.
8702
8703 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
8704
8705 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
8706 Recode to scan one line at a time rather than having \n and \r
8707 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
8708 (c-forward-label): Amend for virtual semicolons.
8709 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
8710
8711 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
8712 of the new C macros.
8713
8714 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
8715 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
8716 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
8717 (c-opt-cpp-macro-define): Make into a full language variable.
8718 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
8719 AWK Mode (including \n, \r) removed, no longer needed.
8720
8721 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
8722 Invoke c-make-macro-with-semi-re.
8723
8724 * progmodes/cc-vars.el (c-macro-with-semi-re):
8725 (c-macro-names-with-semicolon): New variables.
8726 (c-make-macro-with-semi-re): New function.
8727
8728 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8729
8730 * vc/log-edit.el: Fill empty field rather than adding new one.
8731 (log-edit-add-field): New function.
8732 (log-edit-insert-changelog): Use it.
8733
8734 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8735
8736 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
8737
8738 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8739
8740 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
8741 (gdb--check-interpreter): New function.
8742 (gdb): Use it.
8743
8744 2011-10-27 Glenn Morris <rgm@gnu.org>
8745
8746 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
8747 (least-positive-float, least-negative-float)
8748 (least-positive-normalized-float, least-negative-normalized-float)
8749 (float-epsilon, float-negative-epsilon):
8750 Remove unnecessary declarations.
8751
8752 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
8753 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
8754 (least-positive-float, least-negative-float)
8755 (least-positive-normalized-float, least-negative-normalized-float)
8756 (float-epsilon, float-negative-epsilon): Add doc-strings,
8757 based on those in cl.texi.
8758
8759 * files.el (set-visited-file-name): If the major-mode changed,
8760 reload the local variables. (Bug#9796)
8761
8762 2011-10-27 Chong Yidong <cyd@gnu.org>
8763
8764 * subr.el (change-major-mode-after-body-hook): New hook.
8765 (run-mode-hooks): Run it.
8766
8767 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8768 Use change-major-mode-before-body-hook.
8769
8770 * simple.el (fundamental-mode):
8771 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
8772 change introducing fundamental-mode-hook.
8773
8774 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
8775
8776 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
8777
8778 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
8779
8780 * ido.el (ido-file-name-all-completions-1): Do not require
8781 tramp.el explicitly. (Bug#7583)
8782
8783 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8784
8785 * progmodes/octave-mod.el:
8786 * progmodes/octave-inf.el: Update maintainer.
8787
8788 2011-10-26 Chong Yidong <cyd@gnu.org>
8789
8790 * subr.el (with-wrapper-hook): Rewrite doc.
8791
8792 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
8793
8794 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
8795 filenames "/method:foo:". (Bug#9793)
8796
8797 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8798
8799 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
8800 (bug#9865).
8801
8802 2011-10-24 Glenn Morris <rgm@gnu.org>
8803
8804 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
8805
8806 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
8807
8808 * notifications.el: Add the requirement of a running D-Bus session
8809 bus to the Commentary.
8810
8811 2011-10-24 Juri Linkov <juri@jurta.org>
8812
8813 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8814 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
8815 (Bug#9364)
8816
8817 2011-10-24 Juri Linkov <juri@jurta.org>
8818
8819 * info.el (Info-following-node-name-re): Add newline to the list
8820 of allowed characters for leading space. (Bug#9824)
8821
8822 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8823
8824 * progmodes/octave-inf.el (inferior-octave-mode-map):
8825 Fix C-c C-h binding.
8826 * progmodes/octave-mod.el (octave-help): Remove.
8827
8828 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
8829
8830 Sync with Tramp 2.2.3.
8831
8832 * net/tramp-cache.el (top): Pacify byte-compiler using
8833 `init-file-user' and `site-run-file'.
8834
8835 * net/trampver.el: Update release number.
8836
8837 2011-10-23 Chong Yidong <cyd@gnu.org>
8838
8839 * files.el (toggle-read-only): Remove obsolete comment about
8840 version control.
8841
8842 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
8843 for toggle-read-only. Note that this hasn't called vc-next-action
8844 since 2008-05-02, though it wasn't documented at the time.
8845
8846 * vc/ediff-init.el (ediff-toggle-read-only-function):
8847 Use toggle-read-only.
8848
8849 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
8850
8851 Fix bug #9560, sporadic wrong indentation; improve instrumentation
8852 of c-parse-state.
8853
8854 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8855 correct faulty logical expression.
8856 (c-parse-state-state, c-record-parse-state-state):
8857 (c-replay-parse-state-state): New defvar/defuns.
8858 (c-debug-parse-state): Use new functions.
8859
8860 2011-10-22 Martin Rudalics <rudalics@gmx.at>
8861
8862 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
8863 last fix. Use window-in-direction correctly.
8864
8865 2011-10-21 Chong Yidong <cyd@gnu.org>
8866
8867 * progmodes/idlwave.el (idlwave-mode):
8868 * progmodes/vera-mode.el (vera-mode): No need to set
8869 require-final-newline; that's done in prog-mode.
8870 Suggested by Stefan Monnier.
8871
8872 2011-10-21 Martin Rudalics <rudalics@gmx.at>
8873
8874 * mouse.el (mouse-drag-window-above)
8875 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
8876 (mouse-drag-mode-line-1, mouse-drag-header-line)
8877 (mouse-drag-vertical-line-rightward-window): Remove.
8878 (mouse-drag-line): New function.
8879 (mouse-drag-mode-line, mouse-drag-header-line)
8880 (mouse-drag-vertical-line): Call mouse-drag-line.
8881 * window.el (window-at-side-p, windows-at-side): New functions.
8882
8883 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
8884
8885 * tar-mode.el (tar-grind-file-mode):
8886 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
8887
8888 2011-10-21 Chong Yidong <cyd@gnu.org>
8889
8890 * progmodes/idlwave.el (idlwave-mode):
8891 * progmodes/vera-mode.el (vera-mode):
8892 Use mode-require-final-newline.
8893
8894 2011-10-20 Glenn Morris <rgm@gnu.org>
8895
8896 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
8897
8898 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
8899
8900 * emulation/cua-base.el (cua-set-mark): Fix case of string.
8901
8902 2011-10-20 Chong Yidong <cyd@gnu.org>
8903
8904 * emulation/cua-base.el (cua-mode):
8905 * mail/footnote.el (footnote-mode):
8906 * mail/mailabbrev.el (mail-abbrevs-mode):
8907 * net/xesam.el (xesam-minor-mode):
8908 * progmodes/bug-reference.el (bug-reference-mode):
8909 * progmodes/cap-words.el (capitalized-words-mode):
8910 * progmodes/compile.el (compilation-minor-mode)
8911 (compilation-shell-minor-mode):
8912 * progmodes/gud.el (gud-tooltip-mode):
8913 * progmodes/hideif.el (hide-ifdef-mode):
8914 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
8915 * progmodes/subword.el (subword-mode):
8916 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
8917 * progmodes/which-func.el (which-function-mode):
8918 * term/tvi970.el (tvi970-set-keypad-mode):
8919 * term/vt100.el (vt100-wide-mode):
8920 * textmodes/flyspell.el (flyspell-mode):
8921 * textmodes/ispell.el (ispell-minor-mode):
8922 * textmodes/nroff-mode.el (nroff-electric-mode):
8923 * textmodes/paragraphs.el (use-hard-newlines):
8924 * textmodes/refill.el (refill-mode):
8925 * textmodes/reftex.el (reftex-mode):
8926 * textmodes/rst.el (rst-minor-mode):
8927 * textmodes/sgml-mode.el (html-autoview-mode)
8928 (sgml-electric-tag-pair-mode):
8929 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
8930 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
8931 * emulation/crisp.el (crisp-mode):
8932 * emacs-lisp/eldoc.el (eldoc-mode):
8933 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
8934 minor mode behavior.
8935
8936 2011-10-19 Juri Linkov <juri@jurta.org>
8937
8938 * descr-text.el (describe-char): Add #x2010 and #x2011 to
8939 the list of hard-coded chars with escape-glyph face.
8940
8941 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8942
8943 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
8944
8945 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
8946
8947 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
8948 running process.
8949
8950 2011-10-19 Glenn Morris <rgm@gnu.org>
8951
8952 * vc/vc-bzr.el (vc-bzr-after-dir-status):
8953 Ignore ignored files. (Bug#9726)
8954
8955 2011-10-19 Chong Yidong <cyd@gnu.org>
8956
8957 Doc fix for minor modes, stating that an omitted argument enables
8958 the mode unconditionally when called from Lisp.
8959
8960 * abbrev.el (abbrev-mode):
8961 * allout.el (allout-mode):
8962 * autoinsert.el (auto-insert-mode):
8963 * autoarg.el (autoarg-mode, autoarg-kp-mode):
8964 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8965 (global-auto-revert-mode):
8966 * battery.el (display-battery-mode):
8967 * composite.el (global-auto-composition-mode)
8968 (auto-composition-mode):
8969 * delsel.el (delete-selection-mode):
8970 * desktop.el (desktop-save-mode):
8971 * dired-x.el (dired-omit-mode):
8972 * dirtrack.el (dirtrack-mode):
8973 * doc-view.el (doc-view-minor-mode):
8974 * double.el (double-mode):
8975 * electric.el (electric-indent-mode, electric-pair-mode):
8976 * emacs-lock.el (emacs-lock-mode):
8977 * epa-hook.el (auto-encryption-mode):
8978 * follow.el (follow-mode):
8979 * font-core.el (font-lock-mode):
8980 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
8981 * help.el (temp-buffer-resize-mode):
8982 * hilit-chg.el (highlight-changes-mode)
8983 (highlight-changes-visible-mode):
8984 * hi-lock.el (hi-lock-mode):
8985 * hl-line.el (hl-line-mode, global-hl-line-mode):
8986 * icomplete.el (icomplete-mode):
8987 * ido.el (ido-everywhere):
8988 * image-file.el (auto-image-file-mode):
8989 * image-mode.el (image-minor-mode):
8990 * iswitchb.el (iswitchb-mode):
8991 * jka-cmpr-hook.el (auto-compression-mode):
8992 * linum.el (linum-mode):
8993 * longlines.el (longlines-mode):
8994 * master.el (master-mode):
8995 * mb-depth.el (minibuffer-depth-indicate-mode):
8996 * menu-bar.el (menu-bar-mode):
8997 * minibuf-eldef.el (minibuffer-electric-default-mode):
8998 * mouse-sel.el (mouse-sel-mode):
8999 * msb.el (msb-mode):
9000 * mwheel.el (mouse-wheel-mode):
9001 * outline.el (outline-minor-mode):
9002 * paren.el (show-paren-mode):
9003 * recentf.el (recentf-mode):
9004 * reveal.el (reveal-mode, global-reveal-mode):
9005 * rfn-eshadow.el (file-name-shadow-mode):
9006 * ruler-mode.el (ruler-mode):
9007 * savehist.el (savehist-mode):
9008 * scroll-all.el (scroll-all-mode):
9009 * scroll-bar.el (scroll-bar-mode):
9010 * server.el (server-mode):
9011 * shell.el (shell-dirtrack-mode):
9012 * simple.el (auto-fill-mode, transient-mark-mode)
9013 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
9014 (line-number-mode, column-number-mode, size-indication-mode)
9015 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
9016 * strokes.el (strokes-mode):
9017 * time.el (display-time-mode):
9018 * t-mouse.el (gpm-mouse-mode):
9019 * tool-bar.el (tool-bar-mode):
9020 * tooltip.el (tooltip-mode):
9021 * type-break.el (type-break-mode-line-message-mode)
9022 (type-break-query-mode):
9023 * view.el (view-mode):
9024 * whitespace.el (whitespace-mode, whitespace-newline-mode)
9025 (global-whitespace-mode, global-whitespace-newline-mode):
9026 * xt-mouse.el (xterm-mouse-mode): Doc fix.
9027
9028 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9029 Fix autogenerated docstring.
9030
9031 2011-10-19 Juri Linkov <juri@jurta.org>
9032
9033 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
9034 by checking environment variables "DESKTOP_SESSION" and
9035 "XDG_CURRENT_DESKTOP". (Bug#9779)
9036
9037 2011-10-19 Juri Linkov <juri@jurta.org>
9038
9039 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
9040 (browse-url-chromium-program, browse-url-chromium-arguments):
9041 New defcustoms.
9042 (browse-url-default-browser): Check for `browse-url-chromium' and
9043 call `browse-url-chromium-program'.
9044 (browse-url-chromium): New command. (Bug#9779)
9045
9046 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
9047
9048 * facemenu.el (list-colors-duplicates): On Windows, detect more
9049 duplicates by assuming that only colors matching "^System" are
9050 special "system colors". (Bug#9722)
9051
9052 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9053
9054 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
9055 to distinguish the author from the committer.
9056
9057 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
9058
9059 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
9060
9061 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
9062
9063 * international/mule.el (sgml-html-meta-auto-coding-function):
9064 Add support for detecting encoding in HTML5 specified only as
9065 <meta charset="UTF-8">. Implementation just makes http-equiv and
9066 content-type parts from HTML4 encoding string optional. (Bug#9716)
9067
9068 2011-10-18 Glenn Morris <rgm@gnu.org>
9069
9070 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
9071
9072 2011-10-18 Chong Yidong <cyd@gnu.org>
9073
9074 * faces.el (cursor): Doc fix.
9075
9076 2011-10-17 Chong Yidong <cyd@gnu.org>
9077
9078 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
9079
9080 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
9081
9082 * dirtrack.el (dirtrack): Support shell buffers with path
9083 prefixes, e.g. tramp-based remote shells. (Bug#9647)
9084
9085 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
9086
9087 * json.el: Bump version to 1.3 and note change in History.
9088 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
9089
9090 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9091
9092 * comint.el (comint-insert-input, comint-send-input)
9093 (comint-get-old-input-default, comint-backward-matching-input)
9094 (comint-next-prompt): Use nil instead of `input' for field property of
9095 past user input (bug#114).
9096
9097 * minibuffer.el (completion--replace): Inherit surrounding properties
9098 (bug#114).
9099 (minibuffer-complete-and-exit): Use it.
9100
9101 * comint.el (comint--table-subvert): Quote the all-completions output
9102 (bug#9160).
9103
9104 2011-10-17 Martin Rudalics <rudalics@gmx.at>
9105
9106 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
9107
9108 * menu-bar.el (menu-bar-file-menu): Add entry for making new
9109 window on right of selected. (Bug#9350) Reword other window
9110 entries and separate them from frame entries.
9111
9112 2011-10-15 Glenn Morris <rgm@gnu.org>
9113
9114 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
9115 Doc fixes.
9116
9117 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
9118
9119 * net/network-stream.el (network-stream-open-starttls):
9120 Improve detection of failure due to lack of TLS support.
9121
9122 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
9123 putting the input text in front and in bold.
9124
9125 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9126
9127 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
9128
9129 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
9130 empty buffer.
9131
9132 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
9133 unread-command-events rather than pushing yet-another event.
9134
9135 2011-10-14 Eli Zaretskii <eliz@gnu.org>
9136
9137 * mail/sendmail.el (sendmail-query-once): Improve the wording of
9138 the explanation of the possible choices. Make the options passed
9139 to completing-read shorter.
9140
9141 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9142
9143 * textmodes/flyspell.el (flyspell-large-region): Make sure
9144 extended character mode is used if defined (Bug#1339).
9145
9146 2011-10-13 Eli Zaretskii <eliz@gnu.org>
9147
9148 * simple.el (what-cursor-position): Fix the display of the
9149 character info for LRE, LRO, RLE, and RLO characters by appending
9150 an invisible PDF.
9151
9152 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
9153
9154 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
9155 even in case of error; add debug spec; simplify data flow.
9156 (with-timeout-handler): Remove.
9157
9158 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
9159
9160 Fix Bug#6019, Bug#9315.
9161
9162 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
9163 complete `buffer-file-name', the local file name part could look
9164 remotely (for example on VMS).
9165
9166 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
9167 `tramp-run-real-handler'.
9168 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
9169 already quoted by '"'.
9170
9171 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
9172 Let `file-name-handler-alist' be nil, the local file name part
9173 could look remotely (for example on VMS).
9174
9175 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9176
9177 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
9178 from here...
9179 (flyspell-post-command-hook): ...to here.
9180
9181 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9182
9183 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
9184 if not needed.
9185 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
9186 using completion. Protect against "slow" callers.
9187 Remove the "message hack".
9188
9189 2011-10-11 Juri Linkov <juri@jurta.org>
9190
9191 * isearch.el (isearch-lazy-highlight-word): New variable.
9192 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
9193 Use it. (Bug#9727)
9194
9195 2011-10-11 Glenn Morris <rgm@gnu.org>
9196
9197 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
9198 like f90-previous-statement does.
9199
9200 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9201
9202 * eshell/eshell.el (eshell-command): History should be saved
9203 only in interactive use, to avoid error.
9204
9205 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9206
9207 * minibuffer.el (completion-file-name-table): Fix last change,
9208 i.e. ignore normal errors but not the other ones.
9209
9210 2011-10-10 Martin Rudalics <rudalics@gmx.at>
9211
9212 * window.el (special-display-buffer-names)
9213 (special-display-regexps): Remove some remnants of earlier
9214 changes from doc-strings.
9215 (quit-windows-on): New function.
9216
9217 * vc/vc.el (vc-revert, vc-rollback):
9218 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
9219 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9220 (Bug#6183) (Bug#7074) (Bug#7447)
9221
9222 2011-10-09 Martin Rudalics <rudalics@gmx.at>
9223
9224 * window.el (frame-auto-hide-function): Add version tag.
9225 (Bug#9699)
9226
9227 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
9228
9229 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
9230 condition.
9231
9232 2011-10-09 Leo Liu <sdl.web@gmail.com>
9233
9234 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
9235 (Bug#9701)
9236
9237 2011-10-08 Glenn Morris <rgm@gnu.org>
9238
9239 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
9240 before the first code statement zero indent. (Bug#9690)
9241
9242 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
9243
9244 * simple.el (count-words-region): Always count in the region.
9245 Report the number of lines and characters too.
9246 (count-words): New command, which counts in the buffer if the
9247 region is inactive, as count-words-region used to.
9248 (count-words--message): New function. Handle plurals.
9249 (count-lines-region): Make it an alias for count-words-region.
9250
9251 * bindings.el (esc-map): Replace count-lines-region with
9252 count-words-region.
9253
9254 2011-10-08 Martin Rudalics <rudalics@gmx.at>
9255
9256 * window.el (window--delete): Delete dedicated frame
9257 unconditionally when argument KILL is non-nil. (Bug#9699)
9258 (switch-to-buffer): Fix doc-string typo.
9259
9260 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9261
9262 * eshell/eshell.el (eshell-command): Avoid using hooks.
9263
9264 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
9265
9266 * bindings.el ([M-left],[M-right]): Bind to left-word and
9267 right-word respectively.
9268
9269 2011-10-07 Glenn Morris <rgm@gnu.org>
9270
9271 * cus-start.el (debug-on-quit): Fix custom type.
9272
9273 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9274
9275 * subr.el (define-key-after): Clarify that the function is not
9276 useful for non-menu keymaps.
9277
9278 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
9279
9280 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9281
9282 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
9283 in current minibuffer (Fix bug with recursive minibuffers).
9284
9285 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
9286
9287 * progmodes/gdb-mi.el (gdb): Doc fix.
9288
9289 2011-10-05 Martin Rudalics <rudalics@gmx.at>
9290
9291 * window.el (frame-auto-hide-function): New option replacing
9292 frame-auto-delete. Suggested by Stefan Monnier.
9293 (window--delete): Call frame-auto-hide-function instead of
9294 investigating frame-auto-delete.
9295 (window-point-1, set-window-point-1): New functions.
9296 (window-in-direction, record-window-buffer, window-state-get-1)
9297 (display-buffer-record-window): Use window-point-1 instead of
9298 window-point.
9299 (set-window-buffer-start-and-point): Use set-window-point-1.
9300
9301 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9302
9303 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
9304
9305 2011-10-05 Glenn Morris <rgm@gnu.org>
9306
9307 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
9308 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
9309
9310 2011-10-05 Leo Liu <sdl.web@gmail.com>
9311
9312 * subr.el (read-char-choice): Fix argument to buffer-live-p which
9313 works with buffer object.
9314
9315 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9316
9317 * mpc.el (mpc-tool-bar-map): Add labels.
9318
9319 2011-10-04 Glenn Morris <rgm@gnu.org>
9320
9321 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9322
9323 2011-10-04 Martin Rudalics <rudalics@gmx.at>
9324
9325 * window.el (window--delete): New function.
9326 (frame-auto-delete): Resuscitate option.
9327 (bury-buffer, replace-buffer-in-windows)
9328 (quit-window): Rewrite using window--delete.
9329 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9330 Pass display-buffer-mark-dedicated to window--display-buffer-2
9331 (Bug#9639).
9332
9333 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9334
9335 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
9336 returns a list (bug#9554). Add remote file name completion.
9337 * comint.el (comint--table-subvert): Curry and get quote&unquote
9338 functions as arguments.
9339 (comint--complete-file-name-data): Adjust call accordingly.
9340 * pcomplete.el (pcomplete--table-subvert): Remove.
9341 (pcomplete-completions-at-point): Use comint--table-subvert instead.
9342
9343 * minibuffer.el (completion-table-case-fold): Use currying.
9344 (completion--styles-type, completion--cycling-threshold-type):
9345 New constants.
9346 (completion-styles, completion-category-overrides)
9347 (completion-cycle-threshold): Use them.
9348 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
9349 completion-table-case-fold.
9350
9351 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
9352
9353 * minibuffer.el (completion-category-overrides): Fix type of styles
9354 and add more user friendly tags (bug#9660).
9355
9356 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
9359 (mule-input-method-string): New widget.
9360 (default-input-method, language-info-custom-alist): Use it.
9361
9362 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9363
9364 * pcomplete.el: Require comint.
9365 (pcomplete--common-suffix): Remove.
9366 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
9367 (pcomplete--table-subvert): Sync with comint--table-subvert.
9368 (pcomplete--entries): Use comint-completion-file-name-table.
9369 * comint.el (comint-unquote-filename): Simplify.
9370 (comint-completion-file-name-table): New function (bug#9616).
9371 (comint--complete-file-name-data): Use it.
9372
9373 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
9374 (pcmpl-gnu-tar-buffer): Remove.
9375 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9376 around. Make sure pcomplete-suffix-list is only changed temporarily.
9377 Don't look inside the tar's file if it's too large.
9378
9379 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
9380
9381 * cus-edit.el (custom-mode-map):
9382 * epa.el (epa-key-list-mode-map):
9383 * man.el (Man-mode-map):
9384 * startup.el (splash-screen-keymap):
9385 * simple.el (special-mode-map): Use scroll-up-command and
9386 scroll-down-command.
9387
9388 * progmodes/idlw-help.el (idlwave-help-mode-map):
9389 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
9390 * net/newst-plainview.el (newsticker-mode-map):
9391 * emulation/ws-mode.el (wordstar-mode-map):
9392 * emulation/vi.el (vi-com-map):
9393 * calc/calc-graph.el (calc-graph-show-dumb):
9394 * term/sun.el (terminal-init-sun):
9395 * term/ns-win.el (global-map):
9396 * progmodes/grep.el (grep-mode-map):
9397 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
9398 * mail/rmail.el (rmail-mode-map):
9399 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
9400
9401 * custom.el (custom-safe-themes, load-theme): Treat value of t for
9402 custom-safe-themes as special.
9403
9404 2011-10-01 Julien Danjou <julien@danjou.info>
9405
9406 * notifications.el (notifications-notify): Fix docstring.
9407
9408 2011-10-01 Per Starbäck <per@starback.se>
9409
9410 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
9411
9412 2011-09-30 Martin Rudalics <rudalics@gmx.at>
9413
9414 * startup.el (command-line-1): Fix last fix by inserting
9415 initial-scratch-message into *scratch* before displaying it.
9416 (Bug#9605) and (Bug#9636)
9417
9418 2011-09-29 Eli Zaretskii <eliz@gnu.org>
9419
9420 * simple.el (line-move): If auto-hscroll-mode is disabled and the
9421 window is hscrolled, move by logical lines. (Bug#9607)
9422 (line-move-visual): Update the doc string to the above effect.
9423
9424 2011-09-29 Martin Rudalics <rudalics@gmx.at>
9425
9426 * window.el (display-buffer-record-window): When WINDOW is the
9427 selected window use `point' instead of `window-point'. (Bug#9626)
9428
9429 * startup.el (command-line-1): Use insert-before-markers when
9430 inserting initial-scratch-message. (Bug#9605)
9431
9432 * help.el (help-window): Remove variable.
9433
9434 2011-09-29 Glenn Morris <rgm@gnu.org>
9435
9436 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
9437
9438 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
9439
9440 * descr-text.el (describe-char-categories): Accept category
9441 descriptions more than one line long.
9442
9443 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9444
9445 * simple.el (delete-trailing-whitespace): Fix last change.
9446
9447 * progmodes/perl-mode.el (perl-syntax-propertize-function):
9448 Don't confuse "y => 3" as the beginning of a `y' operation.
9449
9450 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
9451 object has more than 4 slots (bug#9613).
9452
9453 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
9454
9455 * subr.el (with-output-to-temp-buffer):
9456 * net/quickurl.el (quickurl, quickurl-browse-url):
9457 Fix typos in docstrings.
9458
9459 2011-09-27 Eli Zaretskii <eliz@gnu.org>
9460
9461 * minibuffer.el (completion-styles)
9462 (completion-category-overrides): Cross reference each other in doc
9463 strings.
9464
9465 2011-09-27 Glenn Morris <rgm@gnu.org>
9466
9467 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
9468 to split-string. (Bug#9606)
9469
9470 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9471
9472 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
9473 (bug#9615).
9474
9475 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
9476
9477 * emacs-lisp/package.el (list-packages): Fix echo area message.
9478
9479 2011-09-27 Leo Liu <sdl.web@gmail.com>
9480
9481 * ido.el (ido-read-internal): Accept cons cell HIST arg.
9482
9483 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
9484
9485 * net/dbus.el (dbus-unregister-object): Don't release services for
9486 registered signals. (Bug#9581)
9487
9488 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
9489
9490 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
9491 function that picks between cfengine 2 and 3 support
9492 automatically. Update docs accordingly.
9493
9494 2011-09-22 Kenichi Handa <handa@m17n.org>
9495
9496 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
9497 ZERO.
9498 (indian-itrans-v5-table-for-tamil): New variable.
9499 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
9500
9501 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
9502
9503 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
9504 that's true if the current command involved collapsing of text.
9505 It's reset to false at the beginning of the next command.
9506 (allout-post-command-business): Move the cursor to the beginning
9507 of entry if the cursor is hidden and collapsing activity just
9508 happened.
9509
9510 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
9511
9512 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
9513 tracking (Bug#9541).
9514
9515 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
9516
9517 * net/newst-reader.el (newsticker-html-renderer)
9518 (newsticker-show-news): Automatically load html rendering package
9519 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
9520 because w3m-fill-column is let-bound" and the error "Symbol's value
9521 as variable is void: w3m-fill-column".
9522
9523 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
9524
9525 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
9526 Release services only if they are defined. (Bug#9581)
9527
9528 2011-09-23 Richard Stallman <rms@gnu.org>
9529
9530 * textmodes/paragraphs.el (forward-sentence): For backwards case,
9531 distinguish start of paragraph from start of its text.
9532
9533 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
9534
9535 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
9536 (rmail-generate-viewer-buffer): Put that hook on view buffer.
9537 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
9538
9539 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
9540
9541 * international/mule-diag.el (mule-diag): Insert a newline after
9542 each fontset description.
9543
9544 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9545
9546 * simple.el (delete-trailing-whitespace):
9547 Document last change; simplify.
9548
9549 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
9550
9551 * simple.el (delete-trailing-whitespace): Also delete
9552 extra newlines at the end of the buffer.
9553
9554 * textmodes/picture.el: Make motion commands obey shift-select-mode.
9555 (picture-newline): Use forward-line so as to ignore fields.
9556
9557 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * subr.el (with-wrapper-hook): Fix edebug spec.
9560
9561 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9562
9563 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
9564 (bug#4538).
9565
9566 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
9567
9568 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
9569 Fix nasty bug using wrong cached values.
9570
9571 2011-09-23 Alan Mackenzie <acm@muc.de>
9572
9573 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
9574
9575 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
9576
9577 * window.el (pop-to-buffer): Ensure right window is selected if we
9578 chose another frame.
9579
9580 2011-09-22 Eli Zaretskii <eliz@gnu.org>
9581
9582 * simple.el (what-cursor-position): Use get-char-property-change
9583 and next-single-char-property-change, to be able to show display
9584 properties that come from overlays as well as text properties.
9585
9586 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
9587
9588 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
9589
9590 * cmuscheme.el (run-scheme, switch-to-scheme):
9591 * cus-edit.el (customize-group, custom-buffer-create)
9592 (customize-browse):
9593 * info.el (info):
9594 * shell.el (shell):
9595 * mail/sendmail.el (mail):
9596 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
9597
9598 2011-09-22 Richard Stallman <rms@gnu.org>
9599
9600 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
9601 move back only to line beg, don't move back over blank lines.
9602
9603 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
9604
9605 * files.el (copy-directory): Set directory attributes only in case
9606 they could be retrieved from the source directory. (Bug#9565)
9607
9608 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
9609
9610 * progmodes/hideshow.el (hs-looking-at-block-start-p)
9611 (hs-find-block-beginning, hs-hide-level-recursive):
9612 Ignore strings as well as comments. (Bug#9502)
9613
9614 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
9615
9616 * progmodes/sql.el (sql-comint-postgres):
9617 Convert port number to a string. (Bug#9566)
9618
9619 2011-09-22 Martin Rudalics <rudalics@gmx.at>
9620
9621 * window.el (quit-window): Undedicate window when switching to
9622 previous buffer. Reported by Thierry Volpiatto
9623 <thierry.volpiatto@gmail.com>.
9624 (special-display-popup-frame): When popping up a new frame reset
9625 its previous buffers to nil. Simplify code.
9626
9627 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
9628
9629 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
9630 and process filter, as done also in `shell-command'.
9631
9632 2011-09-21 Martin Rudalics <rudalics@gmx.at>
9633
9634 * window.el (set-window-buffer-start-and-point):
9635 Call set-window-start with NOFORCE argument t.
9636 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
9637 (quit-window): Reword doc-string. Handle new format of
9638 quit-restore parameter. Don't delete window if it has a
9639 previous buffer we can show instead of the present one.
9640 (display-buffer-record-window): Rewrite using a new format for
9641 the quit-restore window parameter
9642 (special-display-popup-frame, display-buffer-same-window)
9643 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9644 (display-buffer-pop-up-window, display-buffer-use-some-window):
9645 Adapt symbol passed to display-buffer-record-window.
9646 * help.el (help-window-setup): Handle new format of quit-restore
9647 parameter.
9648
9649 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9650
9651 * faces.el (face-list): Fix docstring (bug#9564).
9652
9653 * window.el (display-buffer--action-function-custom-type):
9654 Don't include internal functions in the Custom interface.
9655
9656 2011-09-20 Juri Linkov <juri@jurta.org>
9657
9658 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
9659 (Info-forward-node, Info-backward-node, Info-next-preorder)
9660 (Info-last-preorder): Use it. (Bug#9528)
9661
9662 2011-09-20 Juri Linkov <juri@jurta.org>
9663
9664 * info.el (Info-last-preorder): Visit last menu item only when
9665 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
9666
9667 2011-09-20 Julien Danjou <julien@danjou.info>
9668
9669 * password-cache.el (password-cache-remove): Remove entries even if the
9670 value is nil, so that password with a nil value (negative caching) is
9671 possible to invalidate.
9672
9673 2011-09-20 Lawrence Mitchell <wence@gmx.li>
9674
9675 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
9676 all whitespace around breakpoint. (Bug#9553)
9677 (f90-find-breakpoint): Only break at whitespace inside a comment.
9678
9679 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9680
9681 * minibuffer.el (completion-file-name-table): Keep track of errors.
9682 (completion-table-with-predicate): Handle the case where pred1 is nil.
9683 * pcomplete.el (pcomplete-completions-at-point): Simplify.
9684
9685 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9686
9687 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
9688 (debugger-return-value): Signal an error if the debugging context does
9689 not await any return value.
9690
9691 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
9692 * image-mode.el (image-toggle-display-text)
9693 (image-toggle-display-image): Stay away from evil `intangible'.
9694
9695 2011-09-19 Leo Liu <sdl.web@gmail.com>
9696
9697 * replace.el (occur-revert-arguments): Make it permanent-local.
9698 (occur-mode): Don't call font-lock-defontify.
9699
9700 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
9701
9702 * net/ldap.el (ldap-search-internal): Don't push empty search
9703 result (Bug#9508).
9704
9705 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9706
9707 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
9708
9709 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
9710
9711 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
9712 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
9713
9714 2011-09-18 Juri Linkov <juri@jurta.org>
9715
9716 * buff-menu.el (Buffer-menu-mode-map):
9717 * dired.el (dired-mode-map):
9718 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
9719 (lisp-interaction-mode-map):
9720 * emacs-lisp/package.el (package-menu-mode-map):
9721 * epa.el (epa-key-list-mode-map):
9722 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
9723 (menu-bar-options-menu):
9724 * outline.el (outline-mode-menu-bar-map):
9725 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
9726 * vc/vc-dir.el (vc-dir-menu-map):
9727 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
9728 Capitalize non-function content words in menu item strings.
9729
9730 * dired.el (dired-mode-map): Add menu item for
9731 `image-dired-dired-toggle-marked-thumbs'.
9732
9733 2011-09-18 Juri Linkov <juri@jurta.org>
9734
9735 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
9736 to `isearch-case-fold-search' and restore its original value
9737 after the `isearch-mode' call.
9738
9739 2011-09-18 Juri Linkov <juri@jurta.org>
9740
9741 * progmodes/grep.el (grep-process-setup): Don't check code for 1
9742 because `zgrep' returns 1 for successful matches (bug#9226).
9743
9744 2011-09-18 Juri Linkov <juri@jurta.org>
9745
9746 * info.el (Info-extract-menu-node-name): Check the second match
9747 for empty string (second test-case of bug#9528).
9748 (Info-last-preorder): Let-bind `Info-history' to nil to not add
9749 intermediate nodes to the history (first test-case of bug#9528).
9750
9751 2011-09-18 Juri Linkov <juri@jurta.org>
9752
9753 * info.el (Info-mode-syntax-table): New variable.
9754 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
9755
9756 2011-09-18 Juri Linkov <juri@jurta.org>
9757
9758 * info.el (Info-file-supports-index-cookies):
9759 Increment line-beginning-position's arg from 3 to 4 because makeinfo
9760 outputs one more line for long file names (bug#4142).
9761
9762 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
9763
9764 * newcomment.el (comment-normalize-vars): If prompting for
9765 comment-start, set comment-start-skip too (Bug#8424).
9766
9767 2011-09-18 Johan Bockgård <bojohan@gnu.org>
9768
9769 * icomplete.el: Fix previous fix of Bug#5849.
9770 (icomplete-mode): Don't set completion-show-inline-help.
9771 (icomplete-minibuffer-setup): Set completion-show-inline-help
9772 locally during icompletion.
9773
9774 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
9775
9776 * woman.el (woman2-process-escapes): Don't delete unrecognized
9777 escapes (Bug#7843).
9778
9779 * files.el (inhibit-first-line-modes-regexps): Add image files.
9780 (hack-local-variables-prop-line): Return nil for malformed
9781 prop-lines (Bug#9044).
9782
9783 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
9784
9785 * net/tramp.el (top): Don't require 'shell.
9786 (tramp-methods): Fix docstring.
9787 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
9788 Return complete remote file name. Handle "smb" case.
9789 Use `tramp-tmpdir', if defined for the respective method.
9790 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
9791
9792 * net/tramp-compat.el (top): Require 'shell.
9793
9794 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
9795 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
9796 `tramp-current-host'.
9797 (tramp-get-remote-tmpdir): Remove.
9798
9799 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
9800 `tramp-tmpdir' entries.
9801 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
9802 (tramp-smb-handle-file-attributes): Ignore errors.
9803 (tramp-smb-wait-for-output): Check also for process end.
9804
9805 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
9806
9807 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
9808 when sending QUIT (bug#9312).
9809
9810 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
9811
9812 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
9813 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
9814 occur-mode-display-occurrence.
9815 (occur-edit-mode): Add usage message.
9816 (occur-cease-edit): New command.
9817 (occur-after-change-function): Use text properties to find the
9818 position of the prefix text.
9819 (occur-engine): Set stickiness of prefix text properties.
9820
9821 2011-09-17 Glenn Morris <rgm@gnu.org>
9822
9823 * progmodes/etags.el (complete-tag):
9824 Fix call to completion-in-region. (Bug#9526)
9825
9826 2011-09-17 Juri Linkov <juri@jurta.org>
9827
9828 * textmodes/ispell.el (ispell-word): Add to the error message
9829 the word, ispell program name and current dictionary (bug#9121).
9830 (ispell-tex-arg-end): Capitalize "error" in the error message.
9831
9832 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
9833
9834 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
9835 check. (Bug#4251)
9836
9837 2011-09-17 Juri Linkov <juri@jurta.org>
9838
9839 * window.el (window-safe-min-height, window-safe-min-width):
9840 Fix typos (followup to bug#9522).
9841
9842 2011-09-17 Sven Joachim <svenjoac@gmx.de>
9843
9844 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
9845
9846 2011-09-16 Eli Zaretskii <eliz@gnu.org>
9847
9848 * simple.el (line-move): If goal-column is set, move by logical
9849 lines, not by display lines. (Bug#971)
9850 (next-line, previous-line, goal-column, line-move-visual): Doc fix
9851 to reflect the above change.
9852
9853 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9854
9855 * image.el (imagemagick-register-types): Use regexp-opt.
9856
9857 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9858
9859 * window.el (display-buffer-base-action): Rename from
9860 display-buffer-default-action. Make default value empty.
9861 (display-buffer-overriding-action): Convert to defvar.
9862 (display-buffer-fallback-action): New var.
9863
9864 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9865
9866 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
9867 declaration.
9868 (package--add-to-archive-contents): If there is a duplicate entry
9869 with an older version, remove it.
9870 (package-menu-mark-delete, package-menu-mark-install)
9871 (package-menu-mark-unmark): Make unused args optional.
9872 (package-menu-mark-obsolete-for-deletion):
9873 Use package-menu-get-status instead of a regexp search.
9874 (package-menu-get-status): Use tabulated-list-entry.
9875 (package-menu-mark-upgrades): New command.
9876 (package-menu-mode-map): Bind it to U. Add it to menu bar.
9877 (package-menu-execute): Do installation before deletion.
9878 (package-menu-refresh, package-menu-execute): Use derived-mode-p
9879 instead of checking major-mode.
9880 (package-menu--find-upgrades): New function.
9881
9882 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9883
9884 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
9885 passwords in the log buffer.
9886 (smtpmail-process-filter): Update the process marker so that the
9887 "broken by peer" status message is inserted in the right place.
9888
9889 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9890
9891 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
9892 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
9893 bibtex-completion-at-point-function.
9894 (bibtex-completion-at-point-function): Use them.
9895
9896 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
9897
9898 * mpc.el (mpc-constraints-tag-lookup): New function.
9899 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
9900 also to browser "album|playlist".
9901
9902 2011-09-14 Juri Linkov <juri@jurta.org>
9903
9904 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
9905 (isearch-edit-string): Use length of `isearch-string' when
9906 `isearch-fail-pos' returns nil.
9907 (isearch-message): Remove duplicate code and call
9908 `isearch-fail-pos' with arg `t'.
9909
9910 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
9911
9912 * replace.el (occur-mode-goto-occurrence): Don't force using other
9913 window (Bug#9499).
9914
9915 * dired-aux.el (dired-do-chmod): Don't provide initial input.
9916
9917 2011-09-14 Martin Rudalics <rudalics@gmx.at>
9918
9919 * window.el (display-buffer-window): Remove.
9920 (display-buffer-record-window): Use help-setup window parameter
9921 instead of variable display-buffer-window.
9922 (display-buffer-function, special-display-buffer-names)
9923 (special-display-function): Mention help-setup parameter instead
9924 of display-buffer-window in doc-string.
9925 * help.el (help-window-setup): New argument help-window.
9926 Use help-window-setup parameter instead of display-buffer-window.
9927 Reword some messages.
9928 (with-help-window): Pass window used for displaying the buffer
9929 to help-window-setup. Don't set display-buffer-window.
9930
9931 2011-09-13 Glenn Morris <rgm@gnu.org>
9932
9933 * emacs-lisp/debug.el (debugger-make-xrefs):
9934 Preserve point. (Bug#9462)
9935
9936 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9937
9938 * window.el (window-deletable-p): Use next-frame.
9939
9940 2011-09-13 Martin Rudalics <rudalics@gmx.at>
9941
9942 * window.el (window-auto-delete): Remove.
9943 (window-deletable-p): Remove argument FORCE. Don't deal with
9944 dedication and previous buffers.
9945 (switch-to-prev-buffer): Don't delete window.
9946 (delete-windows-on): Delete a window's frame if and only if the
9947 window is dedicated.
9948 (replace-buffer-in-windows): Delete buffer's window or frame if
9949 and only if window is dedicated.
9950 (quit-window): Handle quit-restore as before last change.
9951 (bury-buffer): Delete window only if window-deletable-p returns t.
9952
9953 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9954
9955 * window.el (window-deletable-p): Never delete the last frame on a
9956 given terminal.
9957
9958 2011-09-13 Glenn Morris <rgm@gnu.org>
9959
9960 * help.el (describe-key-briefly): Copy previous standard-output change.
9961
9962 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
9963
9964 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
9965
9966 2011-09-13 Glenn Morris <rgm@gnu.org>
9967
9968 * emacs-lisp/lisp-mode.el (lisp-indent-function):
9969 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
9970
9971 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
9972
9973 * dired-aux.el (dired-mark-read-string): Don't return default
9974 value on empty input (Bug#9361).
9975 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
9976 Omit initial minibuffer contents.
9977 (dired-do-chmod): Signal an error on empty input.
9978 (dired-mark-read-string): Don't return default on empty input.
9979
9980 * files.el (file-modes-symbolic-to-number): Doc fix.
9981
9982 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9983
9984 * international/mule-cmds.el (ucs-completions): Remove.
9985 (read-char-by-name): Use complete-with-action instead; add metadata.
9986
9987 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9988
9989 * window.el (display-buffer--action-function-custom-type)
9990 (display-buffer--action-custom-type): New vars.
9991 (display-buffer-alist, display-buffer-default-action)
9992 (display-buffer-overriding-action): Add defcustom types.
9993
9994 * frame.el (delete-other-frames): Doc fix (Bug#276).
9995
9996 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9997
9998 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
9999
10000 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
10001
10002 Change modes that used same-window-* vars to use switch-to-buffer.
10003
10004 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
10005 Use switch-to-buffer.
10006
10007 * cus-edit.el (customize-group, custom-buffer-create)
10008 (customize-browse, custom-buffer-create-other-window):
10009 Use switch-to-buffer or switch-to-buffer-other-window.
10010
10011 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
10012 (Info-prev, Info-up, Info-speedbar-goto-node)
10013 (info-display-manual): Use switch-to-buffer.
10014 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
10015
10016 * mail/sendmail.el (mail): Use switch-to-buffer.
10017 (mail-recover): Use switch-to-buffer-other-window.
10018
10019 * cmuscheme.el (run-scheme, switch-to-scheme):
10020 * ielm.el (ielm):
10021 * shell.el (shell):
10022 * net/rlogin.el (rlogin):
10023 * net/telnet.el (telnet, rsh):
10024 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
10025
10026 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
10027
10028 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
10029
10030 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10031
10032 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
10033 so don't mention it (bug#9301).
10034 (dired-sort-toggle-or-edit): Clarify string further.
10035
10036 * faces.el (face-spec-set-match-display): Make `(type graphic)'
10037 match `x', `w32' and `ns', like the manual says (bug#9029).
10038
10039 * subr.el (eval-after-load): Doc string clarification (bug#9125).
10040 (process-kill-buffer-query-function): Mention the buffer name in
10041 the query.
10042
10043 * image-mode.el (image-next-line): The line parameter is mandatory
10044 (bug#9258).
10045
10046 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
10047 which can be useful (bug#9301).
10048
10049 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
10050
10051 * subr.el (match-string): Mention that the current buffer should
10052 be the same as the search was done in (bug#9282).
10053
10054 * facemenu.el: Disable the remove-* commands if the mark isn't
10055 active (bug#9162).
10056
10057 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
10058
10059 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
10060 of display-buffer.
10061 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
10062
10063 * replace.el (occur-mode-goto-occurrence)
10064 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
10065 and display-buffer.
10066
10067 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
10068 display-buffer.
10069
10070 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
10071 special-display and same-window variables.
10072 (mail-other-window): Use switch-to-buffer-other-window.
10073 (mail-other-frame): USe switch-to-buffer-other-frame.
10074
10075 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
10076 Use display-buffer-other-frame.
10077 (gdb-display-gdb-buffer): Use pop-to-buffer.
10078
10079 * progmodes/gud.el (gud-goto-info): Use info-other-window.
10080
10081 * progmodes/python.el: Don't set same-window-buffer-names.
10082
10083 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
10084
10085 * window.el (display-buffer-alist): Add *Python*.
10086
10087 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
10088
10089 * window.el (display-buffer-alist): Add entry for buffers
10090 previously handled same-window-*.
10091 (display-buffer-alist, display-buffer-default-action)
10092 (display-buffer-overriding-action): Mark as risky.
10093 (display-buffer-alist): Document action function changes.
10094 (display-buffer--same-window-action)
10095 (display-buffer--other-frame-action): New variables.
10096 (switch-to-buffer, display-buffer-other-frame): Use them.
10097 (display-buffer): Rename reuse-frame entry to reusable-frames.
10098 (display-buffer-reuse-selected-window): Function deleted.
10099 (display-buffer-reuse-window): Handle reusable-frames alist entry.
10100 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
10101 (display-buffer-special): New function.
10102 (display-buffer--maybe-pop-up-frame-or-window): Rename from
10103 display-buffer-reuse-or-pop-window. Split off special-display
10104 part into display-buffer-special.
10105 (display-buffer-use-some-window): Don't perform any special
10106 pop-up-frames handling.
10107 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
10108 (display-buffer--maybe-same-window): Rename from
10109 display-buffer-maybe-same-window.
10110
10111 * info.el: Don't set same-window-regexps.
10112 (info-setup): New function.
10113 (info-other-window, info): Call it.
10114
10115 * cus-edit.el: Don't set same-window-regexps.
10116 (customize-group): New argument.
10117 (customize-group-other-window): Use it.
10118 (customize-face, customize-face-other-window): Likewise.
10119 (custom-buffer-create-other-window): Use pop-to-buffer directly.
10120
10121 * net/rlogin.el:
10122 * net/telnet.el:
10123 * progmodes/gud.el: Don't set same-window-regexps.
10124
10125 * cmuscheme.el:
10126 * ielm.el:
10127 * shell.el:
10128 * mail/sendmail.el:
10129 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
10130
10131 2011-09-10 Juri Linkov <juri@jurta.org>
10132
10133 * isearch.el (isearch-edit-string): Remove obsolete mention of
10134 `C-w' (`isearch-yank-word-or-char') from docstring.
10135 (isearch-query-replace): Fix typo in docstring (bug#9466).
10136
10137 2011-09-10 Juri Linkov <juri@jurta.org>
10138
10139 * paren.el (show-paren-function): Don't show escaped parens.
10140 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
10141
10142 2011-09-10 Eli Zaretskii <eliz@gnu.org>
10143
10144 * mail/sendmail.el (mml-to-mime, mml-attach-file)
10145 (mm-default-file-encoding): Remove autoload forms, they are
10146 replaced with autoload cookies in mml.el and mm-encode.el.
10147 (mail-add-attachment): New command.
10148 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
10149 (mail-mode): Mention mail-insert-file and mail-add-attachment in
10150 the doc string.
10151 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
10152
10153 2011-09-10 Reuben Thomas <rrt@sc3d.org>
10154
10155 * simple.el (count-words-region): Use buffer if there's no region
10156 (bug#9429).
10157
10158 2011-09-09 Juri Linkov <juri@jurta.org>
10159
10160 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
10161 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
10162 (wdired-isearch-filter-read-only): New function. (Bug#6362)
10163
10164 2011-09-09 Alan Mackenzie <acm@muc.de>
10165
10166 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
10167 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
10168
10169 2011-09-09 Eli Zaretskii <eliz@gnu.org>
10170
10171 Fix for Savannah bug#9392.
10172 * simple.el (mail-encode-mml): New defvar.
10173
10174 * mail/rmail.el (mail-encode-mml): Add a defvar.
10175 (rmail-enable-mime-composing): Default to t.
10176 (rmail-forward): Use MIME method of forwarding only if both
10177 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
10178 Set mail-encode-mml non-nil if the MIME method was used.
10179
10180 * mail/sendmail.el (mml-to-mime): Add autoload form.
10181 (mail-encode-mml): Add a defvar.
10182 (mail-mode): Make mail-encode-mml buffer-local and initialize it
10183 to nil.
10184 (mail-send): If mail-encode-mml is non-nil, run the outgoing
10185 message through mml-to-mime, and reset mail-encode-mml to nil.
10186
10187 2011-09-09 Glenn Morris <rgm@gnu.org>
10188
10189 * woman.el (woman-if-body): When processing an .el block,
10190 do not delete the next .el block as well. (Bug#9447)
10191 (woman-special-characters): Add oq, cq, and hy characters.
10192
10193 2011-09-08 Martin Rudalics <rudalics@gmx.at>
10194
10195 * window.el (window-deletable-p): Make sure window is live before
10196 invoking window-prev-buffers.
10197
10198 2011-09-08 Leo Liu <sdl.web@gmail.com>
10199
10200 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
10201
10202 2011-09-08 Juri Linkov <juri@jurta.org>
10203
10204 * progmodes/compile.el (compilation-environment): Make it
10205 a defcustom (bug#8340).
10206
10207 2011-09-08 Martin Rudalics <rudalics@gmx.at>
10208
10209 * window.el (frame-auto-delete): Rename to window-auto-delete.
10210 Make it control auto-deletion of windows and/or frames.
10211 (window-deletable-p): New argument FORCE. Rewrite conditions
10212 for deleting window/frame. (Bug#9419)
10213 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
10214 Rewrite handling of case when window/frame can be deleted.
10215 (delete-windows-on): Call window-deletable-p with new FORCE
10216 argument t. (Bug#9456)
10217
10218 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
10219
10220 * help-mode.el (help-mode): Restore autoload.
10221
10222 2011-09-07 Juri Linkov <juri@jurta.org>
10223
10224 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
10225 `compilation-environment'. Set buffer-local
10226 `compilation-environment' to `thisenv' later after (funcall mode).
10227 (Bug#8340)
10228
10229 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
10230 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
10231 instead of replacing its value. (Bug#8340)
10232
10233 2011-09-07 Juri Linkov <juri@jurta.org>
10234
10235 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
10236 based on text properties put by `grep-filter' instead of matching
10237 escape sequences.
10238 (grep-mode): Set buffer-local `compilation-error-screen-columns'
10239 to the value of `grep-error-screen-columns' (bug#9438).
10240
10241 2011-09-07 Juri Linkov <juri@jurta.org>
10242
10243 * simple.el (next-error-highlight, next-error-highlight-no-select):
10244 Doc fix (bug#9432).
10245
10246 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
10247
10248 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10249 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
10250
10251 2011-09-07 Leo Liu <sdl.web@gmail.com>
10252
10253 * net/rcirc.el (rcirc-mode): Conditionally initialize
10254 rcirc-input-ring.
10255
10256 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10257
10258 * emacs-lisp/find-func.el (find-function-C-source): Only set
10259 find-function-C-source-directory after checking that we found a source
10260 file there (bug#9440).
10261
10262 2011-09-06 Alan Mackenzie <acm@muc.de>
10263
10264 * isearch.el (isearch-other-meta-char): Wherever a key list is
10265 unread, "unread" the prefix arg, too. This fixes bug #8901.
10266
10267 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10268
10269 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
10270
10271 2011-09-05 Juri Linkov <juri@jurta.org>
10272
10273 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
10274
10275 2011-09-05 Juri Linkov <juri@jurta.org>
10276
10277 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
10278 keeping point where processing of grep matches begins, and
10279 continue to delete remaining escape sequences from the same point.
10280 (grep-filter): Make leading zero optional in "0?1;31m" because
10281 git-grep emits "\033[1;31m" escape sequences unlike expected
10282 "\033[01;31m" as GNU Grep does (bug#9408).
10283 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
10284
10285 2011-09-05 Juri Linkov <juri@jurta.org>
10286
10287 * subr.el (y-or-n-p): Capitalize "yes".
10288
10289 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
10290
10291 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
10292 `tramp-cache-unload-hook' where appropriate.
10293 (tramp-methods): Rename `tramp-remote-sh' to
10294 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
10295 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
10296
10297 * net/tramp-sh.el (top): Don't require 'shell.
10298 (tramp-methods): Add `tramp-remote-shell' and
10299 `tramp-remote-shell-args' entries.
10300 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
10301 (tramp-sh-handle-shell-command): Remove.
10302 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
10303 Use `tramp-remote-shell'.
10304
10305 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
10306
10307 * mail/sendmail.el (sendmail-query-once-function): Delete.
10308 (sendmail-query-once): Save directly to send-mail-function.
10309 Update message-send-mail-function too.
10310
10311 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
10312
10313 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10314
10315 * progmodes/python.el (python-mode-map): Use correct function to
10316 start python interpreter from menu-bar (as reported by Geert
10317 Kloosterman).
10318 (inferior-python-mode-map): Fix typo.
10319 (python-shell-map): Remove.
10320
10321 2011-09-03 Deniz Dogan <deniz@dogan.se>
10322
10323 * net/rcirc.el (rcirc-print): Simplify code for
10324 rcirc-scroll-show-maximum-output. There is no need to walk
10325 through all windows to find the right one.
10326
10327 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10328
10329 * help.el (help-return-method): Doc fix.
10330
10331 2011-09-03 Martin Rudalics <rudalics@gmx.at>
10332
10333 * window.el (window-deletable-p): Don't return a non-nil value
10334 when there's a buffer that was shown in the window before.
10335 (Bug#9419)
10336 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10337 Set window's previous buffers to nil.
10338
10339 2011-09-03 Eli Zaretskii <eliz@gnu.org>
10340
10341 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
10342 newline before and after the tag line, so it doesn't interfere
10343 with determining the paragraph direction of bidirectional text.
10344
10345 2011-09-03 Leo Liu <sdl.web@gmail.com>
10346
10347 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
10348
10349 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10350
10351 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
10352 (pop-to-buffer): Change interactive spec. Pass second argument
10353 directly to display-buffer.
10354 (display-buffer): Fix interactive spec. Use functionp to
10355 distinguish between a function and a list of functions.
10356
10357 * abbrev.el (edit-abbrevs):
10358 * arc-mode.el (archive-extract):
10359 * autoinsert.el (auto-insert):
10360 * bookmark.el (bookmark-bmenu-list):
10361 * files.el (find-file):
10362 * view.el (view-buffer):
10363 * progmodes/compile.el (compilation-goto-locus):
10364 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
10365
10366 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10367
10368 * window.el (display-buffer-alist): Doc fix.
10369 (display-buffer): Add docstring. Don't treat
10370 display-buffer-default specially.
10371 (display-buffer-reuse-selected-window)
10372 (display-buffer-same-window, display-buffer-maybe-same-window)
10373 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10374 (display-buffer-pop-up-window)
10375 (display-buffer-reuse-or-pop-window)
10376 (display-buffer-use-some-window): New functions.
10377 (display-buffer-default-action): Use them.
10378 (display-buffer-default): Delete.
10379 (pop-to-buffer-1): Fix choice of actions.
10380
10381 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
10382
10383 * minibuffer.el (completion--insert-strings): Don't get confused by
10384 completion entries that end with an LF char.
10385
10386 2011-09-01 Eli Zaretskii <eliz@gnu.org>
10387
10388 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
10389
10390 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
10391
10392 * window.el (display-buffer): Restore interactive spec.
10393 (display-buffer-same-window, display-buffer-other-window):
10394 New functions.
10395 (pop-to-buffer-1): New function. Use the above.
10396 (pop-to-buffer, pop-to-buffer-same-window): Use it.
10397 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
10398
10399 * view.el (view-buffer-other-window, view-buffer-other-frame):
10400 Just use pop-to-buffer.
10401
10402 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10403
10404 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
10405
10406 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
10407
10408 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
10409
10410 2011-08-31 Richard Stallman <rms@gnu.org>
10411
10412 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
10413 of the separation of rmail-view-buffer from rmail-buffer.
10414 If you say no to "replace original", the decrypt is in the
10415 view buffer. If you say yes, the decrypt goes into the
10416 rmail buffer also.
10417
10418 2011-08-31 Martin Rudalics <rudalics@gmx.at>
10419
10420 * window.el (display-buffer-window): Rewrite doc-string.
10421 (display-buffer-record-window): New function.
10422 (display-buffer-macro-specifiers)
10423 (display-buffer-even-window-sizes, display-buffer-set-height)
10424 (display-buffer-set-width, display-buffer-in-window)
10425 (display-buffer-reuse-window, display-buffer-split-specifiers)
10426 (display-buffer-side-specifiers, display-buffer-split-window-1)
10427 (display-buffer-split-window, display-buffer-split-atom-window)
10428 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10429 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
10430 (display-buffer-other-window-means-other-frame)
10431 (display-buffer-normalize-special)
10432 (display-buffer-normalize-default)
10433 (display-buffer-normalize-argument)
10434 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
10435 (display-buffer-normalize-specifiers, display-buffer-frame)
10436 (display-buffer-same-window, display-buffer-same-frame)
10437 (display-buffer-other-window)
10438 (display-buffer-same-frame-other-window)
10439 (display-buffer-other-frame, pop-to-buffer-same-window)
10440 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
10441 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
10442 (switch-to-buffer-same-frame)
10443 (switch-to-buffer-other-window-same-frame)
10444 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
10445 (display-buffer-alist-set-1, display-buffer-alist-set-2)
10446 (display-buffer-alist-set): Remove.
10447 (display-buffer-function, special-display-buffer-names)
10448 (special-display-regexps, special-display-function):
10449 In doc-string refer to display-buffer-window and quit-restore
10450 parameter.
10451 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
10452 (special-display-frame-alist, special-display-popup-frame)
10453 (same-window-buffer-names, same-window-regexps, same-window-p)
10454 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10455 (split-window-preferred-function, split-height-threshold)
10456 (split-width-threshold, window-splittable-p)
10457 (split-window-sensibly, window--try-to-split-window)
10458 (window--frame-usable-p, even-window-heights)
10459 (window--even-window-heights, window--display-buffer-1)
10460 (window--display-buffer-2, display-buffer-other-frame):
10461 Restore old Emacs 23 code, order and doc-strings where applicable.
10462 (display-buffer-default, display-buffer-assq-regexp): New functions.
10463 (display-buffer-alist): Rewrite doc-string.
10464 (display-buffer-default-action)
10465 (display-buffer-overriding-action): New variables.
10466 (display-buffer, switch-to-buffer): Rewrite.
10467 (pop-to-buffer): Restore Emacs 23 behavior but use
10468 window-normalize-buffer-to-display.
10469 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
10470 Restore Emacs 23 behavior but use
10471 window-normalize-buffer-to-switch-to.
10472 (pop-to-buffer-same-window): Rewrite.
10473 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
10474 Rewrite using Emacs 23 options.
10475
10476 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
10477
10478 * net/tramp.el (tramp-root-regexp): Remove.
10479 (tramp-completion-file-name-regexp-unified)
10480 (tramp-completion-file-name-regexp-separate)
10481 (tramp-completion-file-name-regexp-url): Don't use leading volume
10482 letter on w32 systems. (Bug#5303, Bug#9311)
10483 (tramp-drop-volume-letter): Simplify definition.
10484 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10485
10486 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10487
10488 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
10489 (bug#9356).
10490
10491 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
10492
10493 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
10494
10495 2011-08-29 Juri Linkov <juri@jurta.org>
10496
10497 * isearch.el (isearch-done): Don't display message "Mark saved"
10498 when arg `edit' is non-nil to prevent its flicker in the echo area.
10499
10500 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10501
10502 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
10503 obsolete packages for deletion.
10504
10505 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
10506
10507 * help-mode.el (help-mode-map): Add special-mode-map to parent.
10508 (help-mode): Derive help-mode from special-mode. Don't invoke
10509 view-mode from help-mode.
10510 (help-xref-override-view-map): Remove.
10511 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
10512 view-mode is not used anymore.
10513
10514 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10515
10516 * server.el (server-port): Doc fix.
10517
10518 * cus-theme.el (custom-theme-choose-mode): Inherit from
10519 special-mode (Bug#9124).
10520 (custom-theme-choose-mode-map): Add special-mode to parent.
10521
10522 2011-08-28 Alan Mackenzie <acm@muc.de>
10523
10524 * progmodes/cc-fonts.el
10525 (c-make-font-lock-BO-decl-search-function): New function.
10526 (c-basic-matchers-after - "Fontify the clauses after various
10527 keywords"): Extract the three keyword lists for the 3 erroneous
10528 constructs from the list of four, and use the new function above
10529 in place of an old one.
10530
10531 2011-08-28 Deniz Dogan <deniz@dogan.se>
10532
10533 * net/rcirc.el (rcirc-insert-prev-input)
10534 (rcirc-insert-next-input): Remove unused argument.
10535
10536 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10537
10538 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
10539
10540 2011-08-27 Alan Mackenzie <acm@muc.de>
10541
10542 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
10543 handle function pointer parameters properly.
10544
10545 2011-08-27 Martin Rudalics <rudalics@gmx.at>
10546
10547 * window.el (display-buffer-reuse-window): Fix case where
10548 selected window was reused with non-nil OTHER-WINDOW argument.
10549 (Bug#9381)
10550
10551 2011-08-27 Deniz Dogan <deniz@dogan.se>
10552
10553 * net/rcirc.el (rcirc-check-auth-status): Adding support for
10554 oftc's NickServ messages.
10555
10556 2011-08-27 Glenn Morris <rgm@gnu.org>
10557
10558 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
10559
10560 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
10561
10562 * emacs-lisp/package.el (package-install): Call package-initialize
10563 if called interactively.
10564
10565 2011-08-26 Leo Liu <sdl.web@gmail.com>
10566
10567 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
10568
10569 2011-08-25 Juri Linkov <juri@jurta.org>
10570
10571 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
10572 `search-whitespace-regexp' (bug#9364).
10573
10574 2011-08-25 Juri Linkov <juri@jurta.org>
10575
10576 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
10577 `regexp-search-ring' to their global values to protect from
10578 updating by `read-from-minibuffer' (bug#9185).
10579
10580 2011-08-25 Juri Linkov <juri@jurta.org>
10581
10582 * textmodes/ispell.el (ispell-command-loop): Add newline
10583 at the end of the "Use option `i'..." line.
10584
10585 2011-08-25 Juri Linkov <juri@jurta.org>
10586
10587 * battery.el (display-battery-mode): If `battery-status-function'
10588 or `battery-mode-line-format' is nil, display the message and set
10589 `display-battery-mode' to nil (bug#9363).
10590
10591 2011-08-25 Eli Zaretskii <eliz@gnu.org>
10592
10593 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
10594 bidi-string-mark-left-to-right; they are unnecessary now.
10595
10596 2011-08-25 Deniz Dogan <deniz@dogan.se>
10597
10598 * net/quickurl.el: Documentation typo fixes.
10599
10600 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
10601
10602 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
10603
10604 2011-08-25 Glenn Morris <rgm@gnu.org>
10605
10606 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
10607
10608 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
10609 (smtpmail-via-smtp): Handle nil response from smtp.
10610
10611 2011-08-24 Juri Linkov <juri@jurta.org>
10612
10613 * proced.el (proced-marked): Inherit from `error' instead of
10614 `font-lock-warning-face'.
10615
10616 * ibuffer.el (ibuffer-marked-face): Change default face from
10617 `font-lock-warning-face' to `warning'.
10618 (ibuffer-deletion-face): Change default face from
10619 `font-lock-type-face' to `error'.
10620
10621 * battery.el (battery-update): Use the face `error' instead of
10622 `font-lock-warning-face' (bug#6117).
10623
10624 2011-08-24 Juri Linkov <juri@jurta.org>
10625
10626 * faces.el (success): Change face color from "Green3" to
10627 "ForestGreen" on light background (bug#9353).
10628
10629 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
10630
10631 * window.el (quit-window): Rename from quit-restore-window.
10632 Use same arglist as old quit-window.
10633 (frame-auto-delete): Doc fix.
10634
10635 * view.el (view-mode-exit): Use quit-window.
10636
10637 2011-08-24 Juri Linkov <juri@jurta.org>
10638
10639 * isearch.el (isearch-ring-adjust1): Start visiting previous
10640 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
10641 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
10642 for empty search string (when the last search string is reused
10643 automatically) to adjust the isearch ring to the last element and
10644 prepare the correct index for further M-p commands (bug#9185).
10645
10646 2011-08-24 Kenichi Handa <handa@m17n.org>
10647
10648 * international/ucs-normalize.el: If decomposition property of
10649 CHAR is the default one (i.e. a list of CHAR itself), treat it as
10650 nil.
10651 (nfd, nfkd): Likewise.
10652
10653 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10654
10655 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
10656 from process filters aren't reliably transmitted to the surrounding
10657 accept-process-output.
10658 (mpc-proc-check): New function.
10659 (mpc-proc-sync): Use it (bug#8293)
10660
10661 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10662
10663 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
10664 Add compatibility functions (bug#9313).
10665
10666 2011-08-23 Eli Zaretskii <eliz@gnu.org>
10667
10668 * cus-start.el (all): Add entry for bidi-paragraph-direction.
10669
10670 * international/uni-bidi.el: Regenerate.
10671
10672 2011-08-23 Kenichi Handa <handa@m17n.org>
10673
10674 * international/charprop.el:
10675 * international/uni-bidi.el:
10676 * international/uni-category.el:
10677 * international/uni-combining.el:
10678 * international/uni-comment.el:
10679 * international/uni-decimal.el:
10680 * international/uni-decomposition.el:
10681 * international/uni-digit.el:
10682 * international/uni-lowercase.el:
10683 * international/uni-mirrored.el:
10684 * international/uni-name.el:
10685 * international/uni-numeric.el:
10686 * international/uni-old-name.el:
10687 * international/uni-titlecase.el:
10688 * international/uni-uppercase.el: Regenerate.
10689
10690 2011-08-23 Martin Rudalics <rudalics@gmx.at>
10691
10692 * help.el (help-window-setup): Fix message displayed when other
10693 window is reused. (Bug#9341)
10694
10695 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10696
10697 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
10698 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
10699
10700 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
10701 Mark obsolete.
10702 * shell.el (shell-parse-pcomplete-arguments): New function.
10703 (shell-completion-vars): Use it instead (bug#9160).
10704
10705 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10706
10707 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
10708 strings and comments (bug#9333).
10709
10710 * emacs-lisp/debug.el (debug-arglist): New function.
10711 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
10712 (debug-on-entry-1): Handle interpreted closures (bug#9120).
10713
10714 2011-08-22 Juri Linkov <juri@jurta.org>
10715
10716 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10717 Revert regexp that highlights output switches to its old
10718 pre-2010-10-28 value and remove one `?' from it (bug#9319).
10719
10720 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
10721 to check for empty output (bug#9226).
10722
10723 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
10724
10725 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
10726 symbol-constituent as the default, as that stops font-lock from
10727 working properly (Bug#8843).
10728
10729 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10730
10731 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
10732 `coding-system-for-*' around the process open call to avoid
10733 auth-source side effects.
10734 (smtpmail-try-auth-methods): Expand the secret password.
10735 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
10736 probe hangs.
10737
10738 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
10739
10740 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
10741
10742 * emacs-lisp/find-func.el (find-function-noselect): New arg
10743 lisp-only.
10744
10745 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
10746 signal an error for built-in functions (Bug#6664).
10747
10748 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10749
10750 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
10751 (smtpmail-try-auth-methods): Use it.
10752
10753 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
10754
10755 * font-lock.el (font-lock-fontify-region)
10756 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
10757 (font-lock-default-unfontify-buffer)
10758 (font-lock-default-fontify-region)
10759 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
10760
10761 * progmodes/compile.el (compilation-error-properties):
10762 Fix confusion between file struct and message struct (Bug#9319).
10763 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
10764 `ant' regexp.
10765
10766 * net/browse-url.el (browse-url-firefox): Don't call
10767 browse-url-firefox-sentinel unless using -remote (Bug#9328).
10768
10769 2011-08-20 Glenn Morris <rgm@gnu.org>
10770
10771 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
10772
10773 * tutorial.el (tutorial--default-keys): Update some default bindings.
10774
10775 * files.el (hack-local-variables): Fully ignore case for "mode:".
10776
10777 2011-08-20 Alan Mackenzie <acm@muc.de>
10778
10779 Resolve invalid use of a regexp in regexp-opt.
10780
10781 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
10782 detection for a java annotation.
10783
10784 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
10785 detection for a java annotation.
10786
10787 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
10788 handling for java.
10789 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
10790
10791 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
10792
10793 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
10794 (Bug#9274).
10795
10796 2011-08-20 Alan Mackenzie <acm@muc.de>
10797
10798 Fontify CPP expressions correctly when starting in the middle of
10799 such a construct. Mainly for when jit-lock etc. starts a chunk
10800 here.
10801
10802 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
10803 variable.
10804 (c-make-font-lock-search-form): New function, extracted from
10805 c-make-font-lock-search-function.
10806 (c-make-font-lock-search-function): Use the above function.
10807 (c-make-font-lock-context-search-function): New function.
10808 (c-cpp-matchers): Enhance the preprocessor expression case with
10809 the above function
10810 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
10811 which takes an expression.
10812
10813 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
10814
10815 2011-08-20 Martin Rudalics <rudalics@gmx.at>
10816
10817 * window.el (display-buffer-reuse-window)
10818 (display-buffer-pop-up-window): Don't reuse or split a side
10819 window.
10820
10821 2011-08-19 Glenn Morris <rgm@gnu.org>
10822
10823 * files.el (hack-local-variables-prop-line, hack-local-variables):
10824 Downcase "Mode:". (Bug#9331)
10825
10826 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
10827
10828 * international/characters.el: Add L and R categories.
10829
10830 * subr.el (bidi-string-mark-left-to-right): Rename from
10831 string-mark-left-to-right. Use category search.
10832
10833 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
10834
10835 2011-08-18 Juri Linkov <juri@jurta.org>
10836
10837 * faces.el (error, warning, success): New faces with definitions
10838 copied from old default values of `font-lock-warning-face',
10839 `compilation-warning', `compilation-info' (bug#6117).
10840
10841 * font-lock.el (font-lock-warning-face): Inherit from `error'.
10842
10843 * progmodes/compile.el (compilation-error): Inherit from `error'.
10844 (compilation-warning): Inherit from `warning'.
10845 (compilation-info): Inherit from `success'.
10846
10847 * dired.el (dired-marked): Inherit from `warning'.
10848 (dired-flagged): Inherit from `error'.
10849
10850 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10851
10852 * mail/smtpmail.el (auth-source): Require to avoid problems with
10853 binding variables (bug#9298). Also clean up some unused
10854 autoloads.
10855
10856 * net/network-stream.el (network-stream-open-starttls):
10857 Support using starttls.el without using gnutls-cli.
10858
10859 2011-08-17 Juri Linkov <juri@jurta.org>
10860
10861 * progmodes/grep.el (rgrep): Handle the case when
10862 `grep-find-command' is a cons cell (bug#9278).
10863
10864 2011-08-17 Martin Rudalics <rudalics@gmx.at>
10865
10866 * window.el (display-buffer-pop-up-frame): Run frame creation
10867 function with BUFFER current (as special-display-popup-frame
10868 does). Reported by Drew Adams.
10869
10870 2011-08-17 Daiki Ueno <ueno@unixuser.org>
10871
10872 * epa-mail.el: Simplify GnuPG group expansion using
10873 epg-expand-group.
10874 (epa-mail-group-alist, epa-mail-group-modtime)
10875 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
10876 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
10877 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
10878 Remove.
10879
10880 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
10881
10882 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
10883
10884 2011-08-16 Alan Mackenzie <acm@muc.de>
10885
10886 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
10887 Correct, to avoid the inside of macros.
10888
10889 2011-08-16 Richard Stallman <rms@gnu.org>
10890
10891 * epa-mail.el: Handle GnuPG group definitions.
10892 (epa-mail-group-alist, epa-mail-group-modtime)
10893 (epa-mail-gnupg-conf-file): New variables.
10894 (epa-mail-parse-groups, epa-mail-sync-groups)
10895 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
10896 (epa-mail-expand-recipients): New functions.
10897 (epa-mail-encrypt): Call epa-mail-expand-recipients.
10898
10899 * mail/rmail.el (rmail-epa-decrypt): New command.
10900
10901 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
10902 Don't bind buffer-read-only, just inhibit-read-only.
10903 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
10904 (epa-decrypt-armor-in-region): Make error message clearer.
10905
10906 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10907
10908 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
10909 and "a2b" to "ab" for `prefix'.
10910
10911 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
10912
10913 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
10914 filter groups.
10915 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
10916 Fourquet (Bug#8804).
10917
10918 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
10919
10920 * startup.el (argi): Declare as global variable (bug#9275).
10921
10922 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
10923
10924 * subr.el (string-mark-left-to-right): Search the entire string
10925 for RTL script, not just the terminating character. Doc fix.
10926
10927 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
10928
10929 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
10930 New function.
10931 (js--regexp-literal, js-syntax-propertize-function): Remove.
10932 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
10933 (js-mode-map): Don't rebind electric keys.
10934 (js-insert-and-indent): Remove.
10935 (js-mode): Setup electric-layout and electric-indent instead.
10936
10937 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
10938
10939 2011-08-12 Daiki Ueno <ueno@unixuser.org>
10940
10941 * epa.el (epa-progress-callback-function): Fix the logic of
10942 displaying progress.
10943 * epa-file.el (epa-file-insert-file-contents): Make progress
10944 display more user-friendly.
10945 (epa-file-write-region): Ditto.
10946
10947 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
10948
10949 * subr.el (string-mark-left-to-right): New function.
10950
10951 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
10952 Use string-mark-left-to-right.
10953 (list-buffers-noselect): Caller changed.
10954
10955 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10956 Use string-mark-left-to-right.
10957 (tabulated-list-print): Recenter after moving point.
10958
10959 2011-08-10 Juri Linkov <juri@jurta.org>
10960
10961 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
10962 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
10963 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
10964
10965 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
10966
10967 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
10968 (Bug#7554).
10969
10970 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
10971
10972 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
10973 character. (Bug#6594)
10974
10975 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
10976
10977 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
10978 (image-dired--with-db-file): New macro.
10979 (image-dired-write-tags, image-dired-remove-tag)
10980 (image-dired-create-gallery-lists, image-dired-write-comments)
10981 (image-dired-get-comment, image-dired-mark-tagged-files)
10982 (image-dired-list-tags, image-dired-gallery-generate): Use it.
10983 (image-dired-gallery-generate): Use insert-file-contents.
10984
10985 * time.el (display-time-world-list, display-time-world-display):
10986 * time-stamp.el (time-stamp-string):
10987 * vc/add-log.el (add-change-log-entry): Use setenv instead of
10988 set-time-zone-rule (Bug#7337).
10989
10990 2011-08-08 Daiki Ueno <ueno@unixuser.org>
10991
10992 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
10993 (epg-error-to-string, epg-errors-to-string): New function.
10994 (epg-wait-for-completion): Reverse errors list.
10995 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
10996 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
10997 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
10998 (epg-sign-keys, epg-generate-key-from-file)
10999 (epg-generate-key-from-string): Format errors by using
11000 epg-errors-to-string (bug#9255).
11001 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
11002
11003 2011-08-07 Juri Linkov <juri@jurta.org>
11004
11005 * faces.el (list-faces-display): Remove extra angle bracket
11006 from `help-mode-map'.
11007
11008 * info.el (Info-history-toc-nodes): Doc fix.
11009
11010 * longlines.el (longlines-mode): Doc fix.
11011
11012 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
11013
11014 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
11015 of statements and in a few more cases (bug#9183).
11016
11017 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
11018 New functions.
11019 (cl-transform-lambda): Use them (bug#9239).
11020
11021 2011-08-05 Martin Rudalics <rudalics@gmx.at>
11022
11023 * window.el (display-buffer-same-window)
11024 (display-buffer-same-frame, display-buffer-other-window)
11025 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11026 (pop-to-buffer-other-window)
11027 (pop-to-buffer-same-frame-other-window)
11028 (pop-to-buffer-other-frame): Make them defuns.
11029 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
11030
11031 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11032
11033 * subr.el (make-composed-keymap): Move from C. Change calling
11034 convention, and improve docstring to bring attention to a subtle point.
11035 * minibuffer.el (completing-read-default): Adjust accordingly.
11036
11037 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
11038
11039 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
11040 (tramp-open-shell): Use `tramp-shell-quote-argument'.
11041
11042 * net/trampver.el: Update release number.
11043
11044 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11045
11046 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
11047 "in" (bug#9190).
11048
11049 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11050
11051 * mail/sendmail.el (sendmail-query-once): Restore the current
11052 buffer after querying (bug#9074).
11053
11054 * dired.el (dired-flagged): Use different faces for marked and
11055 flagged files (bug#6117).
11056
11057 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
11058 (bug#4433).
11059
11060 * ido.el (ido-mode): Switch off the message if called
11061 non-interactively.
11062
11063 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
11064 before 587, since it appears that that's more likely to work for
11065 more people.
11066
11067 * cus-edit.el (custom-file): When running under emacs -q, always
11068 refuse to save the customizations, even if the .emacs file doesn't
11069 exist.
11070
11071 * info.el: Remove the `Info-beginning-of-buffer' function
11072 (bug#8325).
11073
11074 * net/network-stream.el (network-stream-open-starttls):
11075 Use `starttls-available-p' to see whether starttls.el can be used.
11076
11077 2011-08-01 Martin Rudalics <rudalics@gmx.at>
11078
11079 * window.el (display-buffer-in-window): Don't set dedicated status
11080 of window here (Bug#9215).
11081 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
11082 (display-buffer-pop-up-side-window)
11083 (display-buffer-in-side-window): Set dedicated status of window here.
11084
11085 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11086
11087 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
11088 before binding generated-autoload-file.
11089
11090 2011-08-01 Deniz Dogan <deniz@dogan.se>
11091
11092 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
11093
11094 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
11095
11096 Sync with Tramp 2.2.2.
11097
11098 * net/trampver.el: Update release number.
11099
11100 2011-07-30 Juri Linkov <juri@jurta.org>
11101
11102 * dired-aux.el (dired-touch-initial): Remove function.
11103 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
11104 current time, and `default' to the last modification time of the
11105 current marked file (bug#6887).
11106
11107 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
11108
11109 * simple.el (goto-line): Use string-to-number to provide a
11110 numeric argument to read-number (bug#9163).
11111
11112 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
11113
11114 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
11115 connection process, it could be nil.
11116
11117 2011-07-27 Leo Liu <sdl.web@gmail.com>
11118
11119 Simplify url handling in rcirc-mode.
11120
11121 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
11122 (rcirc-browse-url-at-mouse): Remove.
11123 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
11124
11125 2011-07-26 Alan Mackenzie <acm@muc.de>
11126
11127 Fontify bitfield declarations properly.
11128
11129 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
11130 (c-symbol-chars): Now exported as a lang variable.
11131 (c-not-primitive-type-keywords): New lang variable.
11132
11133 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
11134 QT keyword "more" to prevent "more slots: ...." being spuriously
11135 parsed as a bitfield declaration.
11136
11137 * progmodes/cc-engine.el (c-beginning-of-statement-1):
11138 Refactor and enhance to handle bitfield declarations.
11139 (c-punctuation-in): New function.
11140 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
11141 declarations properly.
11142
11143 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
11144
11145 * calendar/icalendar.el (icalendar--all-events): Take care of
11146 multiple vcalendars in a single file.
11147 (icalendar--convert-float-to-ical): Checkdoc fixes.
11148
11149 2011-07-25 Deniz Dogan <deniz@dogan.se>
11150
11151 * image.el (insert-image): Clarifying docstring.
11152
11153 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
11154
11155 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
11156 `tramp-send-command-and-check' if there is no error.
11157 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
11158
11159 2011-07-22 Alan Mackenzie <acm@muc.de>
11160
11161 Prevent cc-langs.elc being loaded at run time.
11162
11163 * progmodes/cc-mode.el: Remove two autoload forms which loaded
11164 cc-langs.
11165
11166 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
11167 "(require 'cc-langs)". Quote a form so it will evaluate at
11168 (cc-mode's) compilation time.
11169
11170 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
11171
11172 * net/tramp.el (tramp-file-name-handler): Avoid recursive
11173 loading. (Bug#9114)
11174
11175 2011-07-21 Martin Rudalics <rudalics@gmx.at>
11176
11177 * window.el (display-buffer-pop-up-window)
11178 (display-buffer-pop-up-side-window)
11179 (display-buffer-in-side-window): Call display-buffer-set-height
11180 and display-buffer-set-width after setting the new window's
11181 buffer so `fit-window-to-buffer' and friends work on the right buffer.
11182
11183 2011-07-20 Sam Steingold <sds@gnu.org>
11184
11185 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
11186 (etags-tags-included-tables): Call `convert-standard-filename' on
11187 the file names contained in TAGS so that windows Emacs can handle
11188 TAGS files created by cygwin ctags.
11189
11190 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
11191
11192 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
11193 which apparently didn't work.
11194
11195 2011-07-19 Roland Winkler <winkler@gnu.org>
11196
11197 * proced.el (proced-send-signal): For *Marked Processes* buffer
11198 put point at beginning of buffer.
11199
11200 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
11201
11202 * proced.el (proced-format): Make header lines align with the text
11203 (bug#1779).
11204
11205 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11206
11207 * view.el (view-buffer): Allow running in `special' modes if we're
11208 visiting a file (bug#8615).
11209
11210 2011-07-19 Martin Rudalics <rudalics@gmx.at>
11211
11212 * window.el (display-buffer-alist-of-strings-p)
11213 (display-buffer-alist-set-1, display-buffer-alist-set-2):
11214 New functions.
11215 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
11216 more accurately.
11217
11218 2011-07-18 Alan Mackenzie <acm@muc.de>
11219
11220 Fontify declarators properly when, e.g., a jit-lock chunk begins
11221 inside a declaration.
11222
11223 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
11224
11225 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11226 New function.
11227 (c-complex-decl-matchers): Insert reference to
11228 c-font-lock-enclosing-decls.
11229
11230 * progmodes/cc-engine.el (c-backward-single-comment):
11231 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
11232 to nil around calls to (forward-comment -1).
11233
11234 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11235
11236 * image.el (put-image): Doc typo fix.
11237
11238 * progmodes/etags.el (tags-search): Doc typo fix.
11239
11240 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
11241 password if we get errors 550 to 554.
11242
11243 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
11244
11245 * net/gnutls.el (gnutls-log-level): Remove.
11246
11247 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
11248 indentation character (bug#6380).
11249
11250 * files.el (buffer-offer-save): Made permanently local (bug#6241).
11251
11252 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
11253 to clarify what the problem is (bug#4291).
11254
11255 * simple.el (current-kill): Clarify what
11256 `interprogram-paste-function' does (bug#7500).
11257 (auto-fill-mode): Document `auto-fill-function' in relation to
11258 `auto-fill-mode' (bug#2470).
11259
11260 2011-07-16 Lawrence Mitchell <wence@gmx.li>
11261
11262 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
11263 method if slot is read-only (bug#9035).
11264
11265 2011-07-16 Martin Rudalics <rudalics@gmx.at>
11266
11267 * frame.el (select-frame-set-input-focus): New argument NORECORD.
11268 * window.el (pop-to-buffer): Select window used even if it was
11269 selected before, see discussion of (Bug#8615), (Bug#6954).
11270 Pass argument NORECORD on to select-frame-set-input-focus.
11271
11272 2011-07-15 Glenn Morris <rgm@gnu.org>
11273
11274 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
11275 Respect help-form.
11276
11277 2011-07-09 Lawrence Mitchell <wence@gmx.li>
11278
11279 * net/gnutls.el (gnutls-min-prime-bits): New variable.
11280 (gnutls-negotiate): Use it.
11281
11282 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11283
11284 * net/gnutls.el (gnutls-negotiate):
11285 Upcase `gnutls-algorithm-priority'.
11286
11287 2011-07-15 Glenn Morris <rgm@gnu.org>
11288
11289 * jka-compr.el (jka-compr-verbose): Move from here...
11290 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
11291 Add missing :version tag.
11292 * info.el: No need to require jka-compr when compiling.
11293
11294 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11295
11296 * net/gnutls.el (gnutls-algorithm-priority): New variable.
11297 (gnutls-negotiate): Use it.
11298
11299 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
11300
11301 * info.el (Info-beginning-of-buffer): New command.
11302 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
11303 announcing `b' as the key (bug#8325).
11304 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
11305
11306 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
11307
11308 * international/mule-cmds.el
11309 (describe-specified-language-support): Make the error message
11310 clearer (bug#8905).
11311
11312 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
11313
11314 * isearch.el (isearch-barrier): Add a doc string, since it's
11315 mentioned in a function doc string (bug#8678).
11316
11317 2011-07-15 Martin Rudalics <rudalics@gmx.at>
11318
11319 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
11320 buffer argument (Bug#9083) and self-identifying label argument.
11321
11322 2011-07-15 Glenn Morris <rgm@gnu.org>
11323
11324 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
11325
11326 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11327
11328 * man.el (Man-fontify-manpage): Fix message when formatting the
11329 man page (bug#7929).
11330
11331 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11332
11333 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
11334 argument LRM; if non-nil, append an invisible LRM character to the
11335 buffer name.
11336 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
11337 last argument non-nil, when formatting buffer names.
11338 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
11339 paragraph direction.
11340
11341 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11342
11343 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
11344 the man page name (bug#7929).
11345
11346 * image.el (put-image): Mention the `put-image' overlay property
11347 (bug#7834).
11348
11349 * scroll-bar.el (set-scroll-bar-mode): Mention that
11350 `scroll-bar-mode' lists the values (bug#7772).
11351
11352 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
11353 command (bug#7729).
11354
11355 * rect.el (apply-on-rectangle): Return the point after the last
11356 operation.
11357 (string-rectangle): Go to the point after the last operation
11358 (bug#7522).
11359
11360 * printing.el (pr-toggle-region): Clarify the documentation
11361 slightly (bug#7493).
11362
11363 * time.el (display-time-update):
11364 Allow `display-time-mail-function' to return nil (bug#7158).
11365 Fix suggested by Detlev Zundel.
11366
11367 * vc/diff.el (diff): Clarify the order the file names are read
11368 (bug#7111).
11369
11370 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
11371 the doc string (bug#7015).
11372
11373 * font-lock.el (font-lock-maximum-decoration): Mention what
11374 numeric levels mean (bug#6935).
11375
11376 * startup.el (initial-buffer-choice): Don't mention the `none'
11377 selection, which is against policy.
11378
11379 2011-07-14 Martin Rudalics <rudalics@gmx.at>
11380
11381 * window.el (display-buffer-normalize-special):
11382 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
11383
11384 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11385
11386 * subr.el (version<, version<=, version=): Mention "-CVS" and
11387 "-12345" alpha version numbers.
11388
11389 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11390
11391 * bindings.el: Add advertised binding for set-mark-command
11392 (Bug#5772).
11393
11394 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11395
11396 * bindings.el (mode-line-other-buffer):
11397 * bookmark.el (bookmark-bmenu-2-window):
11398 * bs.el (bs-cycle-next, bs-cycle-previous):
11399 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
11400 switch-to-buffer.
11401
11402 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11403 Delete.
11404
11405 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
11406
11407 * follow.el (follow-debug-message, follow-redisplay):
11408 * jka-cmpr-hook.el (with-auto-compression-mode):
11409 Fix typos in docstrings.
11410
11411 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11412
11413 * subr.el (with-silent-modifications): Clarify somewhat what the
11414 macro inhibits (bug#6525).
11415
11416 * simple.el (eval-expression): Note what it does if called
11417 interactively (bug#6495).
11418
11419 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11420
11421 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
11422 Use pop-to-buffer buffer-or-name if it is nil.
11423
11424 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11425 Remove switch-to-buffer.
11426
11427 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11428
11429 * files.el (make-directory): Clarify that an error will be raised
11430 if there's an error (bug#6397).
11431
11432 * startup.el (initial-buffer-choice): Add `none' as a choice
11433 (bug#6234).
11434
11435 * subr.el (add-hook): Clarify section about buffer-local hooks
11436 (bug#6218).
11437
11438 * dired.el (dired-flagged): Clarify doc string (bug#6117).
11439
11440 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11441
11442 * tabify.el (untabify): Preserve the current column so that point
11443 doesn't move (bug#6032).
11444
11445 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11446
11447 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
11448 Rewrite to avoid awkward possessive "s" (bug#5986).
11449
11450 2011-07-13 Glenn Morris <rgm@gnu.org>
11451
11452 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
11453 (dired-insert-directory): Give a message the first time
11454 if ls is found not to support --dired.
11455
11456 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11457
11458 * simple.el (toggle-truncate-lines): Clarify what is toggled
11459 (bug#5580). Text by Drew Adams.
11460
11461 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11462
11463 * simple.el (blink-matching-open): Make the error message from the
11464 last change less verbose.
11465
11466 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11467
11468 * font-lock.el (font-lock-comment-face): Use the high contrast
11469 "yellow" color for font-lock-comment-face on low color terminals
11470 using a dark background color (bug#4221).
11471
11472 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11473
11474 * dired.el (dired-insert-set-properties): Make the doc string
11475 reflect what it does now (bug#5325).
11476
11477 * simple.el (blink-matching-open): Say that we were unable to find
11478 the match within the limit, if we're limited (bug#5122).
11479
11480 * international/mule-cmds.el (prefer-coding-system): Add an
11481 example (bug#4869).
11482
11483 * progmodes/etags.el (tags-search): Document `file-list-form'
11484 (bug#4731).
11485
11486 2011-07-13 Lawrence Mitchell <wence@gmx.li>
11487
11488 * net/browse-url.el (browse-url-default-browser)
11489 (browse-url-browser-function): Make the default browser choice a
11490 bit more logical (bug#4300). Also clean up the doc string.
11491
11492 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11493
11494 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
11495 binary endings (bug#4440).
11496
11497 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11498
11499 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
11500 which can be pretty annoying (bug#8971).
11501
11502 * jka-compr.el (jka-compr-verbose): New variable, and use
11503 throughout (bug#8971).
11504
11505 * info.el (Info-find-file): Fall back on the installation
11506 directory if we can't find the info node anywhere else.
11507
11508 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
11509
11510 * vc/vc.el (vc-revert-file):
11511 Don't set file time-stamp in the past. (Bug#5181)
11512
11513 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11514
11515 * files.el (after-find-file): Give a better error message when
11516 trying to find a symlink that points to a file that doesn't exist
11517 (bug#4398).
11518
11519 * progmodes/cc-vars.el: Remove (probably) misleading comment
11520 (bug#4396).
11521
11522 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11523
11524 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
11525
11526 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11527
11528 * mouse-sel.el: Hack restoring functionality, while keeping
11529 compatibility with 2010-07-03 changes to mouse selection.
11530 (mouse-sel-primary-overlay): New var.
11531 (mouse-sel-selection-alist): Use it.
11532 (mouse-sel-mode): Doc fix; remove points that are default features
11533 of mouse.el.
11534
11535 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11536
11537 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11538 Fix previous fix (bug#2490).
11539
11540 2011-07-12 Roland Winkler <winkler@gnu.org>
11541
11542 * textmodes/bibtex.el (bibtex-initialize):
11543 Use pop-to-buffer-same-window.
11544 (bibtex-search-entries): Fix interactive call.
11545
11546 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11547
11548 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11549 Fontise bytecomp Error lines more correctly (bug#2490).
11550 Fix suggested by Johan Bockgård.
11551
11552 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
11553
11554 * dired-x.el (dired-guess-default): Use `delete-dups'.
11555
11556 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11557
11558 * dired.el (dired-mark-prompt):
11559 * dired-aux.el (dired-read-shell-command): Doc fix.
11560
11561 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11562
11563 * mail/sendmail.el (sendmail-query-once):
11564 Use `customize-save-variable' unconditionally, now that it works under
11565 emacs -Q.
11566
11567 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11568
11569 * cus-edit.el (custom-file): Take an optional no-error variable.
11570 (customize-save-variable): Set the variable, and give a warning if
11571 running under "emacs -q".
11572
11573 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
11574
11575 * loadhist.el (unload-feature-special-hooks):
11576 Add `auto-coding-functions', `fill-nobreak-predicate' and
11577 `find-directory-functions' (bug#5327).
11578
11579 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11580
11581 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
11582
11583 * cus-edit.el (custom-guess-name-alist): -alist variables should
11584 use the `alist' type (bug#3120). Suggested by Drew Adams.
11585
11586 * printing.el: Add documentation to all the `pr-toggle-' commands.
11587
11588 2011-07-11 Leo Liu <sdl.web@gmail.com>
11589
11590 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
11591 backends where it makes sense (bug#2623).
11592
11593 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11594
11595 * dired-x.el (dired-guess-default): Remove duplicate shell command
11596 entries (bug#2028).
11597 (dired-guess-default): Fix grammar in doc string (bug#2028).
11598 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
11599
11600 * subr.el (remove-duplicates): New conveniency function.
11601
11602 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
11603
11604 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
11605 (bug#1526).
11606
11607 2011-07-10 Martin Rudalics <rudalics@gmx.at>
11608
11609 * window.el (display-buffer-normalize-default): Don't invert
11610 meaning of even-window-heights. Reported by Eli Zaretskii
11611 <eliz@gnu.org>.
11612
11613 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
11614
11615 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
11616
11617 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
11618
11619 * window.el (display-buffer): Fix arguments to
11620 display-buffer-reuse-window in last change.
11621
11622 * faces.el (link): Use a less saturated blue on light backgrounds.
11623
11624 * startup.el (fancy-startup-text, fancy-about-text)
11625 (fancy-startup-tail): Use font-lock faces, for background safety.
11626
11627 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
11628
11629 * emulation/viper-cmd.el (viper-change-state-to-vi):
11630 Limit triggering of abbrev expansion (Bug#9038).
11631
11632 2011-07-09 Martin Rudalics <rudalics@gmx.at>
11633
11634 * window.el (display-buffer-default-specifiers): Remove.
11635 (display-buffer-macro-specifiers): Remove default specifiers.
11636 (display-buffer-alist): Default to nil.
11637 (display-buffer-reuse-window): New optional argument other-window.
11638 (display-buffer-pop-up-window): Allow splitting internal
11639 windows. Check whether a live window was created.
11640 (display-buffer-other-window-means-other-frame)
11641 (display-buffer-normalize-arguments): Rename to
11642 display-buffer-normalize-argument and rewrite. Set the
11643 other-window specifier.
11644 (display-buffer-normalize-special): New function.
11645 (display-buffer-normalize-options): Rename to
11646 display-buffer-normalize-default and rewrite.
11647 (display-buffer-normalize-options-inhibit): Remove.
11648 (display-buffer-normalize-specifiers): Rewrite.
11649 (display-buffer): Process other-window specifier and call
11650 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
11651 more faithfully.
11652 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
11653 (display-buffer-alist-set): Don't handle 'unset default values.
11654 (display-buffer-in-window, display-buffer-alist-set):
11655 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
11656 <tassilo@member.fsf.org>.
11657
11658 2011-07-09 Leo Liu <sdl.web@gmail.com>
11659
11660 * register.el (insert-register): Restore accidental change on
11661 2011-06-26. (Bug#9028)
11662
11663 2011-07-09 Glenn Morris <rgm@gnu.org>
11664
11665 * subr.el (remq): Handle the empty list. (Bug#9024)
11666
11667 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
11668
11669 * mail/sendmail.el (send-mail-function): No longer delay custom
11670 initialization.
11671 * custom.el (custom-initialize-delay): Doc fix.
11672
11673 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11674
11675 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
11676
11677 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
11678
11679 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
11680 human-friendly prompt.
11681
11682 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11683
11684 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
11685 provided by a particular plugin.
11686
11687 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11688
11689 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
11690 save customizations (with "emacs -Q"), just set the variable
11691 instead of erroring out.
11692
11693 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11694
11695 2011-07-08 Juri Linkov <juri@jurta.org>
11696
11697 * arc-mode.el (archive-zip-expunge, archive-zip-update)
11698 (archive-zip-update-case): Use 7z if found by `executable-find'.
11699 The order of searching the available programs is the same as in
11700 `archive-zip-extract' (bug#8968).
11701
11702 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11703
11704 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
11705 (menu-bar-options-menu): Tweak descriptions.
11706
11707 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11708
11709 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
11710 menu items into verb phrases (bug#1421). Also refill to fit under
11711 80 columns.
11712
11713 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11714
11715 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
11716 (Info-read-node-name): Doc fix (Bug#1084).
11717
11718 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
11719 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
11720 (end-of-sexp, beginning-of-sexp)
11721 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
11722 (forward-symbol, forward-same-syntax, word-at-point)
11723 (sentence-at-point): Doc fix (Bug#1144).
11724
11725 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11726
11727 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
11728 should cover it (bug#1281).
11729
11730 * cus-edit.el (custom-show): Mark as obsolete.
11731
11732 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
11733 negotiation fails, then possibly try again with a non-encrypted
11734 connection (bug#9017).
11735
11736 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
11737 be used.
11738
11739 2011-07-07 Richard Stallman <rms@gnu.org>
11740
11741 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
11742 property, and handle its changed format.
11743 Look for the correct line number.
11744 Use file's line contents (but not past first =) to find
11745 correct line in message.
11746
11747 2011-07-07 Kenichi Handa <handa@m17n.org>
11748
11749 * international/characters.el (build-unicode-category-table):
11750 Delete it.
11751 (unicode-category-table): Set it by unicode-property-table-internal.
11752
11753 * international/mule-cmds.el (char-code-property-alist): Move to
11754 to src/chartab.c.
11755 (get-char-code-property): Call unicode-property-table-internal to
11756 load a file. Call get-unicode-property-internal where necessary.
11757 (put-char-code-property): Call unicode-property-table-internal to
11758 load a file. Call put-unicode-property-internal where necessary.
11759 put-unicode-property-internal where necessary.
11760 (char-code-property-description):
11761 Call unicode-property-table-internal to load a file.
11762
11763 * international/charprop.el:
11764 * international/uni-bidi.el:
11765 * international/uni-category.el:
11766 * international/uni-combining.el:
11767 * international/uni-comment.el:
11768 * international/uni-decimal.el:
11769 * international/uni-decomposition.el:
11770 * international/uni-digit.el:
11771 * international/uni-lowercase.el:
11772 * international/uni-mirrored.el:
11773 * international/uni-name.el:
11774 * international/uni-numeric.el:
11775 * international/uni-old-name.el:
11776 * international/uni-titlecase.el:
11777 * international/uni-uppercase.el: Regenerate.
11778
11779 * loadup.el: Load international/charprop.el before
11780 international/characters.
11781
11782 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11783
11784 * window.el (next-buffer, previous-buffer): Signal an error if
11785 called from a minibuffer window.
11786
11787 * bindings.el: Revert 2011-07-04 change.
11788
11789 2011-07-06 Richard Stallman <rms@gnu.org>
11790
11791 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
11792 (rmail-mime-insert-bulk, rmail-mime-insert-text):
11793 Treat markers like ints.
11794 (rmail-mime-entity): Doc fix.
11795
11796 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11797
11798 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
11799 defcustom again for backwards compatibility.
11800
11801 * simple.el (shell-command-on-region): Fill.
11802
11803 * dired-aux.el (dired-kill-line): Add a doc string.
11804
11805 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
11806 to "\\sw\\|\\s_" (bug#358).
11807
11808 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
11809 (dired-unmark-backward): Ditto.
11810 (dired-flag-backup-files): Ditto.
11811
11812 * dired-x.el (dired-mark-sexp): Ditto.
11813
11814 2011-07-06 Richard Stallman <rms@gnu.org>
11815
11816 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
11817 (rmail-mime-entity): New arg TRUNCATED.
11818 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
11819 New functions.
11820 (rmail-mime-save): Warn if entity is truncated.
11821 (rmail-mime-toggle-hidden): Likewise, for showing.
11822 (rmail-mime-process-multipart): Record when an entity is truncated.
11823
11824 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
11825 if ENTITY is a string.
11826
11827 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11828
11829 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
11830 of faces when `M-C-x'-ing their definitions (bug#8378).
11831 Also clean up the code slightly.
11832
11833 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
11834 because that makes the colors go away.
11835
11836 * mail/sendmail.el (send-mail-function): Change the default to
11837 `sendmail-query-once'.
11838 (sendmail-query-once): Add an autoload cookie.
11839
11840 * net/network-stream.el (network-stream-open-starttls): Try using
11841 a plain connection even if the server offered STARTTLS, and we
11842 kinda wanted to use it, if Emacs doesn't have any STARTTLS
11843 capability. This should make smtpmail.el work in slightly more
11844 configurations.
11845
11846 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
11847
11848 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11849 New defun.
11850 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
11851
11852 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
11853
11854 * progmodes/sql.el: Version 3.0
11855 (sql-product-alist): Add product :completion-object,
11856 :completion-column, and :statement attributes.
11857 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
11858 (sql-mode-syntax-table): Mark all punctuation.
11859 (sql-font-lock-keywords-builder): Temporarily remove fallback on
11860 ansi keywords.
11861 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
11862 (sql-mode-oracle-font-lock-keywords): Improve.
11863 (sql-oracle-show-reserved-words): New function for development.
11864 (sql-product-font-lock): Simplify for source code buffers.
11865 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
11866 New functions.
11867 (sql-highlight-product): Set product specific syntax table.
11868 (sql-mode-map): Add statement movement functions.
11869 (sql-ansi-statement-starters, sql-oracle-statement-starters):
11870 New variable.
11871 (sql-statement-regexp, sql-beginning-of-statement)
11872 (sql-end-of-statement, sql-signum): New functions.
11873 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
11874 (sql-show-sqli-buffer): Bug fix.
11875 (sql-interactive-mode): Store connection data as buffer local.
11876 (sql-connect): Add NEW-NAME parameter. Redesign interaction
11877 with sql-interactive-mode.
11878 (sql-save-connection): Save buffer local settings.
11879 (sql-connection-menu-filter): Change menu entry name.
11880 (sql-product-interactive): Bug fix.
11881 (sql-preoutput-hold): New variable.
11882 (sql-interactive-remove-continuation-prompt): Bug fixes.
11883 (sql-debug-redirect): New variable.
11884 (sql-str-literal): New function.
11885 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
11886 Redesign.
11887 (sql-oracle-save-settings, sql-oracle-restore-settings)
11888 (sql-oracle-list-all, sql-oracle-list-table): New functions.
11889 (sql-completion-object, sql-completion-column)
11890 (sql-completion-sqlbuf): New variables.
11891 (sql-build-completions-1, sql-build-completions)
11892 (sql-try-completion): New functions.
11893 (sql-read-table-name): Use them.
11894 (sql-contains-names): New buffer local variable.
11895 (sql-list-all, sql-list-table): Use it.
11896 (sql-oracle-completion-types): New variable.
11897 (sql-oracle-completion-object, sql-sqlite-completion-object)
11898 (sql-postgres-completion-object): New functions.
11899
11900 2011-07-06 Glenn Morris <rgm@gnu.org>
11901
11902 * window.el (pop-to-buffer): Doc fix.
11903
11904 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
11905
11906 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
11907
11908 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
11909
11910 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
11911
11912 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
11913
11914 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
11915
11916 * button.el (button): Inherit from link face. Suggested by Dan
11917 Nicolaescu.
11918
11919 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11920
11921 * progmodes/gdb-mi.el: Fit in 80 columns.
11922 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
11923 switch-to-buffer.
11924
11925 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
11926 if imenu is simply not configured (bug#8941).
11927
11928 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
11929
11930 * allout.el (allout-post-undo-hook): New allout outline-change
11931 event hook to signal undo activity.
11932 (allout-post-command-business): Run allout-post-undo-hook if an
11933 undo just occurred.
11934 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
11935 * allout-widgets.el (allout-widgets-after-undo-function):
11936 Ensure the integrity of the current item's decoration after it has been
11937 in the vicinity of an undo.
11938 (allout-widgets-mode): Include allout-widgets-after-undo-function
11939 on the new allout-post-undo-hook.
11940
11941 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11942
11943 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
11944 Let define-derived-mode define it.
11945 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
11946 cycles of abbrev-table inheritance (bug#8998).
11947
11948 2011-07-05 Roland Winkler <winkler@gnu.org>
11949
11950 * textmodes/bibtex.el: Add support for biblatex.
11951 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
11952 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
11953 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
11954 (bibtex-entry-alist, bibtex-field-alist): New variables.
11955 (bibtex-entry-field-alist): Obsolete alias for
11956 bibtex-BibTeX-entry-alist.
11957 (bibtex-entry-alist, bibtex-field-alist): New widgets.
11958 (bibtex-set-dialect): New command.
11959 (bibtex-entry-type, bibtex-entry-head)
11960 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
11961 Bind via bibtex-set-dialect.
11962 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
11963 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
11964 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
11965 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
11966 Define via bibtex-set-dialect.
11967 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
11968 Obey bibtex-no-opt-remove-re.
11969 (bibtex-vec-push, bibtex-vec-incr): New functions.
11970 (bibtex-format-entry, bibtex-field-list)
11971 (bibtex-print-help-message, bibtex-validate)
11972 (bibtex-search-entries): Use new format of bibtex-entry-alist.
11973
11974 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11975
11976 * progmodes/compile.el (compilation-goto-locus):
11977 * net/tramp-cmds.el (tramp-append-tramp-buffers):
11978 * bs.el (bs-cycle-next, bs-cycle-previous):
11979 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
11980 * bindings.el (mode-line-other-buffer):
11981 * autoinsert.el (auto-insert):
11982 * arc-mode.el (archive-extract):
11983 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
11984
11985 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11986
11987 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
11988 Fix check of `emacs-lock-unlockable-modes'.
11989 Coerce true values of `emacs-lock--try-unlocking' to t.
11990
11991 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11992
11993 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
11994 * emacs-lock.el: New file.
11995
11996 2011-07-05 Julien Danjou <julien@danjou.info>
11997
11998 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
11999 than `boundp' to check if face is set.
12000
12001 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
12002
12003 * register.el (registerv-make):
12004 * window.el (window-min-height): Fix typos in docstrings.
12005
12006 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
12007
12008 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
12009 Update doc string.
12010
12011 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
12012
12013 * server.el (server-execute): Catch quit and call
12014 `server-return-error' to pass the error back to emacsclient and
12015 close the connection (bug#8942).
12016
12017 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
12018
12019 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
12020 insecure exception for current topic. Also note that auto-saves
12021 are handled differently.
12022
12023 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
12024 State variables for tracking auto-save inhibition situation.
12025
12026 (allout-write-contents-hook-handler): Rename from
12027 'allout-write-file-hook-handler', and describe how it depends on
12028 write-contents-functions sensitivity to non-nil value to prevent
12029 file write.
12030
12031 (allout-auto-save-hook-handler): Remove. auto-save does not check
12032 this in individual buffers, only in the starting buffer, so this
12033 is not the right way for us to inhibit auto-save in a buffer
12034 according to its condition.
12035
12036 (allout-mode): Use new allout-write-contents-hook-handler, and
12037 only with write-contents-functions. Remove auto-save provisions -
12038 they're implemented elsewhere.
12039
12040 (allout-before-change-handler): If undo is in progress, note that
12041 for attention of allout-post-command-business.
12042
12043 (allout-post-command-business): If the command we're following was
12044 an undo, check for change in the status of encrypted items and
12045 adjust auto-save inhibitions accordingly.
12046
12047 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
12048 according to whether there are or aren't any plain-text topics
12049 pending encryption.
12050
12051 (allout-inhibit-auto-save-info-for-decryption):
12052 Adjust buffer-saved-size and some allout state to inhibit auto-saves
12053 if there are plain-text topics pending encryption.
12054
12055 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
12056 buffer-saved-size and some allout state to not inhibit auto-saves
12057 if there are no longer any plain-text topics pending encryption.
12058
12059 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
12060 No longer provide for exemption of the current topic.
12061
12062 2011-07-04 Juri Linkov <juri@jurta.org>
12063
12064 Add 7z operations to delete and save changed members (bug#8968).
12065 * arc-mode.el (archive-7z-expunge, archive-7z-update):
12066 New defcustoms.
12067 (archive-7z-write-file-member): New function.
12068 (archive-7z-summarize): Fix the number of dashes in the
12069 listing output.
12070
12071 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12072
12073 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
12074 (bug#8958).
12075
12076 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
12077
12078 * bindings.el: Ignore next-buffer and previous-buffer in
12079 minibuffer-local-map.
12080
12081 * font-lock.el (font-lock-builtin-face): Change light background
12082 color to dark slate blue (Bug#6693).
12083
12084 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
12085
12086 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
12087
12088 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12089
12090 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
12091 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12092 Add switch-to-buffer.
12093
12094 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12095
12096 * isearch.el (isearch-search-fun-function): Clarify further the
12097 meaning of the function returned.
12098
12099 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
12100
12101 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
12102
12103 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
12104 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
12105 Use it.
12106 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
12107 `tramp-default-remote-path' does not exist.
12108 (tramp-send-command-and-read): New optional argument NOERROR.
12109 (tramp-open-connection-setup-interactive-shell)
12110 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
12111 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
12112 (tramp-process-sentinel): Flush also process' connection property.
12113 (tramp-sh-handle-start-file-process): Do not set process
12114 sentinel. It is done now ...
12115 (tramp-maybe-open-connection): ... here. (Bug#8929)
12116
12117 2011-07-04 MON KEY <monkey@sandpframing.com>
12118
12119 * play/animate.el (animate-string): Doc fixes and allow changing
12120 the buffer name (bug#5417).
12121
12122 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12123
12124 * play/animate.el (animation-buffer-name): Rename from *animate*.
12125
12126 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12127
12128 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
12129 This is simpler and helps future-proof the code.
12130 (timer-until): Use time-subtract and float-time.
12131 (timer--time-less-p): Use time-less-p.
12132
12133 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
12134
12135 * type-break.el (timep): Use the value of `float-time' to avoid a
12136 byte-compiler warning.
12137
12138 * server.el (server-eval-and-print): Return any result, even nil.
12139
12140 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
12141
12142 * type-break.el: Accept time formats that the builtins accept.
12143 (timep, type-break-time-difference): Accept any format that
12144 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
12145 This is simpler and helps future-proof the code.
12146 (type-break-time-difference): Round rather than ignoring
12147 subseconds components.
12148
12149 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12150
12151 * info.el (Info-apropos-matches): Make non-interactive, since it
12152 doesn't seem to do anything useful as a command (bug#8829).
12153
12154 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
12155
12156 * frame.el (frame-background-mode, frame-set-background-mode):
12157 Move from faces.el.
12158 (frame-default-terminal-background): New function.
12159
12160 * custom.el (custom-push-theme): Don't record faces in `changed'
12161 theme; this doesn't work correctly for per-frame face settings.
12162 (disable-theme): Use face-set-after-frame-default to reset faces.
12163 (custom--frame-color-default): New function.
12164
12165 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12166
12167 * dired.el (dired-flagging-regexp): Remove unused variable
12168 (bug#8769).
12169
12170 2011-03-29 Kevin Ryde <user42@zip.com.au>
12171
12172 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12173 `perl-Test2' extend to match possible "fail #N" rep count
12174 (bug#8377).
12175
12176 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12177
12178 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
12179 `smtpmail-via-smtp' now returns the error instead of nil.
12180
12181 * isearch.el (isearch-search-fun-function): Clarify the doc string
12182 (bug#8101).
12183
12184 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
12185
12186 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
12187 unnecessary spaces (bug#8987).
12188
12189 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12190
12191 * net/network-stream.el (open-network-stream): Use the
12192 :end-of-capability command thoughout.
12193
12194 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12195
12196 * net/network-stream.el (open-network-stream): Add the
12197 :end-of-capability command parameter, used by pop3.el.
12198
12199 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12200
12201 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
12202
12203 * fringe.el (fringe-query-style): Remove redundant text " (type ?
12204 for list)" (bug#6475).
12205
12206 * files.el (file-expand-wildcards): Ignore non-readable
12207 sub-directories while trying to find matches instead of signaling
12208 an error (bug#6297).
12209
12210 * man.el (Man-reference-regexp): Allow matching possible
12211 word-wrapped references (bug#6289).
12212
12213 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
12214 for consistency with the other vc buffers (bug#6197).
12215 (vc-checkin): Ditto.
12216
12217 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
12218
12219 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
12220
12221 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12222
12223 * custom.el (defcustom): Clarify that :set is only used in the
12224 Customize user interface (bug#6089).
12225
12226 * progmodes/flymake.el (flymake-mode): If the buffer isn't
12227 associated with a file, refuse to run instead of erroring out
12228 (bug#6084).
12229
12230 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
12231 the doc string, since it appears that using `fill-column' always
12232 controls the width (bug#7845).
12233
12234 * simple.el (shell-command-on-region): Say where the error output
12235 went if `shell-command-default-error-buffer' is set (bug#6857).
12236
12237 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
12238
12239 * allout.el (allout-yank-processing): Adjust cursor position for
12240 backwards-deleted space.
12241
12242 (allout-rebullet-heading): Register changes with
12243 allout-exposure-changed-hook, so the modified topic is properly
12244 decorated.
12245
12246 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12247
12248 * minibuffer.el (completion-in-region): Document PREDICATE
12249 (bug#7136).
12250
12251 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
12252 of keyword/argument pairs (bug#6904).
12253
12254 * replace.el (multi-occur):
12255 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
12256
12257 2011-07-02 Drew Adams <drew.adams@oracle.com>
12258
12259 * dired.el (dired-mark-if): Make the message about whether it's
12260 marking or unmarking clearer (bug#8523).
12261
12262 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12263
12264 * disp-table.el (display-table-print-array): New function.
12265 (describe-display-table): Use it to print the vectors more pretty
12266 (Bug#8859).
12267
12268 2011-07-02 Martin Rudalics <rudalics@gmx.at>
12269
12270 * window.el (window-state-get-1): Don't assign clone numbers.
12271 Add clone-of item to list of window parameters.
12272 (window-state-put-2): Don't process clone numbers.
12273 (display-buffer-alist): Fix doc-string.
12274
12275 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12276
12277 * subr.el (remq): Don't allocate if it's not needed.
12278 (keymap--menu-item-binding, keymap--menu-item-with-binding)
12279 (keymap--merge-bindings): New functions.
12280 (keymap-canonicalize): Use them to refine the canonicalization.
12281 * minibuffer.el (minibuffer-local-completion-map)
12282 (minibuffer-local-must-match-map): Move initialization from C.
12283 (minibuffer-local-filename-completion-map): Move initialization from C;
12284 don't inherit from anything here.
12285 (minibuffer-local-filename-must-match-map): Make obsolete.
12286 (completing-read-default): Use make-composed-keymap to combine
12287 minibuffer-local-filename-completion-map with either
12288 minibuffer-local-must-match-map or
12289 minibuffer-local-filename-completion-map.
12290
12291 2011-07-01 Glenn Morris <rgm@gnu.org>
12292
12293 * type-break.el (type-break-time-sum): Use dolist.
12294
12295 * textmodes/flyspell.el (flyspell-word-search-backward):
12296 Replace CL function.
12297
12298 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12299
12300 * mouse.el (mouse--strip-first-event): New function.
12301 (function-key-map): Use it to map fringe clicks to normal clicks
12302 by default.
12303
12304 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
12305 (vc-bzr-revision-completion-table): Add support for annotate and date.
12306
12307 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
12308 inherit from parent.
12309
12310 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
12311
12312 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
12313 (dired-show-file-type): Doc fixup (bug#8818).
12314
12315 * dired.el (dired-mode): Fix up the doc string as suggested by
12316 Drew Adams (bug#8817).
12317
12318 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
12319 cookie, since the manual says that it should be possible to add
12320 this function to `find-file-hook' (bug#8709).
12321
12322 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12323
12324 * progmodes/cfengine.el: Moved all cfengine3.el functionality
12325 here. Noted Ted Zlatanov as the maintainer.
12326 (cfengine-common-settings, cfengine-common-syntax): New functions
12327 to set up common things between `cfengine-mode' and
12328 `cfengine3-mode'.
12329 (cfengine3-mode): New mode.
12330 (cfengine3-defuns cfengine3-defuns-regex
12331 (cfengine3-class-selector-regex cfengine3-category-regex)
12332 (cfengine3-vartypes cfengine3-font-lock-keywords)
12333 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
12334 (cfengine3-indent-line): Add from cfengine3.el.
12335
12336 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
12337
12338 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
12339
12340 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
12341
12342 2011-07-01 Martin Rudalics <rudalics@gmx.at>
12343
12344 * window.el (same-window-buffer-names, same-window-regexps)
12345 (same-window-p, special-display-frame-alist)
12346 (special-display-popup-frame, special-display-function)
12347 (special-display-buffer-names, special-display-regexps)
12348 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
12349 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12350 (split-window-preferred-function, split-height-threshold)
12351 (split-width-threshold, even-window-heights)
12352 (display-buffer-mark-dedicated, window-splittable-p)
12353 (split-window-sensibly, window-safely-shrinkable-p):
12354 Un-obsolete.
12355 (display-buffer): Don't spread args with function specifier
12356 because special-display-popup-frame won't like it.
12357
12358 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12359
12360 Time-stamp simplifications and fixes.
12361 These improve accuracy slightly, and future-proof the code
12362 against some potential changes to current-time format.
12363
12364 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
12365 by using time-since and float-time.
12366
12367 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
12368 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
12369 + NNN microseconds".
12370
12371 * type-break.el (type-break-time-sum): Rewrite using time-add.
12372
12373 * play/hanoi.el (hanoi-current-time-float): Remove.
12374 All uses replaced by float-time.
12375
12376 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
12377 This yields a more-accurate answer.
12378 (rng-time-to-float): Remove; no longer needed.
12379
12380 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
12381
12382 * calendar/timeclock.el (timeclock-seconds-to-time):
12383 Defalias to seconds-to-time, since they're the same thing.
12384
12385 * emacs-lisp/elp.el (elp-elapsed-time):
12386 * emacs-lisp/benchmark.el (benchmark-elapse):
12387 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
12388
12389 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12390
12391 * window.el (bury-buffer): Don't iconify the only frame.
12392 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
12393 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
12394
12395 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
12396
12397 * eshell/em-smart.el (eshell-smart-display-navigate-list):
12398 Add mouse-yank-primary.
12399
12400 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12401
12402 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
12403
12404 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12405
12406 * emacs-lisp/find-func.el (find-library--load-name): New fun.
12407 (find-library-name): Use it to find relative load names when provided
12408 absolute file name (bug#8803).
12409
12410 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12411
12412 * textmodes/flyspell.el (flyspell-word): Consider words that
12413 differ only in case as potential doublons (bug#5687).
12414
12415 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
12416 Remove two rather uninteresting debugging-like messages to make
12417 debbugs.el more silent.
12418
12419 * comint.el (comint-password-prompt-regexp): Accept "Response" as
12420 a password-like phrase.
12421
12422 2011-06-30 Masatake YAMATO <yamato@redhat.com>
12423
12424 * progmodes/cc-guess.el: New file.
12425
12426 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
12427
12428 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
12429 derived from `c-basic-common-init'.
12430
12431 * progmodes/cc-mode.el (top-level): Require cc-guess.
12432 (c-basic-common-init): Use `cc-choose-style-for-mode'.
12433
12434 2011-06-30 Lawrence Mitchell <wence@gmx.li>
12435
12436 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
12437
12438 2011-06-30 Alan Mackenzie <acm@muc.de>
12439
12440 * progmodes/cc-engine.el (c-guess-continued-construct):
12441 Correct the handling of template-args-cont, particularly for when font
12442 lock is disabled. Name this case as "CASE G".
12443
12444 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
12445
12446 * allout.el (allout-yank-processing): Fix injection of extra space
12447 between bullet and non-whitespace character in first topic when
12448 pasting, ensuring that the actual spacing in the pasted topic
12449 following the bullet char is preserved. This extra space was
12450 causing pasted encrypted topics to get a decrypted status even
12451 when the content was actually still encrypted. Now the decryption
12452 status from before the paste is preserved.
12453
12454 (allout-flag-region): Set all allout overlays so they evaporate
12455 when reduced to zero length (evanescent), to prevent overlay
12456 leakage.
12457
12458 2011-06-30 Glenn Morris <rgm@gnu.org>
12459
12460 * w32-fns.el (w32-charset-info-alist): Declare.
12461
12462 * find-dired.el (find-grep-options): Simplify.
12463
12464 * term/ns-win.el (ns-set-resource): Declare.
12465
12466 * ses.el (row, col): Declare dynamic variables honestly.
12467
12468 * textmodes/reftex-parse.el (index-tags): Declare.
12469
12470 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
12471
12472 * cus-edit.el (customize-push-and-save): New function.
12473
12474 * files.el (hack-local-variables-confirm): Use it.
12475
12476 * custom.el (load-theme): New arg NO-CONFIRM.
12477 Use customize-push-and-save (Bug#8720).
12478 (custom-enabled-themes): Doc fix.
12479
12480 * cus-theme.el (customize-create-theme)
12481 (custom-theme-merge-theme): Callers to load-theme changed.
12482
12483 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12484
12485 * thingatpt.el (thing-at-point-short-url-regexp): Require that
12486 short URLs have at least one dot in them (bug #7614).
12487
12488 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
12489 nil, because using a pty is apparently too slow (bug #895).
12490
12491 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
12492
12493 * mail/sendmail.el (sendmail-query-once): New function.
12494 (sendmail-query-once-function): New variable.
12495
12496 2011-06-29 Glenn Morris <rgm@gnu.org>
12497
12498 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
12499
12500 * ses.el (top-level): Require cl when compiling.
12501 (ses-set-localvars): Fix error statement.
12502 Call it at compile time to silence a storm of warnings.
12503
12504 2011-06-29 Martin Rudalics <rudalics@gmx.at>
12505
12506 * window.el (normalize-live-buffer): Rename to
12507 window-normalize-buffer.
12508 (normalize-live-frame): Rename to window-normalize-frame.
12509 (normalize-any-window): Rename to window-normalize-any-window.
12510 (normalize-live-window): Rename to window-normalize-live-window.
12511 (make-window-atom): Rename to window-make-atom.
12512 (window-resize-reset): Rename to window--resize-reset.
12513 (window-resize-reset-1): Rename to window--resize-reset-1.
12514 (resize-mini-window): Rename to window--resize-mini-window.
12515 (resize-subwindows-skip-p): Rename to
12516 window--resize-subwindows-skip-p.
12517 (resize-subwindows-normal): Rename to
12518 window--resize-subwindows-normal.
12519 (resize-subwindows): Rename to window--resize-subwindows.
12520 (resize-other-windows): Rename to window--resize-siblings.
12521 (resize-this-window): Rename to window--resize-this-window.
12522 (resize-root-window): Rename to window--resize-root-window.
12523 (resize-root-window-vertically): Rename to
12524 window--resize-root-window-vertically.
12525 (normalize-buffer-to-display): Rename to
12526 window-normalize-buffer-to-display.
12527 (normalize-buffer-to-switch-to): Rename to
12528 window-normalize-buffer-to-switch-to.
12529 Correspondingly update all callers of the functions listed
12530 above.
12531 (display-buffer-alist, display-buffer-normalize-arguments)
12532 (display-buffer-normalize-options, display-buffer)
12533 (display-buffer-alist-set): Use "function" instead of
12534 "fun-with-args".
12535
12536 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
12537
12538 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
12539 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
12540 debbugs.gnu.org. Mention acknowledgment email.
12541
12542 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
12543
12544 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
12545 buffer multibyteness, since it shouldn't matter.
12546
12547 2011-06-28 Martin Rudalics <rudalics@gmx.at>
12548
12549 * window.el (display-buffer-in-side-window): Handle dedicated
12550 windows as in display-buffer-reuse-window.
12551 (display-buffer-normalize-alist): Use value of override
12552 specifier.
12553 (display-buffer-normalize-specifiers): Use value of
12554 other-window-means-other-frame specifier.
12555 (display-buffer-alist): Rewrite some texts in widgets.
12556 (display-buffer): Spread arguments when calling function
12557 specified by fun-with-args.
12558
12559 2011-06-28 Deniz Dogan <deniz@dogan.se>
12560
12561 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
12562 Unnest `let'.
12563
12564 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
12565 selectors (Bug#5732).
12566 (css-proprietary-nmstart-re): Use `regexp-opt'.
12567
12568 2011-06-27 Jari Aalto <jari.aalto@cante.net>
12569
12570 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
12571 (eshell-ls-date-format): New defcustom.
12572 (eshell-ls-file): Use it.
12573
12574 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12575
12576 * help-fns.el (describe-variable): Fix message for terminal-local vars.
12577
12578 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
12579
12580 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
12581 (ange-ftp-make-tmp-name): New arg.
12582 (ange-ftp-file-local-copy): Use it.
12583
12584 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
12585
12586 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
12587 no-conversion (Bug#8870).
12588
12589 2011-06-27 Martin Rudalics <rudalics@gmx.at>
12590
12591 * window.el (window-right, window-left, window-child)
12592 (window-child-count, window-last-child)
12593 (window-iso-combination-p, walk-window-tree-1)
12594 (window-atom-check-1, window-tree-1, delete-window)
12595 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
12596 new naming conventions - window-vchild, window-hchild,
12597 window-next and window-prev are now called window-top-child,
12598 window-left-child, window-next-sibling and window-prev-sibling
12599 respectively.
12600 (resize-window-reset): Rename to window-resize-reset.
12601 (resize-window-reset-1): Rename to window-resize-reset-1.
12602 (resize-window): Rename to window-resize.
12603 (window-min-height, window-min-width)
12604 (resize-mini-window, resize-this-window, resize-root-window)
12605 (resize-root-window-vertically, adjust-window-trailing-edge)
12606 (enlarge-window, shrink-window, maximize-window)
12607 (minimize-window, delete-window, quit-restore-window)
12608 (split-window, balance-windows, balance-windows-area-adjust)
12609 (balance-windows-area, window-state-put-2)
12610 (display-buffer-even-window-sizes, display-buffer-set-height)
12611 (display-buffer-set-width, set-window-text-height)
12612 (fit-window-to-buffer): Rename all "resize-window" prefixed
12613 calls to use the "window-resize" prefix convention.
12614 (display-buffer-alist): Fix symbol for label specifier.
12615 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
12616 corresponding specifier.
12617 Reported by Juanma Barranquero <lekktu@gmail.com>.
12618
12619 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12620
12621 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
12622 convention.
12623 (ses-call-printer): Does not pass an empty string to formatter when the
12624 cell is empty to keep from barking printer Calc math-format-value.
12625
12626 2011-06-27 Richard Stallman <rms@gnu.org>
12627
12628 * battery.el (battery-mode-line-limit): New variable.
12629 (battery-update): Handle it.
12630
12631 * mail/rmailmm.el (rmail-mime-process-multipart):
12632 Handle truncated messages.
12633
12634 2011-06-27 Glenn Morris <rgm@gnu.org>
12635
12636 * progmodes/flymake.el (flymake-err-line-patterns):
12637 Allow for column numbers in the ant/javac pattern. (Bug#8866)
12638
12639 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12640
12641 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
12642 (ses--clean-!, ses--clean-_): New functions.
12643 (ses-range): Add configurability of readout order, and conversion
12644 to Calc vector.
12645
12646 * ses.el (ses-repair-cell-reference-all): New function.
12647 (ses-cell-symbol): Set macro as safe, so that it can be used in
12648 formulas.
12649
12650 * ses.el: Update cycle detection algorithm.
12651 (ses-localvars): Add ses--Dijkstra-attempt-nb and
12652 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
12653 (ses-set-localvars): New function.
12654 (ses-make-cell): Add property-list as a cell element.
12655 (ses-cell-property-get-fun, ses-cell-property-get)
12656 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
12657 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
12658 New functions.
12659 (ses-cell-property-set, ses-cell-property-pop)
12660 (ses-cell-property-get-handle): New macro.
12661 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
12662 New aliases, used for code readability.
12663 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
12664 cycle detection.
12665 (ses-self-reference-early-detection): New defcustom.
12666 (ses-formula-references): Robustify against self-referring cells.
12667 (ses-mode): Use ses-set-localvars.
12668 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
12669 before lauching the update processing.
12670 (ses-initialize-Dijkstra-attempt): New function.
12671 (ses-recalculate-cell): Update for cycle detection based on
12672 Dijkstra algorithm.
12673
12674 * ses.el: Fix commenting and indenting convention.
12675
12676 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12677
12678 * bs.el (bs-cycle-next): Complete last change.
12679
12680 2011-06-27 Drew Adams <drew.adams@oracle.com>
12681
12682 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
12683
12684 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12685
12686 * net/network-stream.el (network-stream-open-starttls):
12687 Don't re-get capabilities unless we've reestablished connection.
12688 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
12689
12690 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
12691 to binary to possibly avoid line encoding issues on Windows (among
12692 other things).
12693
12694 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12695
12696 * net/network-stream.el (open-network-stream): Return an :error
12697 saying what the problem was, if possible.
12698
12699 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
12700 server.
12701
12702 * net/network-stream.el (network-stream-open-starttls): If we
12703 wanted to use STARTTLS, and the server offered it, but we weren't
12704 able to because we had no STARTTLS support, then close the connection.
12705 (open-network-stream): Return an :error element, if present.
12706
12707 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12708
12709 * hl-line.el (hl-line-sticky-flag): Doc fix.
12710 (global-hl-line-sticky-flag): New option (Bug#8323).
12711 (global-hl-line-highlight): Obey it.
12712
12713 * vc/vc.el (vc-revert-show-diff): Default to t.
12714
12715 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
12716
12717 * allout-widgets.el (allout-widgets-post-command-business):
12718 Stop decorating intermediate isearch matches. They're not being
12719 undecorated when an isearch is continued past, and isearch
12720 automatically collapses them. This leads to "widget leaks", where
12721 decorated items accumulate in collapsed areas. Lines with lots of
12722 hidden widgets can slow down cursor travel, substantially.
12723 Too much complicated machinery would be needed to ensure undecoration,
12724 so we're doing without this nicety.
12725
12726 (allout-widgets-tally-string): Don't try to do a hash-table-count
12727 of allout-widgets-tally when it's nil. This eliminates spurious "Error
12728 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
12729 *Messages* when allout-widgets-maintain-tally is t.
12730
12731 2011-06-26 Martin Rudalics <rudalics@gmx.at>
12732
12733 * window.el (display-buffer-normalize-argument): Rename to
12734 display-buffer-normalize-arguments. Handle special meaning of
12735 LABEL argument. Respect special-display-function when popping up
12736 a new frame. Fix code searching for a window showing the buffer
12737 on another frame.
12738 (display-buffer-normalize-specifiers):
12739 Call display-buffer-normalize-arguments.
12740 (display-buffer-in-window): Don't undedicate the window if its
12741 buffer remains the same.
12742 Reported by Drew Adams <drew.adams@oracle.com>.
12743 (display-buffer-alist): Add choice for same-window macro
12744 specfier.
12745 (display-buffer): Mention special meaning of LABEL argument in
12746 doc-string. Fix quoting. Don't pop up a new frame even as
12747 fallback.
12748
12749 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
12750
12751 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
12752 avoid deleting the current window in some cases (bug#8911).
12753
12754 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
12755
12756 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
12757 (Bug#8934)
12758
12759 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12760
12761 * net/network-stream.el (network-stream-open-starttls):
12762 Use built-in TLS support if `gnutls-available-p' is true.
12763 (network-stream-open-tls): Ditto.
12764
12765 2011-06-26 Leo Liu <sdl.web@gmail.com>
12766
12767 * register.el (registerv): New struct.
12768 (registerv-make): New function.
12769 (jump-to-register, describe-register-1, insert-register):
12770 Support the jump-func, print-func and insert-func slot of a registerv
12771 struct. (Bug#8415)
12772
12773 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12774
12775 * vc/vc.el (vc-revert-show-diff): New defcustom.
12776 (vc-diff-internal): New arg specifying diff buffer.
12777 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
12778 reuse an existing *vc-diff* buffer (Bug#8927).
12779
12780 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
12781
12782 2011-06-26 Glenn Morris <rgm@gnu.org>
12783
12784 * progmodes/f90.el (f90-critical-indent): New option.
12785 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
12786 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
12787 (f90-mode): Doc fix.
12788 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
12789 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
12790 (f90-beginning-of-block, f90-next-block, f90-indent-region)
12791 (f90-match-end): Handle block, critical.
12792
12793 2011-06-25 Glenn Morris <rgm@gnu.org>
12794
12795 * calendar/diary-lib.el (diary-included-files): Doc fix.
12796 (diary-include-files): New function, extracted from
12797 diary-include-other-diary-files and diary-mark-included-diary-files.
12798 (diary-include-other-diary-files, diary-mark-included-diary-files):
12799 Just call diary-include-files.
12800 (diary-mark-entries): Reset diary-included-files on first call.
12801
12802 * calendar/diary-lib.el (diary-mark-entries)
12803 (diary-mark-included-diary-files):
12804 Visit included diary-files in temp buffers.
12805
12806 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
12807 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
12808 (f90-start-block-re, f90-imenu-generic-expression)
12809 (f90-looking-at-program-block-start, f90-no-block-limit):
12810 Add support for submodules.
12811
12812 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12813 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
12814
12815 2011-06-25 Eli Zaretskii <eliz@gnu.org>
12816
12817 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
12818 buffer-file-type before setting its value, to avoid disastrous
12819 global effects on decoding files for DOS/Windows systems. (Bug#8780)
12820
12821 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12822
12823 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
12824
12825 * ses.el (ses-unload-function):
12826 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
12827
12828 * proced.el (proced-unload-function):
12829 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
12830
12831 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
12832
12833 * server.el (server-create-window-system-frame): Add parameters arg.
12834 (server-process-filter): Doc fix. Handle frame-parameters.
12835
12836 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12837
12838 Fix bug#8730, bug#8781.
12839
12840 * loadhist.el (unload--set-major-mode): New function.
12841 (unload-feature): Use it.
12842
12843 * progmodes/python.el (python-after-info-look): Add autoload cookie.
12844 (python-unload-function): New function.
12845
12846 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12847
12848 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
12849
12850 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
12851
12852 * net/browse-url.el (browse-url-firefox-program): Add icecat to
12853 the candidates list.
12854
12855 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
12856
12857 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
12858
12859 2011-06-23 Richard Stallman <rms@gnu.org>
12860
12861 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
12862 (rmail-variables): Set next-error-move-function.
12863 (rmail-what-message): Take argument POS.
12864 (rmail-next-error-move): New function.
12865
12866 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12867
12868 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
12869 messages for adjacent non-terminals.
12870
12871 2011-06-23 Richard Stallman <rms@gnu.org>
12872
12873 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
12874 (rmail-show-message-1): Preserve buffer modified flag.
12875 (rmail-start-mail): Don't specify use of rmail-mail-return;
12876 that's done by mail-bury now.
12877 (rmail-mail-return): Handle arg NEWBUF.
12878
12879 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
12880
12881 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
12882 SIZE is a number.
12883
12884 2011-06-23 Martin Rudalics <rudalics@gmx.at>
12885
12886 * window.el (get-lru-window, get-mru-window)
12887 (get-largest-window): Never return a minibuffer window.
12888 (display-buffer-pop-up-window): Fix a bug that could lead to
12889 reusing the minibuffer window.
12890 (display-buffer): Pass original specifier argument to
12891 display-buffer-function instead of the normalized one.
12892 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
12893
12894 2011-06-22 Leo Liu <sdl.web@gmail.com>
12895
12896 * minibuffer.el (completing-read-function)
12897 (completing-read-default): Move from minibuf.c
12898
12899 2011-06-22 Richard Stallman <rms@gnu.org>
12900
12901 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
12902 to Rmail even if not started by a special Rmail command.
12903
12904 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
12905 Copy the buffer currently showing just one message.
12906
12907 2011-06-22 Roland Winkler <winkler@gnu.org>
12908
12909 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
12910 (bibtex-clean-entry): First delete the old key so that a
12911 customized algorithm for generating the new key does not get
12912 confused by the old key.
12913 (bibtex-url): Obey regexp of first step.
12914 (bibtex-search-entries): Do not use add-to-list with local
12915 list-var.
12916
12917 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12918
12919 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
12920 stored a user name, then query for the password first, instead of
12921 waiting for SMTP to give an error message and the trying again.
12922
12923 2011-06-22 Lawrence Mitchell <wence@gmx.li>
12924
12925 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
12926 BUFFER in call-process.
12927
12928 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12929
12930 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
12931 QUIT twice.
12932 (smtpmail-try-auth-methods): Require user name and password from
12933 auth-source.
12934
12935 2011-06-22 Martin Rudalics <rudalics@gmx.at>
12936
12937 * window.el (display-buffer-default-specifiers)
12938 (display-buffer-alist): Remove entries for pop-up-frame-alist.
12939 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
12940 (split-window): Normalize SIDE argument (Bug#8916).
12941
12942 * frame.el (pop-up-frame-alist, pop-up-frame-function)
12943 (special-display-frame-alist, special-display-popup-frame):
12944 Remove duplicate declarations. These are now in window.el.
12945
12946 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12947
12948 * mail/smtpmail.el (smtpmail-via-smtp):
12949 Set :use-starttls-if-possible so that we always use STARTTLS if the
12950 server supports it. SMTP servers that support STARTTLS commonly
12951 require it.
12952
12953 * net/network-stream.el (network-stream-open-starttls): Support
12954 upgrading to STARTTLS always, even if we don't have built-in support.
12955 (open-network-stream): Add the :always-query-capabilities keyword.
12956
12957 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
12958 upgrades with `open-network-stream', and rely solely on
12959 auth-source for all credentials. Big changes throughout the file,
12960 but in particular:
12961 (smtpmail-auth-credentials): Remove.
12962 (smtpmail-starttls-credentials): Remove.
12963 (smtpmail-via-smtp): Check for servers saying they want AUTH after
12964 MAIL FROM, too.
12965
12966 * net/network-stream.el (network-stream-open-starttls):
12967 Provide support for client certificates both for external and built-in
12968 STARTTLS.
12969 (auth-source): Require.
12970 (open-network-stream): Document the :client-certificate keyword.
12971 (network-stream-certificate): Change cert-cert to cert and
12972 cert-key to key.
12973
12974 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
12975
12976 * net/tramp-cache.el (top): Don't load the persistency file when
12977 "emacs -Q" has been called.
12978
12979 2011-06-21 Tim Harper <timcharper@gmail.com>
12980
12981 * term/ns-win.el (ns-initialize-window-system):
12982 Set application-specific `ApplePressAndHoldEnabled' system
12983 resource to NO as it is not yet supported by the NS port.
12984
12985 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
12986
12987 * misc.el (list-dynamic-libraries--refresh): Compute header here...
12988 (list-dynamic-libraries): ...not here.
12989
12990 2011-06-21 Leo Liu <sdl.web@gmail.com>
12991
12992 * subr.el (sha1): Implement sha1 using secure-hash.
12993
12994 2011-06-21 Martin Rudalics <rudalics@gmx.at>
12995
12996 * window.el (display-buffer-alist): In default value do not
12997 enforce searching a window on any but the selected frame.
12998 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12999 (display-buffer-select-window): Remove function.
13000 (display-buffer-in-window): When a window on another frame gets
13001 reused, do not select it any more but just raise its frame if
13002 necessary (Bug#8851) and (Bug#8856).
13003 (display-buffer-normalize-options): Handle pop-up-frames related
13004 options more faithfully.
13005 (pop-to-buffer): Don't rely on `display-buffer' selecting the
13006 window if it is on another frame.
13007 (display-buffer-alist, display-buffer-default-specifiers):
13008 Don't make new frame unsplittable by default.
13009 (display-buffer-normalize-argument): Fix doc-string typo and use
13010 'same-frame-other-window instead of 'other-window when associating
13011 with display-buffer-macro-specifiers.
13012
13013 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
13014
13015 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
13016 New functions.
13017 (5x5-mode-map, 5x5-mode-menu): Bind them.
13018 (5x5-draw-grid): Tweak the solver's rendering.
13019
13020 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13021
13022 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
13023 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
13024
13025 2011-06-21 Drew Adams <drew.adams@oracle.com>
13026
13027 * menu-bar.el: Use function variable instead of switch-to-buffer.
13028 (menu-bar-select-buffer-function): New variable.
13029 (menu-bar-update-buffers): Use it (bug#8876).
13030
13031 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13032
13033 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
13034 variable's status.
13035
13036 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
13037
13038 * x-dnd.el (x-dnd-version-from-flags)
13039 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
13040 and long as number (Bug#8899).
13041 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
13042
13043 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13044
13045 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
13046 (completion-try-completion, completion-all-completions): Compute the
13047 metadata argument if it's missing; make it optional (bug#8795).
13048
13049 * wid-edit.el: Use lex-bind and move towards completion-at-point.
13050 (widget-complete): Use new :completion-function property.
13051 (widget-completions-at-point): New function.
13052 (default): Use :completion-function instead of :complete.
13053 (widget-default-completions): Rename from widget-default-complete;
13054 Rewrite.
13055 (widget-string-complete, widget-file-complete, widget-color-complete):
13056 Remove functions.
13057 (file, symbol, function, variable, coding-system, color):
13058 * international/mule-cmds.el (default-input-method, charset)
13059 (language-info-custom-alist):
13060 * cus-edit.el (face): Use new property :completions.
13061
13062 * progmodes/pascal.el (pascal-completions-at-point): New function.
13063 (pascal-mode): Use it.
13064 (pascal-mode-map): Use completion-at-point.
13065 (pascal-toggle-completions): Make obsolete.
13066 (pascal-complete-word, pascal-show-completions):
13067 * progmodes/octave-mod.el (octave-complete-symbol):
13068 Redefine as obsolete alias.
13069 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
13070 Signal absence of completion info for old Octave,
13071 (inferior-octave-complete): Redefine as obsolete alias.
13072 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
13073 (meta-completions-at-point): Rename from meta-complete-symbol and
13074 adapt it for use on completion-at-point-functions.
13075 (meta-common-mode): Use it.
13076 (meta-looking-at-backward, meta-match-buffer): Remove.
13077 (meta-complete-symbol): Redefine as obsolete alias.
13078 (meta-common-mode-map): Use completion-at-point.
13079 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
13080 (makefile-mode-map): Use completion-at-point.
13081 (makefile-completions-at-point): Rename from makefile-complete and
13082 adapt it for use on completion-at-point-functions.
13083 (makefile-mode): Use it.
13084 (makefile-complete): Redefine as obsolete alias.
13085
13086 2011-06-20 Deniz Dogan <deniz@dogan.se>
13087
13088 * net/rcirc.el: Delete trailing whitespaces once and for all.
13089
13090 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
13091
13092 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
13093
13094 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
13095
13096 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
13097
13098 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
13099
13100 2011-06-19 Martin Rudalics <rudalics@gmx.at>
13101
13102 * window.el (display-buffer-other-window-means-other-frame):
13103 Call display-buffer-normalize-alist.
13104 (display-buffer-normalize-specifiers-1): Rename to
13105 display-buffer-normalize-argument. New argument other-frame.
13106 Rewrite.
13107 (display-buffer-normalize-specifiers-2): Rename to
13108 display-buffer-normalize-options.
13109 (display-buffer-normalize-alist-1): New function.
13110 (display-buffer-normalize-specifiers-3): Rename to
13111 display-buffer-normalize-alist.
13112 Call display-buffer-normalize-alist-1.
13113 (display-buffer-normalize-options-inhibit): New variable.
13114 (display-buffer-normalize-specifiers): Rewrite calling
13115 display-buffer-normalize-alist,
13116 display-buffer-normalize-argument, and
13117 display-buffer-normalize-options. Don't call the latter if
13118 display-buffer-normalize-options-inhibit is non-nil.
13119 (frame-auto-delete): New option.
13120 (window-deletable-p): Use frame-auto-delete.
13121 (window-list-no-nils, window-state-ignored-parameters)
13122 (window-state-get-1, window-state-get, window-state-put-list)
13123 (window-state-put-1, window-state-put-2, window-state-put):
13124 New functions.
13125 (display-buffer-normalize-options): Move special-display-p group
13126 after pop-up-frame group (Bug#8851) and (Bug#8856).
13127
13128 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
13129
13130 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
13131 groups (Bug#8776).
13132 (rx-submatch-n): New function.
13133 (rx): Document it.
13134
13135 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
13136 (Bug#8768).
13137
13138 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
13139
13140 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
13141
13142 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
13143 anytime existing face settings are present (Bug#8889).
13144
13145 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
13146 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
13147 Remove unused argument.
13148
13149 2011-06-18 Martin Rudalics <rudalics@gmx.at>
13150
13151 * window.el (display-buffer-default-specifiers):
13152 Remove pop-up-frame. Add pop-up-window-min-height,
13153 pop-up-window-min-width, and another reuse-window specifier
13154 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
13155 (display-buffer-normalize-specifiers-2):
13156 Handle split-height-threshold and split-width-threshold also when
13157 pop-up-windows is unset. Add a reuse-window specifier for the
13158 case popping up a new window fails.
13159 (special-display-popup-frame): Remove double quoting.
13160 (display-buffer-normalize-specifiers-1): Fix thinko.
13161
13162 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13163
13164 * shell.el (shell-completion-vars): Set pcomplete-termination-string
13165 according to comint-completion-addsuffix.
13166
13167 * pcomplete.el: Convert to lexical binding and fix bug#8819.
13168 (pcomplete-suffix-list): Mark as obsolete.
13169 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
13170 pcomplete-seen in the closure.
13171 (pcomplete-comint-setup): Setup completion-at-point as well.
13172 (pcomplete--entries): New function.
13173 (pcomplete--env-regexp): New var.
13174 (pcomplete-entries): Rewrite to work with partial-completion and
13175 without relying on pcomplete-suffix-list.
13176 (pcomplete-pare-list): Remove, unused.
13177
13178 2011-06-17 Martin Rudalics <rudalics@gmx.at>
13179
13180 * window.el (display-buffer-alist): Set pop-up-window-min-height
13181 and pop-up-window-min-width in default value. Reported by
13182 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
13183 other-window-means-other-frame.
13184 (display-buffer-macro-specifiers): Comment out entry for
13185 other-window specifier.
13186 (display-buffer-other-window-means-other-frame): New function.
13187 (display-buffer-normalize-specifiers-1): New arguments
13188 buffer-name and label. Treat other-window case specially.
13189 (display-buffer-normalize-specifiers-2): Treat other-window case
13190 specially.
13191 (display-buffer-normalize-specifiers-3): New function.
13192 (display-buffer-normalize-specifiers):
13193 Call display-buffer-normalize-specifiers-3.
13194
13195 2011-06-17 Martin Rudalics <rudalics@gmx.at>
13196
13197 * window.el (same-window-p): Fix two typos introduced when
13198 adding with-no-warnings.
13199 (display-buffer-normalize-specifiers-1): Don't check
13200 pop-up-frames for 'unset initialization.
13201 (display-buffer-normalize-specifiers-2): Major rewrite using
13202 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
13203 (pop-up-frames, display-buffer-reuse-frames)
13204 (display-buffer-mark-dedicated): Don't initialize to 'unset.
13205 Suggested by David Engster <deng@randomsample.de>.
13206 (even-window-heights): Initialize to 'unset.
13207 (display-buffer-alist-set): Handle new 'unset initializations.
13208 (display-buffer-macro-specifiers): Don't pop up a new frame in the
13209 other window case.
13210
13211 2011-06-16 Martin Rudalics <rudalics@gmx.at>
13212
13213 * window.el (display-buffer-normalize-specifiers-1):
13214 Respect current value of pop-up-frames for most reasonable values of
13215 second argument of display-buffer (Bug#8865).
13216 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
13217 (switch-to-buffer-other-window-same-frame)
13218 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
13219 Adams (Bug#8875).
13220 (display-buffer): Don't check noninteractive when calling
13221 display-buffer-pop-up-frame.
13222 (display-buffer-pop-up-frame): Never pop up a frame in
13223 noninteractive mode (Bug#8857).
13224 (enlarge-window, shrink-window): Don't report an error when the
13225 window can't be resized as requested (Bug#8862).
13226
13227 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13228
13229 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
13230
13231 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
13232
13233 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
13234
13235 2011-06-15 Alan Mackenzie <acm@muc.de>
13236
13237 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
13238 for declarators, disable knr checking to speed up for normal files.
13239 2: Refactor, replacing a sequence of nested if forms by a cond form.
13240
13241 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13242
13243 * net/network-stream.el (open-network-stream): Add the keyword
13244 :always-query-capabilities for the case where you want to force a
13245 `plain' network connection, but the protocol still requires the
13246 capabilitiy command (i.e., SMTP and EHLO).
13247
13248 * subr.el (process-live-p): Rename from `process-alive-p' for
13249 consistency with other `-live-p' functions.
13250
13251 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13252
13253 * window.el (same-window-buffer-names, same-window-regexps)
13254 (special-display-frame-alist, special-display-popup-frame)
13255 (special-display-function, special-display-buffer-names)
13256 (special-display-regexps, pop-up-frame-alist)
13257 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
13258 (pop-up-windows, split-window-preferred-function)
13259 (split-height-threshold, split-width-threshold, even-window-heights)
13260 (display-buffer-mark-dedicated): Don't encourage the use of
13261 display-buffer-alist from Elisp code.
13262
13263 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
13264
13265 * progmodes/python.el (python-mode): Derive from prog-mode.
13266 * progmodes/ps-mode.el (ps-mode):
13267 * progmodes/mixal-mode.el (mixal-mode):
13268 * progmodes/cfengine.el (cfengine-mode):
13269 * progmodes/ld-script.el (ld-script-mode): Likewise.
13270
13271 2011-06-15 Martin Rudalics <rudalics@gmx.at>
13272
13273 * window.el (display-buffer-alist): Trim default value to avoid
13274 popping up a new frame (Bug#8857) or reusing an arbitrary window
13275 on another frame.
13276 (display-buffer): Do not fall back on popping up a new frame in
13277 batch mode (Bug#8857).
13278
13279 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
13280
13281 * cus-theme.el (describe-theme-1): Use custom-theme-p.
13282 (custom-theme-summary): New function.
13283 (customize-themes): Use it.
13284
13285 2011-06-13 Glenn Morris <rgm@gnu.org>
13286
13287 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
13288
13289 2011-06-13 Martin Rudalics <rudalics@gmx.at>
13290
13291 * help.el (help-window): Remove variable.
13292 (help-window-point-marker, temp-buffer-max-height)
13293 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
13294 (help-print-return-message): Don't set help-window.
13295 (resize-temp-buffer-window): Rewrite cod eand doc-string.
13296 (help-window-setup-finish): Remove.
13297 (help-window-display-message, help-window-setup)
13298 (with-help-window): Major rewrite based on new
13299 display-buffer-window variable.
13300
13301 * help-mode.el (help-mode-finish): Remove help-window related
13302 code.
13303
13304 * view.el (view-exits-all-viewing-windows): Remove reference to
13305 view-return-to-alist in doc-string.
13306 (view-return-to-alist): Make obsolete.
13307 (view-buffer): Call pop-to-buffer-same-window and remove
13308 undo-window code.
13309 (view-buffer-other-window): Call pop-to-buffer-other-window and
13310 simplify code. Ignore second argument.
13311 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
13312 simplify code. Ignore second argument.
13313 (view-return-to-alist-update): Make obsolete.
13314 (view-mode-enter): Rename second argument to QUIT-RESTORE.
13315 Rewrite using quit-restore window parameters.
13316 (view-mode-exit): Rename second argument to EXIT-ONLY.
13317 Rewrite using quit-restore-window.
13318 (View-exit, View-exit-and-edit, View-leave, View-quit)
13319 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
13320 appropriate arguments.
13321 (view-end-message): Use quit-restore window parameter.
13322
13323 * window.el (display-buffer-function): Rewrite doc-string.
13324 (display-buffer-window, display-buffer-alist): New variables.
13325 (display-buffer-split-specifiers)
13326 (display-buffer-side-specifiers)
13327 (display-buffer-macro-specifiers): New constants.
13328 (display-buffer-even-window-sizes, display-buffer-set-height)
13329 (display-buffer-set-width, display-buffer-select-window)
13330 (display-buffer-in-window, display-buffer-reuse-window)
13331 (display-buffer-split-window-1, display-buffer-split-window)
13332 (display-buffer-split-atom-window, display-buffer-pop-up-window)
13333 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
13334 (display-buffer-in-side-window, normalize-buffer-to-display)
13335 (display-buffer-normalize-specifiers-1)
13336 (display-buffer-normalize-specifiers-2)
13337 (display-buffer-normalize-specifiers, display-buffer-frame):
13338 New functions.
13339 (display-buffer): Major rewrite.
13340 (display-buffer-other-window, display-buffer-other-frame)
13341 (pop-to-buffer, switch-to-buffer-other-window)
13342 (switch-to-buffer-other-frame): Rewrite.
13343 (display-buffer-same-window, display-buffer-same-frame)
13344 (display-buffer-same-frame-other-window)
13345 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
13346 (pop-to-buffer-other-window)
13347 (pop-to-buffer-same-frame-other-window)
13348 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
13349 (switch-to-buffer-other-window-same-frame): New functions.
13350 (same-window-p, special-display-p): Rewrite disabling warnings.
13351 Make obsolete.
13352 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13353 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
13354 Make obsolete
13355 (same-window-buffer-names, same-window-regexps)
13356 (special-display-frame-alist, special-display-popup-frame)
13357 (special-display-function, special-display-buffer-names)
13358 (special-display-regexps, pop-up-frame-alist)
13359 (pop-up-frame-function, split-window-preferred-function)
13360 (split-height-threshold, split-width-threshold)
13361 (even-window-heights): Make obsolete.
13362
13363 2011-06-12 Glenn Morris <rgm@gnu.org>
13364
13365 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
13366 Misc simplifications.
13367
13368 2011-06-12 Martin Rudalics <rudalics@gmx.at>
13369
13370 * window.el (window-safely-shrinkable-p): Restore function which
13371 was inadvertently removed in change from 2011-06-11. Declare as
13372 obsolete.
13373
13374 * calendar/calendar.el (calendar-generate-window):
13375 Use window-iso-combined-p instead of combination of one-window-p and
13376 window-safely-shrinkable-p.
13377
13378 2011-06-12 Glenn Morris <rgm@gnu.org>
13379
13380 * progmodes/fortran.el (fortran-mode-syntax-table):
13381 * progmodes/f90.el (f90-mode-syntax-table):
13382 Set % to punctuation. (Bug#8820)
13383 (f90-find-tag-default): Remove, no longer needed.
13384
13385 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
13386
13387 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
13388
13389 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
13390
13391 * image.el (image-animated-p): Return animation delay in seconds.
13392 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
13393 (image-animate-timeout): Remove DELAY argument. Don't assume
13394 every subimage has the same delay; get it from image-animated-p.
13395 (image-animate): Caller changed.
13396
13397 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
13398
13399 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
13400 to ignored backtrace functions.
13401
13402 2011-06-11 Glenn Morris <rgm@gnu.org>
13403
13404 * calendar/appt.el (appt-disp-window-function): Doc fix.
13405 (appt-check): Handle overlapping appointments. (Bug#8337)
13406
13407 2011-06-11 Martin Rudalics <rudalics@gmx.at>
13408
13409 * window.el (window-tree-1, window-tree): New functions, moving
13410 the latter to window.el.
13411 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
13412 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
13413 (bw-refresh-edges): Remove.
13414 (balance-windows-1, balance-windows-2): New functions.
13415 (balance-windows): Rewrite in terms of window tree functions,
13416 balance-windows-1 and balance-windows-2.
13417 (bw-adjust-window): Remove.
13418 (balance-windows-area-adjust): New function with functionality of
13419 bw-adjust-window but using resize-window.
13420 (set-window-text-height): Rewrite doc-string.
13421 Use normalize-live-window and resize-window.
13422 (enlarge-window-horizontally, shrink-window-horizontally):
13423 Rename argument to DELTA.
13424 (window-buffer-height): New function.
13425 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
13426 Rewrite using new window resize routines.
13427 (kill-buffer-and-window, mouse-autoselect-window-select):
13428 Use ignore-errors instead of condition-case.
13429 (quit-window): Call delete-frame instead of delete-windows-on
13430 for the only buffer on frame.
13431
13432 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13433
13434 * loadup.el (top-level): Load window before files for the sake
13435 of replace-buffer-in-windows.
13436
13437 * files.el (read-buffer-to-switch)
13438 (switch-to-buffer-other-window)
13439 (switch-to-buffer-other-frame, display-buffer-other-frame):
13440 Move to window.el.
13441
13442 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
13443 (previous-buffer): Move to window.el.
13444
13445 * bindings.el (unbury-buffer): Move to window.el.
13446
13447 * window.el (delete-other-windows-vertically): Move after
13448 definition of delete-other-windows.
13449 (other-window, delete-windows-on, replace-buffer-in-windows):
13450 Move here from window.c.
13451 (record-window-buffer, unrecord-window-buffer)
13452 (set-window-buffer-start-and-point, switch-to-prev-buffer)
13453 (switch-to-next-buffer): New functions.
13454 (get-next-valid-buffer, last-buffer, next-buffer): Move here
13455 from simple.el. Call switch-to-next-buffer.
13456 (previous-buffer): Move here from simple.el.
13457 Call switch-to-prev-buffer.
13458 (bury-buffer): Move here from buffer.c. Switch to previous
13459 buffer when window cannot be deleted.
13460 (unbury-buffer): Move here from bindings.el.
13461 (ctl-x-map): Move binding for other-window from window.c to
13462 here.
13463 (read-buffer-to-switch, switch-to-buffer-other-window)
13464 (switch-to-buffer-other-frame): Move here from files.el.
13465 (normalize-buffer-to-switch-to): New functions.
13466 (switch-to-buffer): Move here from buffer.c.
13467 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
13468
13469 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13470
13471 * window.el (window-min-height, window-min-width): Move here
13472 from window.c. Add defcustoms and rewrite doc-strings.
13473 (resize-mini-window, resize-window): New functions.
13474 (adjust-window-trailing-edge, enlarge-window, shrink-window):
13475 Move here from window.c.
13476 (maximize-window, minimize-window): New functions.
13477 (delete-window, delete-other-windows, split-window): Move here
13478 from window.c.
13479 (window-split-min-size): New function.
13480 (split-window-keep-point): Mention split-window-above-each-other
13481 instead of split-window-vertically.
13482 (split-window-above-each-other, split-window-vertically):
13483 Rename split-window-vertically to split-window-above-each-other
13484 and provide defalias for old definition.
13485 (split-window-side-by-side, split-window-horizontally):
13486 Rename split-window-horizontally to split-window-side-by-side
13487 and provide defalias for the old definition.
13488 (ctl-x-map): Move bindings for delete-window,
13489 delete-other-windows and enlarge-window here from window.c.
13490 Replace bindings for split-window-vertically and
13491 split-window-horizontally by bindings for
13492 split-window-above-each-other and split-window-side-by-side.
13493
13494 * cus-start.el (all): Remove entries for window-min-height and
13495 window-min-width. Add entries for window-splits and
13496 window-nest.
13497
13498 2011-06-09 Glenn Morris <rgm@gnu.org>
13499
13500 * calendar/appt.el (appt-mode-line): New function.
13501 (appt-check, appt-disp-window): Use it.
13502
13503 * files.el (hack-one-local-variable-eval-safep):
13504 Allow minor-modes with explicit +/-1 arguments.
13505
13506 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
13507
13508 * term/xterm.el (xterm): Add defgroup.
13509 (xterm-extra-capabilities): Add defcustom to supply known xterm
13510 capabilities, skip querying them, or query them (default).
13511 (terminal-init-xterm): Use it.
13512 (terminal-init-xterm-modify-other-keys): New function to set up
13513 modifyOtherKeys support to simplify `terminal-init-xterm'.
13514
13515 2011-06-09 Martin Rudalics <rudalics@gmx.at>
13516
13517 * window.el (resize-window-reset, resize-window-reset-1)
13518 (resize-subwindows-skip-p, resize-subwindows-normal)
13519 (resize-subwindows, resize-other-windows, resize-this-window)
13520 (resize-root-window, resize-root-window-vertically)
13521 (window-deletable-p, window-or-subwindow-p)
13522 (frame-root-window-p): New functions.
13523
13524 2011-06-09 Glenn Morris <rgm@gnu.org>
13525
13526 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
13527 (ange-ftp-get-files): Use it.
13528
13529 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
13530
13531 * mail/sendmail.el (mail-recover-1, mail-recover):
13532 * files.el (recover-file, recover-session):
13533 Handle dired-listing-switches not being just a single short option.
13534
13535 2011-06-09 Glenn Morris <rgm@gnu.org>
13536
13537 * calendar/appt.el (appt-display-message, appt-disp-window):
13538 Handle lists of appointments.
13539
13540 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13541
13542 * window.el (one-window-p): Move down in code.
13543 Rewrite doc-string.
13544 (window-current-scroll-bars): Rewrite doc-string.
13545 Normalize live window argument.
13546 (walk-windows, get-window-with-predicate, count-windows):
13547 Rewrite doc-string. Use window-list-1.
13548 (window-in-direction-2, window-in-direction, get-mru-window):
13549 New functions.
13550
13551 2011-06-08 Reuben Thomas <rrt@sc3d.org>
13552
13553 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
13554 Doc fix (Bug#8713).
13555
13556 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
13557
13558 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
13559
13560 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
13561
13562 * loadhist.el (unload-feature-special-hooks):
13563 Add `comint-output-filter-functions'.
13564
13565 2011-06-08 Ivan Kanis <gnu@kanis.fr>
13566
13567 * calendar/appt.el (appt-check): Move some initializations into the let.
13568
13569 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13570
13571 * window.el (window-height): Defalias to window-total-height.
13572 (window-width): Defalias to window-body-width.
13573
13574 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
13575
13576 * image-mode.el (image-toggle-animation): New command.
13577 (image-mode-map): Bind it to RET.
13578 (image-mode): Update message.
13579 (image-toggle-display-image): Avoid a spurious cache flush.
13580 (image-transform-rotation): Doc fix.
13581 (image-transform-properties): Return quickly in the normal case.
13582 (image-animate-loop): Rename from image-animate-max-time.
13583
13584 * image.el (image-animate-max-time): Move to image-mode.el.
13585 (create-animated-image): Remove unnecessary function.
13586 (image-animate): Rename from image-animate-start. New arg.
13587 (image-animate-stop): Remove; just use image-animate-timer.
13588 (image-animate-timer): Use car-safe.
13589 (image-animate-timeout): Rename argument.
13590
13591 2011-06-07 Martin Rudalics <rudalics@gmx.at>
13592
13593 * window.el (get-lru-window, get-largest-window): Move here from
13594 window.c. Rename first argument to ALL-FRAMES.
13595 Rephrase doc-strings.
13596 (get-buffer-window-list): Rewrite using window-list-1.
13597 Rephrase doc-string.
13598 (window-safe-min-height, window-safe-min-width): New constants.
13599 (window-size-ignore, window-min-size, window-min-size-1)
13600 (window-sizable, window-sizable-p, window-size-fixed-1)
13601 (window-size-fixed-p, window-min-delta-1, window-min-delta)
13602 (window-max-delta-1, window-max-delta, window-resizable)
13603 (window-resizable-p, window-total-height, window-total-width)
13604 (window-body-width): New functions.
13605 (window-full-height-p, window-full-width-p): Rewrite using
13606 window-total-size.
13607 (window-body-height): Rewrite using window-body-size.
13608
13609 2011-06-06 Martin Rudalics <rudalics@gmx.at>
13610
13611 * window.el (window-right, window-left, window-child)
13612 (window-child-count, window-last-child, window-any-p)
13613 (normalize-live-buffer, normalize-live-frame)
13614 (normalize-any-window, normalize-live-window)
13615 (window-iso-combination-p, window-iso-combined-p)
13616 (window-iso-combinations)
13617 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
13618 (windows-with-parameter, window-with-parameter)
13619 (window-atom-root, make-window-atom, window-atom-check-1)
13620 (window-atom-check, window-side-check, window-check):
13621 New functions.
13622 (ignore-window-parameters, window-sides, window-sides-vertical)
13623 (window-sides-slots): New variables.
13624 (window-size-fixed): Move down in code. Minor doc-string fix.
13625
13626 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
13627
13628 * comint.el (comint-dynamic-complete-as-filename)
13629 (comint-dynamic-complete-filename): Correctly call
13630 completion-in-region.
13631
13632 2011-06-05 Deniz Dogan <deniz@dogan.se>
13633
13634 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
13635 in last change.
13636
13637 2011-06-05 Deniz Dogan <deniz@dogan.se>
13638
13639 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
13640 (rcirc): Use it to prompt for encryption.
13641
13642 2011-06-05 Roland Winkler <winkler@gnu.org>
13643
13644 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
13645 (bibtex-search-entries): New command bound to C-c C-a.
13646 (bibtex-display-entries): New function.
13647
13648 2011-06-05 Roland Winkler <winkler@gnu.org>
13649
13650 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
13651 (bibtex-insert-kill): After yanking insert newline if necessary.
13652 (bibtex-initialize): Call bibtex-string-files-init only once.
13653 (bibtex-mode): Do not call easy-menu-add.
13654 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
13655 (bibtex-yank): Set arg properly if nil.
13656
13657 2011-06-05 Roland Winkler <winkler@gnu.org>
13658
13659 * textmodes/bibtex.el (bibtex-search-entry-globally):
13660 New variable.
13661 (bibtex-search-entry): Use it.
13662
13663 2011-06-05 Roland Winkler <winkler@gnu.org>
13664
13665 * textmodes/bibtex.el (bibtex-entry-format): New option
13666 sort-fields.
13667 (bibtex-format-entry, bibtex-reformat): Honor this option.
13668 (bibtex-parse-entry): Return fields in proper order.
13669
13670 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
13671
13672 * doc-view.el (doc-view-remove-if): Move computation of result out
13673 of `dolist' to silence misleading lexical-binding warning.
13674
13675 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
13676
13677 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
13678 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
13679
13680 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
13681
13682 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
13683 "SunOS 5.10".
13684
13685 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
13686
13687 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
13688 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
13689 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
13690 (tramp-parse-putty):
13691 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
13692 (tramp-completion-function-alist-ssh)
13693 (tramp-completion-function-alist-telnet)
13694 (tramp-completion-function-alist-su)
13695 (tramp-completion-function-alist-putty): Set `tramp-autoload'
13696 cookie.
13697
13698 * net/tramp-ftp.el:
13699 * net/tramp-sh.el:
13700 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
13701 load "tramp.el" `tramp-set-completion-function'.
13702
13703 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
13704
13705 * shell.el: Require and use pcomplete.
13706 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
13707 (shell-completion-vars): Set pcomplete-default-completion-function.
13708
13709 2011-06-04 Deniz Dogan <deniz@dogan.se>
13710
13711 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
13712 `memq' (Bug#8799).
13713
13714 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13715
13716 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
13717
13718 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
13719
13720 * bs.el (bs--mark-unmark, bs--nth-wrapper):
13721 * mpc.el (mpc-select-extend, mpc-songpointer-context):
13722 * vc/log-view.el (log-view-beginning-of-defun):
13723 * vc/smerge-mode.el (smerge-apply-resolution-patch)
13724 (smerge-refine-forward, smerge-refine-chopup-region):
13725 Silence warning for unused `dotimes' counter variables.
13726
13727 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13728
13729 * net/tramp.el (tramp-with-progress-reporter): Rename from
13730 with-progress-reporter. Use `declare'.
13731 * net/tramp-smb.el:
13732 * net/tramp-sh.el:
13733 * net/tramp-gvfs.el: Update all uses.
13734
13735 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
13736
13737 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
13738 buffer isn't killed before making it current.
13739
13740 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13741
13742 Silence various byte-compiler warnings.
13743 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
13744 `access-type' and new obsolescence format.
13745 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
13746 new format.
13747 (byte-compile-check-variable): New `access-type' argument.
13748 Only warn if the access-type is obsolete.
13749 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
13750 (byte-compile-variable-set): Adjust callers.
13751 * help-fns.el (describe-variable): Adjust to new obsolescence format.
13752 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
13753 setting it as obsolete.
13754 * simple.el (minibuffer-completing-symbol):
13755 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
13756 access as obsolete.
13757 * minibuffer.el (minibuffer-completing-file-name): Don't make it
13758 obsolete yet.
13759 * international/quail.el (quail-mouse-choose-completion): Remove unused
13760 code referring to obsolete var.
13761 (quail-choose-completion-string): Remove.
13762 * server.el (server-clients-with, server-kill-buffer-query-function)
13763 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
13764 * proced.el (proced-send-signal):
13765 * emacs-lisp/lisp.el (lisp-complete-symbol):
13766 Replace completion-annotate-function with completion-extra-properties.
13767
13768 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13769
13770 * simple.el (goto-line): Use read-number.
13771 (overriding-map-is-bound): Remove.
13772 (saved-overriding-map): Change default.
13773 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
13774 Take the map as argument.
13775 (universal-argument, negative-argument, digit-argument): Use it.
13776 (restore-overriding-map): Adjust.
13777 (do-auto-fill): Use fill-forward-paragraph.
13778 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
13779
13780 * minibuffer.el (minibuffer-inactive-mode-map): New var.
13781 (minibuffer-inactive-mode): New major mode.
13782 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
13783 the *Messages* buffer" hack.
13784 (mouse-popup-menubar): Don't burp if the event is a normal key.
13785
13786 Miscellaneous tweaks.
13787 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
13788 lexical scoping as in subr.el's dolist and dotimes.
13789 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
13790 Silence compiler warning.
13791 * thingatpt.el (forward-whitespace): Trivial coding style fix.
13792 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
13793 * international/ccl.el (ccl-compile): Trivial simplification.
13794 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
13795 * emacs-lisp/testcover.el (testcover-end): Remove spurious
13796 `printflag' argument.
13797 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
13798 Purecopy the whole obsolescence data.
13799
13800 2011-06-01 Leo Liu <sdl.web@gmail.com>
13801
13802 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
13803 improve doc-string as suggested by Marco Pessotto
13804 <melmothx@gmail.com>.
13805 (rcirc-print): Fix last change.
13806
13807 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13808
13809 * minibuffer.el (complete-with-action): Return nil for the metadata and
13810 boundaries of non-functional tables.
13811 (completion-table-dynamic): Return nil for the metadata.
13812 (completion-table-with-terminator): Add default case, using
13813 complete-with-action.
13814 (completion--metadata): New function.
13815 (completion-all-sorted-completions, minibuffer-completion-help): Use it
13816 to try and avoid pathological performance problems.
13817 (completion--embedded-envvar-table): Return `category' metadata.
13818
13819 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
13820
13821 * subr.el (process-alive-p): New tiny convenience function.
13822
13823 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13824
13825 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
13826 content but also its previous major mode.
13827
13828 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
13829
13830 * emacs-lisp/debug.el (debug): Restore the previous content of the
13831 *Backtrace* buffer when we exit with C-M-c.
13832
13833 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13834
13835 * minibuffer.el: Add metadata method to completion tables.
13836 (completion-category-overrides): New defcustom.
13837 (completion-metadata, completion--field-metadata)
13838 (completion-metadata-get, completion--styles)
13839 (completion--cycle-threshold): New functions.
13840 (completion-try-completion, completion-all-completions):
13841 Add `metadata' argument to choose completion-styles.
13842 (completion--do-completion): Use metadata to choose cycling.
13843 (completion-all-sorted-completions): Use metadata for sorting.
13844 Remove :completion-cycle-penalty which is not needed any more.
13845 (completion--try-word-completion): Add `metadata' argument.
13846 (minibuffer-completion-help): Check metadata for annotation function
13847 and sorting.
13848 (completion-file-name-table): Return `category' metadata.
13849 (minibuffer-completing-file-name): Make obsolete.
13850 * simple.el (minibuffer-completing-symbol): Make obsolete.
13851 * icomplete.el (icomplete-completions): Pass new `metadata' param to
13852 completion-try-completion.
13853
13854 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13855
13856 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
13857
13858 2011-05-30 Leo Liu <sdl.web@gmail.com>
13859
13860 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
13861 (rcirc-print): Decode all incoming messages (bug#8744).
13862 (rcirc-decode-coding-system): Allow value nil for automatic coding
13863 system detection.
13864
13865 2011-06-01 Glenn Morris <rgm@gnu.org>
13866
13867 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
13868
13869 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13870
13871 * image.el (image-animate-max-time): Allow nil and t values.
13872 Default to nil.
13873 (create-animated-image): Doc fix.
13874 (image-animate-start): Remove second arg; just use
13875 image-animate-max-time.
13876 (image-animate-timeout): Doc fix. Args changed.
13877
13878 * image-mode.el (image-toggle-display-image): Ensure that the
13879 image spec passed to the animate timer is the same object as in
13880 the buffer's display property (Bug#6981).
13881 (image-transform-properties): Doc fix.
13882
13883 * image.el (image-animate-max-time): Default to nil.
13884
13885 2011-05-29 Martin Rudalics <rudalics@gmx.at>
13886
13887 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
13888 entire buffer list (Bug#8184).
13889
13890 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13891
13892 * image.el (imagemagick-types-inhibit)
13893 (imagemagick-register-types): Doc fix.
13894
13895 2011-05-29 Deniz Dogan <deniz@dogan.se>
13896
13897 * net/rcirc.el (rcirc): Use the user's stored encryption method by
13898 default.
13899
13900 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13901
13902 * select.el: Don't perform clipboard-manager saving in hooks;
13903 leave the hooks empty.
13904
13905 2011-05-28 Leo Liu <sdl.web@gmail.com>
13906
13907 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
13908 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
13909 (occur-edit-mode): New major mode (Bug#8463).
13910 (occur-after-change-function): New function.
13911 (occur-engine): Give Occur tags a read-only property.
13912
13913 2011-05-28 Kevin Ryde <user42@zip.com.au>
13914
13915 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
13916
13917 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13918
13919 * bindings.el (help-echo): Make the initial non-indicator dash
13920 empty on graphical terminals (Bug#7295).
13921
13922 * files.el (auto-mode-alist): Move config rule after the
13923 in-stripping one (Bug#8547).
13924
13925 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
13926
13927 * startup.el (normal-splash-screen): Remove gratuitous mode-line
13928 setting (Bug#8740).
13929
13930 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
13931
13932 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
13933 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
13934 (Bug#8539).
13935
13936 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13937
13938 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
13939
13940 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
13941
13942 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
13943 (hs-hide-block-at-point, hs-find-block-beginning)
13944 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
13945 (Bug#8279).
13946
13947 2011-05-28 Glenn Morris <rgm@gnu.org>
13948
13949 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
13950
13951 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13952
13953 * help-fns.el (describe-function-1): If the function is a derived
13954 major mode, print the parent mode.
13955
13956 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
13957 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
13958
13959 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
13960
13961 * minibuffer.el (completion--capf-wrapper): Check applicability before
13962 returning non-nil for non-exclusive completion data.
13963 * progmodes/etags.el (tags-completion-at-point-function):
13964 * info-look.el (info-lookup-completions-at-point): Mark as
13965 non-exclusive.
13966 (info-complete): Adjust accordingly.
13967
13968 * info-look.el: Convert to lexical-binding and completion-at-point.
13969 (info-lookup-completions-at-point): New function.
13970 (info-complete): Use it and completion-in-region.
13971
13972 2011-05-28 Drew Adams <drew.adams@oracle.com>
13973
13974 * isearch.el: Let M-e start with point at the first mismatched char.
13975 (isearch-fail-pos): New function.
13976 (isearch-edit-string): Use it.
13977
13978 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13979
13980 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13981
13982 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
13983
13984 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
13985 traversal functions for avl-trees.
13986 (avl-tree--stack): New struct.
13987 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
13988 (avl-tree-enter): Add optional `updatefun' arg.
13989 (avl-tree--do-enter): Add optional `updatefun' arg.
13990 Change return value.
13991 (avl-tree-delete): Add optional `test' and `nilflag' args.
13992 (avl-tree--do-delete): Add `test' and `nilflag' args.
13993 Change return value.
13994 (avl-tree-member): Add optional `nilflag'
13995 (avl-tree-member-p): New function.
13996 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
13997 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
13998 (avl-tree-stack-empty-p): New functions.
13999
14000 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
14001 avl-tree--del-balance1 and make it work both ways.
14002 (avl-tree--del-balance2): Remove.
14003 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
14004 make it work both ways.
14005 (avl-tree--enter-balance2): Remove.
14006 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
14007 New macros.
14008 (avl-tree--mapc, avl-tree-map): Add direction argument.
14009
14010 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
14011
14012 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
14013
14014 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
14015
14016 * select.el: Support clipboard managers with built-in function
14017 x-clipboard-manager-save, via delete-frame-functions and
14018 kill-emacs-hook.
14019 (xselect-convert-to-targets): Add MULTIPLE target to list.
14020 (xselect-convert-to-save-targets): New function.
14021
14022 2011-05-27 Kenichi Handa <handa@m17n.org>
14023
14024 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
14025 let-binding rfc2047-encode-encoded-words to nil.
14026
14027 2011-05-27 Glenn Morris <rgm@gnu.org>
14028
14029 * mail/emacsbug.el: Don't require url-util.
14030
14031 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
14032
14033 * files.el (set-auto-mode):
14034 Also respect mode: entries at the end of the file. (Bug#8586)
14035
14036 2011-05-26 Glenn Morris <rgm@gnu.org>
14037
14038 * files.el (hack-local-variables-prop-line, hack-local-variables):
14039 Downcase mode names, as seems to be traditional.
14040 (hack-local-variables, hack-local-variables-apply): Doc fixes.
14041
14042 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
14043 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
14044
14045 2011-05-25 Julien Danjou <julien@danjou.info>
14046
14047 * textmodes/rst.el (rst-define-level-faces): Do not define face
14048 symbol if it is already defined.
14049
14050 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
14051
14052 * play/5x5.el (5x5-new-game, 5x5-randomize):
14053 Reset 5x5-solver-output to nil when a new grid is cast.
14054 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
14055 these debugging traces, as defmacro breaks the compiled code.
14056
14057 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
14058
14059 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
14060
14061 2011-05-24 Leo Liu <sdl.web@gmail.com>
14062
14063 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
14064 (vc-bzr-sha1): Adapt.
14065
14066 * sha1.el: Remove. Function `sha1' is now builtin.
14067
14068 * bindings.el: Provide sha1 feature.
14069
14070 2011-05-24 Kenichi Handa <handa@m17n.org>
14071
14072 * mail/sendmail.el: Require `rfc2047'.
14073 (mail-insert-from-field): Do not perform RFC2047 encoding.
14074 (mail-encode-header): New function.
14075 (sendmail-send-it): Set buffer-file-coding-system of the work
14076 buffer to the return value of select-message-coding-system.
14077 Call mail-encode-header.
14078
14079 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
14080
14081 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
14082
14083 * mail/supercite.el (sc-default-cite-frame):
14084 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
14085
14086 2011-05-24 Glenn Morris <rgm@gnu.org>
14087
14088 * progmodes/python.el (brm-menu): Declare.
14089
14090 * emulation/viper.el (viper-set-hooks): Declare.
14091
14092 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
14093 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
14094 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
14095 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
14096 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
14097 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
14098
14099 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14100
14101 Add an :exit-function for completion-at-point.
14102
14103 * minibuffer.el (completion--done): New fun.
14104 (completion--do-completion): Use it. New arg `expect-exact'.
14105 (minibuffer-complete, minibuffer-complete-word): Don't output message,
14106 since completion--do-completion does it for us now.
14107 (minibuffer-force-complete): Use completion--done and
14108 completion--replace. Handle sole-completion case with more care.
14109 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
14110 (completion-extra-properties): New var.
14111 (completion-annotate-function): Make obsolete.
14112 (minibuffer-completion-help): Adjust accordingly.
14113 Use completion-list-insert-choice-function.
14114 (completion-at-point, completion-help-at-point):
14115 Bind completion-extra-properties.
14116 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
14117 * simple.el (completion-list-insert-choice-function): New var.
14118 (completion-setup-function): Preserve it.
14119 (choose-completion): Pay attention to it, shuffle the code a bit.
14120 (choose-completion-string): New arg `insert-function'.
14121
14122 * textmodes/bibtex.el: Convert to lexical binding.
14123 (bibtex-mode-map): Use completion-at-point.
14124 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
14125 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
14126 (bibtex-complete): Define as obsolete alias.
14127 (bibtex-complete-internal): Remove.
14128 (bibtex-format-entry): Remove unused sub-group in regexp.
14129 * shell.el (shell--command-completion-data)
14130 (shell-environment-variable-completion):
14131 * pcomplete.el (pcomplete-completions-at-point):
14132 * comint.el (comint--complete-file-name-data): Use :exit-function
14133 instead of completion-table-with-terminator so it also works for
14134 choose-completion.
14135
14136 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14137
14138 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
14139
14140 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
14141 (bug#8710).
14142
14143 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
14144
14145 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
14146
14147 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
14148 customization variable and implement: If non-nil, auto-fill will
14149 be inhibited while on topic's header line.
14150
14151 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
14152
14153 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
14154 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
14155 always have a solution in grid size = 5 cases.
14156 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
14157 (5x5-solver-output, 5x5-log-buffer): New vars.
14158 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
14159 Make these variables buffer local to achieve 5x5 multi-session-ness.
14160 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
14161 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
14162 (5x5-solve-suggest): New funs.
14163 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
14164 randomize a grid so that we ensure that there is always a solution.
14165 (5x5-make-random-grid): Allow other movement than flipping.
14166
14167 2011-05-23 Kevin Ryde <user42@zip.com.au>
14168
14169 * emacs-lisp/advice.el (ad-read-advised-function):
14170 Use `function-called-at-point' as the default, if it has
14171 advice and passes PREDICATE.
14172
14173 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14174
14175 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
14176 byte-compile-lambda if it's actually a lambda.
14177
14178 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
14179 Fix function quoting. Use backquote better.
14180
14181 2011-05-22 Yuanle Song <sylecn@gmail.com>
14182
14183 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
14184 matching (Bug#8516).
14185
14186 2011-01-22 Jari Aalto <jari.aalto@cante.net>
14187
14188 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
14189 different face (Bug#8178).
14190
14191 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
14192
14193 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
14194 defface (Bug#8144).
14195
14196 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
14197
14198 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
14199 funcall as well (bug#8712). Warn when performing those conversions.
14200 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
14201
14202 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
14203
14204 2011-05-22 Glenn Morris <rgm@gnu.org>
14205
14206 * files.el (hack-local-variables-prop-line): Small simplifications.
14207 (hack-local-variables, hack-local-variables-prop-line):
14208 If MODE-ONLY, return the mode, rather than just `t'.
14209
14210 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
14211
14212 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
14213
14214 2011-05-21 Glenn Morris <rgm@gnu.org>
14215
14216 * files.el (hack-local-variables-prop-line, hack-local-variables):
14217 If only interested in the mode, don't bother doing the other stuff.
14218
14219 * image-mode.el (image-after-revert-hook):
14220 Redraw all frames on which the image is visible. (Bug#8567)
14221
14222 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
14223
14224 * wid-edit.el (widget-checklist-match-inline):
14225 Fix 2011-04-19 change. (Bug#8649)
14226
14227 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
14228
14229 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
14230 Also allow singlespace after single-letter capitals followed by a dot.
14231
14232 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
14233 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
14234
14235 2011-05-20 Nix <nix@esperi.org.uk>
14236
14237 * files.el (basic-save-buffer-2):
14238 Fix handling of break-hardlink-on-save with non-existent files.
14239
14240 2011-05-19 Deniz Dogan <deniz@dogan.se>
14241
14242 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
14243 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
14244
14245 2011-05-19 Glenn Morris <rgm@gnu.org>
14246
14247 * progmodes/f90.el (f90-type-def-re):
14248 Handle "type, bind(c)". (Bug#8691)
14249
14250 * emacs-lisp/autoload.el (batch-update-autoloads):
14251 Set autoload-excludes by parsing loadup.el rather than Makefiles.
14252
14253 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
14254
14255 * net/tramp.el (tramp-process-actions): Set "first-password-request"
14256 property for the correct connection in case of multihops.
14257
14258 2011-05-18 Glenn Morris <rgm@gnu.org>
14259
14260 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
14261 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
14262
14263 Rationalize calendar handling of day and month abbrev-arrays.
14264 * calendar/calendar.el (calendar-customized-p): New function.
14265 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
14266 (calendar-day-name-array, calendar-month-name-array): Doc fix.
14267 Add :set function.
14268 (calendar-abbrev-length, calendar-day-abbrev-array)
14269 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
14270 (calendar-day-abbrev-array, calendar-month-abbrev-array):
14271 Elements may no longer be nil.
14272 (calendar-day-name, calendar-month-name):
14273 Update for changed nature of abbrev arrays.
14274 * calendar/diary-lib.el (diary-name-pattern):
14275 Update for changed nature of abbrev arrays.
14276 (diary-mark-entries-1): Update calendar-make-alist calls.
14277 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
14278 * calendar/cal-html.el (cal-html-day-abbrev-array):
14279 Simply inherit from calendar-day-abbrev-array.
14280
14281 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14282
14283 * progmodes/grep.el (grep-mode): Disable default
14284 compilation-directory-matcher setting (bug#8684).
14285
14286 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
14287
14288 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
14289 instead of "head" and "tail". There were problems with SunOS 5.9,
14290 and it performs better.
14291
14292 2011-05-17 Glenn Morris <rgm@gnu.org>
14293
14294 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
14295
14296 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
14297 Replace obsolete function.
14298
14299 * shell.el (pcomplete-parse-arguments-function): Declare.
14300
14301 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
14302 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
14303 (appt-check): Doc fixes.
14304 (appt-disp-window-function, appt-delete-window-function):
14305 Remove needless special case in custom :type.
14306 (appt-display-count): Default to 0, not nil.
14307 (appt-check): Reset appt-display-count to 0, not nil.
14308
14309 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
14310
14311 * progmodes/python.el (python-font-lock-keywords):
14312 Add the Python 3.X keyword "nonlocal" (bug#8639).
14313
14314 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14315
14316 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
14317
14318 2011-05-16 Kevin Ryde <user42@zip.com.au>
14319
14320 * info-look.el (makefile-automake-mode): New setups, looking in
14321 automake manual, then makefile-mode.
14322 (makefile-mode): Remove automake manual, have it just in
14323 makefile-automake-mode since there's various things different or
14324 not relevant to plain make.
14325 (makefile-mode): Remove "other-modes" non-existent automake-mode,
14326 believe a hypothetical automake-mode would go to makefile-mode,
14327 not the other way around.
14328
14329 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
14330
14331 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
14332 hunk-end tags (Bug#8672).
14333
14334 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
14335 vc-annotate-show-diff-revision-at-line (Bug#8671).
14336
14337 2011-05-14 Glenn Morris <rgm@gnu.org>
14338
14339 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
14340 in the middle of an existing one with multiple authors. (Bug#8645)
14341 (change-log-font-lock-keywords): Also handle multiple author lines
14342 with leading tabs. (Bug#8644)
14343
14344 * calendar/appt.el (appt-check): Rename some local variables.
14345 Some simplification/reordering.
14346
14347 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
14348 (feedmail-sendmail-f-doesnt-sell-me-out)
14349 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14350 (feedmail-debug-sit-for, feedmail-queue-express-hook)
14351 (feedmail-queue-runner-message-sender): Set :version.
14352 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
14353 (bbdb-dwim-net-address, vm-mail): Declare.
14354 (feedmail-binmail-gnulinuxish-template):
14355 Rename from feedmail-binmail-linuxish-template.
14356 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
14357 Use insert-buffer-substring.
14358
14359 2011-05-14 Bill Carpenter <bill@carpenter.org>
14360
14361 * mail/feedmail.el (feedmail-patch-level): Increase.
14362 (feedmail-debug): New custom group.
14363 (feedmail-confirm-outgoing-timeout)
14364 (feedmail-sendmail-f-doesnt-sell-me-out)
14365 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14366 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
14367 (feedmail-sender-line, feedmail-from-line)
14368 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
14369 (feedmail-spray-this-address)
14370 (feedmail-spray-address-fiddle-plex-list)
14371 (feedmail-queue-use-send-time-for-date)
14372 (feedmail-queue-use-send-time-for-message-id)
14373 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
14374 (feedmail-buffer-eating-function):
14375 Doc fixes.
14376 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
14377 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
14378 (feedmail-message-action-scroll-down): New functions.
14379 (feedmail-queue-directory, feedmail-queue-draft-directory):
14380 Use expand-file-name.
14381 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
14382 Remove C-v help entry.
14383 (feedmail-queue-buffer-file-name): New variable.
14384 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
14385 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
14386 (feedmail-message-action-send-strong, feedmail-message-action-edit)
14387 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
14388 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
14389 (feedmail-message-action-toggle-spray)
14390 (feedmail-run-the-queue-no-prompts)
14391 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
14392 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
14393 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
14394 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
14395 (feedmail-envelope-deducer, feedmail-fiddle-from)
14396 (feedmail-fiddle-sender, feedmail-default-date-generator)
14397 (feedmail-fiddle-date, feedmail-fiddle-message-id)
14398 (feedmail-fiddle-spray-address)
14399 (feedmail-fiddle-list-of-spray-fiddle-plexes)
14400 (feedmail-fiddle-list-of-fiddle-plexes)
14401 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
14402 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
14403 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
14404 Change default. Doc fix.
14405 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
14406 (feedmail-binmail-linuxish-template): New constant.
14407 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
14408 Respect feedmail-sendmail-f-doesnt-sell-me-out.
14409 (feedmail-send-it): Add debug call.
14410 Use feedmail-queue-buffer-file-name, and
14411 feedmail-send-it-immediately-wrapper.
14412 (feedmail-message-action-send): Add debug call.
14413 Use feedmail-send-it-immediately-wrapper.
14414 (feedmail-queue-express-to-queue): Add debug call.
14415 Run feedmail-queue-express-hook.
14416 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
14417 (feedmail-message-action-help-blat):
14418 Rename from feedmail-queue-send-edit-prompt-help-first.
14419 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
14420 Check line-endings. Handle errors better.
14421 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
14422 Doc fix. Add debug call.
14423 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
14424 Use feedmail-queue-send-edit-prompt-inner.
14425 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
14426 (feedmail-queue-send-edit-prompt-inner): New function, extracted
14427 from feedmail-queue-send-edit-prompt.
14428 (feedmail-queue-send-edit-prompt-help)
14429 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
14430 (feedmail-tidy-up-slug): Add debug call.
14431 Respect feedmail-queue-slug-suspect-regexp.
14432 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
14433 (feedmail-dump-message-to-queue): Add debug call.
14434 Expand queue-directory.
14435 (feedmail-dump-message-to-queue): Change message slightly.
14436 Use feedmail-say-chatter.
14437 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
14438 (feedmail-send-it-immediately-wrapper): New function.
14439 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
14440 Insert empty string rather than newline. Handle full-frame case.
14441 Use catch/throw. Use feedmail-say-chatter.
14442 (feedmail-fiddle-from): Try mail-host-address.
14443 (feedmail-default-message-id-generator): Doc fix.
14444 Bind system-time-locale. Handle missing end.
14445 (feedmail-fiddle-x-mailer): Add debug call.
14446 Handle feedmail-x-mailer-line being nil.
14447 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
14448 Add debug call. Use buffer-substring-no-properties.
14449 (feedmail-say-debug, feedmail-say-chatter): New functions.
14450 (feedmail-find-eoh): Give an explicit error.
14451
14452 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
14453
14454 * net/newst-treeview.el (newsticker-treeview-face): Change default
14455 family from helvetica to sans.
14456 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
14457 etc/images/newsticker.
14458
14459 * net/newst-reader.el (newsticker-feed-face): Change default
14460 family from helvetica to sans.
14461
14462 * net/newst-plainview.el (newsticker-new-item-face)
14463 (newsticker-old-item-face, newsticker-immortal-item-face)
14464 (newsticker-obsolete-item-face, newsticker-date-face)
14465 (newsticker-statistics-face): Change default family from
14466 helvetica to sans.
14467 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
14468 etc/images/newsticker.
14469
14470 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
14471 (newsticker--process-auto-mark-filter-match): Tell user about
14472 auto-marking.
14473
14474 2011-05-13 Didier Verna <didier@xemacs.org>
14475
14476 Common Lisp indentation improvements on defmethod and lambda-lists.
14477 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
14478 TODO entries.
14479 (lisp-lambda-list-keyword-parameter-indentation)
14480 (lisp-lambda-list-keyword-parameter-alignment)
14481 (lisp-lambda-list-keyword-alignment): New customizable user options.
14482 (lisp-indent-defun-method): Improve docstring.
14483 (extended-loop-p): Fix comment.
14484 (lisp-indent-lambda-list-keywords-regexp): New variable.
14485 (lisp-indent-lambda-list): New function.
14486 (lisp-indent-259): Use it.
14487 (lisp-indent-defmethod): Support for more than one
14488 method qualifier and properly indent methods lambda-lists.
14489 (defgeneric): Provide a missing common-lisp-indent-function property.
14490
14491 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14492
14493 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
14494 bounds for the empty string (bug#8667).
14495
14496 2011-05-13 Glenn Morris <rgm@gnu.org>
14497
14498 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
14499
14500 * mail/sendmail.el (sendmail-program): Try executable-find first.
14501 (sendmail-send-it): `sendmail-program' cannot be unbound.
14502
14503 * calendar/appt.el (appt-make-list): Simplify.
14504 (appt-time-msg-list): Doc fix.
14505 (appt-check): Change mode-line message at the time of the appointment.
14506
14507 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
14508
14509 * progmodes/ld-script.el (ld-script-keywords)
14510 (ld-script-builtins): Update keywords list.
14511
14512 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14513
14514 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
14515
14516 * shell.el (shell-completion-vars): New function.
14517 (shell-mode):
14518 * simple.el (read-shell-command): Use it.
14519 (blink-matching-open): No need for " [...]" in minibuffer-message.
14520
14521 2011-05-12 Glenn Morris <rgm@gnu.org>
14522
14523 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
14524 (appt-check): Simplify.
14525
14526 2011-05-12 Eli Zaretskii <eliz@gnu.org>
14527
14528 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
14529 literal "/dev/null".
14530
14531 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14532
14533 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
14534 Fix typo.
14535
14536 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
14537
14538 * progmodes/which-func.el (which-function):
14539 Use add-log-current-defun instead of add-log-current-defun-function,
14540 which might not be defined (Bug#8260).
14541
14542 2011-05-12 Glenn Morris <rgm@gnu.org>
14543
14544 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
14545 Let byte-compile-initial-macro-environment always take precedence.
14546
14547 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14548
14549 * net/rcirc.el: Add support for SSL/TLS connections.
14550 (rcirc-server-alist): New field `encryption'.
14551 (rcirc): Check `encryption' settings.
14552 (rcirc-connect): New arg `encryption'. Use open-network-stream.
14553 Merge make-local-variable into `set'.
14554 (rcirc--connection-open-p): New function.
14555 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
14556 the process is not a network process (e.g. running gnutls-cli).
14557 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
14558 Make rcirc-(en|de)code-coding-system local here.
14559 (rcirc-mode): Merge make-local-variable into `set'.
14560 (rcirc-parent-buffer): Make permanent buffer-local.
14561 (rcirc-multiline-minor-mode): Don't do it here.
14562 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
14563 there's no server buffer.
14564
14565 2011-05-11 Glenn Morris <rgm@gnu.org>
14566
14567 * newcomment.el (comment-kill): Prefix "unused" local.
14568
14569 * term/w32console.el (get-screen-color): Declare.
14570
14571 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
14572 Handle symbol elements of byte-compile-initial-macro-environment.
14573
14574 2011-05-10 Leo Liu <sdl.web@gmail.com>
14575
14576 * bookmark.el (bookmark-bmenu-mode-map):
14577 Bind bookmark-bmenu-search to `/'.
14578
14579 * mail/footnote.el: Convert to utf-8 encoding.
14580 (footnote-unicode-string, footnote-unicode-regexp): New variable.
14581 (Footnote-unicode): New function.
14582 (footnote-style-alist): Add unicode style to the list.
14583 (footnote-style): Doc fix.
14584
14585 2011-05-10 Jim Meyering <meyering@redhat.com>
14586
14587 Fix doubled-word typos.
14588 * international/quail.el (quail-insert-kbd-layout): and and -> and
14589 * kermit.el: and and -> and
14590 * net/ldap.el (ldap-search-internal): to to -> to
14591 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
14592 * progmodes/js.el (js-mode): and and -> and
14593 * textmodes/artist.el (artist-move-to-xy): at at -> at
14594 (artist-draw-region-trim-line-endings): if if -> if
14595 And Safetyc -> Safety.
14596 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
14597
14598 2011-05-10 Glenn Morris <rgm@gnu.org>
14599 Stefan Monnier <monnier@iro.umontreal.ca>
14600
14601 * files.el (hack-one-local-variable-eval-safep):
14602 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
14603
14604 2011-05-10 Glenn Morris <rgm@gnu.org>
14605
14606 * calendar/diary-lib.el (diary-list-entries-hook)
14607 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
14608 (diary-nongregorian-marking-hook, diary-list-entries)
14609 (diary-include-other-diary-files, diary-mark-entries)
14610 (diary-mark-included-diary-files): Doc fixes.
14611
14612 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
14613
14614 * misc.el: Require tabulated-list.el during compilation.
14615
14616 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
14617
14618 * progmodes/compile.el (compilation-start):
14619 Run compilation-filter-hook for the async case too.
14620 (compilation-filter-hook): Doc fix.
14621
14622 2011-05-09 Deniz Dogan <deniz@dogan.se>
14623
14624 * wdired.el: Remove outdated installation comment. Fix usage
14625 comment.
14626
14627 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
14628
14629 * misc.el: Implement new command `list-dynamic-libraries'.
14630 (list-dynamic-libraries--loaded-only-p): New variable.
14631 (list-dynamic-libraries--refresh): New function.
14632 (list-dynamic-libraries): New command.
14633
14634 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
14635
14636 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14637 Fix the ant regexp to handle end-line and end-column info from jikes.
14638 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
14639 higher priority to avoid clobbering by gnu.
14640
14641 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
14642
14643 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
14644 if the face has existing theme settings (Bug#8454).
14645
14646 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
14647
14648 * progmodes/perl-mode.el (perl-imenu-generic-expression):
14649 Only match variables declared via `my' or `our' (Bug#8261).
14650
14651 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
14652 special file names `.' and `..' (Bug#8259).
14653
14654 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
14655
14656 * progmodes/grep.el (grep-mode-font-lock-keywords):
14657 Remove buffer-changing entries.
14658 (grep-filter): New function.
14659 (grep-mode): Add it to compilation-filter-hook.
14660
14661 * progmodes/compile.el (compilation-filter-hook)
14662 (compilation-filter-start): New defvars.
14663 (compilation-filter): Call compilation-filter-hook prior to
14664 updating the process mark.
14665
14666 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14667
14668 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
14669
14670 2011-05-07 Eli Zaretskii <eliz@gnu.org>
14671
14672 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
14673 mailclient-send-it even if window-system is nil. (Bug#8595)
14674
14675 * term/w32console.el (terminal-init-w32console):
14676 Call get-screen-color and use its output to set the frame
14677 background-mode. (Bug#8597)
14678
14679 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14680
14681 Make bytecomp.el understand that defmethod defines funs (bug#8631).
14682 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
14683 New functions.
14684 (defgeneric, eieio--defmethod): Use them.
14685 (eieio-defgeneric): Remove.
14686 (defmethod): Call defgeneric in a way visible to the byte-compiler.
14687
14688 2011-05-07 Glenn Morris <rgm@gnu.org>
14689
14690 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
14691 Use let rather than let*.
14692 (timeclock-find-discrep): Remove unused local.
14693
14694 * calendar/diary-lib.el (diary-comment-start): Doc fix.
14695
14696 * calendar/appt.el (appt-time-msg-list): Doc fix.
14697
14698 2011-05-06 Noah Friedman <friedman@splode.com>
14699
14700 * apropos.el (apropos-print-doc): Only use
14701 emacs-lisp-docstring-fill-column when it is bound to an integer,
14702 per that variable's documentation.
14703
14704 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14705
14706 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
14707 and warnings are not silently discarded (e.g. use -d instead of -P).
14708
14709 2011-05-06 Glenn Morris <rgm@gnu.org>
14710
14711 * calendar/appt.el (appt-message-warning-time): Doc fix.
14712 (appt-warning-time-regexp): New option.
14713 (appt-make-list): Respect appt-message-warning-time.
14714
14715 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
14716 New options.
14717 (diary-add-to-list): Strip comments from the displayed string.
14718 (diary-mode): Set comment-start and comment-end.
14719
14720 * vc/diff-mode.el (smerge-refine-subst): Declare.
14721 (diff-refine-hunk): Don't require smerge-mode when compiling.
14722
14723 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
14724
14725 * simple.el (list-processes): Return nil as the docstring says.
14726
14727 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
14728
14729 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
14730 to "".
14731 (ange-ftp-write-region, ange-ftp-insert-file-contents)
14732 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
14733 determining of binary transfer. (Bug#7383)
14734
14735 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
14736
14737 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14738 Fix port computation bug. (Bug#8618)
14739
14740 2011-05-05 Glenn Morris <rgm@gnu.org>
14741
14742 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
14743
14744 * simple.el (shell-dynamic-complete-functions)
14745 (comint-dynamic-complete-functions): Declare.
14746
14747 * net/network-stream.el (gnutls-negotiate):
14748 * simple.el (tabulated-list-print): Fix declarations.
14749
14750 * progmodes/gud.el (syntax-symbol, syntax-point):
14751 Remove unnecessary and incorrect declarations.
14752
14753 * emacs-lisp/check-declare.el (check-declare-scan):
14754 Handle byte-compile-initial-macro-environment in bytecomp.el
14755
14756 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14757
14758 Fix earlier half-done eieio-defmethod change (bug#8338).
14759 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
14760 Streamline and change calling convention.
14761 (defmethod): Adjust accordingly and simplify.
14762 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
14763 new eieio--defmethod.
14764 (slot-boundp): Minor CSE simplification.
14765
14766 2011-05-05 Milan Zamazal <pdm@zamazal.org>
14767
14768 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
14769 (glasses-make-readable): Use glasses-separate-capital-groups.
14770
14771 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
14772
14773 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
14774 (warning-series): Doc fix.
14775 (display-warning): Don't try to create the buffer if we just found it.
14776
14777 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
14778
14779 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
14780 (autoload-find-generated-file): New function.
14781 (generate-file-autoloads): Bind generated-autoload-file to
14782 buffer-file-name.
14783 (update-file-autoloads, update-directory-autoloads):
14784 Use autoload-find-generated-file. If called interactively, prompt for
14785 output file (Bug#7989).
14786 (batch-update-autoloads): Doc fix.
14787
14788 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
14789
14790 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
14791
14792 2011-05-04 Glenn Morris <rgm@gnu.org>
14793
14794 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
14795 function, so it follows changes in calendar-date-style.
14796 (diary-fancy-date-matcher): New function.
14797 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
14798 (diary-fancy-font-lock-fontify-region-function):
14799 Use diary-fancy-date-pattern as a function.
14800
14801 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
14802 non-numbers for `year' etc pseudo-variables. (Bug#8583)
14803
14804 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
14805
14806 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
14807 instead of positional arguments. Allow :keylist and :crlfiles
14808 arguments.
14809 (open-gnutls-stream): Call it.
14810
14811 * net/network-stream.el (network-stream-open-starttls): Adjust to
14812 call `gnutls-negotiate' with :process and :hostname arguments.
14813
14814 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14815
14816 * minibuffer.el (completion--message): New function.
14817 (completion--do-completion, minibuffer-complete)
14818 (minibuffer-force-complete, minibuffer-complete-word): Use it.
14819 (completion--do-completion): Don't ignore completion-auto-help when in
14820 icomplete-mode.
14821
14822 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
14823 internal encoding (e.g. tibetan zero is not whitespace).
14824 (global-whitespace-mode): Prefer save-current-buffer.
14825 (whitespace-trailing-regexp): Remove useless save-match-data.
14826 (whitespace-empty-at-bob-regexp): Minor simplification.
14827
14828 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
14829
14830 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
14831
14832 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14833
14834 * textmodes/ispell.el (ispell-add-per-file-word-list):
14835 Use `concat' to create string for insertion.
14836
14837 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14838
14839 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
14840 Avoid open-line which runs post-self-insert-hook.
14841 (bibtex-fill-entry): Remove unused `end' var.
14842
14843 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
14844
14845 * textmodes/ispell.el (ispell-add-per-file-word-list):
14846 Protect against `nil' value of `comment-start' (Bug#8579).
14847
14848 2011-05-03 Leo Liu <sdl.web@gmail.com>
14849
14850 * isearch.el (isearch-yank-pop): New command.
14851 (isearch-mode-map): Bind it to `M-y'.
14852 (isearch-forward): Mention it.
14853
14854 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14855
14856 * simple.el (minibuffer-complete-shell-command): Remove.
14857 (minibuffer-local-shell-command-map): Use completion-at-point.
14858 (read-shell-command): Setup completion vars here instead.
14859 (read-expression-map): Bind TAB to symbol completion.
14860
14861 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
14862 error directly rather via storing it into `results'.
14863
14864 2011-05-02 Leo Liu <sdl.web@gmail.com>
14865
14866 * vc/diff.el: Fix description.
14867
14868 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14869
14870 * server.el (server-eval-at): New function.
14871
14872 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14873
14874 * net/network-stream.el (open-network-stream): Take a :nowait
14875 parameter and pass it on to `make-network-process'.
14876 (network-stream-open-plain): Ditto.
14877
14878 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
14879
14880 * faces.el (face-spec-set-match-display): Don't match toolkit
14881 options on terminal frames.
14882
14883 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
14884
14885 * progmodes/pascal.el: Use lexical binding.
14886 (pascal-mode-map): Remove author preferences.
14887
14888 * pcomplete.el (pcomplete-std-complete): Don't abuse
14889 completion-at-point.
14890
14891 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14892
14893 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
14894 removing code that has been dead since 1991 or so.
14895
14896 * startup.el (command-line): When warning about "_emacs", use a
14897 delayed warning to allow the user to filter it out.
14898
14899 2011-04-28 Deniz Dogan <deniz@dogan.se>
14900
14901 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
14902 user has not joined.
14903
14904 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14905
14906 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
14907 aren't any completions at point.
14908
14909 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14910
14911 * subr.el (display-delayed-warnings): New function.
14912 (delayed-warnings-hook): New variable.
14913
14914 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14915
14916 * minibuffer.el (completion-at-point, completion-help-at-point):
14917 Don't presume that a given completion-at-point-function will always
14918 use the same calling convention.
14919
14920 * pcomplete.el (pcomplete-completions-at-point):
14921 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
14922 pcomplete-seen is non-nil.
14923 (pcomplete-comint-setup): Also recognize the new comint/shell
14924 completion functions.
14925 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
14926 pcomplete-seen is non-nil.
14927
14928 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
14929
14930 * calendar/icalendar.el (diary-lib): Add require statement.
14931 (icalendar--create-uid): Read out a uid from a text-property on
14932 the first character in the entry. This allows for code to add its
14933 own uid to the entry.
14934 (icalendar--convert-float-to-ical): Add export of
14935 `diary-float'-entries save for those with the optional DAY
14936 argument.
14937
14938 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
14939
14940 * subr.el (shell-quote-argument): Use alternate escaping strategy
14941 when we spot a variable reference in a string.
14942
14943 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14944
14945 * cus-start.el (all): Define customization for debug-on-event.
14946
14947 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14948
14949 * subr.el (shell-quote-argument): Escape correctly under Windows.
14950
14951 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14952
14953 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
14954
14955 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
14956
14957 * net/tramp.el (tramp-process-actions): Add POS argument.
14958 Delete region between POS and (pos).
14959
14960 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14961 Use `nil' position in `tramp-process-actions' call.
14962 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
14963
14964 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
14965 position in `tramp-process-actions' call.
14966
14967 * net/trampver.el: Update release number.
14968
14969 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14970
14971 * custom.el (defcustom): Obey lexical-binding.
14972
14973 Fix octave-inf completion problems reported by Alexander Klimov.
14974 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
14975 Inherit from octave-mode-syntax-table.
14976 (inferior-octave-mode): Set info-lookup-mode.
14977 (inferior-octave-completion-at-point): New function.
14978 (inferior-octave-complete): Use it and completion-in-region.
14979 (inferior-octave-dynamic-complete-functions): Use it as well, and use
14980 comint-filename-completion.
14981 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
14982 symbol elements which shouldn't be word elements.
14983 (octave-font-lock-keywords, octave-beginning-of-defun)
14984 (octave-function-header-regexp): Adjust regexps accordingly.
14985 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
14986
14987 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
14988
14989 * net/gnutls.el (gnutls-errorp): Declare before first use.
14990
14991 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14992
14993 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
14994 verify-error, and verify-hostname-error parameters. Check whether
14995 default trustfile exists before going to use it. Add missing
14996 argument to gnutls-message-maybe call. Return value.
14997 Reported by Claudio Bley <claudio.bley@gmail.com>.
14998 (open-gnutls-stream): Add usage example.
14999
15000 * net/network-stream.el (network-stream-open-starttls): Give host
15001 parameter to `gnutls-negotiate'.
15002 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
15003 * subr.el (shell-quote-argument): Escape correctly under Windows.
15004
15005 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
15006
15007 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
15008 Use correct match group (bug#8438).
15009
15010 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
15011
15012 * emacs-lisp/package.el (package-built-in-p): Fix typo.
15013 (package-menu--generate): New arg specifying packages to show.
15014 (package-menu-refresh, package-menu-execute, list-packages):
15015 Callers changed.
15016 (package-show-package-list): New function, replacing deleted
15017 package--list-packages (renamed because it is non-internal).
15018
15019 * finder.el (finder-list-matches): Use package-show-package-list
15020 instead of deleted package--list-packages.
15021
15022 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
15023 Based on a previous implementation by Juanma Barranquero (Bug#8366).
15024 (vc-annotate-mode-map): Bind it to RET.
15025
15026 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
15027
15028 * progmodes/etags.el (next-file): Don't use set-buffer to change
15029 buffers (Bug#8478).
15030
15031 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
15032
15033 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
15034
15035 * apropos.el (apropos-label-face): Avoid variable-pitch face.
15036 (apropos-accumulator): Doc fix.
15037 (apropos-function, apropos-macro, apropos-command)
15038 (apropos-variable, apropos-face, apropos-group, apropos-widget)
15039 (apropos-plist): Add face property.
15040 (apropos-symbols-internal): Fix indentation.
15041 (apropos-print): Simplify help, and recognize apropos-multi-type.
15042 (apropos-print-doc): Use button-type-get to extract the button's
15043 face property. Fill docstring (Bug#8352).
15044
15045 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
15046
15047 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
15048
15049 * play/mpuz.el (mpuz-silent): Doc fix.
15050 (mpuz-mode-map): Use mapc.
15051 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
15052 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
15053 Fix typos in docstrings.
15054
15055 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
15056 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
15057
15058 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
15059
15060 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
15061
15062 * minibuffer.el (completion--do-completion): Avoid the "Next char
15063 not unique" prompt if icomplete-mode is enabled (Bug#5849).
15064
15065 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
15066 mouse-2 into unread-command-events, it is interpreted correctly.
15067
15068 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
15069 (image-toggle-display): Doc fix.
15070
15071 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
15072
15073 * textmodes/page.el (what-page): Use line-number-at-pos to
15074 calculate line number (Bug#6825).
15075
15076 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
15077
15078 * eshell/esh-mode.el (find-tag-interactive): Declare function.
15079 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
15080 Pass argument NO-DEFAULT to `find-tag-interactive'.
15081
15082 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
15083
15084 Lexical-binding cleanup.
15085
15086 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
15087 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
15088 * progmodes/ada-prj.el (ada-prj-initialize-values)
15089 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
15090 (ada-prj-show-value):
15091 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
15092 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
15093 (antlr-invalidate-context-cache, antlr-options-menu-filter)
15094 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
15095 * progmodes/bug-reference.el (bug-reference-push-button):
15096 * progmodes/fortran.el (fortran-line-length):
15097 * progmodes/glasses.el (glasses-change):
15098 * progmodes/octave-mod.el (octave-fill-paragraph):
15099 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
15100 (python-pdbtrack-grub-for-buffer, python-sentinel):
15101 * progmodes/sql.el (sql-save-connection):
15102 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
15103 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
15104 Mark unused parameters.
15105
15106 * progmodes/compile.el (compilation--flush-directory-cache)
15107 (compilation--flush-parse, compile-internal): Mark unused parameters.
15108 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
15109 (compilation-next-error-function): Remove unused variable `timestamp'.
15110
15111 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
15112 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
15113
15114 * progmodes/dcl-mode.el (dcl-end-of-command):
15115 Remove unused variable `start'.
15116 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
15117 (dcl-option-value-basic, dcl-option-value-offset)
15118 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
15119 Mark unused parameters.
15120 (dcl-save-local-variable): Remove unused variable `val'.
15121 (mode): Declare.
15122
15123 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
15124 Mark unused parameters.
15125 (delphi-ignore-changes): Move before first use.
15126 (delphi-charset-token-at): Remove unused variable `start'.
15127 (delphi-else-start): Remove unused variable `if-count'.
15128 (delphi-comment-block-start, delphi-comment-block-end):
15129 Remove unused variable `kind'.
15130 (delphi-indent-line): Remove unused variable `new-point'.
15131
15132 * progmodes/ebrowse.el (ebrowse-files-list)
15133 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
15134 Mark unused parameters. Don't quote `lambda'.
15135 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
15136 Don't quote `lambda'.
15137 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
15138 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
15139 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
15140 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
15141 Use `ignore-errors'.
15142 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
15143 (ebrowse-view/find-file-and-search-pattern)
15144 (ebrowse-view/find-member-declaration/definition):
15145 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
15146 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
15147 Rename parameter PREFIX-ARG to PREFIX.
15148 (ebrowse-tags-read-name): Remove unused variables `start' and
15149 `member-info'.
15150 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
15151 to `tags-file'.
15152
15153 * progmodes/etags.el (local-find-tag-hook): Declare.
15154 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
15155 Mark unused parameters.
15156
15157 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
15158 (executable-interpret): Mark unused parameter.
15159
15160 * progmodes/flymake.el (flymake-process-sentinel)
15161 (flymake-after-change-function)
15162 (flymake-create-temp-with-folder-structure)
15163 (flymake-get-include-dirs-dot): Mark unused parameters.
15164 (flymake-safe-delete-directory): Remove unused variable `err'.
15165
15166 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
15167 (speedbar-timer-fn, speedbar-line-text)
15168 (speedbar-change-expand-button-char, speedbar-delete-subblock)
15169 (speedbar-center-buffer-smartly): Declare functions.
15170 (gdb-find-watch-expression): Remove unused variable `array'.
15171 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
15172 (gdb-starting): Mark unused parameters.
15173 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
15174 (gdb-table-string): Remove unused variable `res'.
15175 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
15176 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
15177 (gdb-display-buffer): Remove unused variable `cur-size'.
15178
15179 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
15180 allow lexical-binding compilation.
15181 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
15182 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
15183 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
15184 Mark unused parameters.
15185 (gud-gdb-marker-filter): Remove unused variable `match'.
15186 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
15187 lambda expressions and funcall them, instead of using `fset'.
15188
15189 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
15190 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
15191
15192 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
15193 variable `header-beg'; use `let'.
15194
15195 * progmodes/icon.el (indent-icon-exp): Remove unused variables
15196 `restart', `last-sexp' and `at-do'.
15197
15198 * progmodes/js.el (js--debug): Mark unused parameter.
15199 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
15200 (js--splice-into-items): Remove unused variable `item'.
15201 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
15202
15203 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
15204 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
15205 (makefile-complete): Remove unused variable `try'.
15206 (makefile-fill-paragraph, makefile-match-function-end):
15207 Mark unused parameters.
15208
15209 * progmodes/octave-inf.el (inferior-octave-complete):
15210 Remove unused variable `proc'.
15211 (inferior-octave-output-digest): Mark unused parameter.
15212
15213 * progmodes/perl-mode.el (perl-calculate-indent):
15214 Remove unused variable `err'.
15215
15216 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
15217 (prolog-indent-line): Mark unused parameters.
15218 (prolog-indent-line): Remove unused variable `beg'.
15219
15220 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
15221 (reporter-dont-compact-list): Declare.
15222
15223 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
15224 Remove unused variable `char'.
15225 (sh-debug): Mark unused parameter.
15226 (sh-get-indent-info): Remove unused variable `start'.
15227 (sh-calculate-indent): Remove unused variable `var'.
15228
15229 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
15230 (simula-electric-keyword): Remove unused variable `null'.
15231 (simula-search-backward, simula-search-forward): Remove unused
15232 variables `begin' and `end'.
15233
15234 * progmodes/vera-mode.el (vera-guess-basic-syntax):
15235 Remove unused variable `pos'.
15236 (vera-electric-tab, vera-comment-uncomment-region):
15237 Mark unused parameters.
15238 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
15239
15240 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
15241
15242 * emacs-lisp/package.el (package--builtins, package-alist)
15243 (package-load-descriptor, package-built-in-p, package-activate)
15244 (define-package, package-installed-p)
15245 (package-compute-transaction, package-buffer-info)
15246 (package--push): Doc fix. Distinguish more clearly between
15247 version strings and version lists.
15248
15249 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
15250
15251 Lexical-binding cleanup.
15252
15253 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
15254 (5x5-make-mutate-best):
15255 * play/fortune.el (fortune-in-buffer):
15256 * play/gomoku.el (gomoku-init-display):
15257 * play/solitaire.el (solitaire, solitaire-do-check):
15258 * play/tetris.el (tetris-default-update-speed-function):
15259 Mark unused parameters.
15260
15261 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
15262 (bubbles--shift): Remove unused variable `char-org'.
15263 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
15264 (bubbles--show-images): Remove unused variable `char'.
15265
15266 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
15267 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
15268 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
15269 (decipher-analyze-buffer): Use ?\s.
15270 (decipher-make-checkpoint): Remove unused variable `mapping'.
15271
15272 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
15273
15274 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
15275 Remove unused variable `result'; use `let'.
15276
15277 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
15278 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
15279 (gametree-children-shown-p, gametree-compute-reduced-score):
15280 Use `ignore-errors'.
15281
15282 * play/handwrite.el (ps-lpr-switches): Declare.
15283 (handwrite): Remove unused variables `pmin' and `lastp'.
15284
15285 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
15286
15287 * play/landmark.el (landmark-init-display)
15288 (landmark-update-naught-weights): Mark unused parameters.
15289 (landmark-y): Remove unused variable `noise'. Simplify.
15290 (landmark-human-plays): Remove unused variable `score'.
15291
15292 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
15293 (mpuz-try-proposal): Remove unused variable `game'.
15294
15295 * play/zone.el (life-patterns): Declare.
15296
15297 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
15298
15299 * vc/vc.el (ediff-vc-internal): Declare function.
15300
15301 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15302
15303 * shell.el: Use lexical-binding and std completion UI.
15304 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
15305 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
15306 comint-preoutput-filter-functions rather than on
15307 comint-output-filter-functions.
15308 (shell-command-completion, shell--command-completion-data)
15309 (shell-filename-completion, shell-environment-variable-completion)
15310 (shell-c-a-p-replace-by-expanded-directory): New functions.
15311 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
15312 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
15313 (shell-dynamic-complete-environment-variable): Use them.
15314 (shell-dynamic-complete-as-environment-variable)
15315 (shell-dynamic-complete-as-command): Remove.
15316 (shell-match-partial-variable): Match past point.
15317 * comint.el: Clean up use of completion-at-point-functions.
15318 (comint-completion-at-point): New function.
15319 (comint-mode): Use it completion-at-point-functions.
15320 (comint-dynamic-complete): Make it obsolete.
15321 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
15322 (comint-c-a-p-replace-by-expanded-history): New function.
15323 (comint-dynamic-complete-functions)
15324 (comint-replace-by-expanded-history): Use it.
15325 * minibuffer.el (completion-table-with-terminator): Allow dynamic
15326 termination strings. Try harder to avoid second try-completion.
15327 (completion-in-region-mode-map): Disable bindings that don't work yet.
15328
15329 * comint.el: Use lexical-binding. Require CL.
15330 (comint-dynamic-complete-functions): Use comint-filename-completion.
15331 (comint-completion-addsuffix): Tweak custom type.
15332 (comint-filename-completion, comint--common-suffix)
15333 (comint--common-quoted-suffix, comint--table-subvert)
15334 (comint--complete-file-name-data): New functions.
15335 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
15336 (comint-dynamic-list-filename-completions): Use them.
15337 (comint-dynamic-simple-complete): Make obsolete.
15338
15339 * minibuffer.el (completion-in-region-mode):
15340 Keep completion-in-region-mode--predicate global.
15341 (completion-in-region--postch):
15342 Assume completion-in-region-mode--predicate is not null.
15343
15344 * progmodes/flymake.el (flymake-start-syntax-check-process):
15345 Obey `dir'. Simplify.
15346
15347 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
15348 we're in VC after all.
15349
15350 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
15351
15352 * vc/vc.el (vc-diff-build-argument-list-internal)
15353 (vc-version-ediff, vc-ediff): New commands.
15354 (vc-version-diff): Use vc-diff-build-argument-list-internal.
15355
15356 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15357
15358 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
15359 add sanity check.
15360
15361 * obsolete/erc-hecomplete.el: Make obsolete.
15362 * obsolete/: Standardize obsolescence info in the header.
15363
15364 2011-04-20 Glenn Morris <rgm@gnu.org>
15365
15366 * calendar/solar.el (solar-horizontal-coordinates):
15367 Use the longitude argument rather than `calendar-longitude'.
15368 (solar-date-next-longitude): Remove unused locals.
15369
15370 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15371
15372 * whitespace.el: New version 13.2.1.
15373
15374 2011-04-20 felix <EmacsWiki> (tiny change)
15375
15376 * whitespace.el (global-whitespace-mode): Keep highlight when
15377 switching between major modes on a file.
15378
15379 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15380
15381 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
15382 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
15383 multi-line comments as well.
15384
15385 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
15386
15387 Lexical-binding cleanup.
15388
15389 * arc-mode.el (archive-mode-revert):
15390 * cmuscheme.el (scheme-interactively-start-process):
15391 * custom.el (custom-initialize-delay):
15392 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
15393 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
15394 * emacs-lock.el (emacs-lock-clear-sentinel):
15395 * ezimage.el (defezimage):
15396 * follow.el (follow-avoid-tail-recenter):
15397 * fringe.el (set-fringe-mode-1):
15398 * generic-x.el (bat-generic-mode-compile):
15399 * help-mode.el (help-info-variable, help-do-xref)
15400 (help-mode-revert-buffer):
15401 * help.el (view-emacs-todo):
15402 * iswitchb.el (iswitchb-completion-help):
15403 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
15404 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
15405 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
15406 * locate.el (locate-update):
15407 * longlines.el (longlines-encode-region)
15408 (longlines-after-change-function):
15409 * outline.el (outline-isearch-open-invisible):
15410 * ps-def.el (declare-function, charset-dimension, char-width)
15411 (encode-char):
15412 * ps-mule.el (ps-mule-plot-string):
15413 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
15414 (recentf-edit-list-select, recentf-edit-list-validate)
15415 (recentf-open-files-action):
15416 * rect.el (delete-whitespace-rectangle-line)
15417 (rectangle-number-line-callback):
15418 * register.el (window-configuration-to-register)
15419 (frame-configuration-to-register):
15420 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
15421 * select.el (xselect-convert-to-string, xselect-convert-to-length)
15422 (xselect-convert-to-targets, xselect-convert-to-delete)
15423 (xselect-convert-to-filename, xselect-convert-to-charpos)
15424 (xselect-convert-to-lineno, xselect-convert-to-colno)
15425 (xselect-convert-to-os, xselect-convert-to-host)
15426 (xselect-convert-to-user, xselect-convert-to-class)
15427 (xselect-convert-to-name, xselect-convert-to-integer)
15428 (xselect-convert-to-atom, xselect-convert-to-identity):
15429 * subr.el (declare, ignore, process-kill-without-query)
15430 (text-clone-maintain):
15431 * terminal.el (te-get-char, te-tic-sentinel):
15432 * tool-bar.el (tool-bar-make-keymap):
15433 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
15434 * type-break.el (type-break-mode, type-break-noninteractive-query):
15435 * view.el (View-back-to-mark):
15436 * wid-browse.el (widget-browse-action, widget-browse-widget)
15437 (widget-browse-widgets, widget-browse-sexp):
15438 * widget.el (define-widget-keywords):
15439 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
15440 Mark unused parameters.
15441
15442 * align.el (align-adjust-col-for-rule): Mark unused parameter.
15443 (align-areas): Remove unused variable `look'.
15444 (align-region): Remove unused variables `real-end' and `pos-list'.
15445
15446 * apropos.el (apropos-score-doc): Remove unused variable `i'.
15447
15448 * bindings.el (mode-line-modified, mode-line-remote):
15449 Mark unused parameters.
15450 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
15451
15452 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
15453 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
15454
15455 * comint.el (comint-history-isearch-pop-state)
15456 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
15457 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
15458 (comint-substitute-in-file-name): Doc fix.
15459
15460 * completion.el (cmpl-statistics-block): Mark unused parameter.
15461 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
15462 (save-completions-to-file, load-completions-from-file):
15463 Remove unused local variable `e'.
15464
15465 * composite.el (compose-chars): Remove unused variable `len'.
15466 (lgstring-insert-glyph): Remove unused variable `g'.
15467 (compose-glyph-string): Remove unused variables `ascent',
15468 `descent', `lbearing' and `rbearing'.
15469 (compose-glyph-string-relative): Remove unused variables
15470 `lbearing', `rbearing' and `wadjust'.
15471 (compose-gstring-for-graphic): Remove unused variables `header',
15472 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
15473 (compose-gstring-for-terminal): Remove unused variables `header'
15474 and `nchars'. Use `let', not `let*'.
15475
15476 * cus-edit.el (Custom-set, Custom-save, custom-reset)
15477 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
15478 (Custom-buffer-done, custom-buffer-create-internal)
15479 (custom-browse-visibility-action, custom-browse-group-tag-action)
15480 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
15481 (widget-magic-mouse-down-action, custom-toggle-parent)
15482 (custom-add-parent-links, custom-toggle-hide-variable)
15483 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
15484 (custom-toggle-hide-face, face, hook, custom-group-link-action)
15485 (custom-face-menu-create, custom-variable-menu-create, get)
15486 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
15487 (custom-reset-standard-save-and-update): Remove unused variable `value'.
15488 (customize-apropos): Remove unused variable `tests'.
15489 (custom-group-value-create): Remove unused variable `hidden-p'.
15490 (sort-fold-case): Declare.
15491
15492 * cus-theme.el (custom-reset-standard-faces-list)
15493 (custom-reset-standard-variables-list): Declare.
15494 (customize-create-theme, custom-theme-revert, custom-theme-write)
15495 (custom-theme-choose-mode, customize-themes, custom-theme-save):
15496 Mark unused parameters.
15497
15498 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
15499
15500 * delim-col.el (delimit-columns-max): Move defvar before first use.
15501
15502 * descr-text.el (describe-char-categories): Don't quote `lambda'.
15503 (describe-char): Don't quote `lambda'. Mark unused parameter.
15504
15505 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
15506 (auto-insert): Declare.
15507 (desktop-restore-file-buffer): Rename desktop-* parameters;
15508 mark unused ones.
15509 (desktop-create-buffer): Rename desktop-* parameters and bind them.
15510 (desktop-buffer): Rename desktop-* parameters.
15511
15512 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
15513 (dframe-reposition-frame-xemacs, dframe-help-echo)
15514 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
15515 Mark unused parameters.
15516
15517 * dired-aux.el (backup-extract-version-start, overwrite-query)
15518 (overwrite-backup-query, rename-regexp-query)
15519 (rename-non-directory-query): Declare.
15520 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
15521 (dired-add-entry): Remove unused variable `orig-file-name'.
15522 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
15523 Use parameter PRESERVE-TIME instead of accessing dynamic variable
15524 `dired-copy-preserve-time' directly.
15525 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
15526 (dired-insert-subdir-newpos): Rename unused variable `pos'.
15527
15528 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
15529 (dired-virtual-revert, dired-make-relative-symlink):
15530 Mark unused parameters.
15531 (manual-program): Declare.
15532 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
15533 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
15534 wrapped in `with-no-warnings' to avoid replacing one warning by another.
15535
15536 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
15537
15538 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
15539
15540 * echistory.el (electric-history-in-progress, Helper-return-blurb):
15541 Declare.
15542
15543 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
15544
15545 * electric.el (Electric-command-loop): Rename parameter
15546 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
15547
15548 * expand.el (expand-in-literal): Remove unused variable `here'.
15549
15550 * facemenu.el (facemenu-add-new-color):
15551 Remove unused variable `docstring'.
15552
15553 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
15554 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
15555 (face-attr-construct): Mark unused parameter. Doc fix.
15556 (read-color): Remove unused variable `hex-string'.
15557
15558 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
15559 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
15560 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
15561 (display-buffer-other-frame): Remove unused variable `old-window'.
15562 (kill-buffer-hook): Declare.
15563 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
15564 Mark unused parameters.
15565 (after-find-file): Pass 1 to `auto-save-mode', not t.
15566
15567 * files-x.el (auto-insert): Declare.
15568 (modify-file-local-variable-prop-line): Remove unused variable `val'.
15569
15570 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
15571 variable `buf'. Mark unused parameter.
15572 (find-lisp-insert-directory): Mark unused parameter.
15573
15574 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
15575 (format-encode-region): Remove unused variables `cur-buf' and `result'.
15576 (format-common-tail): Remove, unused.
15577 (format-deannotate-region): Remove unused variable `loc'.
15578 (format-annotate-region): Remove unused variable `p'.
15579 (format-annotate-single-property-change): Remove unused variables
15580 `default' and `tail'.
15581
15582 * forms.el (read-file-filter): Declare.
15583 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
15584
15585 * frame.el (frame-creation-function-alist): Mark unused parameter.
15586 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
15587
15588 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
15589 Remove unused parameters.
15590 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
15591 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
15592
15593 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
15594 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
15595 (hfy-prepare-tag-map): Mark unused parameters.
15596 (htmlfontify-buffer): Use `called-interactively-p'.
15597
15598 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
15599 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
15600 (ibuffer-do-occur): Mark unused parameters.
15601 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
15602 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
15603
15604 * ibuffer.el: Don't quote `lambda'.
15605 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
15606 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
15607 Mark unused parameters.
15608
15609 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
15610 (ido-completing-read): Mark unused parameters.
15611 (ido-copy-current-word): Mark unused parameters;
15612 remove unused variable `name'.
15613 (ido-sort-merged-list): Remove unused parameter `dirs'.
15614
15615 * ielm.el (ielm-input-sender): Mark unused parameter.
15616 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
15617 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
15618 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
15619 `ielm-string' as a dynamic variable accessible from the IELM prompt.
15620 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
15621
15622 * image-dired.el (image-dired-display-thumbs): Remove unused
15623 variables `curr-file' and `count'.
15624 (image-dired-remove-tag): Remove unused variable `start'.
15625 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
15626 variable `curr-file'
15627 (image-dired-rotate-original): Remove unused variable `temp-file'.
15628 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
15629 Remove unused variable `file'.
15630 (image-dired-gallery-generate): Remove unused variable `curr'.
15631 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
15632
15633 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
15634
15635 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
15636
15637 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
15638
15639 * isearch.el (minibuffer-history-symbol): Declare.
15640 (isearch-edit-string): Remove unused variable `err'.
15641 (isearch-message-prefix, isearch-message-suffix):
15642 Mark unused parameters.
15643
15644 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
15645
15646 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
15647
15648 * makesum.el (double-column): Remove unused variable `cnt'.
15649
15650 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
15651 (ido-ignore-item-temp-list): Declare.
15652
15653 * mouse-drag.el (mouse-drag-throw): Remove unused variables
15654 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
15655 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
15656 (mouse-drag-drag): Remove unused variables `mouse-delta' and
15657 `mouse-col-delta'.
15658
15659 * mouse-sel.el (mouse-extend-internal):
15660 Remove unused variable `orig-window-frame'.
15661
15662 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
15663 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
15664 Move declarations before first use.
15665 (pcomplete-opt): Mark unused parameters; doc fix.
15666
15667 * proced.el (proced-revert): Mark unused parameter.
15668 (proced-send-signal): Remove unused variable `err'.
15669
15670 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
15671 Rename parameter PREFIX-ARG to ARG.
15672 (ps-basic-plot-string, ps-basic-plot-whitespace):
15673 Mark unused parameters.
15674
15675 * replace.el (replace-count): Define.
15676 (occur-revert-function): Mark unused parameters.
15677 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
15678 (isearch-case-fold-search, isearch-string): Declare.
15679 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
15680 bind `case-fold-search'. Remove unused variables `beg' and `end',
15681 and simplify.
15682 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
15683 COUNT and bind `replace-count'.
15684 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
15685 to COUNT.
15686
15687 * savehist.el (print-readably, print-string-length): Declare.
15688
15689 * shadowfile.el (shadow-expand-cluster-in-file-name):
15690 Remove unused variable `cluster'.
15691 (shadow-copy-file): Remove unused variable `i'.
15692 (shadow-noquery, shadow-clusters, shadow-site-cluster)
15693 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
15694 (shadow-define-literal-group, shadow-define-regexp-group)
15695 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
15696
15697 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
15698 (shell): Use `called-interactively-p'.
15699 (shell-directory-tracker): Remove unused variable `chdir-failure'.
15700
15701 * simple.el (compilation-context-lines, comint-file-name-quote-list)
15702 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
15703 (delete-backward-char): Remove unused variable `ocol'.
15704 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
15705 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
15706 (event-apply-hyper-modifier, event-apply-shift-modifier)
15707 (event-apply-control-modifier, event-apply-meta-modifier):
15708 Mark unused parameters.
15709 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
15710 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
15711
15712 * speedbar.el (speedbar-ignored-directory-expressions)
15713 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
15714 (speedbar-find-file, speedbar-dir-follow)
15715 (speedbar-directory-buttons-follow, speedbar-tag-find)
15716 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
15717 (speedbar-buffers-line-directory, speedbar-buffer-click):
15718 Mark unused parameters.
15719 (speedbar-tag-file): Remove unused variable `mode'.
15720 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
15721
15722 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
15723
15724 * talk.el (talk): Remove unused variable `display'.
15725
15726 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
15727 (tar-write-region-annotate): Mark unused parameter.
15728
15729 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
15730 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
15731 Declare them, wrapped in `with-no-warnings' to avoid replacing one
15732 warning by another.
15733
15734 * time-stamp.el (time-stamp-string-preprocess):
15735 Remove unused variable `require-padding'.
15736
15737 * tree-widget.el (widget-glyph-enable): Declare.
15738 (tree-widget-action): Mark unused parameter.
15739
15740 * w32-fns.el (x-get-selection): Mark unused parameter.
15741 (autoload-make-program, generated-autoload-file): Declare.
15742
15743 * wdired.el (wdired-revert): Mark unused parameters.
15744 (wdired-xcase-word): Remove unused variable `err'.
15745
15746 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
15747 (whitespace-help-scroll): Remove unused variable `data-help'.
15748
15749 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
15750 (widget-image-insert, widget-after-change, default)
15751 (widget-default-format-handler, widget-default-notify)
15752 (widget-default-prompt-value, widget-info-link-action)
15753 (widget-url-link-action, widget-function-link-action)
15754 (widget-variable-link-action, widget-file-link-action)
15755 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
15756 (widget-field-prompt-internal, widget-field-action, widget-field-match)
15757 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
15758 (widget-insert-button-action, widget-delete-button-action, visibility)
15759 (widget-documentation-link-action, widget-documentation-string-action)
15760 (widget-const-prompt-value, widget-regexp-match, symbol)
15761 (widget-coding-system-prompt-value)
15762 (widget-key-sequence-value-to-external, sexp)
15763 (widget-sexp-value-to-internal, character, vector, cons)
15764 (widget-choice-prompt-value, widget-boolean-prompt-value)
15765 (widget-color--choose-action): Mark unused parameters.
15766 (widget-item-match-inline, widget-choice-match-inline)
15767 (widget-checklist-match, widget-checklist-match-inline)
15768 (widget-group-match): Rename parameter VALUES to VALS.
15769 (widget-field-value-set): Remove unused variable `size'.
15770 (widget-color-action): Remove unused variables `value' and `start'.
15771
15772 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
15773 variable `dir'. Doc fix.
15774 (windmove-find-other-window): Don't pass it.
15775
15776 * window.el (count-windows): Mark unused parameter.
15777 (bw-adjust-window): Remove unused variable `err'.
15778
15779 * woman.el (woman-file-name): Remove unused variable `default'.
15780 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
15781 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
15782 (global-font-lock-mode): Declare.
15783 (woman-decode-region): Mark unused parameter.
15784 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
15785
15786 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
15787 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
15788 (x-dnd-handle-moz-url): Remove unused variable `title'.
15789 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
15790
15791 * xml.el (xml-parse-tag, xml-parse-attlist):
15792 Remove unused variable `pos'.
15793
15794 2011-04-19 Glenn Morris <rgm@gnu.org>
15795
15796 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
15797 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
15798 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
15799 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
15800 * calendar/cal-html.el (cal-html-insert-minical):
15801 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
15802 (calendar-mark-date-pattern):
15803 Prefix "unused" locals.
15804
15805 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
15806 optional argument `style'.
15807
15808 * calendar/appt.el (appt-make-list):
15809 * calendar/cal-china.el (calendar-chinese-date-string):
15810 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
15811 (diary-hebrew-yahrzeit):
15812 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
15813 * calendar/calendar.el (calendar-generate-window):
15814 * calendar/time-date.el (time-to-days):
15815 Remove unused local variables.
15816
15817 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
15818
15819 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
15820 glyphless-char-display table.
15821 (tabulated-list-glyphless-char-display): New var.
15822
15823 2011-04-18 Sam Steingold <sds@gnu.org>
15824
15825 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
15826 to acknowledgments.
15827
15828 2011-04-17 Glenn Morris <rgm@gnu.org>
15829
15830 * calendar/diary-lib.el (diary-sexp-entry):
15831 * calendar/holidays.el (holiday-sexp):
15832 Set debug-on-error rather than the removed stack-trace-on-error.
15833
15834 2011-04-16 Glenn Morris <rgm@gnu.org>
15835
15836 * progmodes/f90.el: Use lexical-binding.
15837 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
15838
15839 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15840
15841 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
15842 (mail-mode): Setup mailalias completion here instead.
15843 * mail/mailalias.el: Use lexical-binding.
15844 (pattern, mailalias-done): Declare dynamic.
15845 (mail-completion-at-point-function): New function, from mail-complete.
15846 (mail-complete): Use it.
15847 (mail-completion-expand): New function.
15848 (mail-get-names): Use it.
15849 (mail-directory, mail-directory-process, mail-directory-stream):
15850 Don't use `pattern' for lexically bound arg.
15851
15852 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
15853
15854 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
15855 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
15856 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
15857
15858 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
15859 (byte-save-window-excursion, byte-temp-output-buffer-setup)
15860 (byte-interactive-p): Define them again, for use when inlining
15861 old code.
15862
15863 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
15864
15865 * loadup.el: Use `string-to-number', not `string-to-int'.
15866
15867 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15868
15869 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
15870 gud-gdb-complete-command.
15871 (gud-gdb-completions): New function, from gud-gdb-complete-command.
15872 (gud-gdb-completion-at-point): New function.
15873 (gud-gdb-completions): Remove.
15874
15875 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
15876
15877 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
15878 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
15879 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
15880 whether `executable-find' is bound.
15881
15882 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
15883
15884 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15885
15886 * minibuffer.el (completion-in-region-mode-predicate)
15887 (completion-in-region-mode--predicate): New vars.
15888 (completion-in-region, completion-in-region--postch)
15889 (completion-in-region-mode): Use them.
15890 (completion--capf-wrapper): Also return the hook function.
15891 (completion-at-point, completion-help-at-point):
15892 Adjust and provide a predicate.
15893
15894 Preserve arg names for advice of subr and lexical functions (bug#8457).
15895 * help-fns.el (help-function-arglist): Consolidate the subr and
15896 new-byte-code cases. Add argument `preserve-names' to extract names
15897 from the docstring when needed.
15898 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
15899 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
15900 (ad-arglist): Use help-function-arglist's new arg.
15901 (ad-definition-type): Use cond.
15902
15903 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
15904
15905 * autorevert.el (auto-revert-handler):
15906 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
15907 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
15908 Don't quote lambda.
15909
15910 * image-mode.el (image-transform-set-scale):
15911 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
15912
15913 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15914
15915 * net/network-stream.el (network-stream-open-starttls): Only do
15916 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
15917 Upgrades via gnutls-cli are too slow to be done opportunistically.
15918
15919 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
15920
15921 * dframe.el (dframe-current-frame): Remove spurious quote.
15922
15923 2011-04-12 Glenn Morris <rgm@gnu.org>
15924
15925 * calendar/cal-tex.el (cal-tex-end-document):
15926 Try to automatically use latin1 input if needed.
15927
15928 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
15929 Don't try to cons a mark onto an empty element.
15930
15931 2011-04-11 Leo Liu <sdl.web@gmail.com>
15932
15933 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
15934 buffers.
15935 (ido-kill-buffer-at-head): Support killing virtual buffers.
15936
15937 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
15938
15939 * minibuffer.el (completion-show-inline-help): New var.
15940 (completion--do-completion, minibuffer-complete)
15941 (minibuffer-force-complete, minibuffer-complete-word):
15942 Inhibit minibuffer messages if completion-show-inline-help is nil.
15943
15944 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
15945 to avoid interference from inline help (Bug#5849).
15946
15947 2011-04-10 Leo Liu <sdl.web@gmail.com>
15948
15949 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15950 Fix typo.
15951
15952 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
15953
15954 * image-mode.el (image-toggle-display-image): Signal an error if
15955 not in Image mode.
15956 (image-transform-mode, image-transform-resize)
15957 (image-transform-set-rotation): Doc fix.
15958 (image-transform-set-resize): Delete.
15959 (image-transform-set-scale, image-transform-fit-to-height)
15960 (image-transform-fit-to-width): Handle image-toggle-display-image
15961 and image-transform-resize directly.
15962
15963 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
15964
15965 * doc-view.el (doc-view-fit-width-to-window)
15966 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
15967 New functions for fitting the shown image to the Emacs window size.
15968 (doc-view-mode-map): Add bindings for the new functions.
15969
15970 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
15971
15972 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
15973 Fix typo in docstring.
15974
15975 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15976
15977 * files.el (file-size-human-readable): Produce one digit after
15978 decimal, like "ls -lh" does.
15979
15980 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
15981 the file size representation.
15982
15983 * simple.el (list-processes): If async subprocesses are not
15984 available, error out with a clear error message.
15985
15986 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
15987
15988 * help.el (help-form-show): New function, to be called from C.
15989 Put help-form output in a buffer named differently than *Help*.
15990
15991 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15992
15993 * files.el (file-size-human-readable): New function.
15994
15995 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
15996 computing the representation inline. Don't require `cl'.
15997
15998 2011-04-08 Glenn Morris <rgm@gnu.org>
15999
16000 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
16001
16002 * net/browse-url.el (browse-url-firefox):
16003 Test system-type, not system-configuration.
16004
16005 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
16006 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
16007 Use log-edit-empty-buffer-p. (Bug#7598)
16008
16009 * net/rlogin.el (rlogin-process-connection-type): Simplify.
16010 (rlogin-mode-map): Initialize in the defvar.
16011 (rlogin): Use ignore-errors.
16012
16013 * replace.el (occur-mode-map): Some fixes for menu items.
16014
16015 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
16016
16017 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
16018
16019 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
16020
16021 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
16022 issuing unused warnings.
16023
16024 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
16025 macro directly.
16026
16027 * simple.el: Lisp reimplement of list-processes. Based on an
16028 earlier reimplementation by Leo Liu, but using tabulated-list.el.
16029 (process-menu-mode): New major mode.
16030 (list-processes--refresh, list-processes):
16031 (process-menu-visit-buffer): New functions.
16032
16033 * files.el (save-buffers-kill-emacs): Don't assume any return
16034 value of list-processes, which is undocumented anyway.
16035
16036 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
16037
16038 * emacs-lisp/tabulated-list.el: New file.
16039
16040 * emacs-lisp/package.el: Use Tabulated List mode.
16041 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
16042 (package-menu-mode): Derive from tabulated-list-mode. Set up the
16043 table format using Tabulated List mode variables.
16044 (package--push): New macro, replacing package-list-maybe-add.
16045 (package-menu--generate): Use package--push. Renamed from
16046 package--generate-package-list.
16047 (package-menu-refresh, list-packages): Use it.
16048 (package-menu--print-info): Rename from package-print-package.
16049 Return insertion data instead of inserting it directly.
16050 (package-menu-describe-package, package-menu-execute):
16051 Use tabulated-list-get-id.
16052 (package-menu-mark-delete, package-menu-mark-install)
16053 (package-menu-mark-unmark, package-menu-backup-unmark)
16054 (package-menu-mark-obsolete-for-deletion):
16055 Use tabulated-list-put-tag.
16056 (package--list-packages, package-menu-revert)
16057 (package-menu-get-package, package-menu-get-version)
16058 (package-menu-sort-by-column): Functions deleted.
16059 (package-menu-package-list, package-menu-sort-key): Vars deleted.
16060 (package-menu--status-predicate, package-menu--version-predicate)
16061 (package-menu--name-predicate)
16062 (package-menu--description-predicate): Handle arguments in the
16063 Tabulated List format.
16064 (package-list-packages-no-fetch): Call list-packages.
16065
16066 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
16067
16068 * files.el (after-find-file-from-revert-buffer): Remove variable.
16069 (after-find-file): Don't bind it.
16070 (revert-buffer-in-progress-p): New variable.
16071 (revert-buffer): Bind it.
16072 Pass nil for `after-find-file-from-revert-buffer'.
16073
16074 * saveplace.el (save-place-find-file-hook): Use new variable
16075 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
16076
16077 2011-04-06 Glenn Morris <rgm@gnu.org>
16078
16079 * Makefile.in (AUTOGEN_VCS): New variable.
16080 (autoloads): Use $AUTOGEN_VCS.
16081
16082 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
16083 * calendar/calendar.el (calendar-mode-map):
16084 Check for toolkit scroll bars. (Bug#8305)
16085
16086 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
16087
16088 * minibuffer.el (completion-in-region--postch)
16089 (completion-in-region-mode): Remove unnecessary messages.
16090
16091 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
16092
16093 * font-lock.el (font-lock-refresh-defaults):
16094 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
16095 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
16096
16097 * info.el (Info-directory-list, Info-read-node-name-2)
16098 (Info-split-parameter-string): Doc fixes.
16099 (Info-virtual-nodes): Reflow docstring.
16100 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
16101 (Info-apropos-toc-nodes, info-finder, Info-get-token)
16102 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
16103 Fix typos in docstrings.
16104 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
16105 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
16106 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
16107 (Info-restore-desktop-buffer): Mark unused parameters.
16108 (Info-directory-find-file, Info-directory-find-node)
16109 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
16110 (Info-virtual-index-find-node, Info-apropos-find-file)
16111 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
16112 Mark unused parameters; fix typos in docstrings.
16113 (Info-virtual-index): Remove unused local variable `nodename'.
16114
16115 2011-04-05 Deniz Dogan <deniz@dogan.se>
16116
16117 * net/rcirc.el: Update my e-mail address.
16118 (rcirc-mode-map): Remove M-o binding.
16119
16120 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
16121
16122 * startup.el (command-line): Save the cursor's theme-face
16123 directly, instead of using face-override-spec.
16124
16125 * custom.el (load-theme): Minor optimization in assigning faces.
16126
16127 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
16128
16129 * help-fns.el (describe-variable): Complete all variables having
16130 documentation, including keywords.
16131 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
16132
16133 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
16134
16135 Convert to lexical-binding.
16136
16137 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
16138 (bs--get-marked-string, bs--get-modified-string)
16139 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
16140 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
16141 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
16142
16143 * ehelp.el (electric-help-execute-extended)
16144 (electric-help-ctrl-x-prefix):
16145 * hexl.el (hexl-revert-buffer-function):
16146 * linum.el (linum-after-change, linum-after-scroll):
16147 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
16148
16149 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
16150
16151 2011-04-04 Daiki Ueno <ueno@unixuser.org>
16152
16153 * epa-dired.el:
16154 * epa-mail.el:
16155 * epa-hook.el:
16156 * epa-file.el:
16157 * epa.el:
16158 * epg.el: Use lexical binding.
16159
16160 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
16161
16162 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
16163
16164 * textmodes/flyspell.el (flyspell-word): Recognize default
16165 dictionary case for flyspell-mark-duplications-exceptions.
16166 Use regexp matching for languages.
16167 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
16168 default dictionary (Bug#7926).
16169
16170 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
16171
16172 * emacs-lisp/package.el (package--with-work-buffer):
16173 Recognize https URLs.
16174
16175 * net/network-stream.el: Move from gnus/proto-stream.el.
16176 Change prefix to network-stream throughout.
16177 (open-protocol-stream): Merge into open-network-stream, leaving
16178 open-protocol-stream as an alias. Handle nil BUFFER args.
16179
16180 * subr.el (open-network-stream): Move to net/network-stream.el.
16181
16182 2011-04-02 Glenn Morris <rgm@gnu.org>
16183
16184 * find-dired.el (find-exec-terminator): New option.
16185 (find-ls-option): Test for -ls support.
16186 (find-ls-subdir-switches): Test for -b in find-ls-option.
16187 (find-dired, find-grep-dired): Doc fixes.
16188 (find-dired): Use find-exec-terminator.
16189
16190 * find-dired.el (find-ls-option, find-ls-subdir-switches)
16191 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
16192 (find-name-arg): Remove purecopy.
16193
16194 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
16195 (grep-compute-defaults): Check for `-exec COMMAND +' support.
16196 Set grep-find-use-xargs, grep-find-command, and grep-find-template
16197 accordingly. Don't add the null-device if not needed.
16198
16199 * files.el (save-some-buffers): Doc fix.
16200
16201 2011-04-02 Eli Zaretskii <eliz@gnu.org>
16202
16203 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
16204
16205 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
16206
16207 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
16208 Use `dolist' rather than `mapcar'.
16209
16210 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16211
16212 Add lexical binding.
16213
16214 * subr.el (apply-partially): Use new closures rather than CL.
16215 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
16216 (dolist, dotimes): Use slightly different expansion for lexical code.
16217 (functionp): Move to C.
16218 (letrec): New macro.
16219 (with-wrapper-hook): Use it and apply-partially instead of CL.
16220 (eval-after-load): Preserve lexical-binding.
16221 (save-window-excursion, with-output-to-temp-buffer): Turn them
16222 into macros.
16223
16224 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
16225
16226 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
16227 than the arglist.
16228 (help-add-fundoc-usage): Don't add `Not documented'.
16229 (help-function-arglist): Handle closures, subroutines, and new
16230 byte-code-functions.
16231 (help-make-usage): Remove leading underscores.
16232 (describe-function-1): Handle closures.
16233 (describe-variable): Use special-variable-p for completion.
16234
16235 * files.el (lexical-binding): Declare safe.
16236
16237 * emacs-lisp/pcase.el: Don't use destructuring-bind.
16238 (pcase--memoize): Rename from pcase-memoize. Change weakness.
16239 (pcase): Add `let' pattern.
16240 Change memoization so it actually works.
16241 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
16242 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
16243 <let>: New case.
16244
16245 * emacs-lisp/macroexp.el: Use lexical binding.
16246 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
16247 Don't convert ' to #' without checking that it's indeed quoting
16248 a lambda.
16249
16250 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
16251 Use eval-sexp-add-defvars.
16252 (eval-sexp-add-defvars): New fun.
16253
16254 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
16255
16256 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
16257 Don't autoload.
16258 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
16259 than the internal `byte-compile-lambda'.
16260 (defmethod): Don't hide code under quotes.
16261 (eieio-defmethod): New `code' argument.
16262
16263 * emacs-lisp/eieio-comp.el: Remove.
16264
16265 * emacs-lisp/edebug.el (edebug-eval-defun)
16266 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
16267 (edebug-toggle): Avoid `eval'.
16268
16269 * emacs-lisp/disass.el (disassemble-internal): Handle new
16270 `closure' objects.
16271 (disassemble-1): Handle new byte codes.
16272
16273 * emacs-lisp/cl.el (pushnew): Silence warning.
16274
16275 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
16276 (cl-byte-compile-throw): Remove.
16277 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
16278
16279 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
16280 closures.
16281
16282 * emacs-lisp/cconv.el: New file.
16283
16284 * emacs-lisp/bytecomp.el: Use lexical binding instead of
16285 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
16286 (byte-compile-initial-macro-environment):
16287 Handle declare-function here.
16288 (byte-compile--lexical-environment): New var.
16289 (byte-stack-ref, byte-stack-set, byte-discardN)
16290 (byte-discardN-preserve-tos): New lap codes.
16291 (byte-interactive-p): Don't use any more.
16292 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
16293 New macros.
16294 (byte-compile-lapcode): Use them and handle new lap codes.
16295 (byte-compile-obsolete): Remove.
16296 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
16297 (byte-compile-arglist-warn): Check late def of inlinable funs.
16298 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
16299 since they should have been expanded by now.
16300 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
16301 (byte-compile-from-buffer): Remove unused second arg.
16302 (byte-compile-preprocess): New function.
16303 (byte-compile-toplevel-file-form): New function to distinguish
16304 file-form calls from outside from file-form calls from hunk-handlers.
16305 (byte-compile-file-form): Simplify.
16306 (byte-compile-file-form-defsubst): Remove.
16307 (byte-compile-file-form-defmumble): Simplify now that
16308 byte-compile-lambda always returns a byte-code-function.
16309 (byte-compile): Preprocess.
16310 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
16311 Remove, not used any more.
16312 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
16313 (byte-compile-make-args-desc): New funs.
16314 (byte-compile-lambda): Handle lexical functions. Always return
16315 a byte-code-function.
16316 (byte-compile-reserved-constants): New var, to make up room for
16317 closed-over variables.
16318 (byte-compile-constants-vector): Obey it.
16319 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
16320 (byte-compile-macroexpand-declare-function): New function.
16321 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
16322 byte-code-functions.
16323 (byte-compile-form): Check obsolescence here.
16324 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
16325 (byte-compile-variable-ref): Remove.
16326 (byte-compile-dynamic-variable-op): New fun.
16327 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
16328 (byte-compile-variable-set): New funs.
16329 (byte-compile-discard): Add 2 args.
16330 (byte-compile-stack-ref, byte-compile-stack-set)
16331 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
16332 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
16333 macroexpand-all instead.
16334 (byte-compile-quote-form): Remove.
16335 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
16336 (byte-compile-bind, byte-compile-unbind): New funs.
16337 (byte-compile-let): Handle let* and lexical binding.
16338 (byte-compile-let*): Remove.
16339 (byte-compile-catch, byte-compile-unwind-protect)
16340 (byte-compile-track-mouse, byte-compile-condition-case):
16341 Handle a new :fun-body form, used for lexical scoping.
16342 (byte-compile-save-window-excursion)
16343 (byte-compile-with-output-to-temp-buffer): Remove.
16344 (byte-compile-defun): Simplify.
16345 (byte-compile-stack-adjustment): New fun.
16346 (byte-compile-out): Use it.
16347 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
16348
16349 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
16350 handler any more.
16351
16352 * emacs-lisp/byte-opt.el: Use lexical binding.
16353 (byte-inline-lapcode): Remove (to bytecomp).
16354 (byte-compile-inline-expand): Pay attention to inlining to/from
16355 lexically bound code.
16356 (byte-compile-unfold-lambda): Don't handle byte-code-functions
16357 any more.
16358 (byte-optimize-form-code-walker): Don't handle save-window-excursion
16359 any more and don't call compiler-macros.
16360 (byte-compile-splice-in-already-compiled-code): Remove.
16361 (byte-code): Don't inline any more.
16362 (disassemble-offset): Receive `bytes' as argument rather than via
16363 dynamic scoping.
16364 (byte-compile-tag-number): Declare before first use.
16365 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
16366 `return' even if make-spliceable.
16367 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
16368 obsolete interactive-p.
16369 (byte-optimize-lapcode): Optimize new lap-codes.
16370 Don't trip up on new form of `byte-constant' lap code.
16371
16372 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
16373
16374 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
16375
16376 * custom.el (custom-initialize-default, custom-declare-variable):
16377 Use `defvar'.
16378
16379 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
16380 New variables.
16381 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
16382 (COMPILE_FIRST): Add macroexp and cconv.
16383 * makefile.w32-in: Mirror changes in Makefile.in.
16384
16385 * vc/cvs-status.el:
16386 * vc/diff-mode.el:
16387 * vc/log-edit.el:
16388 * vc/log-view.el:
16389 * vc/smerge-mode.el:
16390 * textmodes/bibtex-style.el:
16391 * textmodes/css-mode.el:
16392 * startup.el:
16393 * uniquify.el:
16394 * minibuffer.el:
16395 * newcomment.el:
16396 * reveal.el:
16397 * server.el:
16398 * mpc.el:
16399 * emacs-lisp/smie.el:
16400 * doc-view.el:
16401 * dired.el:
16402 * abbrev.el: Use lexical binding.
16403
16404 2011-04-01 Eli Zaretskii <eliz@gnu.org>
16405
16406 * info.el (info-display-manual): New function.
16407
16408 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16409
16410 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
16411
16412 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
16413
16414 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
16415 an entry for that server in rcirc-authinfo. (Bug#8385)
16416
16417 2011-03-31 Glenn Morris <rgm@gnu.org>
16418
16419 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
16420
16421 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
16422
16423 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
16424
16425 * progmodes/python.el (python-default-interpreter)
16426 (python-python-command-args, python-jython-command-args)
16427 (python-which-shell, python-which-args, python-which-bufname)
16428 (python-file-queue, python-comint-output-filter-function)
16429 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
16430 variables and functions.
16431
16432 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16433
16434 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
16435 (completion-in-region-mode): New minor mode.
16436 (completion-in-region): Use it.
16437 (completion-in-region--data, completion-in-region-mode-map): New vars.
16438 (completion-in-region--postch): New function.
16439 (completion--capf-misbehave-funs, completion--capf-safe-funs):
16440 New vars.
16441 (completion--capf-wrapper): New function.
16442 (completion-at-point): Use it to track well-behavedness of
16443 hook functions.
16444 (completion-help-at-point): New command.
16445
16446 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
16447
16448 * vc/add-log.el (add-change-log-entry): Don't use whitespace
16449 syntax class to search for whitespace on a single line
16450 (Message-ID: <4D938140.4030905@redhat.com>).
16451
16452 2011-03-30 Leo Liu <sdl.web@gmail.com>
16453
16454 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
16455 New commands.
16456 (edit-abbrevs-map): Bind them here.
16457 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
16458
16459 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
16460
16461 * allout.el (allout-hide-by-annotation, allout-flag-region):
16462 Reduce possibility of overlay leakage by making them volatile.
16463
16464 * allout-widgets.el (allout-widgets-tally): Define as nil so the
16465 hash is not shared between buffers. Mode initialization is
16466 responsible for giving it a useful starting value.
16467 (allout-item-span): Reduce possibility of overlay leakage by
16468 making them volatile.
16469 (allout-widgets-count-buttons-in-region): Add diagnostic function
16470 for tracking down button overlay leaks.
16471
16472 2011-03-29 Leo Liu <sdl.web@gmail.com>
16473
16474 * ido.el (ido-read-internal): Use the default history var
16475 minibuffer-history if no HISTORY is specified.
16476
16477 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
16478
16479 * net/imap.el (imap-shell-open, imap-process-connection-type):
16480 Use imap-process-connection-type for 'shell' streams as well as
16481 Kerberos, SSL, other subprocesses.
16482
16483 2011-03-28 Leo Liu <sdl.web@gmail.com>
16484
16485 * abbrev.el (abbrev-table-empty-p): New function.
16486 (prepare-abbrev-list-buffer): Place empty abbrev tables after
16487 nonempty ones. (Bug#5937)
16488
16489 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16490
16491 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
16492
16493 2011-03-27 Leo Liu <sdl.web@gmail.com>
16494
16495 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
16496 for foreground and background colors.
16497 (ansi-color-make-color-map): Adapt.
16498
16499 2011-03-25 Leo Liu <sdl.web@gmail.com>
16500
16501 * midnight.el (midnight-time-float): Remove. Note it calculates
16502 the microsecond component incorrectly and seconds-to-time does the
16503 same job.
16504 Remove redundant (require 'timer).
16505
16506 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
16507 (ido-completions): Remove unused arguments. (Bug#8329)
16508
16509 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16510
16511 * minibuffer.el (completion--flush-all-sorted-completions):
16512 Remove itself from hook.
16513 (completion-at-point): Let the functions perform the completion
16514 immediately and return nil or t.
16515 * comint.el (comint-dynamic-complete-functions): Now identical to
16516 completion-at-point-functions.
16517 (comint-dynamic-list-input-ring): Remove unused var `index'.
16518 (comint--match-partial-filename, comint--unquote&expand-filename):
16519 New funs, split from comint-match-partial-filename.
16520 (comint-dynamic-complete): Use completion-at-point.
16521 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
16522
16523 2011-03-24 Drew Adams <drew.adams@oracle.com>
16524
16525 * thingatpt.el: Support `defun'.
16526
16527 2011-03-23 Leo Liu <sdl.web@gmail.com>
16528
16529 * abbrevlist.el: Move to obsolete/abbrevlist.el.
16530
16531 * help-mode.el (help-mode-finish): Tweak regexp.
16532
16533 2011-03-23 Glenn Morris <rgm@gnu.org>
16534
16535 * eshell/esh-opt.el (eshell-eval-using-options):
16536 Do not bind unused local variable `eshell-option-stub'.
16537
16538 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
16539
16540 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16541
16542 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
16543 keymap variable in `with-no-warnings' to avoid a warning when the
16544 keymap has been already `defconst'ed.
16545
16546 2011-03-22 Leo Liu <sdl.web@gmail.com>
16547
16548 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
16549 encode all chars in abbrevs; otherwise use emacs-mule or
16550 utf-8-emacs. (Bug#8308)
16551
16552 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16553
16554 * simple.el (backward-delete-char-untabify):
16555 Avoid warning about using `delete-backward-char'.
16556
16557 * image.el (image-type-file-name-regexps): Make it variable.
16558 `imagemagick-register-types' modifies it, and the user may want
16559 to add new extensions for known image types.
16560 (imagemagick-register-types): Throw error if not using ImageMagick.
16561
16562 2011-03-22 Leo Liu <sdl.web@gmail.com>
16563
16564 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
16565 located before rcirc-prompt-end-marker.
16566 (rcirc-complete): Error if point is not after rcirc prompt.
16567 Handle the case when table is nil.
16568 (rcirc-user-authenticated): Define to fix compiler warning.
16569
16570 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
16571
16572 * custom.el (custom--inhibit-theme-enable): Make it affect only
16573 custom-theme-set-variables and custom-theme-set-faces.
16574 (provide-theme): Ignore custom--inhibit-theme-enable.
16575 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
16576 (custom-enabling-themes): Delete variable.
16577 (enable-theme): Accept only loaded themes as arguments.
16578 Ignore the special custom-enabled-themes variable.
16579 (custom-enabled-themes): Forbid themes from setting this.
16580 Eliminate use of custom-enabling-themes.
16581 (custom-push-theme): Quote "changed" custom var entry.
16582
16583 2011-03-21 Leo Liu <sdl.web@gmail.com>
16584
16585 * ido.el (ido-read-internal): Add ido-selected to history instead
16586 of user input.
16587
16588 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
16589
16590 * subr.el (deferred-action-list, deferred-action-function):
16591 Mark obsolete.
16592
16593 2011-03-21 Leo Liu <sdl.web@gmail.com>
16594
16595 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
16596 change on 2011-02-13 (bug#8309).
16597
16598 * minibuffer.el (read-file-name-function): Change default value.
16599 (read-file-name--defaults): Rename from read-file-name-defaults.
16600 (read-file-name-default): Rename from read-file-name.
16601 (read-file-name): Call read-file-name-function.
16602
16603 2011-03-21 Glenn Morris <rgm@gnu.org>
16604
16605 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
16606 Doc fixes.
16607
16608 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
16609
16610 * cus-theme.el: Add missing provide statement.
16611 (customize-create-theme): Extract theme value correctly.
16612 (custom-theme-visit-theme): Autoload.
16613 (customize-create-theme): Prompt before inserting default faces.
16614
16615 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
16616
16617 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
16618 units and musical notes.
16619
16620 2011-03-20 Leo Liu <sdl.web@gmail.com>
16621
16622 * ido.el (ido-read-internal): Use completing-read-default.
16623 (ido-completing-read): Fix compatibility with completing-read.
16624
16625 2011-03-20 Christian Ohler <ohler@gnu.org>
16626
16627 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
16628 (ert-delete-all-tests): Use `called-interactively-p' rather than
16629 `interactive-p'.
16630 (ert--make-xrefs-region): Respect END.
16631
16632 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
16633
16634 * dired-aux.el (dired-create-directory): Signal an error if the
16635 directory already exists (Bug#8246).
16636
16637 * facemenu.el (list-colors-display): Call list-faces-display
16638 inside with-help-window.
16639 (list-colors-print): Use display property to align the final
16640 column, instead of checking window-width.
16641
16642 2011-03-19 Eli Zaretskii <eliz@gnu.org>
16643
16644 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
16645 windows-nt systems.
16646 (emerge-protect-metachars): Quote correctly for ms-dos and
16647 windows-nt systems.
16648
16649 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
16650
16651 * info.el (info-initialize): Replace all uses of `:' with
16652 path-separator for compatibility with non-Unix systems.
16653 Cache quoting of path-separator. (Bug#8258)
16654
16655 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
16656
16657 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
16658 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
16659 (mouse-avoidance-mode): Fix typos in docstrings.
16660
16661 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
16662
16663 * startup.el (package-subdirectory-regexp): Move from package.el.
16664 Omit \\` and \\', and let callers add them.
16665
16666 * emacs-lisp/package.el (package-strip-version)
16667 (package-load-all-descriptors): Add \\` and \\' to
16668 package-subdirectory-regexp before using it.
16669 (package-untar-buffer): New arg DIR; ensure that file untars only
16670 into this expected directory. Remove superfluous delete-region.
16671 (package-unpack): Caller changed.
16672 (package-tar-file-info): Use package-subdirectory-regexp.
16673
16674 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16675
16676 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
16677 diff-mode-shared-map (bug#8284).
16678 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
16679
16680 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16681
16682 * calendar/time-date.el (format-seconds): Use assoc instead of
16683 assoc-string, since assoc-string doesn't exist in XEmacs.
16684
16685 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
16686
16687 * custom.el (custom-known-themes): Reflow docstring.
16688 (custom-theme-load-path): Fix typo in docstring.
16689 (load-theme): Fix typo in error message.
16690 (custom-available-themes, custom-variable-theme-value):
16691 Use `let', not `let*'.
16692
16693 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16694
16695 * calc/README: Mention inclusion of musical notes.
16696
16697 * calc/calc-units.el (calc-lu-quant): Rename from
16698 `calc-logunits-quantity'.
16699 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
16700 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
16701 (calc-db): Rename from `calc-dblevel'.
16702 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
16703 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
16704 (calc-np): Rename from `calc-nplevel'.
16705 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
16706 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
16707 (calc-lu-plus): Rename from `calc-logunits-add'.
16708 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
16709 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
16710 (calc-lu-minus): Rename from `calc-logunits-sub'.
16711 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
16712 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
16713 (calc-lu-times): Rename from `calc-logunits-mul'.
16714 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
16715 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
16716 (calc-lu-divide): Rename from `calc-logunits-div'.
16717 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
16718 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
16719
16720 * calc/calc-ext.el (calc-init-extensions): Update the names of the
16721 functions being autoloaded.
16722
16723 * calc/calc.el (calc-lu-power-reference): Rename from
16724 `calc-logunits-power-reference'.
16725 (calc-lu-field-reference): Rename from
16726 `calc-logunits-field-reference'.
16727
16728 * calc/calc-help.el (calc-l-prefix-help):
16729 Mention musical note functions.
16730
16731 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
16732
16733 * minibuffer.el (completion-all-sorted-completions):
16734 Use :completion-cycle-penalty text property if present.
16735
16736 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
16737
16738 * allout.el (allout-yank-processing): Adjust for new rebulleting
16739 regime so bullet being yanked is used without prompting the user
16740 for a choice.
16741
16742 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
16743
16744 * startup.el (command-line): Warn the user that _emacs is deprecated.
16745
16746 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
16747
16748 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
16749 (delphi-verbose, delphi-comment-face, delphi-string-face)
16750 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
16751 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
16752 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
16753 (delphi-new-comment-line, delphi-font-lock-defaults)
16754 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
16755 Fix typos in docstrings.
16756
16757 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
16758
16759 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
16760 Invert the roles of character and string values for INSTEAD, so a
16761 string is used for the more common case of a defaulting prompt.
16762
16763 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16764
16765 * progmodes/ruby-mode.el (ruby-backward-sexp):
16766 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
16767 * play/gamegrid.el (gamegrid-make-face):
16768 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
16769 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
16770 * notifications.el (notifications-notify):
16771 * net/xesam.el (xesam-search-engines):
16772 * net/quickurl.el (quickurl-list-insert):
16773 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
16774
16775 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
16776
16777 * startup.el (command-line): Update package subdirectory regexp.
16778
16779 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16780
16781 * allout.el (allout-abbreviate-flattened-numbering)
16782 (allout-mode-deactivate-hook): Fix up obsolescence "date".
16783
16784 * subr.el (read-char-choice): Only show the cursor after the prompt,
16785 not after the answer.
16786
16787 2011-03-15 Kevin Ryde <user42@zip.com.au>
16788
16789 * help-fns.el (variable-at-point): Skip leading quotes, if any
16790 (bug#8253).
16791
16792 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16793
16794 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
16795 warning message.
16796
16797 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
16798
16799 * shell.el (shell): When called interactively, offer to change the
16800 shell file name on remote hosts.
16801
16802 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
16803
16804 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
16805 integration for LDAP parameters. The host, base, user or binddn,
16806 and secret tokens can be specified in a netrc file, for instance.
16807 This is optional because an `auth-source' parameter must be
16808 specified in the search attributes.
16809
16810 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
16811
16812 * help.el (describe-mode): Link to the mode's definition (bug#8185).
16813
16814 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16815
16816 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
16817 into declaration. Remove redundant and harmful binding.
16818
16819 2011-03-12 Eli Zaretskii <eliz@gnu.org>
16820
16821 * files.el (file-ownership-preserved-p): Pass `integer' as an
16822 explicit 2nd argument to `file-attributes'. If the file's owner
16823 is the Administrators group on Windows, and the current user is
16824 Administrator, consider that a match.
16825
16826 * server.el (server-ensure-safe-dir): Consider server directory
16827 safe on MS-Windows if its owner is the Administrators group while
16828 the current Emacs user is Administrator. Use `=' to compare
16829 numerical UIDs, since they could be integers or floats.
16830
16831 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
16832
16833 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
16834
16835 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
16836
16837 Sync with Tramp 2.2.1.
16838
16839 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
16840
16841 * net/trampver.el: Update release number.
16842
16843 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16844
16845 * progmodes/compile.el (compilation--previous-directory): Fix up
16846 various nil/dead-marker mismatches (bug#8014).
16847 (compilation-directory-properties, compilation-error-properties):
16848 Don't call it at a position past the one we're about to change.
16849
16850 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
16851 Disable obsolescence warnings in the file that declares it.
16852
16853 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
16854
16855 * allout-widgets.el (allout-widgets-tally):
16856 Initialize allout-widgets-tally as a hash table rather than nil to
16857 prevent mode-line redisplay warnings. Also, clarify the module
16858 description and fix a comment typo.
16859
16860 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
16861
16862 * help-fns.el (describe-variable): Don't complete keywords.
16863 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
16864
16865 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
16866
16867 * emacs-lisp/package.el (package-version-join): Impose a standard
16868 string representation for pre/alpha/beta version lists.
16869 (package-unpack-single): Standardize the directory name by passing
16870 it through package-version-join.
16871 (package-strip-rcs-id): Accept any version string that does not
16872 signal an error in version-to-list.
16873
16874 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
16875
16876 * simple.el (delete-trailing-whitespace): Return nil for the
16877 benefit of `write-file-functions'.
16878
16879 2011-03-10 Glenn Morris <rgm@gnu.org>
16880
16881 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
16882
16883 * vc/vc-git.el (vc-git-program): New option.
16884 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
16885 (vc-git--call): Use it.
16886
16887 * eshell/esh-util.el (eshell-condition-case): Doc fix.
16888
16889 * cus-edit.el (Custom-newline): If no button at point, look
16890 for a subgroup button at start-of-line. (Bug#2298)
16891
16892 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
16893
16894 2011-03-10 Julien Danjou <julien@danjou.info>
16895
16896 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
16897 `cursor-type' is nil.
16898
16899 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
16900
16901 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
16902
16903 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
16904
16905 * allout.el: Change so yank of distinctive-bullet items
16906 preserves the existing header prefix, rebulleting it if necessary,
16907 rather than replacing it. This is necessary for proper operation
16908 of cooperative addons like allout-widgets.
16909 (allout-make-topic-prefix, allout-rebullet-heading):
16910 Change SOLICIT arg to INSTEAD, and interpret additionally a string
16911 value as alternate bullet to be used, instead of prompting the user
16912 for a bullet character.
16913
16914 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
16915
16916 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16917 Do not use `tramp-file-name-port', because this returns also
16918 `tramp-default-port'.
16919
16920 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16921
16922 * net/rcirc.el (rcirc-handler-001): Remove useless
16923 with-rcirc-process-buffer.
16924 (rcirc-check-auth-status): Swap arguments to string-match.
16925
16926 2011-03-09 Glenn Morris <rgm@gnu.org>
16927
16928 * shell.el (shell-mode):
16929 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
16930
16931 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
16932 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
16933
16934 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16935
16936 * emacs-lisp/package.el (package-refresh-contents)
16937 (package-menu-execute): Use condition-case-no-debug.
16938
16939 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
16940
16941 * simple.el (shell-command-to-string): Use `process-file'.
16942
16943 * emacs-lisp/package.el (package-tar-file-info): Handle also
16944 remote files.
16945
16946 * emacs-lisp/package-x.el (package-upload-buffer-internal):
16947 Use `equal' for upload base check.
16948
16949 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
16950
16951 * textmodes/texinfo.el (texinfo-environments):
16952 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
16953
16954 2011-03-08 Glenn Morris <rgm@gnu.org>
16955
16956 * cus-start.el (cursor-in-non-selected-windows):
16957 Fix :set quoting oddness. (Bug#8192)
16958
16959 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
16960 in some setf expressions. (Bug#2159)
16961
16962 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16963
16964 * custom.el (custom-available-themes): Return themes in
16965 alphabetical order.
16966
16967 See ChangeLog.15 for earlier changes.
16968
16969 ;; Local Variables:
16970 ;; coding: utf-8
16971 ;; End:
16972
16973 Copyright (C) 2011-2012 Free Software Foundation, Inc.
16974
16975 This file is part of GNU Emacs.
16976
16977 GNU Emacs is free software: you can redistribute it and/or modify
16978 it under the terms of the GNU General Public License as published by
16979 the Free Software Foundation, either version 3 of the License, or
16980 (at your option) any later version.
16981
16982 GNU Emacs is distributed in the hope that it will be useful,
16983 but WITHOUT ANY WARRANTY; without even the implied warranty of
16984 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16985 GNU General Public License for more details.
16986
16987 You should have received a copy of the GNU General Public License
16988 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.