* lisp/vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
4
5 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
6
7 New faster Imenu implementation (bug#14058).
8 * progmodes/python.el:
9 (python-imenu-prev-index-position):
10 (python-imenu-format-item-label-function)
11 (python-imenu-format-parent-item-label-function)
12 (python-imenu-format-parent-item-jump-label-function):
13 New vars.
14 (python-imenu-format-item-label)
15 (python-imenu-format-parent-item-label)
16 (python-imenu-format-parent-item-jump-label)
17 (python-imenu--put-parent, python-imenu--build-tree)
18 (python-imenu-create-index, python-imenu-create-flat-index)
19 (python-util-popn): New functions.
20 (python-mode): Set imenu-create-index-function to
21 python-imenu-create-index.
22
23 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
24
25 * winner.el (winner-active-region): Use region-active-p, activate-mark
26 and deactivate-mark (bug#14225).
27
28 * simple.el (deactivate-mark): Don't inline it.
29
30 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
31
32 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
33
34 2013-04-18 Tassilo Horn <tsdh@gnu.org>
35
36 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
37 file extensions from the archive-mode entry in order to prefer
38 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
39
40 2013-04-18 Leo Liu <sdl.web@gmail.com>
41
42 * bindings.el (help-event-list): Add ?\?.
43
44 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
45
46 * subr.el (with-wrapper-hook): Declare obsolete.
47 * simple.el (filter-buffer-substring-function): New hook.
48 (filter-buffer-substring): Use it.
49 (filter-buffer-substring-functions): Mark obsolete.
50 * minibuffer.el (completion-in-region-function): New hook.
51 (completion-in-region): Use it.
52 (completion-in-region-functions): Mark obsolete.
53 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
54 * abbrev.el (abbrev-expand-function): New hook.
55 (expand-abbrev): Use it.
56 (abbrev-expand-functions): Mark obsolete.
57 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
58 and :filter-return.
59
60 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
61
62 * progmodes/python.el (python-nav--syntactically): Fix cornercases
63 and do not care about match data.
64
65 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
66
67 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
68 completion tables when completing error conditions and
69 `declare' arguments.
70 (lisp-complete-symbol, field-complete): Mark as obsolete.
71 (check-parens): Unmatched parens are user errors.
72 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
73
74 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
75
76 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
77 command changed buffer (ie. `flyspell-pre-buffer' is not current
78 buffer), which prevents making decisions based on invalid value of
79 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
80 cause an error when `flyspell-pre-point' was nil after switching
81 buffers.
82 (flyspell-post-command-hook): No longer needs to change buffers when
83 checking pre-word. While at it remove unnecessary progn.
84
85 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
86
87 * textmodes/ispell.el (ispell-add-per-file-word-list):
88 Fix `flyspell-correct-word-before-point' error when accepting
89 words and `coment-padding' is an integer by using
90 `comment-normalize-vars' (Bug #14214).
91
92 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
93
94 New defun movement commands.
95 * progmodes/python.el (python-nav--syntactically)
96 (python-nav--forward-defun, python-nav-backward-defun)
97 (python-nav-forward-defun): New functions.
98
99 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
100
101 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
102 (python-syntax-context): Use named compiler-macro for backwards
103 compatibility with Emacs 24.x.
104
105 2013-04-17 Leo Liu <sdl.web@gmail.com>
106
107 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
108 octave-hide-process-buffer.
109
110 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
111
112 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
113 (bug#14216).
114
115 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
116
117 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
118 Fix adjustment of offset when receiving incomplete responses from GDB
119 (bug#14129).
120
121 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
122
123 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
124 python-mode-abbrev-table.
125 (python-skeleton-define): Adjust accordingly.
126 (python-mode-abbrev-table): New table that inherits from it so that
127 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
128
129 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
130 (abbrev-symbol): Use it.
131 (abbrev--before-point): Use it since we already handle inheritance.
132
133 2013-04-16 Leo Liu <sdl.web@gmail.com>
134
135 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
136 binding to info-lookup-symbol.
137
138 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
139
140 * minibuffer.el (completion--twq-all):
141 * term/ns-win.el (ns-initialize-window-system):
142 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
143
144 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
145
146 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
147 global bindings.
148
149 * doc-view.el (doc-view-start-process): Handle url-handler directories.
150
151 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
152
153 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
154 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
155 to nil.
156 (ruby-end-of-defun): Remove the unused arg, change the docstring
157 to reflect that this function is only used as the value of
158 `end-of-defun-function'.
159 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
160 to reflect an earlier change that beginning/end-of-defun functions
161 jump between methods in a class definition, as well as top-level
162 functions.
163
164 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
165
166 * minibuffer.el (minibuffer-complete): Don't just scroll
167 a *Completions* that's been iconified.
168 (minibuffer-force-complete): Make sure repetitions do cycle when going
169 through completion-in-region -> minibuffer-complete.
170
171 2013-04-15 Alan Mackenzie <acm@muc.de>
172
173 Correct the placement of c-cpp-delimiters when there're #s not at
174 col 0.
175
176 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
177 place a submatch around the #.
178 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
179 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
180 on the #, not BOL.
181
182 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 * emacs-lisp/nadvice.el: Properly test names when adding advice.
185 (advice--member-p): New arg `name'.
186 (advice--add-function, advice-member-p): Use it (bug#14202).
187
188 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
189
190 Reformulate java imenu-generic-expression.
191 The old expression contained ill formed regexps.
192
193 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
194 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
195 (cc-imenu-java-method-arg-regexp): New defconsts.
196 (cc-imenu-java-build-type-args-regex): New defun.
197 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
198 handling of spaces in the regexp.
199
200 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
201
202 * textmodes/ispell.el (ispell-command-loop): Remove
203 flyspell highlight of a word when ispell accepts it (bug #14178).
204
205 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
206
207 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
208 uses code from the previous `ange-ftp-run-real-handler'.
209 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
210 only in case that function exist. This is needed for proper
211 unloading of Tramp.
212
213 2013-04-15 Tassilo Horn <tsdh@gnu.org>
214
215 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
216
217 * textmodes/reftex.el (reftex-compile-variables): Use it.
218
219 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
220
221 * files.el (normal-mode): Only use default major-mode if no other mode
222 was specified.
223
224 * emacs-lisp/trace.el (trace-values): New function.
225
226 * files.el: Allow : in local variables (bug#14089).
227 (hack-local-variable-regexp): New var.
228 (hack-local-variables-prop-line, hack-local-variables): Use it.
229
230 2013-04-13 Roland Winkler <winkler@gnu.org>
231
232 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
233 data before it gets modified by bibtex-beginning-of-entry.
234
235 2013-04-13 Roland Winkler <winkler@gnu.org>
236
237 * textmodes/bibtex.el (bibtex-url): Doc fix.
238
239 2013-04-13 Roland Winkler <winkler@gnu.org>
240
241 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
242 does not visit a BibTeX file, exclude it from the list of buffers
243 returned by bibtex-initialize.
244
245 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
246
247 * window.el (split-window): Remove interactive form, since as a
248 command this function is a special case of split-window-below.
249 Correct doc string.
250
251 2013-04-12 Roland Winkler <winkler@gnu.org>
252
253 * faces.el (read-face-name): Do not override value of arg default.
254 Allow single faces and strings as default values. Remove those
255 elements from return value that are not faces.
256 (describe-face): Simplify.
257 (face-at-point): New optional args thing and multiple so that this
258 function can provide the same functionality previously provided by
259 read-face-name.
260 (make-face-bold, make-face-unbold, make-face-italic)
261 (make-face-unitalic, make-face-bold-italic, invert-face)
262 (modify-face, read-face-and-attribute): Use face-at-point.
263
264 * cus-edit.el (customize-face, customize-face-other-window)
265 * cus-theme.el (custom-theme-add-face)
266 * face-remap.el (buffer-face-set)
267 * facemenu.el (facemenu-set-face): Use face-at-point.
268
269 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
270
271 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
272
273 2013-04-10 Tassilo Horn <tsdh@gnu.org>
274
275 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
276 off leading { and trailing } from field values.
277
278 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
279
280 * emacs-lisp/timer.el (timer--check): New function.
281 (timer--time, timer-set-function, timer-event-handler): Use it.
282 (timer-set-idle-time): Simplify.
283 (timer--activate): CSE.
284 (timer-event-handler): Give more info in error message.
285 (internal-timer-start-idle): New function, moved from C.
286
287 * mpc.el (mpc-proc): Add `restart' argument.
288 (mpc-proc-cmd): Use it.
289 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
290 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
291 less often.
292
293 2013-04-10 Masatake YAMATO <yamato@redhat.com>
294
295 * progmodes/sh-script.el: Implement `sh-mode' own
296 `add-log-current-defun-function' (bug#14112).
297 (sh-current-defun-name): New function.
298 (sh-mode): Use the function.
299
300 2013-04-09 Bastien Guerry <bzg@gnu.org>
301
302 * simple.el (choose-completion-string): Fix docstring (bug#14163).
303
304 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
305
306 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
307
308 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
309 timer (bug#14156).
310
311 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
312
313 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
314 declaration.
315
316 2013-04-07 Leo Liu <sdl.web@gmail.com>
317
318 * pcmpl-x.el: New file.
319
320 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
321
322 Do not set x-display-name until X connection is established.
323 This is needed to prevent from weird situation described at
324 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
325 * frame.el (make-frame): Set x-display-name after call to
326 window system initialization function, not before.
327 * term/x-win.el (x-initialize-window-system): Add optional
328 display argument and use it.
329 * term/w32-win.el (w32-initialize-window-system):
330 * term/ns-win.el (ns-initialize-window-system):
331 * term/pc-win.el (msdos-initialize-window-system):
332 Add compatible optional display argument.
333
334 2013-04-06 Eli Zaretskii <eliz@gnu.org>
335
336 * files.el (normal-backup-enable-predicate): On MS-Windows and
337 MS-DOS compare truenames of temporary-file-directory and of the
338 file, so that 8+3 aliases (usually found in $TEMP on Windows)
339 don't fail comparison by compare-strings. Also, compare file
340 names case-insensitively on MS-Windows and MS-DOS.
341
342 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
343
344 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
345 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
346
347 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
348
349 * whitespace.el (whitespace-color-on, whitespace-color-off):
350 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
351
352 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
353
354 * ispell.el (ispell-set-spellchecker-params):
355 Really set `ispell-args' for all equivs.
356
357 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
358
359 * ido.el (ido-completions): Use extra elements of ido-decorations
360 (bug#14143).
361 (ido-decorations): Update docstring.
362
363 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
364
365 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
366 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
367 nil during initialization, in order not to miss changes since the
368 file was opened. (Bug#14140)
369
370 2013-04-05 Leo Liu <sdl.web@gmail.com>
371
372 * kmacro.el (kmacro-call-macro): Fix bug#14135.
373
374 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
375
376 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
377
378 2013-04-04 Glenn Morris <rgm@gnu.org>
379
380 * electric.el (electric-pair-inhibit-predicate): Add :version.
381
382 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
385 when a package is required several times (bug#14082).
386
387 2013-04-04 Roland Winkler <winkler@gnu.org>
388
389 * faces.el (read-face-name): Behave as promised by the docstring.
390 Assume that arg default is a list of faces.
391 (describe-face): Call read-face-name with list of default faces.
392
393 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
394
395 * bookmark.el: Fix deletion of bookmarks (bug#13972).
396 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
397 (bookmark-bmenu-execute-deletions): Only skip first line if it's
398 the header.
399 (bookmark-exit-hook-internal): Save even if list is empty.
400
401 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
402
403 * emacs-lisp/package.el (package-pinned-packages): New var.
404 (package--add-to-archive-contents): Obey it (bug#14118).
405
406 2013-04-03 Alan Mackenzie <acm@muc.de>
407
408 Handle `parse-partial-sexp' landing inside a comment opener
409 (Bug#13244). Also adapt to the new values of element 7 of a parse
410 state.
411
412 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
413 parameter `not-in-delimiter'. Handle being inside comment opener.
414 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
415 character in case we're typing a '*' after a '/'.
416 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
417 instead by passing the parameter to c-state-pp-to-literal.
418
419 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
420 for elt. 7 of a parse state.
421
422 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
423
424 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
425 * international/latin1-disp.el, international/mule-util.el:
426 * language/cyril-util.el, language/european.el, language/ind-util.el:
427 * language/lao-util.el, language/thai.el, language/tibet-util.el:
428 * language/tibetan.el, language/viet-util.el:
429 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
430
431 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
432
433 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
434 (electric-pair-post-self-insert-function): Use it.
435 (electric-pair-default-inhibit): New function, extracted from
436 electric-pair-post-self-insert-function.
437
438 2013-03-31 Roland Winkler <winkler@gnu.org>
439
440 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
441
442 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
443
444 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
445
446 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
447
448 Un-indent after "pass" and "return" statements (Bug#13888)
449 * progmodes/python.el (python-indent-block-enders): New var.
450 (python-indent-calculate-indentation): Use it.
451
452 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
453
454 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
455 defun. Defining it as defalias could introduce too eager
456 byte-compiler optimization. (Bug#14030)
457
458 2013-03-30 Chong Yidong <cyd@gnu.org>
459
460 * iswitchb.el (iswitchb-read-buffer): Fix typo.
461
462 2013-03-30 Leo Liu <sdl.web@gmail.com>
463
464 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
465 (kmacro-execute-from-register): Pass the keyboard macro to
466 kmacro-call-macro or repeating won't work correctly.
467
468 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
469
470 * progmodes/subword.el: Back to using `forward-symbol'.
471
472 * subr.el (forward-whitespace, forward-symbol)
473 (forward-same-syntax): Move from thingatpt.el.
474
475 2013-03-29 Leo Liu <sdl.web@gmail.com>
476
477 * kmacro.el (kmacro-to-register): New command.
478 (kmacro-execute-from-register): New function.
479 (kmacro-keymap): Bind to 'x'. (Bug#14071)
480
481 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
482
483 * mpc.el: Use defvar-local and setq-local.
484 (mpc--proc-connect): Connection failures are not bugs.
485 (mpc-mode-map): `follow-link' only applies to the buffer's content.
486 (mpc-volume-map): Bind to the up-events.
487
488 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
489
490 * progmodes/subword.el (superword-mode): Use `forward-sexp'
491 instead of `forward-symbol'.
492
493 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
494
495 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
496 (edebug--recursive-edit): Use it.
497 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
498 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
499
500 2013-03-28 Leo Liu <sdl.web@gmail.com>
501
502 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
503
504 2013-03-27 Eli Zaretskii <eliz@gnu.org>
505
506 * facemenu.el (list-colors-callback): New defvar.
507 (list-colors-redisplay): New function.
508 (list-colors-display): Install list-colors-redisplay as the
509 revert-buffer-function. (Bug#14063)
510
511 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
512
513 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
514 and suffixes don't overlap (bug#14061).
515
516 * case-table.el: Use lexical-binding.
517 (case-table-get-table): New function.
518 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
519
520 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
521
522 * progmodes/subword.el: Add `superword-mode' to do word motion
523 over symbol_words (parallels and leverages `subword-mode' which
524 does word motion inside MixedCaseWords).
525
526 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
527
528 * eshell/em-unix.el: Move su and sudo to...
529 * eshell/em-tramp.el: ...Eshell tramp module.
530
531 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
532
533 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
534 Change return value to be a sexp. Delay `get-buffer' to after
535 restoring the desktop (bug#13951).
536
537 2013-03-26 Leo Liu <sdl.web@gmail.com>
538
539 * register.el: Move semantic tag handling back to
540 cedet/semantic/senator.el. (Bug#14052)
541
542 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
545 into the prompt either (bug#13963).
546
547 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
548
549 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
550 part of "(error-foo)".
551
552 2013-03-24 Juri Linkov <juri@jurta.org>
553
554 * replace.el (list-matching-lines-prefix-face): New defcustom.
555 (occur-1): Pass `list-matching-lines-prefix-face' to the function
556 `occur-engine' if `face-differs-from-default-p' returns t.
557 (occur-engine): Add `,' inside backquote construct to evaluate
558 `prefix-face'. Propertize the prefix with the `prefix-face' face.
559 Pass `prefix-face' to the functions `occur-context-lines' and
560 `occur-engine-add-prefix'.
561 (occur-engine-add-prefix, occur-context-lines): Add optional arg
562 `prefix-face' and propertize the prefix with `prefix-face'.
563 (Bug#14017)
564
565 2013-03-24 Leo Liu <sdl.web@gmail.com>
566
567 * nxml/rng-valid.el (rng-validate-while-idle)
568 (rng-validate-quick-while-idle): Guard against deleted buffer.
569 (Bug#13999)
570
571 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
572 is the last entry in kill-buffer-hook.
573
574 * files.el (kill-buffer-hook): Doc fix.
575
576 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
577
578 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
579 Make it safe-local.
580
581 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
582
583 2013-03-23 Leo Liu <sdl.web@gmail.com>
584
585 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
586 Remove.
587
588 * nxml/rng-valid.el (rng-validate-mode)
589 (rng-after-change-function, rng-do-some-validation):
590 * nxml/rng-maint.el (rng-validate-buffer):
591 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
592 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
593 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
594 (nxml-extend-after-change-region): Use with-silent-modifications.
595
596 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
597 timer-idle-list.
598
599 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
600 (rng-next-error-1, rng-previous-error-1): Do not let-bind
601 timer-idle-list. (Bug#13999)
602
603 2013-03-23 Juri Linkov <juri@jurta.org>
604
605 * info.el (info-index-match): New face.
606 (Info-index, Info-apropos-matches): Add a nested subgroup to the
607 main pattern and add text properties with the new face to matches
608 in index entries relative to the beginning of the index entry.
609 (Bug#14015)
610
611 2013-03-21 Eric Ludlam <zappo@gnu.org>
612
613 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
614 Inhibit read only while inserting objects.
615
616 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
617
618 * progmodes/cfengine.el: Update docs to mention
619 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
620 symbol motion. Remove "_" from the word syntax.
621
622 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
623
624 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
625 syntax for both `cfengine2-mode' and `cfengine3-mode'.
626
627 2013-03-20 Juri Linkov <juri@jurta.org>
628
629 * info.el (Info-next-reference-or-link)
630 (Info-prev-reference-or-link): New functions.
631 (Info-next-reference, Info-prev-reference): Use them.
632 (Info-try-follow-nearest-node): Handle footnote navigation.
633 (Info-fontify-node): Fontify footnotes. (Bug#13989)
634
635 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
636
637 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
638 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
639
640 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
641
642 Suppress unnecessary non-ASCII chatter during build process.
643 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
644 (batch-skkdic-convert): Suppress most of the chatter.
645 It's not needed so much now that machines are faster,
646 and its non-ASCII component was confusing; see Dmitry Gutov in
647 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
648
649 2013-03-20 Leo Liu <sdl.web@gmail.com>
650
651 * ido.el (ido-chop): Fix bug#10994.
652
653 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
654
655 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
656 Remove vars.
657 (whitespace-color-on, whitespace-color-off):
658 Use `font-lock-fontify-buffer' (Bug#13817).
659
660 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
661
662 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
663 remapping in mode-line.
664 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
665
666 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
667
668 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
669 value for `whitespace-line' face (Bug#13875).
670 (whitespace-font-lock-keywords): Change description.
671 (whitespace-color-on): Don't save `font-lock-keywords' value, save
672 the constructed keywords instead.
673 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
674
675 2013-03-19 Leo Liu <sdl.web@gmail.com>
676
677 * progmodes/compile.el (compilation-display-error): New command.
678 (compilation-mode-map, compilation-minor-mode-map): Bind it to
679 C-o. (Bug#13992)
680
681 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
682
683 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
684
685 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
686
687 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
688
689 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
690
691 * net/tramp-compat.el (tramp-compat-user-error): New defun.
692
693 * net/tramp-adb.el (tramp-adb-handle-shell-command):
694 * net/tramp-gvfs.el (top):
695 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
696 (tramp-handle-shell-command): Use it.
697 (tramp-dissect-file-name): Raise an error when hostname is a
698 method name, and neither method nor user is specified.
699
700 * net/trampver.el: Update release number.
701
702 2013-03-18 Leo Liu <sdl.web@gmail.com>
703
704 Make sure eldoc can be turned off properly.
705 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
706 eldoc-mode.
707 (eldoc-display-message-p): Revert last change.
708 (eldoc-display-message-no-interference-p)
709 (eldoc-print-current-symbol-info): Tweak.
710
711 2013-03-18 Tassilo Horn <tsdh@gnu.org>
712
713 * doc-view.el (doc-view-new-window-function): Check the new window
714 overlay's display property instead the char property of the
715 buffer's first char. Use `with-selected-window' instead of
716 `save-window-excursion' with `select-window'.
717 (doc-view-document->bitmap): Check the current doc-view overlay's
718 display property instead the char property of the buffer's first char.
719
720 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
721
722 Automate the build of ja-dic.el (Bug#13984).
723 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
724 from the input, rather than assume that it's been done for us by the
725 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
726 the current date into a ja-dic.el comment, as that complicates
727 regression testing.
728
729 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
730
731 * whitespace.el: Fix double evaluation.
732 (whitespace-space, whitespace-hspace, whitespace-tab)
733 (whitespace-newline, whitespace-trailing, whitespace-line)
734 (whitespace-space-before-tab, whitespace-indentation)
735 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
736 obsolete defvars.
737 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
738 (whitespace-color-on): Use a single font-lock-add-keywords call.
739 Fix double-evaluation of face variables.
740
741 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
742
743 * net/tramp-adb.el (tramp-adb-parse-device-names):
744 Use `start-process' instead of `call-process'. Otherwise, the
745 function might be blocked under MS Windows. (Bug#13299)
746
747 2013-03-17 Leo Liu <sdl.web@gmail.com>
748
749 Extend eldoc to display info in the mode-line. (Bug#13978)
750 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
751 (eldoc-mode-line-string): New variable.
752 (eldoc-minibuffer-message): New function.
753 (eldoc-message-function): New variable.
754 (eldoc-message): Use it.
755 (eldoc-display-message-p)
756 (eldoc-display-message-no-interference-p):
757 Support eldoc-post-insert-mode.
758
759 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
760 (eval-expression): Run it.
761
762 2013-03-17 Roland Winkler <winkler@gnu.org>
763
764 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
765 strings in the list of return values.
766
767 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
768
769 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
770 radix before checking for HMS forms.
771
772 2013-03-16 Leo Liu <sdl.web@gmail.com>
773
774 * progmodes/scheme.el: Add indentation and font-locking for λ.
775 (Bug#13975)
776
777 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
778
779 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
780 token before point (bug#13942).
781
782 2013-03-16 Leo Liu <sdl.web@gmail.com>
783
784 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
785
786 2013-03-16 Eli Zaretskii <eliz@gnu.org>
787
788 * startup.el (command-line-normalize-file-name): Fix handling of
789 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
790 <xfq.free@gmail.com> in
791 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
792
793 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
794
795 Sync with Tramp 2.2.7.
796
797 * net/trampver.el: Update release number.
798
799 2013-03-14 Tassilo Horn <tsdh@gnu.org>
800
801 * doc-view.el Fix bug#13887.
802 (doc-view-insert-image): Don't modify overlay associated to
803 non-live windows, and implement horizontal centering of image in
804 case it's smaller than the window.
805 (doc-view-new-window-function): Force redisplay of new windows on
806 doc-view buffers.
807
808 2013-03-13 Karl Fogel <kfogel@red-bean.com>
809
810 * saveplace.el (save-place-alist-to-file): Don't sort
811 `save-place-alist', just pretty-print it (bug#13882).
812
813 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
814
815 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
816 whether `default-file-name-coding-system' is bound. It isn't in
817 XEmacs.
818
819 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
820
821 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
822 backquotes for `obsolete' (bug#13929).
823
824 * international/mule.el (find-auto-coding): Include file name in
825 obsolescence warning (bug#13922).
826
827 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
828
829 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
830 for CFEngine 3-specific indentation.
831 (cfengine3-indent-line): Use it. Fix up category regex.
832 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
833
834 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
835
836 * type-break.el (type-break-file-name):
837 * textmodes/remember.el (remember-data-file):
838 * strokes.el (strokes-file):
839 * shadowfile.el (shadow-initialize):
840 * saveplace.el (save-place-file):
841 * ps-bdf.el (bdf-cache-file):
842 * progmodes/idlwave.el (idlwave-config-directory):
843 * net/quickurl.el (quickurl-url-file):
844 * international/kkc.el (kkc-init-file-name):
845 * ido.el (ido-save-directory-list-file):
846 * emulation/viper.el (viper-custom-file-name):
847 * emulation/vip.el (vip-startup-file):
848 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
849 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
850
851 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
852
853 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
854 * language/thai-word.el: Switch to UTF-8.
855
856 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
857
858 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
859
860 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
861
862 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
863 Use with-current-buffer and don't move point.
864 (net-utils-run-simple): Remove useless code.
865 (net-utils-remove-ctl-m): Remove unused custom.
866
867 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
868
869 * international/characters.el (glyphless-set-char-table-range): New fun.
870 (update-glyphless-char-display): Use it (bug#13744).
871
872 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
873
874 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
875 namespaces in the syntax, indent closer for hanging brace
876 correctly, allow single-quote delimited 'strings', and make
877 `cfengine3-mode' the default.
878
879 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
880
881 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
882 Use lexical-binding. Fix up docstring according to conventions.
883 (gdbmi-debug-mode): New var.
884 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
885 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
886 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
887 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
888 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
889 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
890 (gdbmi-bnf-incomplete-record-result): New functions.
891 (gdb-car<): Remove function.
892 (gdbmi-record-list): Remove variable.
893 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
894 (gdbmi-bnf-result-state-configs): New const.
895 (gud-gdbmi-marker-filter): Rewrite.
896 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
897 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
898 Add `token' argument.
899 (gdb-done, gdb-error): New functions.
900 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
901
902 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
903
904 * term/xterm.el (xterm--report-background-handler): Don't burp
905 upon timeout.
906 (xterm--version-handler): Extract from terminal-init-xterm.
907 (xterm--query): Don't mishandle timeout. Remove debugging messages.
908 Allow multiple handlers.
909 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
910
911 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
912 (xterm--report-background-handler, xterm--query): New functions.
913 (terminal-init-xterm): Use them.
914
915 2013-03-11 Michael R. Mauger <michael@mauger.com>
916
917 * progmodes/sql.el Version 3.2
918 Please note that my address changed to <michael@mauger.com>;
919 the <mmaug@yahoo.com> address remains active.
920 (sql-connection-alist): Updates documentation to fix bug#13715.
921 (sql-connect): Handle missing `sql-connection-alist' correctly.
922 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
923 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
924 property.
925 (sql-default-value): New function.
926 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
927 values were not used.
928 (sql-rename-buffer): Make sure alternate buffer name has no text
929 properties.
930 (sql-input-sender, sql-execute-feature): Fetch variable with
931 `buffer-local-value' rather than `with-current-buffer'.
932 (sql-*): Use #' function syntax consistently.
933 (sql-*): Use message/error/user-error consistently.
934
935 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
936
937 * xt-mouse.el (xterm-mouse-event-read): Remove.
938 (xterm-mouse--read-event-sequence-1000)
939 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
940
941 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
942
943 * term/xterm.el (xterm-function-map): Support format used with
944 formatOtherKeys=1 (bug#13839).
945
946 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
947 (with-no-warnings): Use `declare'.
948
949 * whitespace.el (whitespace-enable-predicate): New variable.
950 (whitespace-enable-predicate): Use it.
951
952 * comint.el (comint-send-input, comint-snapshot-last-prompt)
953 (comint-output-filter, comint-update-fence):
954 Use with-silent-modifications.
955
956 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
957
958 * replace.el (occur-read-regexp-defaults-function): New var.
959 (occur-read-regexp-defaults): New defun.
960 (occur-read-primary-args): Propagate above change (bug#13892).
961
962 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * mouse.el (mouse-drag-track): Remove left-over debugging code.
965
966 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
967
968 Major rewrite due to changed D-Bus interface of GVFS 1.14.
969
970 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
971 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
972 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
973 New defconst.
974 (tramp-gvfs-file-name-handler-alist) [directory-files]
975 [directory-files-and-attributes, file-exists-p, file-modes]:
976 Use Tramp default handler.
977 [file-acl, file-selinux-context, process-file, set-file-acl]:
978 [set-file-modes, set-file-selinux-context, shell-command]:
979 [start-file-process]: Remove handler.
980 [verify-visited-file-modtime]: New handler.
981 (tramp-gvfs-dbus-string-to-byte-array)
982 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
983 calls of `dbus-string-to-byte-array' and
984 `tramp-gvfs-dbus-byte-array-to-string'.
985 (tramp-gvfs-handle-copy-file)
986 (tramp-gvfs-handle-delete-directory)
987 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
988 (tramp-gvfs-handle-file-directory-p)
989 (tramp-gvfs-handle-file-executable-p)
990 (tramp-gvfs-handle-file-name-all-completions)
991 (tramp-gvfs-handle-file-readable-p)
992 (tramp-gvfs-handle-file-writable-p)
993 (tramp-gvfs-handle-insert-directory)
994 (tramp-gvfs-handle-insert-file-contents)
995 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
996 (tramp-gvfs-handle-set-visited-file-modtime)
997 (tramp-gvfs-handle-write-region): Rewrite.
998 (tramp-gvfs-handle-file-acl)
999 (tramp-gvfs-handle-file-selinux-context)
1000 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
1001 (tramp-gvfs-handle-set-file-modes)
1002 (tramp-gvfs-handle-set-file-selinux-context)
1003 (tramp-gvfs-handle-shell-command)
1004 (tramp-gvfs-handle-start-file-process)
1005 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
1006 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
1007 over the symlinks. Fix user handling.
1008 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
1009 of the D-Bus signals.
1010 (tramp-gvfs-connection-mounted-p): Handle different names of the
1011 D-Bus methods.
1012 (tramp-gvfs-mount-spec-entry): New defun.
1013 (tramp-gvfs-mount-spec): Use it.
1014 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
1015 there is a share name. Handle different names of the D-Bus
1016 signals and methods. Set connection properties needed for
1017 `tramp-check-cached-permissions'.
1018 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
1019 Return t or nil.
1020
1021 * net/tramp.el (tramp-backtrace): Move up.
1022 (tramp-error): Dump a backtrace into the debug buffer when
1023 `tramp-verbose > 9.
1024 (tramp-file-mode-type-map, tramp-file-mode-from-int)
1025 (tramp-file-mode-permissions, tramp-get-local-uid)
1026 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
1027 tramp-sh.el.
1028
1029 * net/tramp-sh.el (tramp-file-mode-type-map)
1030 (tramp-check-cached-permissions, tramp-file-mode-from-int)
1031 (tramp-file-mode-permissions, tramp-get-local-uid)
1032 (tramp-get-local-gid): Move to tramp.el.
1033
1034 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
1035
1036 Separate mouse-1-click-follows-link from mouse-drag-region.
1037 * mouse.el (mouse--down-1-maybe-follows-link): New function.
1038 (key-translation-map): Use it to implement mouse-1-click-follows-link.
1039 (mouse-drag-line, mouse-drag-track):
1040 Remove mouse-1-click-follows-link code.
1041 (mouse--remap-link-click-p): Remove.
1042
1043 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
1044
1045 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
1046 (hi-lock-read-regexp-defaults): New defun.
1047 (hi-lock-line-face-buffer, hi-lock-face-buffer)
1048 (hi-lock-face-phrase-buffer): Propagate above change.
1049 Update docstring (bug#13892).
1050
1051 * subr.el (find-tag-default-as-regexp): New defun.
1052 * replace.el (read-regexp): Propagate above change.
1053
1054 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
1055
1056 * calc/calc-units.el (calc-convert-units): Fix the way that default
1057 new units are stored.
1058
1059 2013-03-07 Matthias Meulien <orontee@gmail.com>
1060
1061 * bookmark.el: Define a face to highlight bookmark names in
1062 bookmark menu buffers, where the default is a bold face similarly
1063 to buffer names in buffer menu buffers.
1064 (bookmark-menu-bookmark): New face to highlight bookmark names.
1065 (bookmark-insert-location): Remove duplicated text property to
1066 conform to buffer list (see `list-buffers').
1067 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
1068 `bookmark-menu-bookmark' to bookmark names.
1069
1070 2013-03-07 Matthias Meulien <orontee@gmail.com>
1071 Karl Fogel <kfogel@red-bean.com>
1072
1073 * bookmark.el: Display the bookmark list header similarly to the
1074 buffer list header (see `list-buffers'), where the default is now
1075 an immovable/immutable header line.
1076 (bookmark-bmenu-use-header-line): New variable.
1077 (bookmark-bmenu-inline-header-height): New name for
1078 `bookmark-bmenu-header-height', to avoid confusion with the code
1079 for the new immovable header. All references changed.
1080 (bookmark-bmenu-set-header): New function.
1081 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
1082 Conditionalize header construction accordingly.
1083 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
1084 the inline header height.
1085 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
1086 Conditionalize the skipping of the inline header height.
1087
1088 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
1089
1090 * progmodes/js.el (js--multi-line-declaration-indentation):
1091 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
1092
1093 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
1094
1095 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1096 Only propertize regexp when not inside a string (Bug#13885).
1097
1098 2013-03-06 Alan Mackenzie <acm@muc.de>
1099
1100 Correct the position of point in some line-up functions.
1101 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
1102 (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
1103 point at column 0 rather than at a random place in the line.
1104
1105 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
1106
1107 * net/tramp-compat.el (tramp-compat-delete-directory):
1108 Implement TRASH argument.
1109
1110 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
1111
1112 Keep pre-existing highlighting in completion candidates (Bug#13250).
1113 * minibuffer.el (completions-first-difference): State that the
1114 face is "added" in the docstring.
1115 (completions-common-part): Same. And don't inherit from default.
1116 (completion-hilit-commonality): Prepend 'completions-common-part
1117 and 'completion-first-difference faces to the 'face property,
1118 instead of replacing the value(s).
1119 (completion--insert-strings): Same with 'completions-annotations face.
1120 (completion-hilit-commonality): Use 'face instead of
1121 'font-lock-face, because it gets priority if the completion
1122 strings already have 'face set.
1123
1124 2013-03-04 Alan Mackenzie <acm@muc.de>
1125
1126 Replace `last-command-event' by `last-command-char' in XEmacs.
1127 * progmodes/cc-defs.el (c-last-command-char): New macro.
1128 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
1129 (c-semi&comma-no-newlines-before-nonblanks)
1130 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
1131 in place of `last-command-event'.
1132 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
1133 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
1134 (c-electric-paren, c-electric-continued-statement): Use the new
1135 macro in place of `last-command-event'.
1136
1137 2013-03-04 Glenn Morris <rgm@gnu.org>
1138
1139 * files.el (inhibit-local-variables-regexps):
1140 Add .diff and .patch. (Bug#13862)
1141
1142 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
1143
1144 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
1145 whether the "su" command is available on the device.
1146
1147 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
1148
1149 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
1150 (tramp-adb-handle-process-file): Remove superfluous setting.
1151 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
1152 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
1153 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
1154
1155 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
1158 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
1159 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
1160 Use dict-key rather than dict-name for the error message.
1161
1162 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1163
1164 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
1165 when reverting (bug#13831).
1166
1167 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1168
1169 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
1170 Always expand affix-file before storing to protect against changed
1171 `default-directory'.
1172 (ispell-print-if-debug): Make sure message is printed at the end
1173 of the debug buffer.
1174
1175 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
1176
1177 * net/tramp.el (tramp-obsolete-methods): New defconst.
1178 (tramp-warned-obsolete-methods): New defvar.
1179 (tramp-find-method): Check for obsolete methods. Map them to a
1180 replacement method if appropriate.
1181
1182 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
1183 Remove methods.
1184 (top): Remove completion functions for "scp1", "scp2", "ssh1",
1185 "ssh2" and "plink1".
1186
1187 2013-02-28 Dale Sedivec <dale@codefu.org>
1188
1189 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
1190 Return valid syntax-table property value when converting
1191 quotes within text from string syntax to punctuation syntax (bug#13844).
1192
1193 2013-02-28 Juri Linkov <juri@jurta.org>
1194
1195 * dired-aux.el (dired-diff): If file at point is a backup file,
1196 use its original as the default value, and reverse the order
1197 of arguments to the `diff' call. Doc fix. (Bug#13772)
1198
1199 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
1200
1201 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
1202 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
1203
1204 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1205
1206 Initial support for hunspell dictionaries auto-detection (Bug#13639)
1207
1208 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
1209 Ask hunspell about available and default dictionaries.
1210 (ispell-parse-hunspell-affix-file): Extract relevant info from
1211 hunspell affix file.
1212 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
1213 `ispell-dictionary-alist' entry for given dictionary after info
1214 provided by `ispell-parse-hunspell-affix-file'.
1215 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
1216 of parsed hunspell dicts and associated affix files.
1217 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
1218 of parsed hunspell dicts and associated parameters.
1219 (ispell-set-spellchecker-params):
1220 Call `ispell-find-hunspell-dictionaries' if hunspell and not
1221 previously done.
1222 (ispell-start-process):
1223 Call `ispell-hunspell-fill-dictionary-entry' for current
1224 dictionary if it is not initialized.
1225
1226 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
1227
1228 * imenu.el: Comment nitpicks.
1229
1230 2013-02-28 Sam Steingold <sds@gnu.org>
1231
1232 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
1233 See <http://stackoverflow.com/questions/14720205>.
1234
1235 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1236
1237 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
1238 (net-utils-mode): Use it.
1239 (net-utils--revert-cmd): New var.
1240 (net-utils-run-simple): Set it, and remove bogus interactive spec.
1241 (traceroute): Use net-utils-run-simple.
1242
1243 2013-02-28 Glenn Morris <rgm@gnu.org>
1244
1245 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
1246
1247 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
1248
1249 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
1250 (doc-view-fallback-mode): Remove overlays here.
1251 (doc-view-toggle-display): Instead of here. Don't throw away
1252 image-mode-winprops-alist.
1253 (doc-view-goto-page): Don't mess with hscroll.
1254
1255 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1256
1257 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
1258 &optional (bug#13819).
1259
1260 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
1261
1262 * net/tramp-adb.el (tramp-adb-parse-device-names)
1263 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
1264
1265 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
1266
1267 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1268 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
1269 defined. POSIX environments fall back to the "C" locale then and
1270 emit a warning, which shall be suppressed.
1271
1272 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
1273
1274 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
1275 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
1276
1277 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1278
1279 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
1280
1281 2013-02-25 Juri Linkov <juri@jurta.org>
1282
1283 * replace.el (read-regexp): Let-bind `default' to the first
1284 element of `defaults' if it's a list, otherwise it should be
1285 a string or nil. Let-bind `suggestions' to `defaults' if it's
1286 a list, otherwise make a list with the string value. Doc fix.
1287 (Bug#13805)
1288
1289 2013-02-25 Eli Zaretskii <eliz@gnu.org>
1290
1291 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
1292 that match "\`\.#", to avoid compiling lock files, even if they
1293 are readable (as they are on MS-Windows).
1294
1295 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1296
1297 * files.el (basic-save-buffer): Remove redundant directory-creation.
1298
1299 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
1300
1301 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
1302 Add option to force `pi' to remain symbolic.
1303 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
1304 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
1305 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
1306 derivatives, when necessary.
1307
1308 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
1309
1310 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
1311 (ps-mode-octal-region): Use string-make-unibyte.
1312
1313 2013-02-23 Glenn Morris <rgm@gnu.org>
1314
1315 * emulation/viper-cmd.el (viper-submit-report):
1316 * progmodes/ps-mode.el (ps-mode-maintainer-address):
1317 * progmodes/vera-mode.el (vera-mode-help-address):
1318 * textmodes/artist.el (artist-maintainer-address):
1319 * textmodes/reftex.el (reftex-report-bug):
1320 * vc/ediff-util.el (ediff-submit-report):
1321 Add bug-gnu-emacs to bug report address.
1322
1323 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
1324 Remove bug report entries.
1325 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
1326
1327 * emacs-lisp/bytecomp.el (byte-compile-level): New.
1328 (byte-compile-file, byte-compile-from-buffer):
1329 Use separate input/output buffers for each level of recursive
1330 byte-compile-file calls. (Bug#13787)
1331
1332 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
1333
1334 * net/tramp.el (tramp-methods): Fix docstring.
1335 (tramp-ssh-controlmaster-options): Rename it from
1336 `tramp-ssh-controlmaster-template'. Return a string.
1337 (tramp-default-method): Adapt check for
1338 `tramp-ssh-controlmaster-options'.
1339
1340 * net/tramp-sh.el (tramp-methods):
1341 Replace `tramp-ssh-controlmaster-template' by "%c".
1342 (tramp-do-copy-or-rename-file-out-of-band)
1343 (tramp-maybe-open-connection): Use it in format spec. Ensure,
1344 that it is applied for the first hop only.
1345
1346 2013-02-22 Juri Linkov <juri@jurta.org>
1347
1348 * isearch.el (isearch-lazy-highlight-new-loop):
1349 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
1350 to `isearch-other-end' if it is not nil. (Bug#13402)
1351
1352 * replace.el (replace-highlight): Let-bind `isearch-other-end'
1353 to `match-beg'.
1354
1355 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1356 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
1357 and `isearch-error' to nil.
1358
1359 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
1360
1361 * progmodes/python.el (python-info-current-defun):
1362 Enhance match-data cluttering prevention.
1363
1364 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
1365
1366 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
1367
1368 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1369 Handle multibyte file names.
1370
1371 2013-02-22 Glenn Morris <rgm@gnu.org>
1372
1373 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
1374 (sgml-transformation-function): Give it a :set function.
1375 (sgml-tag): Doc fix.
1376
1377 * cmuscheme.el (scheme-buffer):
1378 * progmodes/inf-lisp.el (inferior-lisp-buffer):
1379 * progmodes/tcl.el (inferior-tcl-buffer):
1380 * textmodes/tex-mode.el (tex-command): Doc fixes.
1381
1382 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
1383
1384 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
1385
1386 2013-02-21 Bastien Guerry <bzg@gnu.org>
1387
1388 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
1389
1390 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1391
1392 * progmodes/python.el (python-info-current-defun):
1393 Enhance match-data cluttering prevention.
1394
1395 2013-02-21 Glenn Morris <rgm@gnu.org>
1396
1397 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
1398 loaded while outline-regexp is let bound. (Bug#9584)
1399
1400 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1401
1402 * progmodes/python.el (python-info-current-defun): Fix failed
1403 defun name retrieval because of unwanted match-data cluttering.
1404
1405 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
1406
1407 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
1408 defconst. Apply independent check for ControlPersist.
1409
1410 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
1411 temporarily, via "env".
1412
1413 2013-02-21 Glenn Morris <rgm@gnu.org>
1414
1415 * info.el (Info-enable-edit): Remove.
1416 (Info-edit): Disable it rather than using Info-enable.
1417 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
1418 (Info-cease-edit): Make editing of Info files obsolete.
1419
1420 * informat.el (Info-tagify):
1421 Handle buffers not visiting files. (Bug#13763)
1422
1423 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
1424
1425 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
1426
1427 2013-02-21 Glenn Morris <rgm@gnu.org>
1428
1429 * files.el (basic-save-buffer): Move check for existing parent
1430 directory after hooks. (Bug#13773)
1431
1432 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
1433
1434 * simple.el (command-execute): Move from C. Add obsolete check.
1435 (extended-command-history): Move from C.
1436
1437 2013-02-20 Ulrich Müller <ulm@gentoo.org>
1438
1439 * jka-cmpr-hook.el (jka-compr-compression-info-list)
1440 (jka-compr-mode-alist-additions): Handle .txz suffix for
1441 XZ-compressed tar archives (bug#13770).
1442
1443 2013-02-20 Bastien Guerry <bzg@gnu.org>
1444
1445 * outline.el (outline-regexp, outline-heading-end-regexp):
1446 Make variables, not options (bug#13731).
1447
1448 2013-02-20 Glenn Morris <rgm@gnu.org>
1449
1450 * image.el (image-current-frame): Change from variable to function.
1451 (image-show-frame): Rename from image-nth-frame. Update callers.
1452 * image-mode.el (image-multi-frame): New variable.
1453 (image-mode-map, image-mode, image-goto-frame):
1454 Use image-multi-frame rather than image-current-frame.
1455 (image-mode, image-goto-frame): Use image-current-frame as
1456 function rather than as variable.
1457
1458 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
1459 * emacs-lisp/cl-macs.el (cl--make-type-test)
1460 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
1461
1462 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1463
1464 * net/tramp-cache.el (tramp-get-hash-table): New defun.
1465 (tramp-get-file-property, tramp-set-file-property)
1466 (tramp-get-connection-property, tramp-set-connection-property): Use it.
1467 (tramp-flush-file-property, tramp-flush-directory-property):
1468 Rename argument to KEY.
1469 (tramp-flush-connection-property): Simplify a little bit.
1470 (tramp-connection-property-p): New defun.
1471 (top): Reapply saved values only if there isn't a corresponding
1472 entry in `tramp-connection-properties'.
1473
1474 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
1475
1476 * progmodes/python.el (python-indent-context):
1477 Fix python-info-line-ends-backslash-p call.
1478 (python-info-line-ends-backslash-p)
1479 (python-info-beginning-of-backslash): Respect line-number argument.
1480 (python-info-current-line-comment-p):
1481 Fix behavior when not at beginning-of-line.
1482 (python-util-position): Remove function.
1483 (python-util-goto-line): New function.
1484
1485 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1486
1487 * eshell/em-unix.el (eshell/su): Require tramp.
1488 (eshell/sudo): Require tramp. Remove now unnecessary check.
1489
1490 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1491 `tramp-current-connection' in order to avoid an error when several
1492 commands are invoked in a short time in eshell and friends.
1493
1494 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
1495
1496 Cleanup some of EIEIO's namespace.
1497 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1498 Use it to define all the class-* and object-* field accessors (renamed
1499 to eieio--class-* and eieio--object-*). Update all uses.
1500 (eieio--class-num-slots, eieio--object-num-slots): Rename from
1501 class-num-slots and object-num-slots.
1502 (eieio--check-type): New macro.
1503 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1504 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1505 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1506 (object-assoc-list-safe): Use it.
1507 (eieio-defclass): Tighten regexp.
1508 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
1509 Remove unreachable code.
1510 (object-class-fast): Declare obsolete.
1511 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1512 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1513 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1514 Rename from class-name, object-name, object-set-name-string,
1515 object-class, object-class-name, class-parents, class-children,
1516 class-precedence-list, class-parent; with obsolete alias.
1517 (class-of, class-direct-superclasses, class-direct-subclasses):
1518 Declare obsolete.
1519 (eieio-defmethod): Use `memq'; remove unreachable code.
1520 * emacs-lisp/eieio-base.el (eieio-persistent-read):
1521 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1522 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1523
1524 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz>
1525
1526 * eshell/em-cmpl.el: Correct "context-related help" keybinding in
1527 commentary.
1528
1529 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
1530
1531 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1532 Use font-lock-keyword-face for macros and special forms (bug#8345).
1533
1534 2013-02-17 Didier Verna <didier@didierverna.net>
1535
1536 * net/network-stream.el (network-stream-open-starttls):
1537 Check that response to the starttls-command is non-nil. (Bug#13706)
1538
1539 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1540
1541 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1542 Don't assume all identifier chars have syntax word.
1543 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1544 Remove bar-not-symbol. Adjust callers.
1545 (lisp-mode-variables): Don't set a font-lock-syntax-table.
1546
1547 2013-02-17 Leo Liu <sdl.web@gmail.com>
1548
1549 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1550
1551 2013-02-17 Glenn Morris <rgm@gnu.org>
1552
1553 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1554
1555 * image-mode.el (image-mode-map): Add image-dired menu entry.
1556
1557 * image-dired.el (tumme): Make this alias obsolete.
1558
1559 2013-02-16 Glenn Morris <rgm@gnu.org>
1560
1561 * image.el (image-animated-types): Remove.
1562 (image-multi-frame-p): Rename from image-animated-p, and generalize.
1563 (image-animated-p): Make obsolete alias.
1564 (image-animate, image-nth-frame, image-animate-timeout):
1565 Use image-multi-frame-p.
1566 (image-animate-timeout): If no delay, use image-default-frame-delay.
1567 * image-mode.el (image-mode, image-toggle-animation):
1568 Use image-multi-frame-p. (Bug#763, bug#10739)
1569 (image-mode): Adjust startup message for a multi-frame image.
1570
1571 * image-mode.el (image-mode-map): Give it a menu.
1572
1573 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
1574
1575 * net/tramp-cache.el (tramp-connection-properties): New customer
1576 option.
1577 (tramp-get-connection-property): Use it.
1578
1579 * net/tramp-compat.el (top): Require 'trampver.
1580
1581 * net/tramp-sh.el (tramp-remote-process-environment):
1582 Set tramp-autoload cookie.
1583
1584 2013-02-16 Kevin Ryde <user42@zip.com.au>
1585
1586 * info-look.el (info-lookup-select-mode): If major-mode has no
1587 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1588
1589 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
1590
1591 * replace.el (read-regexp): Tighten the regexp that matches tag.
1592 When tag is retrieved with `find-tag-default', use regexp that
1593 matches tag at point. Also update docstring (Bug#13687).
1594
1595 2013-02-16 Eli Zaretskii <eliz@gnu.org>
1596
1597 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1598 add watch for the file, not its parent directory, since w32notify
1599 sets up the watch for the directory internally. (Bug#13725)
1600
1601 2013-02-16 Glenn Morris <rgm@gnu.org>
1602
1603 * image.el (image-default-frame-delay): New variable.
1604 (image-animated-p): Use image-default-frame-delay.
1605 (image-minimum-frame-delay): New constant.
1606 (image-animate-timeout): Use image-minimum-frame-delay.
1607
1608 * image.el (image-nth-frame): New, split from image-animate-timeout.
1609 (image-animate-timeout): Use image-nth-frame.
1610 * image-mode.el (image-goto-frame, image-next-frame)
1611 (image-previous-frame): New commands.
1612 (image-mode-map): Add new frame commands.
1613
1614 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
1615
1616 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1617 If col-desc already has help-echo, use it. (Bug#13563)
1618
1619 2013-02-16 Glenn Morris <rgm@gnu.org>
1620
1621 * image.el (image-current-frame): New variable.
1622 (image-animate-timeout): Set image-current-frame.
1623 * image-mode.el (image-mode): For animated images,
1624 display a frame counter via mode-line-process.
1625
1626 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1627
1628 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1629
1630 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1631
1632 2013-02-15 Alan Mackenzie <acm@muc.de>
1633
1634 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1635 global minor mode has been enabled, call the minor mode function
1636 for a new buffer once only, after the major mode hook, whilst
1637 allowing that hook explicitly to disable the minor mode.
1638 (MODE-disable-in-buffer): New (generated) function.
1639 (disable-MODE): New (generated) buffer local variable.
1640
1641 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
1642
1643 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1644 `iswitchb-next-match' and `iswitchb-prev-match' resply.
1645 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1646 `ido-next-match' and `ido-prev-match' resply.
1647 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1648 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1649 `icomplete-backward-completions' (Bug#13708).
1650
1651 2013-02-15 Glenn Morris <rgm@gnu.org>
1652
1653 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1654
1655 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1656
1657 * net/goto-addr.el (goto-address-fontify): Add start and end args.
1658 (goto-address-fontify-region): Use them instead of narrowing, so
1659 syntax-ppss has access to the whole buffer.
1660
1661 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1662
1663 * progmodes/python.el: Explain how to restore "cc-mode"-like
1664 forward-sexp movement in header documentation (Bug#13642).
1665 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1666 comments and strings (GH bug 114).
1667
1668 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1669
1670 * progmodes/python.el (python-info-current-defun): Fix current
1671 defun detection (Bug#13618).
1672
1673 2013-02-15 Chong Yidong <cyd@gnu.org>
1674
1675 * xml.el (xml-parse-string): Fix typo in handling of bad character
1676 references.
1677
1678 2013-02-15 Glenn Morris <rgm@gnu.org>
1679
1680 * play/fortune.el (fortune-compile): Simplify and fix previous change.
1681
1682 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
1683
1684 * net/tramp.el (tramp-debug-message):
1685 Add `tramp-condition-case-unless-debug'.
1686 (tramp-debug-on-error): New defvar.
1687 (tramp-condition-case-unless-debug): New defun.
1688 (tramp-file-name-handler): Use it.
1689
1690 2013-02-14 Juri Linkov <juri@jurta.org>
1691
1692 * info.el (Info-isearch-filter): Treat non-nil values of
1693 `search-invisible' including its default value `open'
1694 like the value `t' to match hidden text. (Bug#13402)
1695
1696 2013-02-14 Glenn Morris <rgm@gnu.org>
1697
1698 * help-fns.el (find-lisp-object-file-name): Give special treatment
1699 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
1700
1701 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
1702
1703 * net/quickurl.el (quickurl-save-urls):
1704 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
1705
1706 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
1707
1708 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1709 depth for unfinished percent literal. Not using it in the caller.
1710 (ruby-move-to-block): Jump over multiline literals of all types,
1711 ignoring code-looking contents inside them.
1712 (ruby-add-log-current-method): Improve performance at the expense
1713 of accuracy. `ruby-block-contains-point' is relatively slow, so
1714 only use it for method and singleton class blocks.
1715
1716 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1717
1718 Use ControlMaster where applicable. (Bug#13677)
1719
1720 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1721 replacing `tramp-detect-ssh-controlmaster'.
1722 (tramp-default-method): Use it.
1723
1724 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1725 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1726 arguments.
1727 [scpc, rsyncc]: Remove methods.
1728 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1729 and "ssh2_old".
1730 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
1731 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1732
1733 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1734
1735 * emacs-lisp/package.el (package--initialized): Move before first use.
1736
1737 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
1738
1739 * icomplete.el (icomplete-hide-common-prefix): New user option.
1740 (icomplete-first-match): New face.
1741 (icomplete-completions): Correct handling of "complete but not
1742 unique" (Bug#12638).
1743
1744 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
1745
1746 * descr-text.el (describe-char): Display the script (bug#13698).
1747
1748 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * tmm.el: Use lexical-binding and current-active-maps.
1751 (tmm-menubar): Use map-keymap and pcase.
1752 (tmm--completion-table): New function.
1753 (tmm-prompt): Use it to fix the menu order.
1754 (tmm-get-keybind): Use current-active-maps.
1755
1756 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
1757
1758 Add dired-hide-details-mode. (Bug#6799)
1759
1760 * locate.el (locate-mode): Set parent mode property to dired-mode.
1761
1762 * find-dired.el (find-dired): Call dired-insert-set-properties on
1763 initial information line. Set process mark on end of buffer.
1764 (find-dired-sentinel):
1765 Call dired-insert-set-properties on summary.
1766
1767 * dired.el (dired-hide-details-hide-symlink-targets)
1768 (dired-hide-details-hide-information-lines): New options.
1769 (dired-insert-directory):
1770 Set properties after final treatment of output.
1771 (dired-insert-set-properties):
1772 Set dired-hide-details-* properties.
1773 (dired-mode-map): Bind dired-hide-details-mode.
1774 (dired-mode): Set buffer-invisibility-spec to a list.
1775 (dired-next-line): Skip hidden lines.
1776 (dired-previous-line): Use dired-next-line.
1777 (dired-hide-details-mode): New minor mode.
1778 (dired-hide-details-update-invisibility-spec): New function.
1779
1780 2013-02-13 Glenn Morris <rgm@gnu.org>
1781
1782 * play/yow.el: Move to obsolete/. (Bug#9384)
1783
1784 2013-02-13 Juri Linkov <juri@jurta.org>
1785
1786 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1787 to select `ediff-control-frame' and set input focus correctly on Xfce.
1788 (Bug#12218)
1789
1790 2013-02-13 Juri Linkov <juri@jurta.org>
1791
1792 * image-mode.el (image-mode-map):
1793 * doc-view.el (doc-view-mode-map):
1794 * vc/ediff-util.el (ediff-setup-keymap):
1795 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1796
1797 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
1798
1799 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1800 performance. Instead of recalculating indentation fully for each
1801 line, sum up indentation depth based only on visited lines.
1802 (ruby-parse-partial): Increase the depth after "do" even when END
1803 is right after it.
1804 (ruby-parse-partial): When END is in the middle of a percent
1805 literal, increase the depth if the delimiter chars belong to the
1806 paren syntax class.
1807
1808 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
1809
1810 * play/fortune.el (fortune-compile): Also make the compiled file
1811 if it does not exist at all, not just if it is old. (Bug#5338)
1812
1813 2013-02-13 Glenn Morris <rgm@gnu.org>
1814
1815 * emacs-lisp/package.el (package-menu-execute): Doc fix.
1816
1817 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
1818
1819 * lisp/emacs-lisp/package.el (package-menu-execute):
1820 Add optional noquery argument. (Bug#13625)
1821
1822 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1823
1824 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1825 if DIR exists and PARENTS is non-nil.
1826
1827 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
1828
1829 * progmodes/js.el (js--multi-line-declaration-indentation):
1830 Silence byte-compiler warning.
1831
1832 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
1833
1834 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1835
1836 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1837 only if it doesn't exist.
1838
1839 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1840 Set process marker.
1841
1842 2013-02-12 Tassilo Horn <tsdh@gnu.org>
1843
1844 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1845 UserInstallation when calling soffice to work around LibreOffice
1846 bug 37531.
1847
1848 2013-02-12 Glenn Morris <rgm@gnu.org>
1849
1850 * files.el (basic-save-buffer):
1851 Offer to create a non-existing directory. (Bug#3016)
1852
1853 * calc/calc-graph.el (calc-graph-show-dumb):
1854 * calendar/calendar.el (calendar-mode-map):
1855 * cus-edit.el (custom-mode-map):
1856 * ehelp.el (electric-help-map):
1857 * emulation/vip.el (vip-mode-map):
1858 * epa.el (epa-key-list-mode-map):
1859 * info.el (Info-mode-map):
1860 * mail/rmail.el (rmail-mode-map):
1861 * mail/rmailsum.el (rmail-summary-mode-map):
1862 * man.el (Man-mode-map):
1863 * net/newst-plainview.el (newsticker-mode-map):
1864 * progmodes/cpp.el (cpp-edit-mode-map):
1865 * progmodes/grep.el (grep-mode-map):
1866 * progmodes/idlw-help.el (idlwave-help-mode-map):
1867 * simple.el (special-mode-map):
1868 * startup.el (splash-screen-keymap):
1869 * view.el (view-mode-map):
1870 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1871
1872 2013-02-11 Elias Pipping <pipping@lavabit.com>
1873
1874 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1875 (bug#13679).
1876
1877 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1878
1879 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1880
1881 2013-02-11 Glenn Morris <rgm@gnu.org>
1882
1883 * vc/diff.el (diff-use-labels): New variable.
1884 (diff-no-select): Use --label rather than -L, and first
1885 check that it is supported. (Bug#11067)
1886
1887 * files.el (enable-dir-local-variables): New variable.
1888 (hack-dir-local-variables): Respect enable-dir-local-variables.
1889 * tutorial.el (help-with-tutorial):
1890 Ignore directory-local variables. (Bug#11127)
1891
1892 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1893 (vc-svn-global-switches): ... to here. (Bug#13513)
1894
1895 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
1896
1897 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1898 Handle "foo (bar, default: xxx): " prompts.
1899
1900 2013-02-10 Chong Yidong <cyd@gnu.org>
1901
1902 * files.el (basic-save-buffer-1): Do not set
1903 buffer-file-coding-system-explicit (Bug#4533).
1904
1905 * mail/emacsbug.el (report-emacs-bug): Change binding of
1906 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1907
1908 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
1909
1910 * calc/calc.el (calc-allow-units-as-numbers): New variable.
1911 * calc/calc-units.el (calc-convert-units): Use new variable.
1912
1913 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1914
1915 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1916
1917 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1918 buffer-file-type.
1919
1920 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1921 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1922 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1923 coding-system-for-write instead.
1924
1925 * jka-compr.el (jka-compr-write-region): Don't bind
1926 buffer-file-type.
1927
1928 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1929 buffer-file-type.
1930
1931 * files.el (file-name-buffer-file-type-alist): Remove defvar.
1932 (insert-file-contents-literally): Remove reference to
1933 file-name-buffer-file-type-alist.
1934
1935 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1936 make-obsolete.
1937 (find-buffer-file-type-match, find-buffer-file-type): Remove.
1938 (find-buffer-file-type-coding-system): Remove references to
1939 find-buffer-file-type-match, find-buffer-file-type, and
1940 buffer-file-type.
1941 Don't put find-buffer-file-type-coding-system into
1942 file-coding-system-alist.
1943 (find-file-binary, find-file-text): Bind coding-system-for-read
1944 instead of file-name-buffer-file-type-alist.
1945
1946 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
1947
1948 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1949 converter (Bug#13622).
1950 (doc-view-unoconv-program): Make obsolete alias.
1951 (doc-view-odf->pdf-converter-program): New variable.
1952 (doc-view-odf->pdf-converter-function): New variable.
1953 (doc-view-mode-p): Use it.
1954 (doc-view-odf->pdf-converter-unoconv):
1955 Rename from `doc-view-odf->pdf-converter-unoconv'.
1956 (doc-view-odf->pdf-converter-soffice): New function.
1957 (doc-view-convert-current-doc):
1958 Use `doc-view-odf->pdf-converter-function'.
1959
1960 2013-02-09 Chong Yidong <cyd@gnu.org>
1961
1962 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1963 view-echo-area-messages (Bug#13340).
1964
1965 * help.el (view-echo-area-messages): Use display-buffer.
1966
1967 * dired-x.el (dired-do-run-mail): Prompt for confirmation
1968 (Bug#13561).
1969
1970 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1971
1972 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1973 Eval body right away, now that we do eager macroexpansion (bug#13605).
1974
1975 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1976 (fundamental-mode): Use run-mode-hooks.
1977
1978 * eshell/esh-proc.el (eshell/kill): Fix last change.
1979 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1980
1981 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
1982
1983 * eshell/esh-proc.el (eshell/kill): Rewrite.
1984
1985 * eshell/em-ls.el (show-almost-all): Declare.
1986 (eshell-do-ls): Add support for -A argument.
1987
1988 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
1989
1990 * icomplete.el (icomplete-forward-completions)
1991 (icomplete-backward-completions): Handle corner case (bug#13602).
1992
1993 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
1994
1995 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1996 be nil. Handle this. (Bug#13636)
1997
1998 2013-02-07 Richard Stallman <rms@gnu.org>
1999
2000 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
2001 `save-buffer-coding-system'.
2002
2003 2013-02-07 Alan Mackenzie <acm@muc.de>
2004
2005 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
2006 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
2007 (c-parse-state-get-strategy): Don't return 'BOD any more.
2008 (c-append-lower-brace-pair-to-state-cache):
2009 Extra parameter HERE instead of narrowing.
2010 Widen to top of buffer before searching backwards for a brace pair.
2011 (c-state-push-any-brace-pair): Add HERE parameter to function call.
2012 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
2013 Narrow to parameter HERE, in place of being called narrowed.
2014 (c-remove-stale-state-cache): Extra parameter HERE in place of
2015 narrowing. Check there's an open brace in the cache before
2016 searching for its match.
2017 (c-invalidate-state-cache-1): Add HERE parameter to function call.
2018 (c-parse-state-1): Don't narrow here for 'forward strategy,
2019 instead passing extra parameter HERE to several functions.
2020 Remove 'BOD strategy.
2021
2022 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
2023
2024 * emacs-lisp/package.el (describe-package-1): Tell what archive is
2025 used to install the package.
2026
2027 2013-02-06 Glenn Morris <rgm@gnu.org>
2028
2029 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
2030 if we can't get user input. (Bug#6567)
2031
2032 * startup.el (command-line): If simple.el is missing,
2033 test and warn about for some possible causes.
2034
2035 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
2036
2037 * cus-start.el (all): Add ns-use-native-fullscreen.
2038
2039 2013-02-05 Glenn Morris <rgm@gnu.org>
2040
2041 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
2042
2043 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
2044 Fix directory creation in fallback case.
2045
2046 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2047
2048 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
2049 (vc-update-change-log): Use dolist.
2050
2051 2013-02-04 Chong Yidong <cyd@gnu.org>
2052
2053 * thingatpt.el: Rewrite the URL detection routines, absorbing some
2054 code from ffap.el.
2055 (thing-at-point-beginning-of-url-regexp): New var.
2056 (thing-at-point-uri-schemes): Update list of URI schemes.
2057 (thing-at-point-url-regexp): Variable deleted.
2058 (thing-at-point-markedup-url-regexp): Disallow newlines.
2059 (thing-at-point-newsgroup-regexp)
2060 (thing-at-point-newsgroup-heads)
2061 (thing-at-point-default-mail-uri-scheme): New variables.
2062 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
2063 method to find the possible bounds of the URI at point.
2064 New optional argument to find ill-formed URIs.
2065 (thing-at-point-url-at-point): Rewrite. New arguments for finding
2066 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
2067 the scheme-adding heuristics from ffap-url-at-point.
2068 (thing-at-point--bounds-of-well-formed-url): New function.
2069 Do parens matching to decide whether to include parens in the URI
2070 (Bug#9153).
2071
2072 * ffap.el: Require thingatpt.
2073 (ffap-url-at-point): Delegate URI detection to thing-at-point.
2074 All URI-valid characters are now recognized (Bug#5673).
2075 (ffap-string-at-point): Use use-region-p.
2076 (ffap-url-regexp): Extra character is handled by thing-at-point.
2077 (ffap-string-at-point-mode-alist): Allow parentheses.
2078 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
2079 Convert to aliases; code moved to thingatpt.el.
2080 (ffap-gnus-hook): Use setq-local.
2081
2082 2013-02-04 Glenn Morris <rgm@gnu.org>
2083
2084 * emacs-lisp/ert.el (ert--explain-format-atom):
2085 Don't try to print non-characters as characters. (Bug#13543)
2086
2087 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
2088
2089 * net/tramp.el (tramp-debug-message): Extend function exclude list.
2090 (tramp-backtrace): New defun.
2091 (tramp-handle-insert-file-contents): Use `visit' when inserting
2092 the local copy.
2093
2094 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
2095 Use `remote-file-name-inhibit-cache'.
2096
2097 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
2098
2099 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
2100 (bug#13614).
2101
2102 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
2103 current-load-list (bug#13366).
2104
2105 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
2106
2107 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2108 Identify g++ template instantiation trace. (Bug#12287)
2109 (compilation-mode-hook, compilation-start-hook)
2110 (compilation-window-height): Simplify docstrings. (Bug#13379)
2111
2112 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
2113
2114 * mouse.el (mouse-drag-track): Always deactivate the mark before
2115 running the final event's command since that command is in charge of
2116 activating the mark if needed (bug#13523).
2117
2118 2013-02-02 Juri Linkov <juri@jurta.org>
2119
2120 * replace.el (perform-replace): Move let-bindings of isearch-*
2121 variables deeper to the loop that searches for the next match.
2122 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
2123 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
2124 (Bug#13579)
2125
2126 * isearch.el (isearch-search-fun-default): Check for null
2127 first element of isearch-cmds as a precaution when it's used
2128 with inactive isearch.
2129
2130 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
2131
2132 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
2133 error when buffer in question is narrowed so position 1 is out of
2134 visible part.
2135
2136 2013-02-02 Glenn Morris <rgm@gnu.org>
2137
2138 * textmodes/remember.el (remember-clipboard): Doc fix.
2139
2140 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
2141
2142 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
2143 properties (bug#13179).
2144
2145 2013-02-02 Juri Linkov <juri@jurta.org>
2146
2147 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
2148 instead of hard-coded default face `match'. (Bug#9438)
2149
2150 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
2151
2152 * vc/vc-arch.el (vc-arch-registered):
2153 * vc/vc-bzr.el (vc-bzr-registered):
2154 * vc/vc-cvs.el (vc-cvs-registered):
2155 * vc/vc-git.el (vc-git-registered):
2156 * vc/vc-hg.el (vc-hg-registered):
2157 * vc/vc-mtn.el (vc-mtn-registered):
2158 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
2159 (Bug#13139)
2160
2161 * info.el (Info-next-reference, Info-prev-reference): Add numeric
2162 prefix argument. (Bug#11656)
2163
2164 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2165
2166 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
2167
2168 2013-02-01 Glenn Morris <rgm@gnu.org>
2169
2170 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
2171 if the backend is known not to support it.
2172
2173 * imenu.el (imenu-default-create-index-function):
2174 Tweak infinite loop test to check for forward motion as well as none.
2175
2176 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
2177
2178 * net/soap-client.el (soap-invoke): Encode the string for
2179 `url-request-data' as UTF-8.
2180 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
2181
2182 2013-02-01 Glenn Morris <rgm@gnu.org>
2183
2184 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
2185
2186 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
2187
2188 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
2189
2190 * net/tramp.el (tramp-tramp-file-p): Comment check for
2191 `string-as-unibyte'. The function does not exist on XEmacs, and
2192 likely we need another approach.
2193
2194 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
2195 `tramp-gw-*' variables are bound.
2196
2197 2013-01-31 Glenn Morris <rgm@gnu.org>
2198
2199 * files.el (basic-save-buffer-2): Choose coding system for
2200 writing the file before backing it up, to reduce delay between
2201 backing up and writing the new version. (Bug#13522)
2202
2203 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
2204
2205 * simple.el (cycle-spacing): New command.
2206 (just-one-space): Use it.
2207
2208 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
2209
2210 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
2211 (opascal-newline-always-indents): Remove custom.
2212 (opascal-tab, opascal-newline): Remove commands.
2213 (opascal-new-comment-line): Insert "\n" instead of calling newline.
2214 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
2215 (opascal-save-match-data): Remove, use save-match-data instead.
2216 (opascal-save-state): Use with-silent-modifications.
2217
2218 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
2219 (bug#13585).
2220
2221 2013-01-30 Juri Linkov <juri@jurta.org>
2222
2223 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
2224 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
2225 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
2226
2227 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2228
2229 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
2230 column if we're just deleting the backslashes.
2231 (makefile-fill-paragraph): Use eolp.
2232
2233 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
2234
2235 * autorevert.el (auto-revert-use-notify): Fix docstring.
2236
2237 2013-01-30 Leo Liu <sdl.web@gmail.com>
2238
2239 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
2240
2241 2013-01-30 Glenn Morris <rgm@gnu.org>
2242
2243 * mouse.el (mouse-drag-line): Avoid pushing same event onto
2244 unread-command-events twice in some cases. This tries to implement
2245 the 2012-07-26 changes in a different way. (Bug#13560)
2246
2247 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
2248
2249 * progmodes/python.el
2250 (python-pdbtrack-comint-output-filter-function): Enhancements on
2251 stacktrace detection. (thanks @gnovak)
2252
2253 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2254
2255 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
2256 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
2257 Use defvar-local.
2258 (jit-lock-register): Use setq-local.
2259
2260 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
2261
2262 * calc-units.el (math-default-units-table): Remove initial value.
2263 (calc-convert-units): Treat expressions where all the units cancel as
2264 if they didn't have units.
2265
2266 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
2267
2268 * net/tramp.el (tramp-process-connection-type): Fix docstring.
2269 (tramp-completion-reread-directory-timeout): Fix type.
2270 (tramp-connection-min-time-diff): New defcustom.
2271
2272 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
2273
2274 2013-01-30 Glenn Morris <rgm@gnu.org>
2275
2276 * imenu.el (imenu-default-create-index-function):
2277 Put back a version of the infinite loop test removed 2013-01-23.
2278
2279 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
2280
2281 * progmodes/python.el (python-shell-parse-command):
2282 Find python-shell-interpreter with modified environment.
2283
2284 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
2285
2286 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
2287
2288 2013-01-29 Alan Mackenzie <acm@muc.de>
2289
2290 Amend to fontify /regexp/s in actions correctly.
2291 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
2292 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
2293 are no longer included.
2294 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
2295 What used to be these variables without "-line" in the name.
2296 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
2297 (c-awk-non-arith-op-bra-re): Now also matches {.
2298 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
2299 "return", and "case".
2300 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
2301 by /.
2302 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
2303 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
2304
2305 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
2306
2307 * autorevert.el (auto-revert-use-notify):
2308 Use `custom-initialize-default' for initialization. (Bug#13583)
2309
2310 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
2311
2312 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2313 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
2314 in `tramp-file-name-handler'.
2315 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
2316 compatibility.
2317 (tramp-compute-multi-hops): Check, whether
2318 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
2319
2320 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2321
2322 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
2323 (bug#13297).
2324
2325 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
2326
2327 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
2328 checks made superfluous by the \_< operator.
2329 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
2330 temporarily) broken indentation.
2331 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2332 Highlight nested constants, too. \_< broke that.
2333
2334 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
2335
2336 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
2337 instead of "\\b".
2338
2339 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
2340
2341 * autorevert.el (auto-revert-handler): Notifications which result
2342 from a saved file shall not be taken into account. (Bug#13557)
2343
2344 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
2345
2346 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
2347 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
2348 (lisp-mode): Pass t for it. (Bug#13556)
2349
2350 2013-01-25 Alan Mackenzie <acm@muc.de>
2351
2352 AWK Mode: Fix indentation bug at top level. Bug #12274.
2353
2354 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
2355 just before CASE 5D.
2356
2357 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
2358
2359 * net/socks.el (socks-nslookup-host): Use string-to-number.
2360
2361 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
2362
2363 * autorevert.el (auto-revert-remote-files)
2364 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
2365 (auto-revert-notify-enabled, auto-revert-use-notify)
2366 (auto-revert-notify-watch-descriptor-hash-list)
2367 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
2368 (auto-revert-notify-event-descriptor)
2369 (auto-revert-notify-event-action)
2370 (auto-revert-notify-event-file-name): Doc fix.
2371 (global-auto-revert-mode): Reorder checks.
2372 (auto-revert-notify-rm-watch): Respect changed values of
2373 `auto-revert-notify-watch-descriptor-hash-list'.
2374 (auto-revert-notify-add-watch): Check for
2375 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
2376 `inotify-add-watch'. Watch `default-directory' instead of
2377 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
2378 has a changed meaning now. (Bug#13540)
2379 (auto-revert-notify-handler): Change implementation wrt events
2380 returning from a directory.
2381 (auto-revert-handler): Reorder implementation for checks of remote
2382 files.
2383 (auto-revert-buffers): Fix parentheses error.
2384
2385 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
2386
2387 * progmodes/python.el: Enhancements to header documentation about
2388 skeletons. (Bug#5716)
2389
2390 * imenu.el (imenu-default-create-index-function): Remove useless
2391 infinite loop check. (Bug#13438)
2392
2393 2013-01-25 Alan Mackenzie <acm@muc.de>
2394
2395 Fix a bug in the state cache mechanism. Refactor this a bit.
2396
2397 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
2398 `cache-pos' element from the return value.
2399 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
2400 buffer to enable proper searching from beyond HERE. Amend the
2401 test for detecting the sought brace pair. Amend the value written
2402 to the "brace desert cache" when the brace isn't found.
2403 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
2404 and several other variables analogously.
2405 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
2406 parameter to a locally calculated variable.
2407 (c-parse-state-1): Change the calling conventions to the two
2408 defuns involving `cache-pos'.
2409
2410 2013-01-25 Chong Yidong <cyd@gnu.org>
2411
2412 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
2413
2414 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
2415
2416 * paren.el (show-paren-function): Make sure to set 'priority and
2417 'face only if the overlay does exist.
2418
2419 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
2420
2421 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
2422
2423 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
2424 basic attributes.
2425 (tramp-sh-handle-set-file-acl): Improve error checking.
2426
2427 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2428
2429 * doc-view.el (doc-view-display): Force mode line update until all
2430 document is converted. Suggested by Stefan Monnier (Bug#13164).
2431
2432 2013-01-23 Bastien Guerry <bzg@gnu.org>
2433
2434 * paren.el (show-paren-function): Make sure an overlay exists
2435 before trying to delete it. Also use `pos' as a position only
2436 when it is an integer.
2437
2438 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
2439
2440 * play/gametree.el (gametree-break-line-here): Use point-marker.
2441
2442 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
2443
2444 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
2445 Mark descriptive parts with `display' property.
2446
2447 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2448
2449 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
2450 New variable to map standard dict names to hunspell ones.
2451 (ispell-set-spellchecker-params): Make sure specific dict names
2452 are used for standard dicts with hunspell.
2453
2454 2013-01-21 Tassilo Horn <tsdh@gnu.org>
2455
2456 * textmodes/reftex-cite.el (reftex-format-citation): Add format
2457 chars for note (%N) and url (%U).
2458 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
2459
2460 2013-01-21 Juri Linkov <juri@jurta.org>
2461
2462 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
2463 in addition to existing separate binding `meta f10' in `global-map'.
2464 (Bug#13484)
2465
2466 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
2467
2468 Improve XEmacs compatibility.
2469
2470 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
2471
2472 * net/tramp-adb.el (top): Require `time-date'.
2473 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
2474 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
2475 Use `tramp-file-name-handler'.
2476 (tramp-adb-maybe-open-connection):
2477 Use `tramp-compat-set-process-query-on-exit-flag'.
2478
2479 * net/tramp-sh.el (tramp-sh-handle-file-acl):
2480 Use `tramp-compat-funcall'.
2481
2482 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2483 `tramp-compat-funcall'.
2484
2485 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
2486
2487 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2488 reimplementation using "adb shell command ..." instead of running
2489 remote shell interactively.
2490
2491 2013-01-20 Glenn Morris <rgm@gnu.org>
2492
2493 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2494 Add native profiler menu entries.
2495
2496 * profiler.el (profiler-running-p): New function.
2497 (profiler-cpu-profile): Use profiler-running-p.
2498 (profiler-report-mode-map): Add some more menu entries.
2499
2500 2013-01-19 Glenn Morris <rgm@gnu.org>
2501
2502 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2503 fixes 2012-12-07 change. (Bug#13499)
2504
2505 2013-01-19 Leo Liu <sdl.web@gmail.com>
2506
2507 * dired.el (dired-get-marked-files): Prune erroneous values due to
2508 last change. (Bug#13152)
2509
2510 2013-01-19 Glenn Morris <rgm@gnu.org>
2511
2512 * progmodes/etags.el (tags-table-check-computed-list):
2513 Preserve point in tags buffer. (Bug#13412)
2514
2515 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2516
2517 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
2518 Chong Yidong <cyd@gnu.org>
2519
2520 * image-mode.el (image-next-file, image-previous-file):
2521 New commands (Bug#8453).
2522 (image-mode-map): Bind them to n and p.
2523 (image-mode--images-in-directory): New helper function.
2524
2525 2013-01-19 Chong Yidong <cyd@gnu.org>
2526
2527 * image-mode.el (image-mode-fit-frame): Add a frame argument.
2528 Suggested by Drew Adams (Bug#7730). Handle window decorations;
2529 save and restore the old window configuration.
2530
2531 2013-01-18 Leo Liu <sdl.web@gmail.com>
2532
2533 * progmodes/js.el: Tweak autoload cookie for alias.
2534
2535 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2536
2537 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2538 buffer local, again. This was lost with the fix on 2013-01-12.
2539
2540 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2541
2542 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2543 order to support several eshell buffers in parallel.
2544
2545 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2546
2547 * autorevert.el (auto-revert-use-notify): In the :set function, do
2548 not modify `kill-buffer-hook'.
2549 (auto-revert-notify-rm-watch):
2550 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2551 (auto-revert-notify-add-watch): Do not call
2552 `auto-revert-notify-rm-watch', but add it to a buffer local
2553 `kill-buffer-hook'.
2554
2555 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2556
2557 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2558 call to `eval' rather than a backquoted lambda.
2559
2560 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2561
2562 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2563 to return an explicit nil.
2564 (advice--remove-function): Change accordingly.
2565
2566 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2567 the use of nadvice.el.
2568
2569 * progmodes/which-func.el (which-function): Silence imenu errors
2570 (bug#13433).
2571
2572 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2573
2574 * progmodes/sql.el (sql-imenu-generic-expression):
2575 (sql-mode-font-lock-object-name): Match schema qualified names.
2576 (sql-connect): Use string keys.
2577 (sql-product-interactive): Wait for interpreter prompt.
2578 (sql-comint-oracle): Set process coding based on NLS_LANG.
2579
2580 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2581
2582 * progmodes/sql.el (sql-output-to-send): Remove, unused.
2583 (sql-interactive-remove-continuation-prompt):
2584 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2585
2586 2013-01-14 Leo Liu <sdl.web@gmail.com>
2587
2588 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2589 (Bug#13420)
2590
2591 2013-01-14 Glenn Morris <rgm@gnu.org>
2592
2593 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2594 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
2595
2596 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
2597
2598 * progmodes/python.el (python-nav-end-of-statement):
2599 Fix cornercase when handling multiline strings.
2600
2601 2013-01-13 Richard Stallman <rms@gnu.org>
2602
2603 * mail/sendmail.el (mail-position-on-field): Add doc string.
2604
2605 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2606 Get current message boundaries and pass them to
2607 message-forward-make-body-mime. Minor style changes.
2608
2609 2013-01-13 Eli Zaretskii <eliz@gnu.org>
2610
2611 * cus-start.el (all): Avoid warnings about
2612 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2613
2614 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2615
2616 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2617
2618 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2619
2620 * jit-lock.el (jit-lock-debug-mode): New minor mode.
2621 (jit-lock--debug-fontifying): New var.
2622 (jit-lock--debug-fontify): New function.
2623 * subr.el (condition-case-unless-debug): Don't prevent catching the
2624 error, just let the debbugger run.
2625 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2626 timer code and don't drop errors silently.
2627
2628 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
2629
2630 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2631 `permanent-local' property.
2632 (auto-revert-notify-handler): Use `file-equal-p'.
2633
2634 2013-01-12 Eli Zaretskii <eliz@gnu.org>
2635
2636 * autorevert.el (auto-revert-notify-handler): Fix filtering of
2637 file notification by ACTION. For filtering by file name, compare
2638 only the non-directory part of the file name.
2639
2640 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
2641
2642 * autorevert.el: Use cl-lib instead of cl.
2643
2644 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2645 (vc-bzr-checkin): Use it.
2646 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2647 will preserve match-data.
2648
2649 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
2650
2651 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2652 (js--declaration-keyword-re): New var.
2653 (js--multi-line-declaration-indentation): New function.
2654 (js--proper-indentation): Use it.
2655
2656 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2657
2658 * calc/calc.el (calc-highlight-selections-with-faces)
2659 (calc-dispatch):
2660 * comint.el (comint-history-isearch-message):
2661 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2662 * ffap.el (ffap-string-at-point-region, ffap-next)
2663 (ffap-string-at-point, ffap-string-around)
2664 (ffap-copy-string-as-kill, ffap-highlight-overlay)
2665 (ffap-literally):
2666 * font-lock.el (font-lock-keywords-alist)
2667 (font-lock-removed-keywords-alist):
2668 * help-mode.el (help-xref-symbol-regexp):
2669 * info.el (Info-find-emacs-command-nodes):
2670 * international/mule.el (add-to-coding-system-list):
2671 * isearch.el (isearch-message-function, isearch-fail-pos):
2672 * misearch.el (multi-isearch-next-buffer-function):
2673 * newcomment.el (comment-box):
2674 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2675 (pr-setting-database):
2676 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2677 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2678 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2679 (pike-font-lock-keywords-3):
2680 * progmodes/compile.el (compile):
2681 * progmodes/etags.el (tags-table-files)
2682 (tags-table-files-function, tags-included-tables-function):
2683 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2684 (gdb-restore-windows):
2685 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2686 (ps-n-up-filling-database):
2687 * server.el (server-buffer, server-log):
2688 * simple.el (newline, delete-backward-char, delete-forward-char)
2689 (minibuffer-history-isearch-message, kill-line, track-eol)
2690 (temporary-goal-column):
2691 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2692 (flyspell-default-deplacement-commands):
2693 * textmodes/ispell.el (ispell-accept-output):
2694 * textmodes/sgml-mode.el (html-tag-help):
2695 * vc/compare-w.el (compare-ignore-whitespace)
2696 (compare-ignore-case, compare-windows-dehighlight):
2697 * vc/diff.el (diff):
2698 * whitespace.el (whitespace-point)
2699 (whitespace-font-lock-refontify, whitespace-bob-marker)
2700 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2701
2702 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
2703
2704 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2705 (auto-revert-notify-rm-watch): Ignore errors.
2706 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
2707 inotify, and '(size last-write-time) for w32notify.
2708 Set buffer-local `auto-revert-use-notify' to nil when adding a file
2709 watch fails - this is a fallback to the file modification check.
2710 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2711 (auto-revert-notify-event-action)
2712 (auto-revert-notify-event-file-name): New defuns.
2713 (auto-revert-notify-handler): Use them. Implement first
2714 plausibility checks.
2715 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2716
2717 2013-01-11 Julien Danjou <julien@danjou.info>
2718
2719 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2720 max are almost equal. Also return the correct value for V which is
2721 already between 0 and 1.
2722
2723 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2724
2725 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2726
2727 2013-01-11 Eli Zaretskii <eliz@gnu.org>
2728
2729 * autorevert.el (auto-revert-notify-rm-watch)
2730 (auto-revert-notify-add-watch): Fix typos in w32notify function
2731 names.
2732
2733 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2734
2735 * autorevert.el (auto-revert-notify-enabled): Move up.
2736 (auto-revert-use-notify): New defcustom.
2737 (auto-revert-mode, global-auto-revert-mode)
2738 (auto-revert-notify-add-watch, auto-revert-handler)
2739 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2740 `auto-revert-notify-enabled'.
2741
2742 2013-01-10 Elias Pipping <pipping@exherbo.org>
2743
2744 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2745 * doc-view.el (doc-view-document->bitmap):
2746 Use doc-view-single-page-converter-function instead of
2747 single-page-converter arg; adjust callers.
2748
2749 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
2750
2751 * progmodes/which-func.el (which-function): Understand Semantic's use
2752 of overlays in imenu--index-alist.
2753
2754 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
2755
2756 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
2757 (Man-man-k-use-anchor): New var.
2758 (Man-parse-man-k): New function.
2759 (Man-completion-table): Use it.
2760 (man): Flush the completion cache between uses.
2761
2762 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2763
2764 * autorevert.el: Add file watch support.
2765 (auto-revert-notify-enabled): New defconst.
2766 (auto-revert-notify-watch-descriptor-hash-list)
2767 (auto-revert-notify-watch-descriptor)
2768 (auto-revert-notify-modified-p): New defvars.
2769 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2770 (auto-revert-notify-handler): New defuns.
2771 (auto-revert-mode, global-auto-revert-mode): Remove file watches
2772 when mode is disabled.
2773 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2774 (auto-revert-buffers): Add file watches for active buffers.
2775
2776 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2777
2778 * cus-start.el (toplevel): Only allow float values for
2779 scroll-up-aggressively and scroll-down-aggressively.
2780 Allow any number for line-spacing.
2781
2782 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2783
2784 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2785 (doc-view-pdf->png-converter-function): Use mupdf if available.
2786 (doc-view-djvu->png-converter-function)
2787 (doc-view-ps->png-converter-function): Remove.
2788 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2789 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2790 (doc-view-already-converted-p): Adjust accordingly.
2791 (doc-view-mode-p): Simplify.
2792 (doc-view-enlarge): Use setq-local.
2793 (doc-view-pdf->png-converter-ghostscript)
2794 (doc-view-djvu->png-converter-ddjvu)
2795 (doc-view-pdf->png-converter-mupdf): Rework to call
2796 doc-view-start-process directly.
2797 (doc-view-pdf/ps->png): Simplify accordingly.
2798 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2799 (doc-view-document->bitmap): Rename from doc-view-document->png.
2800 (doc-view-convert-current-doc): Merge pdf and djvu cases.
2801 (doc-view-set-slice-from-bounding-box): Fix completion table.
2802 (doc-view-mode): Use add-hook for after-revert-hook.
2803
2804 2013-01-10 Glenn Morris <rgm@gnu.org>
2805
2806 * emacs-lisp/authors.el (authors-ignored-files)
2807 (authors-valid-file-names, authors-renamed-files-alist):
2808 Add some more entries.
2809
2810 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2811
2812 * image-mode.el (image-mode-winprops): Don't throw away the fallback
2813 `t' pseudo-window entry.
2814
2815 2013-01-10 Alan Mackenzie <acm@muc.de>
2816
2817 Fix bugs in the c-parse-state mechanism. Reuse some markers
2818 instead of continually generating new ones.
2819
2820 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2821 (c-state-old-cpp-end-marker): New variables.
2822 (c-append-lower-brace-pair-to-state-cache): Start a backward
2823 search for "}" definitively outside CPP constructs.
2824 (c-remove-stale-state-cache): Inform the caller of a need to
2825 search back for a brace pair in certain circumstances.
2826 (c-state-maybe-marker): New macro.
2827 (c-parse-state): Reuse markers when appropriate.
2828
2829 2013-01-10 Glenn Morris <rgm@gnu.org>
2830
2831 * simple.el (execute-extended-command): Doc fix.
2832 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
2833
2834 2013-01-10 Chong Yidong <cyd@gnu.org>
2835
2836 * faces.el (read-face-name): Doc fix.
2837
2838 2013-01-10 Roland Winkler <winkler@gnu.org>
2839
2840 * emacs-lisp/crm.el: Allow any regexp for separators.
2841 (crm-default-separator): All spaces around the default comma separator.
2842 (crm--completion-command): New macro.
2843 (crm-completion-help, crm-complete, crm-complete-word): Use it.
2844 (crm-complete-and-exit): Handle non-single-char separators.
2845
2846 2013-01-09 Elias Pipping <pipping@lavabit.com>
2847
2848 * doc-view.el: Add support for DjVu (bug#13164).
2849 (doc-view-djvu->png-converter-function): New config var.
2850 (doc-view-single-page-converter-function, doc-view--image-type)
2851 (doc-view--image-file-extension): New vars.
2852 (doc-view-mode): Initialize them.
2853 (doc-view-goto-page): Use them.
2854 (doc-view-mode-p): Add support for ddjvu.
2855 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2856 (doc-view-set-up-single-converter): New funs.
2857 (doc-view-pdf/ps->png): Extend for djvu.
2858 (doc-view-document->png): Rename from doc-view-pdf->png.
2859 (doc-view-convert-current-doc): Handle djvu.
2860 (doc-view-insert-image, doc-view-display)
2861 (doc-view-already-converted-p): Don't hardcode png.
2862 (doc-view-set-doc-type): Recognize djvu docs.
2863
2864 2013-01-09 Elias Pipping <pipping@lavabit.com>
2865
2866 * doc-view.el: Add support for mupdf converter (bug#13164).
2867 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2868 (doc-view-ps->png-converter-function): New config vars.
2869 (doc-view-pdf->png-converter-ghostscript)
2870 (doc-view-ps->png-converter-ghostscript)
2871 (doc-view-pdf->png-converter-mupdf): New functions.
2872 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2873
2874 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
2875
2876 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2877 first in session cache: When `tramp-own-remote-path' is in
2878 `tramp-remote-path', the remote path is only set in the session
2879 cache.
2880
2881 2013-01-09 Glenn Morris <rgm@gnu.org>
2882
2883 * emacs-lisp/trace.el (trace-function-foreground)
2884 (trace-function-background): Doc fix.
2885
2886 2013-01-09 Juri Linkov <juri@jurta.org>
2887
2888 * international/mule-cmds.el (read-char-by-name): Move let-binding
2889 of completion-ignore-case around completing-read to fix regression
2890 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2891 `string-match-p' using the nil value of `case-fold-search' and
2892 `completion-ignore-case' in `completion-pcm--all-completions'.
2893 (Bug#12615).
2894
2895 2013-01-09 Glenn Morris <rgm@gnu.org>
2896
2897 * progmodes/compile.el (compilation-parse-errors):
2898 Fix typo. (Bug#13369)
2899
2900 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2901
2902 * comint.el (comint-send-input): Check size of buffer before
2903 waiting for process output, in case already accepted. (Bug#13290)
2904
2905 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
2906
2907 Spelling fixes.
2908 * net/tramp-adb.el (tramp-adb-get-toolbox):
2909 Fix misspelling of 'unknown'.
2910
2911 2013-01-08 Juri Linkov <juri@jurta.org>
2912
2913 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2914 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2915 Use underline style wave on terminals that support it. (Bug#13000)
2916
2917 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2918
2919 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2920 the predicate returns nil.
2921
2922 * simple.el: Use lexical-binding.
2923 (primitive-undo): Use pcase.
2924 (minibuffer-history-isearch-push-state): Use a closure.
2925
2926 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2927
2928 * simple.el (primitive-undo): Move from undo.c.
2929
2930 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2931
2932 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2933 (cvs-mode-remove-handled): Use it (bug#13380).
2934
2935 * emacs-lisp/nadvice.el (advice--tweak): New function.
2936 (advice--remove-function, advice--subst-main): Use it.
2937
2938 * emacs-lisp/advice.el: Update commentary.
2939
2940 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
2941
2942 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2943 Remove spurious entry.
2944
2945 2013-01-08 Glenn Morris <rgm@gnu.org>
2946
2947 * net/tramp.el (tramp-default-host-alist): Add :version.
2948
2949 2013-01-08 Juri Linkov <juri@jurta.org>
2950
2951 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2952 single completion. (Bug#12456)
2953 (info--manual-names): Expand node completions into an explicit list
2954 before appending it to another list. Filter out internal buffers
2955 with the leading space in the buffer name. (Bug#10771)
2956
2957 2013-01-08 Juri Linkov <juri@jurta.org>
2958
2959 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2960 that defaults to the Top node.
2961 (Info-goto-node, Info-read-node-name): Doc fix to mention that
2962 the short format (FILENAME) goes to the Top node.
2963 (Info-build-node-completions): Rename arg `file' to `filename'.
2964 (Bug#13365)
2965
2966 2013-01-07 Bastien Guerry <bzg@gnu.org>
2967
2968 * menu-bar.el (menu-bar-search-documentation-menu):
2969 Use `apropos-user-option' and fix the help message.
2970
2971 2013-01-07 Bastien Guerry <bzg@gnu.org>
2972
2973 * apropos.el (apropos-do-all): Update docstring.
2974 (apropos-user-option-button): New face.
2975 (apropos-user-option): Rename from `apropos-variable' and update
2976 docstring.
2977 (apropos-variable): Rewrite, now show all variables by default.
2978 (apropos-print): Mention "User option" instead of "Variable" when
2979 printing doc for user options. (Bug#13276)
2980
2981 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
2982
2983 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2984 Handle filename correctly, when parsing "source -> target" symlink
2985 output.
2986 (tramp-adb-handle-set-file-times): New defun.
2987
2988 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
2989
2990 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2991 advice list when the interactive-spec of ad-Advice-* changes.
2992
2993 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
2994
2995 * wid-edit.el (widget-default-get): Work for inlined elements.
2996 (Bug#12670)
2997
2998 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
2999
3000 * net/tramp.el (tramp-default-host-alist): New defcustom.
3001 (tramp-find-host): Use it.
3002 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
3003 `eshell-directory-change-hook'.
3004
3005 * net/tramp-adb.el (top): Add adb specific entry in
3006 `tramp-default-host-alist'.
3007 (tramp-adb-file-name-host): Remove function.
3008 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
3009 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
3010
3011 * net/tramp-sh.el: Move eshell integration code to tramp.el.
3012
3013 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
3014
3015 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
3016
3017 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
3018
3019 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
3020 consist of more than one digit.
3021 (tramp-adb-file-name-handler-alist):
3022 Use `tramp-handle-file-exists-p' consistently.
3023 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
3024 (tramp-adb-handle-file-exists-p): Remove function.
3025 (tramp-adb-file-name-host): New defun.
3026 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
3027 Use it.
3028 (tramp-adb-maybe-open-connection): Set "remote-path" property.
3029
3030 2013-01-06 Chong Yidong <cyd@gnu.org>
3031
3032 * vc/vc.el (vc-next-action): Detect buffer modifications
3033 conflicting with locking VCS operation (Bug#11490).
3034
3035 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
3036
3037 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
3038
3039 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
3040 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
3041
3042 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
3043
3044 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
3045 parsing of ls output using regular expression (handle filenames
3046 with spaces). Use virtual device number.
3047 (tramp-do-parse-file-attributes-with-ls): New defun (Code
3048 cleanup).
3049
3050 2013-01-04 Daiki Ueno <ueno@gnu.org>
3051
3052 * epg.el: Silence byte-compiler warnings.
3053 (epg--start): Use delete-char instead of delete-backward-char.
3054 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
3055
3056 2013-01-04 Daiki Ueno <ueno@gnu.org>
3057
3058 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
3059 Suggested by Eli Zaretskii <eliz@gnu.org>.
3060
3061 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
3062
3063 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
3064 non-negative integers. Otherwise, the default values are used.
3065 (tramp-convert-file-attributes): Convert uid and gid to integers.
3066
3067 2013-01-04 Glenn Morris <rgm@gnu.org>
3068
3069 * term.el (term-handle-colors-array): Ensure face attributes
3070 are fully specified, not nil. (Bug#13337)
3071
3072 * term.el (term-default-fg-color, term-default-bg-color):
3073 Fix custom type.
3074
3075 * progmodes/etags.el (tags-compression-info-list): Doc fix.
3076 (tag-find-file-of-tag-noselect): Check auto-compression-mode
3077 rather than 'jka-compr being loaded. (Bug#13338)
3078
3079 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
3080
3081 * icomplete.el (icomplete-completions):
3082 Honor icomplete-prospects-height once more following
3083 2012-11-29 changes. (Bug#13224)
3084
3085 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
3086
3087 * subr.el (internal--called-interactively-p--get-frame): Find aliases
3088 of called-interactively-p as well (bug#13237).
3089
3090 * view.el (view--enable, view--disable): Rename from view-mode-enable
3091 and view-mode-disable and assume it's called from view-mode.
3092 (view-mode-enable, view-mode-disable): Redefine as obsolete
3093 compatibility layer above view-mode.
3094 (view-mode-enter): Call `view-mode'.
3095
3096 * files.el (after-find-file): Call `view-mode'.
3097
3098 * doc-view.el (doc-view-scale-internally): New var.
3099 (doc-view-enlarge, doc-view-insert-image): Obey it.
3100
3101 2013-01-03 Daiki Ueno <ueno@gnu.org>
3102
3103 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
3104 exist. (Bug#13344)
3105
3106 2013-01-03 Glenn Morris <rgm@gnu.org>
3107
3108 * mail/rmail.el (rmail-set-header-1): Ignore case.
3109 Handle multi-line headers. (Bug#13330)
3110
3111 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
3112 Handle paragraph starting at beginning of buffer.
3113
3114 * subr.el (eval-after-load): Don't purecopy the form, so that it
3115 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
3116
3117 * emacs-lisp/byte-run.el (defun): Place cl declarations
3118 after any interactive spec. (Bug#13265)
3119
3120 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
3121
3122 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
3123 defun. Don't check for DECL if DOCSTRING isn't a string.
3124 (defun): Likewise.
3125
3126 2013-01-02 Glenn Morris <rgm@gnu.org>
3127
3128 * eshell/em-cmpl.el (eshell-pcomplete):
3129 More thoroughly imitate pcomplete. (Bug#13293)
3130
3131 * files.el (parse-colon-path): Doc fix. (Bug#12351)
3132 Return nil for empty path elements. (Bug#13296)
3133
3134 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
3135
3136 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
3137 order to improve efficiency (Based on Daniel Colascione's
3138 <dancol@dancol.org> patch). (Bug#13182)
3139
3140 2013-01-02 Glenn Morris <rgm@gnu.org>
3141
3142 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
3143
3144 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
3145
3146 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
3147 neither DOCSTRING nor DECL was given. (Bug#13316)
3148
3149 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
3150
3151 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
3152 `error' call.
3153 (tramp-do-copy-or-rename-file): Ignore errors when calling
3154 `set-file-extended-attributes'.
3155
3156 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3157 Add handler for `file-acl'.
3158 (tramp-smb-handle-file-acl): New defun.
3159
3160 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
3161
3162 * calc/README: Mention ISO 8601 week-numbering dates.
3163
3164 2013-01-01 Martin Rudalics <rudalics@gmx.at>
3165
3166 * view.el (view-mode-enable): New argument run-view-mode-hook.
3167 Run view-mode-hook only when it's non-nil (Bug#13315).
3168 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
3169 argument t.
3170
3171 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
3172
3173 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
3174 (No device connected, invalid device name). (Bug #13299)
3175
3176 2012-12-31 Martin Rudalics <rudalics@gmx.at>
3177
3178 * window.el (window-resizable--p): Rename to window-resizable-p.
3179 (window-resize-no-error): New function.
3180
3181 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
3182 broken in fix from 2012-12-28.
3183
3184 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
3185
3186 * subr.el (special-form-p): Don't signal errors on undef aliases.
3187
3188 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
3189
3190 * calc/calc-forms.el (math-parse-date): Try using
3191 `math-parse-iso-date' when it looks like it might be needed.
3192 Allow times of 24:00.
3193 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
3194 of 24:00.
3195
3196 2012-12-30 Glenn Morris <rgm@gnu.org>
3197
3198 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
3199 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
3200 (rmail-summary-displayed, rmail-summary): Declare.
3201 (mairix-rmail-display): Just require rmail.
3202
3203 2012-12-30 Chong Yidong <cyd@gnu.org>
3204
3205 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
3206 check for the tarball contents.
3207
3208 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
3209
3210 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
3211 tarfile content listings (Bug#13136).
3212
3213 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
3214
3215 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
3216 Insert the undecoded text of the message being forwarded. (Bug#9521)
3217
3218 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
3219
3220 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
3221 integers, if they are real numbers. (Bug#13282)
3222
3223 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
3224 Return `t' on success.
3225
3226 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3227 Add handler for `set-file-selinux-context'.
3228
3229 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
3230
3231 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
3232 (tramp-sh-handle-set-file-acl): Return `t' on success.
3233
3234 2012-12-29 Eli Zaretskii <eliz@gnu.org>
3235
3236 * files.el (backup-buffer-copy, basic-save-buffer-2):
3237 If set-file-extended-attributes fails, fall back on set-file-modes
3238 instead of signaling an error. (Bug#13298)
3239 (basic-save-buffer): Likewise.
3240
3241 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3242
3243 * progmodes/python.el: Support other commands triggering
3244 python-indent-line so indentation cycling continues to work.
3245 (python-indent-trigger-commands): New defcustom.
3246 (python-indent-line): Use it.
3247
3248 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3249
3250 * progmodes/python.el (python-shell-send-region): Add blank lines
3251 for non sent code so backtraces remain correct.
3252
3253 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
3254
3255 * progmodes/python.el: Remove cl dependency.
3256 (python-syntax-count-quotes): Replace incf call.
3257 (python-fill-string): Replace setf call.
3258
3259 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
3260
3261 * info.el (info-other-window): New arg, for consistency with info.
3262
3263 2012-12-28 Martin Rudalics <rudalics@gmx.at>
3264
3265 * mail/rmail.el (rmail-maybe-display-summary):
3266 Rewrite (Bug#13066).
3267
3268 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
3269
3270 * epg.el (epg--start): Modify process-environment locally.
3271
3272 2012-12-28 Daiki Ueno <ueno@gnu.org>
3273
3274 * epg.el: Support pinentry-curses.
3275 Suggested by Werner Koch in
3276 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
3277 (epg-agent-file, epg-agent-mtime): New variable.
3278 (epg--start): Record the modified time of gpg-agent socket file,
3279 to restore Emacs frame after pinentry-curses termination.
3280 (epg-wait-for-completion): Restore Emacs frame here.
3281
3282 2012-12-27 Juri Linkov <juri@jurta.org>
3283
3284 * info.el (Info-file-completions): New variable.
3285 (Info-read-node-name-1): Complete node names in the Info file
3286 when a file name is given. Call `Info-build-node-completions'
3287 with a file name.
3288 (Info-build-node-completions): Add new arg `file'. When it is
3289 non-nil, visit it in a temporary buffer and cache its completions in
3290 `Info-current-file-completions'. Move most of the function body to
3291 `Info-build-node-completions-1'.
3292 (Info-build-node-completions-1): New function with the body from
3293 `Info-build-node-completions'. (Bug#12456)
3294
3295 2012-12-27 Juri Linkov <juri@jurta.org>
3296
3297 * frame.el (frame-maximization-style): Remove user option.
3298 (cycle-frame-maximized): Remove function.
3299 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
3300 (toggle-frame-fullscreen): New command bound to <f11> instead of
3301 `toggle-frame-maximized'.
3302 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
3303
3304 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
3305
3306 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
3307
3308 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3309 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3310 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3311 for `file-accessible-directory-p'. (Bug#13275)
3312
3313 2012-12-27 Sam Steingold <sds@gnu.org>
3314
3315 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
3316 continuations, see <http://stackoverflow.com/questions/3582436>.
3317
3318 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
3319
3320 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
3321 "module" and "def" to have indentation before them.
3322 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
3323
3324 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
3325
3326 2012-12-27 Alan Mackenzie <acm@muc.de>
3327
3328 Speed up fontification where there's large brace blocks.
3329 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
3330 to a call of c-beginning-of-decl-1.
3331
3332 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
3333
3334 * comint.el (comint-adjust-window-point): New function.
3335 (comint-postoutput-scroll-to-bottom):
3336 Call comint-adjust-window-point (Bug#13248).
3337
3338 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
3339
3340 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
3341 Rakefile regexp.
3342 (auto-mode-alist): Associate .gemspec files with ruby-mode
3343 (https://bugs.ruby-lang.org/issues/5453).
3344
3345 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
3346
3347 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
3348 Suppress coloring, if possible (required for BusyBox based systems like
3349 CyanogenMod).
3350 (tramp-adb-handle-file-attributes)
3351 (tramp-adb-handle-insert-directory)
3352 (tramp-adb-handle-file-name-all-completions): Use it.
3353 (tramp-adb-get-toolbox): New defun. Check for remote shell
3354 implementation (BusyBox or Toolbox).
3355
3356 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
3357
3358 * startup.el (initial-buffer-choice): Allow function as value
3359 (Bug#13251).
3360 (command-line-1): Handle case where initial-buffer-choice
3361 specifies a function.
3362 * server.el (server-execute): Handle case where
3363 initial-buffer-choice specifies a function.
3364
3365 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
3366
3367 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
3368 its own function.
3369 (smtpmail-try-auth-methods): Forget the user name/password if the
3370 login is unsuccessful (bug#12424).
3371
3372 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
3373
3374 * notifications.el (notifications-notify): Protect body with
3375 `with-demoted-errors'.
3376
3377 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
3378 Check properties of remote device. Restart connection, if there is a
3379 change.
3380
3381 2012-12-21 Chong Yidong <cyd@gnu.org>
3382
3383 * sort.el (sort-subr): Doc fix (Bug#13056).
3384
3385 2012-12-21 Bastien Guerry <bzg@gnu.org>
3386
3387 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
3388
3389 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
3390
3391 * simple.el (process-file): Overwrite stderr file, if exists.
3392
3393 2012-12-21 Daiki Ueno <ueno@gnu.org>
3394
3395 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
3396 (epg-error): Set `error-message' property.
3397
3398 2012-12-21 Chong Yidong <cyd@gnu.org>
3399
3400 * international/mule-cmds.el (read-char-by-name): Signal an error
3401 if the user does not supply a valid character (Bug#13177).
3402
3403 * simple.el (transpose-subr-1): Preserve marker positions by
3404 changing the insertion sequence (Bug#13122).
3405
3406 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3407
3408 * simple.el (kill-region): Deactivate mark even for empty regions
3409 (Bug#13169).
3410
3411 2012-12-21 Chong Yidong <cyd@gnu.org>
3412
3413 * help-fns.el (describe-variable): Make sure we get the right
3414 buffer name (Bug#13105). Suggested by Kelly Dean.
3415
3416 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
3417
3418 * comint.el (comint-redirect-previous-input-string): New variable.
3419 (comint-redirect-setup, comint-redirect-cleanup)
3420 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
3421 (comint-redirect-preoutput-filter): Fix verbose message.
3422
3423 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
3424
3425 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
3426 is too long for Tramp. See discussion in
3427 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
3428
3429 * progmodes/compile.el (compilation-start): Remove line escape
3430 template.
3431
3432 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
3433
3434 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
3435 Adjust comment.
3436
3437 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
3438
3439 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
3440 following non-comment text (bug#13207).
3441 (lm-header-multiline): Continuation lines need to be indented more than
3442 the first line.
3443 (lm-homepage): New function.
3444 (lm-with-file): Don't be confused if narrowing is in effect.
3445
3446 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
3447
3448 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
3449 very beginning of a hunk (e.g. killing the first line).
3450
3451 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
3452
3453 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
3454 and text properties from returned ACL string.
3455 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
3456 for "setfacl" command.
3457
3458 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
3459
3460 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
3461 `tramp-cleanup-this-connection', when the process has died.
3462 (Bug#13151)
3463
3464 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3465
3466 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
3467
3468 2012-12-17 Kevin Ryde <user42@zip.com.au>
3469
3470 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
3471
3472 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
3473
3474 Add support for preserving ACL entries of files.
3475
3476 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
3477 `set-file-acl' handlers.
3478
3479 * net/tramp-adb.el (tramp-adb-handle-copy-file):
3480 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3481
3482 * net/tramp-compat.el (tramp-compat-copy-file):
3483 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3484
3485 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3486 Add `file-acl' and `set-file-acl' handlers.
3487 (tramp-gvfs-handle-copy-file):
3488 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3489 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3490 New defuns.
3491
3492 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3493 Add `file-acl' and `set-file-acl' handlers.
3494 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3495 (tramp-sh-handle-set-file-acl): New defuns.
3496 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3497 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3498
3499 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3500 Add `file-acl' and `set-file-acl' handlers.
3501 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3502
3503 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3504
3505 * help-macro.el (make-help-screen): Instead of switch-to-buffer
3506 use pop-to-buffer with NORECORD argument t. As buffer name, use
3507 *Metahelp* with a leading space (Bug#13190).
3508
3509 2012-12-16 Romain Francoise <romain@orebokech.com>
3510
3511 * files.el (file-extended-attributes)
3512 (set-file-extended-attributes): New functions.
3513 (backup-buffer): Use them to handle both SELinux context and ACL
3514 entries.
3515 (backup-buffer-copy): Work with an alist of extended attributes,
3516 rather than an SELinux context.
3517 (basic-save-buffer-2): Ditto.
3518
3519 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
3520
3521 * battery.el (battery-bsd-apm): New function.
3522
3523 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
3524
3525 * calc/calc.el (calc-standard-date-formats): Adjust one of the
3526 standard date formats.
3527
3528 2012-12-15 Juri Linkov <juri@jurta.org>
3529
3530 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3531 `isearch-insert-char-by-name'.
3532 (with-isearch-suspended): New defmacro with body mostly from
3533 `isearch-edit-string' except the part that sets
3534 `isearch-new-string' and `isearch-new-message'.
3535 (isearch-edit-string): Use new macro `with-isearch-suspended' with
3536 body that sets `isearch-new-string' and `isearch-new-message'.
3537 (isearch-insert-char-by-name): New command.
3538 * international/mule-cmds.el (read-char-by-name): Let-bind
3539 `enable-recursive-minibuffers' to t.
3540 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3541
3542 2012-12-15 Juri Linkov <juri@jurta.org>
3543
3544 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3545 (Bug#13175)
3546
3547 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
3548
3549 * dired-x.el (dired-guess-shell-command): Put colon at the end of
3550 the prompt. (Bug#13045)
3551
3552 2012-12-14 Glenn Morris <rgm@gnu.org>
3553
3554 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3555 Try to include filename in non-bytecomp warning. (Bug#13132)
3556
3557 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
3558
3559 Fix permissions bugs with setgid directories etc. (Bug#13125)
3560 * files.el (backup-buffer): Don't rely on 9th output of
3561 file-attributes, as it's now a placeholder. Instead, use the new
3562 optional arg of file-ownership-preserved-p.
3563 (file-ownership-preserved-p): New optional arg GROUP.
3564 Fix mishandling of setuid directories that would cause this
3565 function to return t when it should have returned nil.
3566 Document what happens if the file does not exist, and when
3567 it's not known whether the ownership will be preserved.
3568 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3569 Likewise.
3570 (tramp-get-local-gid): Use group-gid for integer, as that's
3571 faster and more reliable.
3572
3573 2012-12-14 Julien Danjou <julien@danjou.info>
3574
3575 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3576 Update keywords list, data type and PL/pgSQL.
3577
3578 2012-12-14 Dave Abrahams <dave@boostpro.com>
3579
3580 * vc/ediff-util.el (ediff-buffer-type): New function.
3581 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3582 rather than taking it as as argument.
3583 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3584
3585 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
3586
3587 * json.el: Add pretty-print option (bug#12634).
3588 (json-encoding-separator, json-encoding-default-indentation)
3589 (json--encoding-current-indentation, json-encoding-pretty-print)
3590 (json-encoding-lisp-style-closings): New vars.
3591 (json--with-indentation): New macro.
3592 (json-encode-hash-table, json-encode-alist, json-encode-plist)
3593 (json-encode-array): Use it to obey json-encoding-pretty-print.
3594 (json-pretty-print-buffer, json-pretty-print): New commands.
3595
3596 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
3597
3598 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3599 Extract `ruby-syntax-propertize-expansions'.
3600 (ruby-syntax-propertize-expansions): Only change syntax on
3601 certain string delimiters, to punctuation. This way the common
3602 functions like forward-word and thing-at-point still work.
3603 (ruby-match-expression-expansion): Improve readability.
3604 (ruby-block-contains-point): New function.
3605 (ruby-add-log-current-method): Handle several edge cases.
3606
3607 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3608
3609 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3610 unload-feature finishes even when aborting an ongoing edebug session.
3611 Also, do not worry about edebug-mode, unload-feature takes care of it.
3612
3613 2012-12-13 Andreas Schwab <schwab@suse.de>
3614
3615 * net/tls.el (tls-program): Update customize type.
3616
3617 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3618
3619 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3620 (edebug-setup-hook, cl-read-load-hooks): Use it.
3621 (edebug-unload-function): New function. (Bug#13163)
3622
3623 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
3624
3625 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3626 Otherwise, there could be errors in autoloading. (Bug#13151)
3627
3628 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
3629
3630 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3631 sequences.
3632
3633 2012-12-13 Alan Mackenzie <acm@muc.de>
3634
3635 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
3636 * progmodes/cc-engine.el (c-backward-comments): Add code to work
3637 around `forward-comment' not recognizing ^M as whitespace.
3638
3639 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
3640
3641 * progmodes/python.el (python-skeleton-class)
3642 (python-skeleton-def): Do not add space after defun name.
3643
3644 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3645
3646 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3647 (cl--symbol-function): Remove (now that funbound is like nil).
3648
3649 2012-12-12 Glenn Morris <rgm@gnu.org>
3650
3651 * button.el (button--area-button-p): Fix typo.
3652
3653 2012-12-12 Sam Steingold <sds@gnu.org>
3654
3655 * frame.el (frame-maximization-style): New user option.
3656 (toggle-frame-maximized): Toggle frame maximization according to
3657 `frame-maximization-style', bound to <f11>.
3658 (cycle-frame-maximized): Cycle between all maximization styles and
3659 non-maximized frame, bound to shift-<f11>.
3660
3661 2012-12-12 David Cadé <codename68@gmail.com>
3662
3663 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3664
3665 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
3666
3667 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3668 (eieio-override-prin1): Don't quote kewords and booleans.
3669 (object-write) <eieio-default-superclass>: Don't put closing parens
3670 on new line, avoid needless empty lines, align values that are objects
3671 with the slot keyword (instead of beginning on the same line).
3672 (eieio-list-prin1): Align value with slot keyword; increase
3673 eieio-print-depth before printing members of the list.
3674
3675 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3676
3677 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3678 a display text-property.
3679 (report-emacs-bug-hook): Don't bother deleting it any more.
3680
3681 * hilit-chg.el (highlight-save-buffer-state): Delete.
3682 Use with-silent-modifications instead.
3683 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3684
3685 * button.el: Handle buttons in display text-properties.
3686 (button--area-button-p, button--area-button-string):
3687 Use (STRING . STRING-POS) representation instead of just STRING.
3688
3689 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3690
3691 * makefile.w32-in (compile4-SH): Fix a typo that caused term
3692 subdirectory be skipped.
3693
3694 2012-12-11 Glenn Morris <rgm@gnu.org>
3695
3696 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3697
3698 * progmodes/f90.el (f90-line-continued, f90-indent-region):
3699 Treat preprocessor lines embedded in continuations like comments.
3700 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
3701
3702 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
3703
3704 * calc/calc.el (calc-standard-date-formats): Add more date
3705 formats.
3706 * calc/calc-forms.el (math-parse-iso-date): New function.
3707 (math-parse-date): Use `math-parse-iso-date' when appropriate.
3708 (math-parse-iso-date-validate): Add extra error checking.
3709 (calc-date-notation): Add ability to access new date formats.
3710
3711 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3712
3713 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3714 font-lock as well as when there's no text-property.
3715
3716 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
3717
3718 * hi-lock.el: Refine the choice of default face.
3719 (hi-lock-keyword->face): New function. Use it wherever we used
3720 cadadadr instead.
3721 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3722 (hi-lock--last-face): Remove var.
3723 (hi-lock--unused-faces): New var to replace it.
3724 (hi-lock-read-face-name): Use/maintain it.
3725 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
3726 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3727 if it has another face.
3728
3729 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3730
3731 * subr.el (w32notify-handle-event): New function.
3732 (inotify-handle-event): Doc fix.
3733
3734 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3735
3736 * subr.el (inotify-event-p, inotify-handle-event): New functions.
3737
3738 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
3739
3740 * simple.el (just-one-space): Doc fix.
3741
3742 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3743
3744 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3745
3746 2012-12-10 Le Wang <l26wang@gmail.com>
3747
3748 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3749 narrowed buffer (bug#12361).
3750
3751 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
3752
3753 * vc/vc-hooks.el (vc-state): Doc fix.
3754
3755 2012-12-10 Glenn Morris <rgm@gnu.org>
3756
3757 * mail/rmail.el (rmail-maybe-display-summary):
3758 Preserve buffer, in case select-window changes it. (Bug#13066)
3759
3760 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3761
3762 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3763 cl-load-hook where they belong.
3764
3765 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3766
3767 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3768
3769 2012-12-09 Eli Zaretskii <eliz@gnu.org>
3770
3771 Parallelize byte compilation on MS-Windows.
3772 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3773 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3774 (WINS_BASIC): Define as concatenation of the above.
3775 (compile): Subdivide into 4 separate and independent jobs that can
3776 be run in parallel.
3777 (compile0-CMD, compile0-SH): New targets for compiling
3778 COMPILE_FIRST files, which are prerequisites for the rest of the
3779 byte-compilation.
3780 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3781 New targets for parallel compilation with cmd.exe.
3782 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3783 compiling under a Unixy shell.
3784
3785 2012-12-09 Chong Yidong <cyd@gnu.org>
3786
3787 * simple.el (set-mark-default-inactive): Delete this
3788 accidentally-introduced option.
3789 (set-mark-command, exchange-point-and-mark): Remove calls.
3790
3791 2012-12-09 Glenn Morris <rgm@gnu.org>
3792
3793 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3794 Respect a defcustom's :set function, if appropriate. (Bug#109)
3795 (eval-defun): Doc fix.
3796
3797 2012-12-08 Juri Linkov <juri@jurta.org>
3798
3799 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3800 (Info-fontify-node, Info-bookmark-make-record): Remove the
3801 file extension from Info-current-file (Bug#13016).
3802
3803 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3804
3805 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3806 point, still provide some default.
3807 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3808 names, since we don't use it right now. Actually return the list.
3809 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3810
3811 2012-12-07 Chong Yidong <cyd@gnu.org>
3812
3813 * novice.el (disabled-command-function): Remove a spurious help
3814 xref (Bug#13043). Suggested by Kelly Dean.
3815
3816 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3817 syntax is specified (Bug#13025).
3818
3819 * info.el (Info-set-mode-line): Remove the file extension from
3820 Info-current-file if there is one (Bug#13016).
3821
3822 2012-12-07 Glenn Morris <rgm@gnu.org>
3823
3824 * mail/rmail.el (rmail-mime-decoded): New permanent local.
3825 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3826 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3827 and rmail-mime-decoded. (Bug#9841)
3828
3829 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
3830 (batch-unrmail, unrmail): Doc fixes.
3831 (unrmail): Respect unrmail-mbox-format.
3832 * mail/rmail.el (rmail-mbox-format): New option.
3833 (rmail-show-message-1): Respect rmail-mbox-format.
3834
3835 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3836
3837 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3838
3839 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3840
3841 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
3842 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3843 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3844 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3845 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3846 (cl-progv): Don't rely on dynamic scoping to find the body.
3847 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3848 (cl--proclaims-deferred): Rename from the "cl-" prefix.
3849 (cl-declaim): Use backquotes.
3850 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3851 Use "cl--" prefix for the object's tag.
3852
3853 * ses.el: Use advice-add/remove.
3854 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3855 (copy-region-as-kill, yank): Use advice-add.
3856 (ses-unload-function): Use advice-remove.
3857
3858 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
3859
3860 * button.el: Make them work in header-lines (bug#12817).
3861 (button-map): Add bindings for header-line and mode-line use.
3862 (button-get, button-put, button-label): `button' may now be a string.
3863 (button-activate): Don't make it a defsubst.
3864 (button--area-button-p, button--area-button-string): New functions.
3865 (make-text-button): Fix the return value when `beg' was a string.
3866 (push-button): Handle the mode-line case.
3867
3868 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3869
3870 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3871 (sql-signum): Remove. Use `cl-signum' instead.
3872 (sql-read-passwd): Remove; use read-passwd instread.
3873 (sql-get-login-ext): Use read-string.
3874 (sql-get-login): Use dolist and pcase.
3875 (sql--completion-table): Rename from sql-try-completion.
3876 Use complete-with-action.
3877 (sql-mode): Don't change abbrev-all-caps globally.
3878 (sql-connect): Don't rely on dynamic scoping for `new-name'.
3879 (sql-postgres-completion-object): Initialize vars in their `let'.
3880 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3881 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3882 (sql-comint-interbase): Use a single append, without setq.
3883 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3884
3885 * hi-lock.el: Rework the default face and the serialize regexp code.
3886 (hi-lock--auto-select-face-defaults): Remove.
3887 (hi-lock-string-serialize-serial): Remove.
3888 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3889 make weak.
3890 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3891 equal string.
3892 (hi-lock-set-pattern): Adjust accordingly.
3893 (hi-lock--regexps-at-point): Simplify accordingly.
3894 (hi-lock--auto-select-face-defaults): Remove.
3895 (hi-lock--last-face): New var to replace it.
3896 (hi-lock-read-face-name): Rewrite (bug#11095).
3897 (hi-lock-unface-buffer): Arrange for the face to be the next default.
3898
3899 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
3900
3901 * net/tramp.el (tramp-replace-environment-variables):
3902 Hide compiler warning.
3903 (tramp-file-name-for-operation): Remove `executable-find',
3904 `start-process', `call-process' and `call-process-region'.
3905
3906 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3907
3908 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3909 compatibility.
3910
3911 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3912
3913 2012-12-06 Chong Yidong <cyd@gnu.org>
3914
3915 * ffap.el (ffap-replace-file-component): Fix typo.
3916
3917 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3918
3919 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3920 fix open-paren-like token test (bug#12785).
3921
3922 2012-12-06 Glenn Morris <rgm@gnu.org>
3923
3924 * mail/rmailsum.el (rmail-new-summary): Tweak for
3925 rmail-maybe-display-summary changing buffer. (Bug#13066)
3926
3927 2012-12-06 Juri Linkov <juri@jurta.org>
3928
3929 * info.el (Info-fontify-node): Don't hide the last newline.
3930 (Bug#12272)
3931
3932 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
3933
3934 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3935 so as to enable message-read-from-minibuffer to expand mail aliases.
3936
3937 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3938
3939 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3940 the `intangible' property.
3941 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3942
3943 2012-12-05 Deniz Dogan <deniz@dogan.se>
3944
3945 * net/rcirc.el (rcirc-urls): Update documentation.
3946 (rcirc-condition-filter): New function.
3947 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3948 and exclude consecutive duplicate URLs (Bug#6082).
3949
3950 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
3951
3952 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3953 Check return code of copy command.
3954
3955 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3956 Use group `tramp'. Add version.
3957
3958 2012-12-05 Chong Yidong <cyd@gnu.org>
3959
3960 * ffap.el (ffap-url-regexp): Don't require matching at front of
3961 string (Bug#4952).
3962 (ffap-url-p): If only a substring matches, return that.
3963 (ffap-url-at-point): Use the return value of ffap-url-p.
3964 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3965 (find-file-at-point, dired-at-point, dired-at-point-prompter)
3966 (ffap-guess-file-name-at-point): Likewise.
3967 (ffap-replace-file-component): Fix typo.
3968
3969 * info.el (info-display-manual): Add existing Info buffers, whose
3970 files may not be in Info-directory-list, to the completion.
3971 (info--manual-names): New helper function.
3972
3973 2012-12-05 Glenn Morris <rgm@gnu.org>
3974
3975 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3976 New functions, for detecting and resolving conflicts. (Bug#10709)
3977
3978 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
3979
3980 * hi-lock.el (hi-lock-auto-select-face): New user variable.
3981 (hi-lock-auto-select-face-defaults): New buffer local variable.
3982 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3983 (hi-lock-unface-buffer): Prompt user with useful defaults.
3984 With prefix arg, unhighlight all hi-lock patterns in buffer.
3985
3986 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3987
3988 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3989
3990 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
3991
3992 * Makefile.in (TRAMP_SRC):
3993 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3994
3995 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
3996
3997 * net/tramp-adb.el: New package.
3998
3999 2012-12-04 Chong Yidong <cyd@gnu.org>
4000
4001 * terminal.el: Move to obsolete/.
4002
4003 * longlines.el: Move to obsolete/.
4004
4005 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
4006 Remove code referring to longlines mode.
4007
4008 2012-12-03 Juri Linkov <juri@jurta.org>
4009
4010 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
4011
4012 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4013
4014 * textmodes/ispell.el (ispell-init-process)
4015 (ispell-start-process, ispell-internal-change-dictionary):
4016 Make sure personal dictionary name is expanded after initial
4017 `default-directory' value. Use expanded strings for
4018 keep/restart checks and for value (Bug#13019).
4019
4020 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
4021
4022 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
4023
4024 2012-12-03 Leo Liu <sdl.web@gmail.com>
4025
4026 * files.el (dir-locals-read-from-file): Check file non-empty
4027 before reading. (Bug#13038)
4028
4029 2012-12-03 Glenn Morris <rgm@gnu.org>
4030
4031 * jka-cmpr-hook.el (jka-compr-get-compression-info):
4032 Remove any version extension before checking filename. (Bug#13006)
4033 (jka-compr-compression-info-list): Belated :version bump.
4034
4035 2012-12-03 Chong Yidong <cyd@gnu.org>
4036
4037 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
4038
4039 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
4040 (buffer-menu): Doc fix (Bug#12294).
4041
4042 2012-12-03 Roland Winkler <winkler@gnu.org>
4043
4044 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
4045 of diary-show-all-entries in the diary buffer (Bug#12994).
4046
4047 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
4048
4049 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
4050 "<STDIN>". This is binary safe.
4051
4052 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
4053
4054 * calc/calc-forms.el (math-absolute-from-iso-dt)
4055 (math-date-to-iso-dt, math-parse-iso-date-validate)
4056 (math-iso-dt-to-date): New functions.
4057 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
4058 (math-fd-isoweekday): New variables.
4059 (calc-date-notation, math-parse-standard-date, math-format-date)
4060 (math-format-date-part): Add support for more formatting codes.
4061
4062 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
4063
4064 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
4065 current buffer's file name when called interactively (Bug#12488).
4066
4067 2012-12-02 Juri Linkov <juri@jurta.org>
4068
4069 * info.el (info-display-manual): Don't clobber an existing Info
4070 buffer (Bug#10770). Add completion (Bug#10771).
4071
4072 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
4073
4074 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
4075 before using it for comparison (Bug#5297).
4076
4077 2012-12-01 Jari Aalto <jari.aalto@cante.net>
4078
4079 * textmodes/css-mode.el (css-current-defun-name): New function.
4080 (css-mode): Use it.
4081
4082 * textmodes/sgml-mode.el (html-current-defun-name): New function.
4083 (html-mode): Use it.
4084
4085 2012-12-01 Chong Yidong <cyd@gnu.org>
4086
4087 Modularize add-log-current-defun (Bug#2224).
4088 Suggested by Jari Aalto.
4089
4090 * vc/add-log.el (add-log-current-defun-function): Doc fix.
4091 (add-log-current-defun): Move mode-specific code to other files.
4092 (add-log-lisp-like-modes, add-log-c-like-modes)
4093 (add-log-tex-like-modes): Variables deleted.
4094
4095 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
4096 (lisp-mode-variables): Use it.
4097
4098 * progmodes/cc-mode.el (c-common-init):
4099 * progmodes/cperl-mode.el (cperl-mode): Set a value for
4100 add-log-current-defun-function.
4101
4102 * progmodes/m4-mode.el (m4-current-defun-name): New function.
4103 (m4-mode): Use it.
4104
4105 * progmodes/perl-mode.el (perl-current-defun-name): New.
4106 (perl-mode): Use it.
4107
4108 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
4109 Use lisp-current-defun-name.
4110
4111 * textmodes/tex-mode.el (tex-current-defun-name): New.
4112 (tex-common-initialization): Use it.
4113
4114 * textmodes/texinfo.el (texinfo-current-defun-name): New.
4115 (texinfo-mode): Use it.
4116
4117 2012-12-01 Chong Yidong <cyd@gnu.org>
4118
4119 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
4120 * progmodes/autoconf.el (autoconf-mode):
4121 * progmodes/js.el (js-mode):
4122 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
4123 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
4124 * progmodes/perl-mode.el (perl-mode):
4125 * progmodes/sh-script.el (sh-mode, sh-set-shell):
4126 * textmodes/css-mode.el (css-mode):
4127 * textmodes/sgml-mode.el (html-mode, sgml-mode)
4128 (sgml-tags-invisible, sgml-guess-indent):
4129 * textmodes/tex-mode.el (tex-common-initialization)
4130 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
4131 (doctex-mode, plain-tex-mode, latex-mode):
4132 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
4133
4134 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
4135
4136 * vc/vc-hg.el (vc-hg-next-revision):
4137 Ensure use of default "tip" output format. (Bug#6968)
4138
4139 2012-12-01 Kim F. Storm <storm@cua.dk>
4140
4141 * startup.el (fancy-startup-tail): Add a clickable link
4142 (Bug#2176).
4143
4144 2012-12-01 Chong Yidong <cyd@gnu.org>
4145
4146 * startup.el (fancy-startup-tail): Improve the message about
4147 auto-save files (Bug#2176).
4148
4149 * files.el (recover-session): Improve the descriptive message, and
4150 use substitute-command-keys.
4151
4152 2012-12-01 Glenn Morris <rgm@gnu.org>
4153
4154 * ido.el (ido-file-internal):
4155 Handle other-window, other-frame for dired. (Bug#13036)
4156
4157 2012-11-30 Glenn Morris <rgm@gnu.org>
4158
4159 * icomplete.el (icomplete-separator): Fix :version.
4160
4161 2012-11-30 Chong Yidong <cyd@gnu.org>
4162
4163 * shell.el (shell): For C-u M-x shell, use an inactive shell
4164 buffer as the default (Bug#1975).
4165 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
4166 (shell-mode): Use them to reapply ansi colorization if Shell mode
4167 is re-enabled.
4168
4169 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
4170
4171 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
4172
4173 2012-11-30 Samuel Bronson <naesten@gmail.com>
4174
4175 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
4176 flag to xargs, for compatibility with BSD xargs (Bug#11703).
4177
4178 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
4179
4180 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
4181 by move-to-column (Bug#3234).
4182
4183 2012-11-30 Chong Yidong <cyd@gnu.org>
4184
4185 * longlines.el (longlines-wrap-line, longlines-encode-region):
4186 Preserve text properties (Bug#1425).
4187
4188 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
4189
4190 * vc/vc.el (vc-register): Allow registering a file which is
4191 already registered with a different backend (Bug#10589).
4192
4193 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
4194 Stefan Monnier <monnier@iro.umontreal.ca>
4195
4196 * icomplete.el: Change separator; add ido-style commands.
4197 (icomplete-show-key-bindings): Remove custom var.
4198 (icomplete-get-keys): Remove function.
4199 (icomplete-forward-completions, icomplete-backward-completions):
4200 New commands.
4201 (icomplete-minibuffer-map): New var.
4202 (icomplete-minibuffer-setup): Use it.
4203 (icomplete-exhibit): Don't delay if the list of completions is known.
4204 (icomplete-separator): New custom.
4205 (icomplete-completions): Use it.
4206 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
4207 (minibuffer-force-complete-and-exit): New command.
4208 (minibuffer--complete-and-exit): New function extracted from
4209 minibuffer-complete-and-exit.
4210 (minibuffer-complete-and-exit): Use it.
4211
4212 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
4213 error message when the file doesn't exist (bug#12974).
4214
4215 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
4216
4217 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
4218
4219 2012-11-29 Glenn Morris <rgm@gnu.org>
4220
4221 * files.el (hack-dir-local-variables): Warn if try to set
4222 coding via dir-locals, since it doesn't work. (Bug#7169)
4223
4224 Add desktop support for restoring vc-dir buffers. (Bug#10606)
4225 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
4226 Set buffer-local value of desktop-save-buffer.
4227 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
4228 New functions.
4229 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
4230 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
4231
4232 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
4233 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
4234 Doc fix.
4235 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
4236 Doc fixes.
4237
4238 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
4239
4240 * calc/calc-forms.el (calc-date-notation): Fix regexp
4241 used to find time codes. Fix symbol for seconds.
4242
4243 2012-11-27 Glenn Morris <rgm@gnu.org>
4244
4245 * emacs-lisp/derived.el (derived-mode-make-docstring):
4246 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
4247
4248 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4249
4250 * textmodes/table.el (table-insert): Don't use `symbol-name' on
4251 lexically scoped variables (bug#13005).
4252
4253 2012-11-27 Glenn Morris <rgm@gnu.org>
4254
4255 * vc/vc-hooks.el (vc-mistrust-permissions):
4256 Default to t, to avoid data-loss. (Bug#11490)
4257
4258 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
4259
4260 * progmodes/python.el (python-indent-guess-indent-offset):
4261 If indentation is guessed make python-indent-offset buffer-local.
4262
4263 Fix Imenu regression.
4264 * progmodes/python.el (python-nav-beginning-of-defun):
4265 Fix forward movement when statement(s) separates point from defun.
4266 (python-imenu-prev-index-position): New function.
4267
4268 2012-11-27 Eli Zaretskii <eliz@gnu.org>
4269
4270 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
4271
4272 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4273 Don't set buffer-file-type. Return nil. (Bug#12989)
4274
4275 2012-11-27 Glenn Morris <rgm@gnu.org>
4276
4277 * hippie-exp.el (hippie-expand-try-functions-list):
4278 Re-autoload it. (Bug#12982)
4279
4280 2012-11-27 Eli Zaretskii <eliz@gnu.org>
4281
4282 * descr-text.el (describe-char-padded-string):
4283 Call internal-char-font only on GUI frames. (Bug#11964)
4284
4285 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
4286
4287 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
4288 and obsoletion message.
4289
4290 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4291
4292 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
4293 the constructs to keep outside of the `cl-block' (bug#12977).
4294
4295 2012-11-27 Chong Yidong <cyd@gnu.org>
4296
4297 * mouse.el (mouse-drag-line): Even if the line is not draggable,
4298 keep reading until we get the up-event anyway, in order to process
4299 the up-event for mouse-1-click-follows-link (Bug#12971).
4300
4301 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
4302
4303 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
4304 base function is not yet defined (bug#12965).
4305 (ad-activate-advised-definition): Use ad-compile-function.
4306 (ad-activate): Use cond.
4307
4308 2012-11-25 Leo Liu <sdl.web@gmail.com>
4309
4310 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
4311 (Bug#12979)
4312
4313 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4314
4315 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
4316 reftex-section-info-function in order to be compatible with
4317 Texinfo integration.
4318
4319 * textmodes/reftex.el (reftex-section-pre-regexp)
4320 (reftex-section-post-regexp, reftex-section-info-function):
4321 New variable.
4322 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
4323 reftex-section-post-regexp, and reftex-section-info-function in order
4324 to be compatible with Texinfo integration.
4325
4326 * textmodes/reftex-toc.el (reftex-toc-promote-action):
4327 use reftex-section-pre-regexp variable in order to be compatible with
4328 Texinfo integration.
4329
4330 2012-11-25 Chong Yidong <cyd@gnu.org>
4331
4332 * faces.el: Make face-spec-set more analogous to setq.
4333 (face-spec-set): Change the third arg to specify whether this
4334 function is being called via defface, customize, or a third party.
4335 Set the appropriate symbol properties. Clear the override spec if
4336 setting via Custom. Initialize face if necessary. (Bug#4988)
4337 (face-spec-recalc): Allow theme faces to completely replace the
4338 defface spec, in the same way as custom faces (Bug#8454).
4339
4340 * cus-face.el (custom-declare-face): Move face initialization to
4341 face-spec-set.
4342 (custom-theme-set-faces): Don't initialize the face name here, as
4343 that is now done in face-spec-set.
4344
4345 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
4346 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
4347 Simplify by using the new arg to face-spec-set.
4348
4349 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
4350 reset face-override-spec too, and use custom-declare-face.
4351
4352 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
4353
4354 * term/ns-win.el (ns-initialize-window-system): Move creation of
4355 fontsets here (Bug#11964).
4356
4357 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4358
4359 * ses.el (ses-rename-cell): Correct bug on mode-line update after
4360 cell renaming.
4361
4362 2012-11-24 Chong Yidong <cyd@gnu.org>
4363
4364 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
4365 obsolete.
4366
4367 * custom.el (custom-theme-set-variables): Use a topological sort
4368 for ordering by custom dependencies (Bug#12952).
4369 (custom--sort-vars, custom--sort-vars-1): New functions.
4370
4371 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4372
4373 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
4374 lexical-binding (bug#12938).
4375
4376 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
4377
4378 * image-mode.el (image-transform-check-size): Use assertions only
4379 for images of type imagemagick.
4380
4381 Otherwise no error, image-transform-fit-to-{width,height} is
4382 silently ignored, as before. Doc fix.
4383
4384 2012-11-24 Chong Yidong <cyd@gnu.org>
4385
4386 * faces.el (color-defined-p): Doc fix (Bug#12853).
4387
4388 2012-11-24 Juri Linkov <juri@jurta.org>
4389
4390 * dired.el (dired-mark): Add optional arg `interactive'.
4391 Check for `use-region-p' if `interactive' is non-nil.
4392 (dired-unmark, dired-flag-file-deletion): Add optional arg
4393 `interactive'. Call `dired-mark' with the arg `interactive'.
4394 (Bug#10624)
4395
4396 * wdired.el: Revert 2012-10-17 change partly and replace it with
4397 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
4398 (wdired-finish-edit): Add marks for new file names to
4399 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
4400 after `revert-buffer'.
4401 (wdired-do-renames): Remove calls to `dired-remove-file',
4402 `dired-add-file', `dired-add-entry'. (Bug#11795)
4403
4404 2012-11-24 Alan Mackenzie <acm@muc.de>
4405
4406 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
4407
4408 Fix bugs in the state cache. Enhance a debugging mechanism.
4409 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
4410 "brace at column zero" strategy for C++.
4411 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
4412 (c-parse-state-point): New variable.
4413 (c-record-parse-state-state): Record old parse state with
4414 `copy-tree'. Record previous value of point.
4415 (c-debug-parse-state-double-cons): New debugging function.
4416 (c-debug-parse-state): Call the above new function.
4417 (c-toggle-parse-state-debug): Output a confirmatory message.
4418
4419 * progmodes/cc-mode.el (c-before-change, c-after-change):
4420 Call c-invalidate-state-cache from `c-before-change' instead of
4421 `c-after-change'.
4422
4423 2012-11-23 Chong Yidong <cyd@gnu.org>
4424
4425 * find-cmd.el (find-constituents): Add executable, ipath,
4426 readable, samefile, writable, daystart, regextype (Bug#12856).
4427
4428 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4429
4430 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
4431
4432 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
4433
4434 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
4435 definition. This fixes a bootstrap failure.
4436 (calc-gregorian-switch): In menu, put dates before regions.
4437 This is easier to follow, lines up better in the menu, and lets us
4438 coalesce regions that switch at the same time. Give country
4439 names, not "Vatican", as that's better for non-expert users.
4440 Use names that are stable between the date of switch and now, e.g.,
4441 Bohemia and Moravia (which existed then and now) and not
4442 Czechoslovakia (which didn't exist then and doesn't exist now).
4443 What is now the U.S. mostly did not switch at the same time as
4444 Britain, so omit the U.S. Correct spelling of "Britain".
4445 Catholic Switzerland was too much of a mess, so omit it.
4446
4447 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
4448
4449 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
4450 after the variable is changed.
4451
4452 2012-11-21 Daniel Colascione <dancol@dancol.org>
4453
4454 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
4455 in SQL declarations for font-lock.
4456 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
4457
4458 2012-11-21 Glenn Morris <rgm@gnu.org>
4459
4460 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
4461 (face-italic-p): Add optional argument "inherit".
4462
4463 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
4464 Remove -p suffix from names, for consistency with other set-face-*.
4465 (set-face-inverse-video): Fix interactive spec.
4466 * play/gamegrid.el (gamegrid-make-mono-tty-face):
4467 * textmodes/table.el (table--update-cell-face):
4468 Use set-face-inverse-video rather than now obsolete alias.
4469
4470 2012-11-21 Eli Zaretskii <eliz@gnu.org>
4471
4472 * simple.el (line-move): Don't call line-move-partial if
4473 scroll-conservatively is in effect. (Bug#12927)
4474
4475 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4476
4477 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
4478 Fallback on completion-at-point rather than
4479 pcomplete-expand-and-complete, and only if pcomplete actually failed.
4480 (eshell-cmpl-initialize): Setup completion-at-point.
4481
4482 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4483
4484 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4485
4486 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
4487
4488 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4489 are remote, check out-of-band property for both.
4490
4491 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * window.el (switch-to-buffer): Re-add the warning that was lost in the
4494 code rewrite.
4495
4496 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
4497
4498 More minor time fixes.
4499 * calendar/time-date.el: Commentary fix.
4500 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4501 too much other code depends on (0 0) time stamps.
4502 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4503 Add a couple of FIXME comments.
4504
4505 Minor cleanup for times as lists of four integers.
4506 * files.el (dir-locals-directory-cache):
4507 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4508 Doc fixes.
4509 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4510 * ps-bdf.el (bdf-file-newer-than-time):
4511 Process four-integers time stamps, not two. Doc fixes.
4512
4513 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4514
4515 * uniquify.el (uniquify-managed): Use defvar-local.
4516 (rename-buffer, create-file-buffer): Advise with advice-add.
4517 (uniquify-unload-function): Unadvise accordingly.
4518
4519 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4520 (trace-buffer): Don't purecopy.
4521 (trace-entry-message, trace-exit-message): Add `context' arg.
4522 (trace--timer): New var.
4523 (trace-make-advice): Adjust for use in nadvice.
4524 Add `context' argument. Delay `display-buffer' via a timer.
4525 (trace-function-internal): Use advice-add.
4526 (trace--read-args): New function.
4527 (trace-function-foreground, trace-function-background): Use it.
4528 (trace-function): Rename to trace-function-foreground and redefine as
4529 an alias to that new name.
4530 (untrace-function, untrace-all): Adjust to the use of nadvice.
4531
4532 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4533
4534 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4535
4536 * subr.el (called-interactively-p-functions): New var.
4537 (internal--called-interactively-p--get-frame): New macro.
4538 (called-interactively-p, interactive-p): Rewrite in Lisp.
4539 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4540 (called-interactively-p-functions): Use it.
4541 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4542 (called-interactively-p-functions): Use it.
4543 * allout.el (allout-called-interactively-p): Don't assume
4544 called-interactively-p is a subr.
4545
4546 2012-11-20 Glenn Morris <rgm@gnu.org>
4547
4548 * profiler.el (profiler-report-mode-map): Add a menu.
4549 No need to bind `q' because we derive from special-mode.
4550 (profiler-report-find-entry): Handle calls from the menu-bar.
4551
4552 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4553
4554 * emacs-lisp/byte-run.el (defun-declarations-alist):
4555 Allow a compiler-macro to be a lambda expression.
4556
4557 * progmodes/python.el: Use cl-lib. Move var declarations outside of
4558 eval-when-compile.
4559 (python-syntax-context): Add compiler-macro.
4560 (python-font-lock-keywords): Simplify with De Morgan.
4561
4562 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4563
4564 * files.el (load-file): Require match in minibuffer selection, as was
4565 the case in Emacs-20 before we changed the spec to allow .elc files
4566 (bug#12935).
4567
4568 * json.el: Don't require cl since we don't use it.
4569 * color.el: Don't require cl.
4570 (color-complement): `caddr' -> `nth 2'.
4571
4572 * calendar/time-date.el (time-to-seconds): De-obsolete.
4573
4574 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4575
4576 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
4577 year numbers.
4578 (math-date-to-julian-dt): Adjust the initial approximation for the
4579 year to deal with the new definition of the DATE.
4580
4581 2012-11-19 Daniel Colascione <dancol@dancol.org>
4582
4583 * term/w32-win.el (cygwin-convert-path-from-windows):
4584 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4585
4586 2012-11-18 Chong Yidong <cyd@gnu.org>
4587
4588 * filecache.el (file-cache--read-list): New function.
4589 (file-cache-add-directory-list, file-cache-add-file-list)
4590 (file-cache-delete-file-list, file-cache-delete-directory-list):
4591 Use it to read a list of files or directories (Bug#12846).
4592 (file-cache-add-file, file-cache-add-directory)
4593 (file-cache-delete-file-list, file-cache-delete-file-regexp)
4594 (file-cache-delete-directory): Print an message.
4595
4596 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
4597
4598 * calc/calc-forms.el (math-date-to-dt): Use integer date when
4599 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4600
4601 2012-11-18 Glenn Morris <rgm@gnu.org>
4602
4603 * image.el (insert-image, insert-sliced-image): Doc fix.
4604
4605 2012-11-18 Chong Yidong <cyd@gnu.org>
4606
4607 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4608 (Bug#12810).
4609
4610 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
4611
4612 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4613 response when the target file is in a subdirectory (Bug#12757).
4614
4615 2012-11-18 Chong Yidong <cyd@gnu.org>
4616
4617 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4618
4619 2012-11-18 Glenn Morris <rgm@gnu.org>
4620
4621 * emacs-lisp/cl-lib.el (face-underline-p):
4622 Use set-face-underline rather than the alias set-face-underline-p.
4623
4624 * window.el (with-temp-buffer-window): Doc fix.
4625 * subr.el (with-output-to-temp-buffer):
4626 Add doc xref to with-temp-buffer-window.
4627
4628 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
4629
4630 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4631 * calc/calc.el (math-format-date-cache): Declare.
4632
4633 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4634
4635 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4636 It also uses January 1, 1 AD as its day number 1.
4637 * calc/calc-forms.el (math-julian-date-beginning)
4638 (math-julian-date-beginning-int): Implement this.
4639
4640 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
4641
4642 * descr-text.el (quail-find-key):
4643 * dired.el (desktop-file-name):
4644 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4645 * generic-x.el (comint-mode, comint-exec):
4646 * image-dired.el (widget-forward):
4647 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4648 (speedbar-change-expand-button-char)
4649 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4650 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4651 * printing.el (easy-menu-add-item, easy-menu-remove-item)
4652 (widget-field-action, widget-value-set):
4653 * speedbar.el (imenu--make-index-alist):
4654 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4655 (ring-length, ring-insert):
4656 * vcursor.el (compare-windows-skip-whitespace):
4657 * woman.el (dired-get-filename):
4658 Declare functions.
4659
4660 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4661
4662 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4663
4664 * calc/calc.el (calc-gregorian-switch): New variable.
4665
4666 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4667 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4668 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4669 (math-leap-year-p): Add option to distinguish between Julian
4670 and Gregorian calendars.
4671 (math-day-number): Use `math-day-in-year' to do the computations.
4672 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4673 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4674 to do the computations.
4675 (math-date-to-dt): Use `math-date-to-julian-dt' and
4676 `math-date-to-gregorian-dt' to do the computations.
4677 (calcFunc-weekday, math-format-date-part): Use the new version of
4678 the DATE to determine the weekday.
4679 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4680 when necessary.
4681
4682 2012-11-17 Eli Zaretskii <eliz@gnu.org>
4683
4684 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4685 Cygwin; otherwise use 'file:'. (Bug#12914)
4686 (cygwin-convert-path-from-windows): Declare, to avoid
4687 byte-compiler warnings.
4688
4689 2012-11-17 Andreas Politz <politza@fh-trier.de>
4690
4691 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4692 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4693 prefix and negative numeric prefix args (Bug#12795).
4694
4695 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
4696
4697 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4698 Don't signal an error with a score that is too low to add to the
4699 list of top scores. (Bug#12779)
4700
4701 2012-11-17 Chong Yidong <cyd@gnu.org>
4702
4703 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4704
4705 * filecache.el (file-cache-add-file): Handle relative file name in
4706 the argument (Bug#12694).
4707
4708 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
4709
4710 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4711
4712 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4713
4714 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4715
4716 * emacs-lisp/cl-lib.el: Set more meaningful version number.
4717
4718 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4719
4720 * window.el (enlarge-window, shrink-window): Don't mention return
4721 value in doc-string (Bug#12896).
4722 (window--display-buffer): Don't resize frames - it won't work
4723 with all window managers and defeat pop-up-frame-alist.
4724 (display-buffer-alist): In doc-string explain that CONDITION can
4725 be a function and which arguments are passed to it (Bug#12854).
4726 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
4727 expressions (Bug#12854).
4728 (display-buffer): Pass ACTION argument to
4729 display-buffer-assq-regexp.
4730
4731 2012-11-16 Glenn Morris <rgm@gnu.org>
4732
4733 * window.el (fit-frame-to-buffer-bottom-margin)
4734 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4735
4736 * faces.el (face-underline-p): Use face-attribute-specified-or.
4737
4738 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
4739
4740 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4741
4742 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4743
4744 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4745
4746 2012-11-16 Glenn Morris <rgm@gnu.org>
4747
4748 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
4749 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4750
4751 * faces.el (face-underline-p): Doc fix. Handle :underline being
4752 things other than `t' (a string, a list).
4753 (face-inverse-video-p): Doc fix.
4754 (set-face-underline): Rename it back from set-face-underline-p.
4755 Doc fix. Allow interactive input of values other than t.
4756 (read-face-attribute): Apply formatting to :underline,
4757 since like :box and :stipple it can take list values.
4758
4759 * term.el (ansi-term): Don't let C-x escape-char binding
4760 clobber the more standard C-c binding. (Bug#12842)
4761
4762 * subr.el (set-temporary-overlay-map): Doc fix.
4763
4764 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4765
4766 * window.el (record-window-buffer)
4767 (display-buffer-record-window): When copying the markers to
4768 window-point preserve window-point-insertion-type. (Bug#12588)
4769
4770 2012-11-16 Glenn Morris <rgm@gnu.org>
4771
4772 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4773 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4774 Use new names for hooks rather than obsolete aliases.
4775
4776 2012-11-15 Daniel Colascione <dancol@dancol.org>
4777
4778 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4779 prefix instead of "file:" so that when FILE-NAME begins with "//",
4780 as it does when the target file is on a network share, url-handler
4781 isn't confused.
4782
4783 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4784
4785 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4786 a preactivated advice from an old advice.el; they're not compatible!
4787
4788 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
4789
4790 * emacs-lisp/nadvice.el (advice--make-interactive-form):
4791 Fix string-spec case.
4792
4793 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4794
4795 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4796
4797 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4798 (advice--buffer-local-function-sample): New var.
4799 (advice--set-buffer-local, advice--buffer-local): New functions.
4800 (add-function, remove-function): Use them.
4801
4802 2012-11-15 Drew Adams <drew.adams@oracle.com>
4803
4804 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4805
4806 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4807
4808 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4809 potential binding of print-gensym to t, and prettify (back)quotes in
4810 case they appear in args's default values (bug#12884).
4811
4812 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4813
4814 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4815 (advice-eval-interactive-spec): New function.
4816 (advice--make-interactive-form): Support around advice (bug#12844).
4817
4818 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
4819
4820 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4821 more strict. Add docstring.
4822 (ruby-expression-expansion-re): Extract from
4823 `ruby-match-expression-expansion'.
4824 (ruby-syntax-propertize-function): After everything else, search
4825 for expansions in string literals, mark their insides as
4826 whitespace syntax and save match data for font-lock.
4827 (ruby-font-lock-keywords): Use the 2nd group from expression
4828 expansion matches.
4829 (ruby-match-expression-expansion): Use the match data saved to the
4830 text property in ruby-syntax-propertize-function.
4831
4832 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4833
4834 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4835 (bug#12879).
4836
4837 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4838
4839 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4840 start/end keyword a bit harder. Works with different values of N.
4841 Add more comments.
4842 (ruby-end-of-block): Update accordingly.
4843
4844 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4845
4846 * woman.el (woman-file-name): Don't mess with unread-command-events
4847 (bug#12861).
4848
4849 * emacs-lisp/advice.el: Layer on top of nadvice.el.
4850 Remove out of date self-require hack.
4851 (ad-do-advised-functions): Use simple `dolist'.
4852 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4853 (ad-advice-definition): Redefine as functions.
4854 (ad-advice-classes): Move before first use.
4855 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4856 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4857 (ad--defalias-fset): Remove functions.
4858 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4859 (ad-get-orig-definition): Rewrite.
4860 (ad-make-advised-definition-docstring): Change base docstring.
4861 (ad-real-orig-definition): Rewrite.
4862 (ad-map-arglists): Change name of called function.
4863 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4864 (ad-make-advised-definition): Simplify.
4865 (ad-assemble-advised-definition): Tweak for new calling context.
4866 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4867 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
4868 function and call ad-activate if needed.
4869 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4870 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4871 (ad-compile-function): Compile ad-Advice-*.
4872 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4873 (ad-start-advice, ad-stop-advice): Remove.
4874
4875 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4876
4877 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4878 period before class method names, not after. Remove handling of
4879 one impossible case. Add comments.
4880
4881 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4882
4883 * emacs-lisp/advice.el: Remove support for freezing.
4884 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4885 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4886 Remove support for `freeze'.
4887
4888 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4889 override the default.
4890 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4891 cl--dotimes/dolist.
4892 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4893 `cl' is loaded.
4894
4895 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4896 from add-advice.
4897 (advice--strip-macro): New function.
4898 (advice--defalias-fset): Use them to handle macros.
4899 (advice-add): Use them.
4900 (advice-member-p): Correctly handle macros.
4901
4902 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4903
4904 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4905 Never font-lock the beginning of singleton class as heredoc.
4906
4907 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4908
4909 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4910
4911 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
4912
4913 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4914 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
4915 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4916
4917 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
4918
4919 Fix end-of-defun misbehavior.
4920 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4921 python-beginning-of-defun-function. Handle nested defuns
4922 correctly.
4923 (python-nav-end-of-defun): Rename from
4924 python-end-of-defun-function. Ensure forward movement.
4925 (python-info-current-defun): Reimplement to work as intended
4926 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
4927 parent defuns as soon as possible.
4928
4929 2012-11-13 Glenn Morris <rgm@gnu.org>
4930
4931 * progmodes/flymake.el (flymake-error-bitmap)
4932 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4933 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4934
4935 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4936
4937 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4938 backward, always stop at indentation. Reverts the change from
4939 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4940
4941 2012-11-13 Glenn Morris <rgm@gnu.org>
4942
4943 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4944 Add ibuffer-filter-by-derived-mode.
4945
4946 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4947 the same name shadowing each other.
4948
4949 * window.el (with-temp-buffer-window): Doc tweak.
4950
4951 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4952
4953 * help.el (temp-buffer-max-height):
4954 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4955 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4956
4957 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4958
4959 * emacs-lisp/nadvice.el: New package.
4960 * subr.el (special-form-p): New function.
4961 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4962 (elp-all-instrumented-list): Remove var.
4963 (elp-not-profilable): Remove elp-wrapper.
4964 (elp-profilable-p): Use autoloadp and special-form-p.
4965 (elp--advice-name): New const.
4966 (elp-instrument-function): Use advice-add.
4967 (elp--instrumented-p): New predicate.
4968 (elp-restore-function): Use advice-remove.
4969 (elp-restore-all, elp-reset-all): Use mapatoms.
4970 (elp-set-master): Use elp--instrumented-p.
4971 (elp--make-wrapper): Rename from elp-wrapper, return a function
4972 suitable for advice-add. Use cl-inf.
4973 (elp-results): Use mapatoms+elp--instrumented-p.
4974 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4975 (debug-function-list): Remove var.
4976 (debug): Rename arg, and then let-bind it explicitly inside.
4977 (debugger-setup-buffer): Rename arg.
4978 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4979 (debugger-frame-number): Adjust to new debug-on-entry setup.
4980 (debug--implement-debug-on-entry): Rename from
4981 implement-debug-on-entry, add argument.
4982 (debugger-special-form-p): Remove, use special-form-p instead.
4983 (debug-on-entry): Use advice-add.
4984 (debug--function-list): New function.
4985 (cancel-debug-on-entry): Use it, along with advice-remove.
4986 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4987 (debugger-list-functions): Use debug--function-list instead of
4988 debug-function-list.
4989 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4990 (ad-special-form-p): Remove, use special-form-p instead.
4991 (ad-set-advice-info): Use add-function and remove-function.
4992 (ad--defalias-fset): Adjust accordingly.
4993
4994 2012-11-10 Glenn Morris <rgm@gnu.org>
4995
4996 * mail/emacsbug.el (report-emacs-bug-tracker-url)
4997 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4998 (report-emacs-bug-create-existing-bugs-buffer)
4999 (report-emacs-bug-parse-query-results)
5000 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
5001
5002 * term.el (term-default-fg-color, term-default-bg-color):
5003 Make obsolete, rather than just saying "deprecated" in the doc.
5004
5005 * term.el (term): Rename from `term-face'.
5006 (term-current-face, ansi-term-color-vector)
5007 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
5008 Update all users.
5009
5010 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
5011
5012 * server.el (server-create-window-system-frame): Handle Nextstep
5013 specially (Bug#12780).
5014
5015 2012-11-10 Glenn Morris <rgm@gnu.org>
5016
5017 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
5018 Unautoload, and make obsolete. (Bug#7449)
5019
5020 2012-11-10 Chong Yidong <cyd@gnu.org>
5021
5022 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
5023 rename from diff-remove-trailing-whitespace (Bug#12831).
5024
5025 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5026
5027 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
5028 miscompilation of trace.el.
5029
5030 2012-11-10 Glenn Morris <rgm@gnu.org>
5031
5032 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
5033
5034 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5035
5036 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
5037 (bug#12812).
5038
5039 2012-11-10 Chong Yidong <cyd@gnu.org>
5040
5041 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
5042 a defcustom with an appropriate :set function.
5043 (minibuffer-default--in-prompt-regexps): New function.
5044
5045 2012-11-10 Glenn Morris <rgm@gnu.org>
5046
5047 * emacs-lisp/cl.el (define-setf-expander, defsetf)
5048 (define-modify-macro): Doc fixes.
5049
5050 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
5051 (gv-define-simple-setter): Update doc of `fix-return'.
5052
5053 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5054
5055 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
5056 twice when `fix-return' is set (bug#12813).
5057
5058 * emacs-lisp/cl.el (defsetf): Pass the third arg to
5059 gv-define-simple-setter (bug#12812).
5060
5061 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
5062 (bug#12756).
5063
5064 2012-11-10 Glenn Morris <rgm@gnu.org>
5065
5066 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
5067
5068 * emacs-lisp/cl-extra.el (cl-prettyexpand):
5069 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
5070 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
5071 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
5072
5073 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
5074
5075 2012-11-10 Leo Liu <sdl.web@gmail.com>
5076
5077 * ido.el (ido-set-matches-1): Improve flex matching performance by
5078 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
5079
5080 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5081
5082 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
5083 (ad--defalias-fset): New function.
5084 (ad-safe-fset): Remove.
5085 (ad-make-freeze-definition): Use cl-letf*.
5086
5087 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5088
5089 * subr.el (dolist): Don't bind VAR in RESULT.
5090
5091 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
5092 (fset, documentation): Don't save real def since we don't advise.
5093 (ad-do-advised-functions): Remove problematic `result-form'.
5094 (ad-safe-fset): `ad-real-fset' => `fset'.
5095 (ad-read-advised-function): Don't assume that ad-do-advised-functions
5096 uses CL's dolist internally.
5097 (ad-arglist): Remove unused arg `name'.
5098 (ad-docstring, ad-make-advised-docstring):
5099 `ad-real-documentation' => `documentation'.
5100 (warning-suppress-types): Declare.
5101 (ad-set-arguments): Simple CSE.
5102 (ad-recover-normality): Sanity check.
5103
5104 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
5105 (funcall '(lambda ..) ..) into ((lambda ..) ..).
5106
5107 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
5108
5109 * ses.el: symbol to coordinate mapping is made by symbol property
5110 `ses-cell'. This means that the same mapping is done for all SES
5111 sheets. That is good enough for cells with standard A1 names, but
5112 not for named cell. So a hash map is added for the latter.
5113 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
5114 (ses-sym-rowcol): Use hashmap for named cell.
5115 (ses-is-cell-sym-p): New defun.
5116 (ses-decode-cell-symbol): New defun.
5117 (ses-create-cell-variable): Add cell to hashmap when name is not
5118 A1-like.
5119 (ses-rename-cell): Check that cell new name is not already in
5120 spreadsheet with the use of ses-is-cell-sym-p
5121 (ses-rename-cell): Use hash map for named cells, but accept also
5122 renaming back to A1-like.
5123
5124 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5125
5126 * emacs-lisp/advice.el: Use new dynamic docstrings.
5127 (ad-make-advised-definition-docstring, ad-advised-definition-p):
5128 Use dynamic-docstring-function instead of ad-advice-info.
5129 (ad--make-advised-docstring): New function extracted from
5130 ad-make-advised-docstring.
5131 (ad-make-advised-docstring): Use it.
5132 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
5133 from sql-help.
5134 (sql-help): Use it with dynamic-docstring-function.
5135
5136 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
5137
5138 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5139
5140 * files.el (hack-one-local-variable--obsolete): New function.
5141 (hack-one-local-variable): Use it for obsolete settings.
5142
5143 * subr.el (locate-user-emacs-file): If both old and new name exist, use
5144 the new name.
5145
5146 * progmodes/js.el (js--filling-paragraph): New var.
5147 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
5148 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
5149 less sneaky.
5150
5151 2012-11-08 Julien Danjou <julien@danjou.info>
5152
5153 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
5154 `auto-mode-alist' (Bug#12835).
5155
5156 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5157
5158 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
5159 (perl--prettify-symbols-alist): New const.
5160 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
5161 New functions.
5162 (perl-font-lock-keywords-2): Use them.
5163 (perl-electric-noindent-p): New function.
5164 (perl-mode): Use it to set up electric-indent-mode.
5165 (perl-electric-terminator, perl-indent-command): Mark obsolete.
5166 (perl-mode-map): Remove bindings for them.
5167 (perl-imenu-generic-expression, perl-outline-level):
5168 Match functions&packages in column>0.
5169
5170 * env.el (env--substitute-vars-regexp): New const.
5171 (substitute-env-vars): Use it. Add `only-defined' arg.
5172 * net/tramp.el (tramp-replace-environment-variables): Use it.
5173
5174 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
5175 Byte-compile *before* eval in eval-and-compile.
5176 (byte-compile-log-warning): Remove redundant inhibit-read-only.
5177 (byte-compile-file-form-autoload): Don't hide actual definition.
5178 (byte-compile-maybe-guarded): Accept `functionp' as well.
5179
5180 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
5181
5182 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
5183
5184 * notifications.el (notifications-get-server-information-method):
5185 New defconst.
5186 (notifications-get-capabilities): Fix docstring.
5187 (notifications-get-server-information): New defun.
5188
5189 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5190
5191 * textmodes/ispell.el (ispell-region): Standard re-indent for better
5192 readability.
5193
5194 * textmodes/ispell.el: Experimental support for support debugging.
5195 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
5196 buffer for ispell.
5197 (ispell-print-if-debug): New function to print stuff to
5198 `ispell-debug-buffer' if debugging is enabled.
5199 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
5200 show some debugging info.
5201 (ispell-buffer-with-debug): New function that creates a debugging
5202 buffer and calls `ispell-buffer' with debugging enabled.
5203
5204 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
5205 comment in autoconf mode. (Bug#12768)
5206
5207 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
5208
5209 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
5210 frame-first-window, frame-root-window, frame-selected-window,
5211 minibuffer-selected-window, minibuffer-window,
5212 window-absolute-pixel-edges, window-at, window-body-height,
5213 window-body-width, window-display-table, window-combination-limit,
5214 window-frame, window-fringes, window-inside-absolute-pixel-edges,
5215 window-inside-edges, window-inside-pixel-edges, window-left-child,
5216 window-left-column, window-margins, window-next-buffers,
5217 window-next-sibling, window-new-normal, window-new-total,
5218 window-normal-size, window-parameter, window-parameters, window-parent,
5219 window-pixel-edges, window-point, window-prev-buffers,
5220 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
5221 window-start, window-text-height, window-top-child, window-top-line,
5222 window-total-height, window-total-width and window-use-time to the list
5223 of functions without side-effects.
5224 (toplevel): Add window-valid-p to the list of error-free functions
5225 without side-effects.
5226
5227 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5228
5229 * textmodes/ispell.el (ispell-program-name):
5230 Update spellchecker parameters when customized.
5231
5232 2012-11-04 Glenn Morris <rgm@gnu.org>
5233
5234 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
5235
5236 2012-11-04 Chong Yidong <cyd@gnu.org>
5237
5238 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
5239 same-window-* variables.
5240
5241 2012-11-04 Juri Linkov <juri@jurta.org>
5242
5243 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
5244 (isearch-describe-key, isearch-describe-mode): Use a display
5245 action instead of binding same-window-* variables (Bug#10040).
5246
5247 2012-11-03 Glenn Morris <rgm@gnu.org>
5248
5249 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
5250 Rename handler properties back from cl-- to cl-. (Bug#12788)
5251
5252 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
5253
5254 2012-11-03 Eli Zaretskii <eliz@gnu.org>
5255
5256 * term/pc-win.el: Don't load term/internal from here.
5257
5258 * loadup.el: Load term/internal from here.
5259
5260 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
5261
5262 * progmodes/python.el (inferior-python-mode): Fix hang in
5263 jit-lock (Bug#12645).
5264
5265 2012-11-03 Martin Rudalics <rudalics@gmx.at>
5266
5267 * window.el (switch-to-visible-buffer)
5268 (switch-to-buffer-preserve-window-point): Fix doc-strings.
5269
5270 2012-11-03 Glenn Morris <rgm@gnu.org>
5271
5272 * emacs-lisp/cl-lib.el (cl--random-time):
5273 Rename from cl-random-time. (Bug#12773)
5274 (cl--gensym-counter, cl--random-state): Update callers.
5275 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
5276
5277 2012-11-03 Chong Yidong <cyd@gnu.org>
5278
5279 * cus-start.el: Make cursor-type customizable (Bug#11633).
5280
5281 2012-11-02 Glenn Morris <rgm@gnu.org>
5282
5283 * filecache.el: No need to load find-lisp when compiling.
5284 (find-lisp-find-files): Autoload it.
5285 (file-cache-add-directory-recursively): Don't require find-lisp.
5286
5287 * image.el (image-type-from-file-name): Trivial simplification.
5288
5289 * emacs-lisp/bytecomp.el (byte-compile-eval):
5290 Decouple "noruntime" and "cl-functions" warnings.
5291
5292 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
5293
5294 * play/gomoku.el (gomoku-display-statistics): Update mode line
5295 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
5296
5297 2012-10-31 Martin Rudalics <rudalics@gmx.at>
5298
5299 * window.el (quit-restore-window): If the window has been
5300 created on an existing frame and ended up as the sole window on
5301 that frame, do not delete it (Bug#12764).
5302
5303 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5304
5305 * progmodes/sh-script.el (sh--inside-noncommand-expression):
5306 Rename from sh--inside-arithmetic-expression, handle more cases
5307 (bug#11263).
5308
5309 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
5310 (sh-font-lock-open-heredoc): Use it (bug#12770).
5311
5312 2012-10-30 Glenn Morris <rgm@gnu.org>
5313
5314 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
5315
5316 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
5317
5318 2012-10-29 Chong Yidong <cyd@gnu.org>
5319
5320 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
5321 function key is stored in a keyboard macro (Bug#4894).
5322
5323 * thingatpt.el (number-at-point): Apply a thing-at-point property.
5324
5325 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5326
5327 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
5328 header comments".
5329 (diff-unified->context, diff-context->unified)
5330 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
5331
5332 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
5333
5334 * files.el (find-alternate-file): Only ask one question (bug#12487).
5335
5336 2012-10-29 Chong Yidong <cyd@gnu.org>
5337
5338 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
5339 Suggested by Dan Nicolaescu (Bug#6326).
5340
5341 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
5342
5343 * startup.el (fancy-about-screen): Don't message (Bug#12680).
5344
5345 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
5346
5347 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
5348
5349 * face-remap.el (face-remap-add-relative): Handle the case where a
5350 face-remapping-alist entry is a cons cell (Bug#12762).
5351
5352 2012-10-29 Kevin Ryde <user42@zip.com.au>
5353
5354 * woman.el (woman-parse-numeric-value): Handle picas correctly
5355 (Bug#12639).
5356
5357 2012-10-29 Glenn Morris <rgm@gnu.org>
5358
5359 * emacs-lisp/cl.el (defsetf): Doc fix.
5360
5361 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5362
5363 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
5364 syntax to the matching opener, if any (bug#12547).
5365 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
5366 matching open as a "case-(".
5367 (sh-smie-rc-grammar): Add a corresponding rule for it.
5368
5369 2012-10-28 Daniel Hackney <dan@haxney.org>
5370
5371 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
5372 "PKGNAME-autoloads.el" in case we created it.
5373
5374 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5375
5376 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
5377 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
5378 (completion--twq-all): Disable too-strict assertions.
5379
5380 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
5381
5382 2012-10-27 Eli Zaretskii <eliz@gnu.org>
5383
5384 * profiler.el (profiler-report-make-entry-part): Fix help-echo
5385 text to match the real keybindings.
5386
5387 2012-10-27 Juri Linkov <juri@jurta.org>
5388
5389 * wdired.el (wdired-keep-marker-rename): New defcustom.
5390 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
5391 (Bug#11795)
5392
5393 * dired.el (dired-keep-marker-rename): Add reference to
5394 `wdired-keep-marker-rename' in the docstring.
5395 Add default character value ?R to display initially in
5396 Customization UI instead of ?@.
5397
5398 2012-10-27 Martin Rudalics <rudalics@gmx.at>
5399
5400 * window.el (display-buffer): In doc-string describe
5401 window-height and window-width alist entries.
5402
5403 * time.el (display-time-world): Restore fit-window-to-buffer
5404 behavior.
5405
5406 2012-10-27 Chong Yidong <cyd@gnu.org>
5407
5408 * subr.el (insert-buffer-substring-as-yank): Doc fix.
5409
5410 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
5411
5412 * minibuffer.el (completion-category-overrides): New completion
5413 category `bookmark' (bug#11131).
5414
5415 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5416
5417 * emacs-lisp/advice.el (ad-assemble-advised-definition):
5418 Silence bogus compiler warnings for ad-do-it.
5419
5420 * bookmark.el (bookmark-completing-read): Set the completion category
5421 to `bookmark' (bug#11131).
5422
5423 2012-10-26 Bastien <bzg@altern.org>
5424 Stefan Monnier <monnier@iro.umontreal.ca>
5425
5426 * face-remap.el: Use lexical-binding.
5427 (text-scale-adjust): Improve docstring. Use itself for the temporary
5428 overlay-map bindings, so as to repeat the "Use..." message each time.
5429
5430 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5431
5432 * emacs-lisp/macroexp.el (macroexp--expand-all):
5433 Obey byte-compile-warning-enabled-p (bug#12486).
5434
5435 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
5436 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
5437
5438 2012-10-26 Martin Rudalics <rudalics@gmx.at>
5439
5440 * mouse.el (mouse-drag-line): Move last form into preceding when
5441 clause (Bug#12731).
5442
5443 * help.el (resize-temp-buffer-window): Fix doc-string.
5444
5445 2012-10-25 David Engster <deng@randomsample.de>
5446
5447 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
5448 Remove. This feature is already integrated in imenu.
5449
5450 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
5451 always loaded. Require `speedbar' unconditionally.
5452
5453 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5454
5455 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
5456
5457 * minibuffer.el (minibuffer-force-complete): Fix thinko.
5458
5459 * net/ldap.el (ldap-search-internal): The official ldif format starts
5460 with a "version: 1" header (bug#12724).
5461
5462 * emacs-lisp/package.el (package-installed-p): Warn if not ready
5463 (bug#12721).
5464
5465 2012-10-25 Glenn Morris <rgm@gnu.org>
5466
5467 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
5468
5469 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5470
5471 * minibuffer.el (minibuffer-force-complete): Use one more marker
5472 for the temporary-overlay-map command (bug#12619).
5473
5474 2012-10-24 Chong Yidong <cyd@gnu.org>
5475
5476 * time.el (display-time-world-mode): Derive from special-mode.
5477 (display-time-world): Use display-buffer (Bug#12708).
5478 (display-time-world-mode-map): Variable deleted.
5479 (display-time-world-display): Wrap the final delete-char inside
5480 inhibit-read-only.
5481
5482 2012-10-24 Chong Yidong <cyd@gnu.org>
5483
5484 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5485 Doc fix.
5486
5487 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5488
5489 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5490
5491 * minibuffer.el (completion--all-sorted-completions-location): New var.
5492 (completion--cache-all-sorted-completions)
5493 (completion--flush-all-sorted-completions): Use it.
5494 (completion-in-region, completion-in-region--postch)
5495 (completion-at-point, completion-help-at-point): Use markers in
5496 completion-in-region--data (bug#12619).
5497
5498 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5499
5500 * progmodes/compile.el (compilation-start): Try to handle common
5501 quoting of `cd' argument (bug#12640).
5502
5503 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5504 (bug#12671).
5505
5506 2012-10-23 Glenn Morris <rgm@gnu.org>
5507
5508 * progmodes/gud.el (gud-menu-map):
5509 Check gdb-active-process is bound. (Bug#12358)
5510
5511 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5512
5513 * repeat.el (repeat): Set real-this-command (bug#12232).
5514
5515 * htmlfontify.el (hfy-post-html-hook):
5516 * filesets.el (filesets-cache-fill-content-hook):
5517 * arc-mode.el (archive-extract-hook):
5518 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5519 * net/rcirc.el (rcirc-sentinel-functions)
5520 (rcirc-receive-message-functions, rcirc-activity-functions)
5521 (rcirc-print-functions):
5522 * net/dbus.el (dbus-event-error-functions):
5523 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5524 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5525 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5526 * term/sun.el (sun-raw-prefix-hooks):
5527 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5528
5529 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
5530
5531 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5532 Set `tramp-chunksize' to 1. This improves the performance.
5533 (tramp-smb-wait-for-output): Add timeout to
5534 `tramp-accept-process-output' calls.
5535
5536 2012-10-23 Chong Yidong <cyd@gnu.org>
5537
5538 * faces.el (font-list-limit): Define as an obsolete variable.
5539
5540 * startup.el (command-line):
5541 * cus-start.el: Don't refer to font-list-limit.
5542
5543 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5544
5545 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5546
5547 * subr.el (internal-temp-output-buffer-show): Rename from
5548 temp-output-buffer-show, since previously compiled files expect this name.
5549
5550 2012-10-23 Glenn Morris <rgm@gnu.org>
5551
5552 * image.el (image-type-from-file-name): If multiple types match,
5553 return the first one that is supported. (Bug#9045)
5554
5555 2012-10-22 Glenn Morris <rgm@gnu.org>
5556
5557 * image.el (imagemagick-enabled-types): Doc fix.
5558
5559 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
5560
5561 * progmodes/which-func.el (which-func-current): The hash-table may have
5562 an explicit nil (bug#12338).
5563
5564 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5565
5566 * electric.el (electric-pair-delete-selection-self-insert-function):
5567 Rename to electric-pair-will-use-region, return a boolean.
5568 (electric-pair-mode): Adjust accordingly. Don't require delsel.
5569
5570 * delsel.el (delete-selection-helper): Use a function instead of a hook.
5571 (delete-selection-pre-hook): Use use-region-p.
5572 (delete-selection-self-insert-function): Remove.
5573 (self-insert-command): Obey self-insert-uses-region-functions.
5574 (self-insert-iso): Revert to previous setting, since we don't actually
5575 know what that command does.
5576 (delete-selection-self-insert-hooks): Remove.
5577
5578 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
5579
5580 * delsel.el (delete-selection-helper): New function, extracted from
5581 delete-selection-pre-hook.
5582 (delete-selection-pre-hook): Use it.
5583 (delete-selection-self-insert-function): New function.
5584 (delete-selection-self-insert-hooks): New hook.
5585 (self-insert-command, self-insert-iso): Use it.
5586 * electric.el (electric-pair-syntax): New function, extracted from
5587 electric-pair-post-self-insert-function.
5588 (electric-pair-post-self-insert-function): Use it.
5589 (electric-pair-delete-selection-self-insert-function): New function.
5590 (electric-pair-mode): Require delsel and setup
5591 delete-selection-self-insert-hooks (bug#11520).
5592
5593 2012-10-20 Chong Yidong <cyd@gnu.org>
5594
5595 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5596 no changes to show (Bug#12586).
5597
5598 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5599 list explicitly (Bug#12571).
5600
5601 2012-10-20 Arne Jørgensen <arne@arnested.dk>
5602
5603 * progmodes/flymake.el (flymake-create-temp-inplace):
5604 Use file-truename.
5605
5606 2012-10-20 Eli Zaretskii <eliz@gnu.org>
5607
5608 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
5609
5610 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
5611
5612 * calc/calc-units.el (math-extract-units): Properly extract powers
5613 of units.
5614
5615 2012-10-20 Daniel Colascione <dancol@dancol.org>
5616
5617 * frame.el (make-frame): Set x-display-name as we used to in order
5618 to unbreak creating an X11 frame from an Emacs daemon started
5619 without a display.
5620
5621 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5622
5623 * minibuffer.el (minibuffer-force-complete): Make the next completion use
5624 the same completion-field (bug#12221).
5625
5626 2012-10-19 Martin Rudalics <rudalics@gmx.at>
5627
5628 * emacs-lisp/debug.el (debug): Record height of debugger window
5629 also when debugger will be back (Bug#8789).
5630
5631 2012-10-18 Chong Yidong <cyd@gnu.org>
5632
5633 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5634 Convert to defcustom.
5635 (gdb-get-source-file): Don't bind pop-up-windows.
5636
5637 * progmodes/gud.el (gud-display-line): Don't specially re-use
5638 other frames for the gdb-mi case (Bug#12648).
5639
5640 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5641
5642 * emacs-lisp/advice.el: Clean up commentary a bit.
5643 (ad-do-advised-functions, ad-with-originals): Use `declare'.
5644 (byte-code-function-p): Never redefine.
5645
5646 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5647
5648 2012-10-18 Glenn Morris <rgm@gnu.org>
5649
5650 * dired.el (dired-sort-toggle): Some ls implementations only allow
5651 a single option string. (Bug#12666)
5652
5653 * minibuffer.el (completion-cycle-threshold): Doc fix.
5654
5655 2012-10-17 Kenichi Handa <handa@gnu.org>
5656
5657 * international/mule.el (set-keyboard-coding-system):
5658 Recover input meta mode when the new coding system doesn not use 8-bit.
5659 Supply TERMINAL arg to set-input-meta-mode.
5660
5661 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
5662
5663 * wdired.el (wdired-old-marks): New variable.
5664 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5665 (wdired-do-renames): Move point with renamed file and don't lose
5666 mark status (Bug#11795).
5667
5668 2012-10-16 Juri Linkov <juri@jurta.org>
5669
5670 * replace.el (query-replace-help): Mention multi-buffer replacement
5671 keys in the Help message. (Bug#12655)
5672
5673 2012-10-15 Chong Yidong <cyd@gnu.org>
5674
5675 * emacs-lisp/byte-run.el (defsubst): Doc fix.
5676
5677 2012-10-14 Eli Zaretskii <eliz@gnu.org>
5678
5679 * window.el (display-buffer): Doc fix.
5680
5681 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5682 Adjust the msft regexp to the output of Studio 2010, and move msft
5683 before edg-1. See the discussion on emacs-devel,
5684 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5685 for the details.
5686
5687 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5688
5689 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5690 (oset): Move uses of object-class-fast macro after its definition.
5691
5692 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5693
5694 2012-10-13 Chong Yidong <cyd@gnu.org>
5695
5696 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5697 enabled, re-enable it (Bug#11963).
5698
5699 2012-10-13 Martin Rudalics <rudalics@gmx.at>
5700
5701 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5702 non-nil, restore window configuration (Bug#12623).
5703
5704 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5705
5706 * help-fns.el (describe-variable, describe-function-1):
5707 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5708
5709 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5710
5711 2012-10-12 Glenn Morris <rgm@gnu.org>
5712
5713 * mail/rmailsum.el (rmail-header-summary):
5714 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
5715
5716 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
5717
5718 * progmodes/python.el (python-mode-map):
5719 Replace subtitute-key-definition with proper command remapping.
5720 (python-nav--up-list): Fix behavior for blocks on the same level.
5721
5722 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5723
5724 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5725
5726 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5727 changes to the format of load-history.
5728
5729 * international/mule-cmds.el (read-char-by-name): Move let-binding of
5730 completion-ignore-case in case that var is buffer-local (bug#12615).
5731
5732 2012-10-11 Kenichi Handa <handa@gnu.org>
5733
5734 * international/eucjp-ms.el: Re-generated.
5735
5736 2012-10-10 Kenichi Handa <handa@gnu.org>
5737
5738 * select.el (xselect--encode-string): If a coding is specified for
5739 selection, and that is compatible with COMPOUND_TEXT, use it.
5740
5741 2012-10-10 Martin Rudalics <rudalics@gmx.at>
5742
5743 * window.el (switch-to-buffer-preserve-window-point): New option.
5744 (switch-to-buffer):
5745 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5746
5747 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5748
5749 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5750 Don't document nil as a useful value (bug#12583).
5751
5752 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
5753
5754 * net/tramp.el (tramp-debug-message):
5755 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5756 (with-tramp-progress-reporter): Rename from
5757 `tramp-with-progress-reporter'.
5758 (with-tramp-file-property, with-tramp-connection-property):
5759 Move from tramp-cache.el, rename from `with-file-property' and
5760 `with-connection-property', respectively.
5761
5762 * net/tramp-cache.el: Remove `with-file-property' and
5763 `with-connection-property'.
5764
5765 * net/tramp.el:
5766 * net/tramp-gvfs.el:
5767 * net/tramp-sh.el:
5768 * net/tramp-smb.el: Adapt callees.
5769
5770 * net/trampver.el: Update release number.
5771
5772 2012-10-09 Glenn Morris <rgm@gnu.org>
5773
5774 * w32-fns.el (set-message-beep):
5775 * term/w32-win.el (set-message-beep): Update declarations.
5776
5777 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5780 (mode-line-widen, mode-line-input-method-map)
5781 (mode-line-coding-system-map, mode-line-remote)
5782 (mode-line-unbury-buffer, mode-line-bury-buffer)
5783 (mode-line-next-buffer, mode-line-previous-buffer):
5784 Replace save-selected-window+select-window => with-selected-window.
5785
5786 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5787 * progmodes/cc-vars.el (bq-process): Remove, unused.
5788
5789 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5790
5791 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
5792
5793 Implemented `backward-up-list'-like navigation.
5794 * progmodes/python.el (python-nav-up-list)
5795 (python-nav-backward-up-list): New functions.
5796 (python-mode-map): Define substitute key for backward-up-list to
5797 python-nav-backward-up-list.
5798
5799 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5800
5801 * progmodes/python.el (python-fill-paragraph): Rename from
5802 python-fill-paragraph-function. Fixed fill-paragraph for
5803 decorators (Bug#12605).
5804
5805 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5806
5807 * progmodes/python.el (python-shell-output-filter): Handle extra
5808 carriage return in OSX (Bug#12409).
5809
5810 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5811
5812 Fix shell handling of unbalanced quotes and parens in output.
5813 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5814 (python-syntax-propertize-function): Use it.
5815 (python-shell-output-syntax-table): New var.
5816 (inferior-python-mode): Prevent unbalanced parens/quotes from
5817 previous output mess with current input context.
5818
5819 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
5820
5821 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5822 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5823
5824 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
5825
5826 * ffap.el (ffap-replace-file-component): Support Tramp file name
5827 syntax, not only ange-ftp's one.
5828
5829 2012-10-08 Glenn Morris <rgm@gnu.org>
5830
5831 * cus-start.el (message-log-max): Set :version.
5832
5833 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5834
5835 2012-10-08 Martin Rudalics <rudalics@gmx.at>
5836
5837 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5838 the minibuffer window (Bug#10851).
5839
5840 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5841
5842 Enhancements on forward-sexp movement.
5843 * progmodes/python.el (python-nav-beginning-of-statement)
5844 (python-nav-end-of-statement): Return point-marker.
5845 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5846 (python-info-current-symbol)
5847 (python-info-statement-starts-block-p): Rename from
5848 python-info-beginning-of-block-p.
5849 (python-info-statement-ends-block-p): Rename from
5850 python-info-end-of-block-p.
5851 (python-info-beginning-of-statement-p)
5852 (python-info-end-of-statement-p)
5853 (python-info-beginning-of-block-p, python-info-end-of-block-p):
5854 New functions.
5855
5856 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5857
5858 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5859 frame-selected-windows.
5860
5861 2012-10-08 Daniel Colascione <dancol@dancol.org>
5862
5863 * battery.el (battery-status-function): Check for
5864 w32-battery-status itself, not system-time windows-nt.
5865
5866 * frame.el: Require cl-lib.
5867 (display-format-alist): New variable mapping frame types to
5868 functions that initialize them.
5869 (window-system-for-display): New function: interprets
5870 display-format-alist.
5871 (make-frame-on-display): Remove existing display-selection logic
5872 and just forward to make-frame, which will now DTRT.
5873 (make-frame): Restructure to use window-system-for-display to
5874 figure out how to create a frame on a given display.
5875 (display-mouse-p): Look for frame-type w32, not a particular
5876 system-type.
5877
5878 * loadup.el: Load w32 lisp code when we have the w32 feature.
5879
5880 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5881 system-type windows-nt.
5882
5883 * server.el (server-create-window-system-frame): Look for window
5884 type.
5885 (server-proces-filter): Only force a window system when windows-nt
5886 _and_ w32. Explain why.
5887
5888 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5889 of window systems we configure for the mode.
5890
5891 * startup.el (command-line): Mark window system is initialized
5892 after we've done it.
5893
5894 * common-win.el (x-select-text): Look for w32, not windows-nt.
5895
5896 * ns-win.el: Require cl-lib. Add ourselves to
5897 display-format-alist.
5898 (ns-initialize-window-system): Assert we're not initialized twice.
5899
5900 * w32-win.el: Enable lexical binding; require cl-lib; add
5901 ourselves to display-format-alist.
5902 (w32-handle-dropped-file): Convert incoming dropped files from
5903 Windows paths to Cygwin ones before passing them on to the rest of
5904 Emacs.
5905 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
5906 (w32-initialize-window-system): Assert we're not initialized twice.
5907
5908 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5909 (x-initialize-window-system): Assert we're not initialized twice.
5910
5911 * w32-common-fns.el: New File.
5912 (w32-version, w32-using-nt, w32-get-clipboard-data)
5913 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5914 (w32-charset-info-alist, x-last-selected, text)
5915 (x-get-selection-value, x-selection-value): Move here.
5916
5917 * w32-fns.el: Require w32-common-fns.
5918 (w32-version, w32-using-nt, w32-get-clipboard-data)
5919 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5920 (w32-charset-info-alist, x-last-selected, text)
5921 (x-get-selection-value, x-selection-value): Move to
5922 w32-common-fns.
5923
5924 * w32-vars.el:
5925 (w32-allow-system-shell, w32-system-shells): Define only in
5926 non-cygwin case.
5927
5928 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5929
5930 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5931 (read-passwd): Remove a few more potential sources of leaks.
5932
5933 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5934
5935 * progmodes/python.el (inferior-python-mode)
5936 (python-shell-make-comint): Fix initialization of local
5937 variables copied from parent buffer.
5938
5939 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5940
5941 * term/ns-win.el (ns-read-file-name): Update declaration to match
5942 nsfns.m.
5943 (ns-respond-to-change-font): Change fontsize separately so we are sure
5944 it is set when font is acted upon.
5945
5946 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5947
5948 Enhancements to indentation.
5949 * progmodes/python.el (python-indent-context): Give priority to
5950 inside-string context. Make comments indentation markers.
5951 (python-indent-region): Do not mess with strings, unless it's the
5952 enclosing set of quotes.
5953
5954 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5955
5956 * window.el (internal--before-save-selected-window)
5957 (internal--after-save-selected-window): New functions extracted from
5958 save-selected-window. Make sure we return the `alist' we construct.
5959 (save-selected-window): Use them.
5960
5961 * textmodes/tex-mode.el (tex-recenter-output-buffer):
5962 Use with-selected-window.
5963
5964 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5965 forms that define macros (bug#12593).
5966
5967 2012-10-07 Kenichi Handa <handa@gnu.org>
5968
5969 * international/mule-conf.el (compound-text-with-extensions):
5970 Add :mime-charset property as x-ctext.
5971
5972 2012-10-07 Stefan Merten <smerten@oekonux.de>
5973
5974 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5975 (rst-indent-literal-normal, rst-indent-literal-minimized)
5976 (rst-indent-comment): Correct :version tag.
5977 (rst-official-cvs-rev): Correct version string.
5978
5979 2012-10-07 Glenn Morris <rgm@gnu.org>
5980
5981 * mail/rmailmm.el (rmail-mime-process-multipart):
5982 Do not confuse a multipart message with an epilogue
5983 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
5984
5985 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5986
5987 Fix shell output retrieval and comint-prompt-regexp init.
5988 * progmodes/python.el (inferior-python-mode):
5989 (python-shell-make-comint): Fix initialization of
5990 comint-prompt-regexp from copied file local variables.
5991 (python-shell-fetched-lines): Remove var.
5992 (python-shell-output-filter-in-progress): Rename from
5993 python-shell-fetch-lines-in-progress.
5994 (python-shell-output-filter-buffer): Rename from
5995 python-shell-fetch-lines-string.
5996 (python-shell-fetch-lines-filter): Delete function.
5997 (python-shell-output-filter): New function.
5998 (python-shell-send-string-no-output): Use them.
5999
6000 2012-10-07 Glenn Morris <rgm@gnu.org>
6001
6002 * hi-lock.el (hi-lock-process-phrase):
6003 Try to make it less fragile. (Bug#7161)
6004
6005 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
6006
6007 2012-10-06 Glenn Morris <rgm@gnu.org>
6008
6009 * ehelp.el (electric-help-mode): Use help-mode rather than
6010 non-existent mode `help'.
6011 (electric-help-map): Use button-buffer-map. (Bug#10917)
6012
6013 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
6014 (reftex-create-bibtex-footer): Fix custom types.
6015
6016 * progmodes/sh-script.el (sh-indent-after-continuation):
6017 Add explicit :group.
6018
6019 * textmodes/rst.el (rst-preferred-decorations)
6020 (rst-shift-basic-offset): Clarify obsolescence versions.
6021
6022 * profiler.el (profiler): Add missing group :version tag.
6023 * avoid.el (mouse-avoidance-banish-position):
6024 * proced.el (proced-renice-command):
6025 * calc/calc.el (calc-ensure-consistent-units):
6026 * calendar/icalendar.el (icalendar-import-format-uid):
6027 * net/tramp.el (tramp-save-ad-hoc-proxies):
6028 * progmodes/bug-reference.el (bug-reference-bug-regexp):
6029 * progmodes/flymake.el (flymake-error-bitmap)
6030 (flymake-warning-bitmap, flymake-fringe-indicator-position):
6031 * progmodes/sh-script.el (sh-indent-after-continuation):
6032 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
6033 (verilog-before-save-font-hook, verilog-after-save-font-hook):
6034 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
6035 (vhdl-array-index-record-field-in-sensitivity-list)
6036 (vhdl-indent-comment-like-next-code-line):
6037 * textmodes/reftex-vars.el (reftex-ref-style-alist)
6038 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
6039 (reftex-cite-key-separator, reftex-create-bibtex-header)
6040 (reftex-create-bibtex-footer):
6041 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
6042 (rst-indent-literal-normal, rst-indent-literal-minimized)
6043 (rst-indent-comment): Add missing custom :version tags.
6044
6045 * calendar/timeclock.el (timeclock-modeline-display):
6046 Add missing obsolete alias for renamed user option.
6047
6048 * strokes.el (strokes-modeline-string):
6049 * emulation/crisp.el (crisp-mode-modeline-string):
6050 * eshell/esh-mode.el (eshell-status-in-modeline):
6051 Aliases to defcustoms must come before the defcustom.
6052
6053 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
6054 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
6055 (cal-tex-cursor-week-monday): Doc fixes.
6056 (cal-tex-cursor-week2-summary): Doc fix.
6057 Rename from cal-tex-cursor-week-at-a-glance.
6058
6059 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
6060 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
6061
6062 * calendar/calendar.el (calendar-mode-map):
6063 Add cal-tex-cursor-week2-summary.
6064
6065 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
6066
6067 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
6068
6069 * subr.el (read-passwd-map): New var.
6070 (read-passwd): Use `read-string' again.
6071 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
6072
6073 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
6074
6075 * register.el (append-to-register, prepend-to-register):
6076 Deactivate mark, as does `copy-to-register' (bug#12389).
6077
6078 2012-10-06 Chong Yidong <cyd@gnu.org>
6079
6080 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
6081
6082 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
6083
6084 * international/characters.el: Fix simple mistake ((car chars) ->
6085 elt), delete duplicated code.
6086
6087 2012-10-06 Glenn Morris <rgm@gnu.org>
6088
6089 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
6090
6091 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
6092
6093 * color.el (color-hsl-to-rgb): Fix incorrect results for
6094 small and large hue values. (Bug#12559)
6095
6096 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
6097
6098 Enhancements to docstring formatting when filling paragraphs.
6099 * progmodes/python.el (python-fill-docstring-style): Rename from
6100 python-fill-string-style. Added new style.
6101 (python-fill-string): Use new style. Better checks for
6102 docstrings.
6103
6104 2012-10-05 Glenn Morris <rgm@gnu.org>
6105
6106 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
6107
6108 * color.el (color-name-to-rgb, color-rgb-to-hex)
6109 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
6110 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
6111 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
6112 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
6113
6114 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
6115
6116 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
6117
6118 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
6119 to get the correct size across symlinks.
6120
6121 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
6122
6123 2012-10-04 Juri Linkov <juri@jurta.org>
6124
6125 * replace.el (query-replace-interactive): Declare obsolete.
6126 (query-replace-read-from): Add the last incremental search string
6127 to the list of default values accessible via M-n.
6128 (map-query-replace-regexp): Use `read-regexp'.
6129 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6130 (map-query-replace-regexp, replace-string, replace-regexp):
6131 Fix docstrings to replace mentions of `query-replace-interactive'
6132 with alternatives. (Bug#12526)
6133
6134 2012-10-04 Juri Linkov <juri@jurta.org>
6135
6136 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
6137 (dired-pop-to-buffer): Declare obsolete.
6138 (dired-mark-pop-up): Doc fix.
6139
6140 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
6141
6142 Allow user to set docstring style for fill-paragraph.
6143 * progmodes/python.el
6144 (python-fill-comment-function, python-fill-string-function)
6145 (python-fill-decorator-function, python-fill-paren-function):
6146 Remove :safe for defcustoms.
6147 (python-fill-string-style): New defcustom
6148 (python-fill-paragraph-function): Enhance context detection.
6149 (python-fill-string): Honor python-fill-string-style settings.
6150
6151 2012-10-04 Martin Rudalics <rudalics@gmx.at>
6152
6153 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
6154 after setting its buffer (Bug#10805).
6155
6156 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
6157
6158 Fix cornercase for string syntax.
6159 * progmodes/python.el (python-syntax-propertize-function):
6160 Simplify and enhance the regexp for unescaped quotes. Now it also
6161 matches quotes in weird situations like the single quote in
6162 "something\"'".
6163 (python-syntax-stringify): Simplify num-quotes detecting code.
6164
6165 2012-10-03 Glenn Morris <rgm@gnu.org>
6166
6167 * help-macro.el (three-step-help):
6168 Revert 2012-09-29 change. (Bug#12567)
6169
6170 2012-10-03 Martin Rudalics <rudalics@gmx.at>
6171
6172 * menu-bar.el (kill-this-buffer): Don't do anything when
6173 `menu-frame' is not alive or visible (Bug#8184).
6174
6175 * emacs-lisp/debug.el (debug): When quitting the debugger window
6176 restore current buffer (Bug#12502).
6177
6178 2012-10-02 Chong Yidong <cyd@gnu.org>
6179
6180 * progmodes/hideif.el (hif-lookup, hif-defined):
6181 Handle semantic-c-takeover-hideif.
6182
6183 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
6184
6185 Change sampling interval units from ms to ns.
6186 * profiler.el (profiler-sampling-interval): Change units
6187 from ms to ns, multiplying the default by 1000000 so that
6188 it remains 1 ms.
6189 (profiler-report-cpu-line-format): Give enough room for
6190 the maximum counters on 64-bit hosts.
6191 (profiler-report-render-calltree-1): Call them "CPU samples",
6192 not "Time (ms)", since they are not milliseconds now (and
6193 never really were).
6194
6195 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
6196
6197 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
6198 Fix querying BBDB for entries without a last name (Bug#11580).
6199
6200 2012-10-02 Chong Yidong <cyd@gnu.org>
6201
6202 * emacs-lisp/eieio.el: Restore Version header.
6203
6204 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6205
6206 * vc/diff-mode.el (diff--auto-refine-data): New var.
6207 (diff-hunk): Use it to delay refinement.
6208 (diff-mode): Remove overlays when we turn off font-lock.
6209
6210 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
6211 (table-initialize-table-fixed-width-mode)
6212 (table-set-table-fixed-width-mode): Remove functions.
6213 (table-command-list): Move initialization into declaration.
6214 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
6215 (table-with-cache-buffer): Use `declare'.
6216 (table-span-cell): Simplify via CSE.
6217 (table-fixed-width-mode): Use define-minor-mode.
6218 (table-call-interactively, table-funcall, table-apply): Remove.
6219 (table-function): New function, to replace them.
6220
6221 * bookmark.el (bookmark-search-pattern): Remove var.
6222 (bookmark-read-search-input): Remove function.
6223 (bookmark-bmenu-search): Reimplement using a minibuffer.
6224
6225 * faces.el (modeline): Remove obsolete face name.
6226
6227 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
6228 and give a non-nil default value.
6229 (add-change-log-entry): Simplify accordingly.
6230
6231 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
6232
6233 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
6234 (vc-git-log-edit-toggle-amend): New function.
6235 (vc-git-log-edit-toggle-signoff): New function.
6236 (vc-git-log-edit-mode): New major mode.
6237 (vc-git-log-edit-mode-map): Keymap for it.
6238 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
6239
6240 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
6241 header names.
6242 (log-edit-toggle-header): New function.
6243 (log-edit-extract-headers): Accept function values in HEADERS alist.
6244
6245 2012-10-01 David Engster <deng@randomsample.de>
6246
6247 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
6248 from symbol property and change message to be more consistent with
6249 Emacs proper.
6250 (eieio-describe-generic): Add filename for each implementation.
6251 Fix indices for generic and normal methods.
6252 (eieio-method-def, eieio-class-def): New buttons.
6253 (eieio-help-find-method-definition)
6254 (eieio-help-find-class-definition): New functions.
6255 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
6256 class, constructor and method definitions.
6257
6258 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
6259 information in symbol property.
6260 (scoped-class): Remove.
6261 (eieio-slot-name-index, call-next-method): Check if it is bound.
6262
6263 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
6264
6265 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
6266 (eieio-custom-mode): New major mode.
6267 (eieio-customize-object): Use it.
6268
6269 2012-10-01 Eric Ludlam <zappo@gnu.org>
6270
6271 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
6272 specifying the expected class, and whether subclassing is allowed.
6273 (eieio-persistent-convert-list-to-object):
6274 (eieio-persistent-validate/fix-slot-value)
6275 (eieio-persistent-slot-type-is-class-p): New functions.
6276 (eieio-named::slot-missing): Doc fix.
6277
6278 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
6279 Stop using unused publd variable.
6280
6281 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6282 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
6283 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
6284 (eieio-speedbar-handle-click): Do not specify a class for the
6285 method. Fixes method invocation order problems with EDE.
6286
6287 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6288
6289 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
6290 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
6291
6292 2012-10-01 Karl Fogel <kfogel@red-bean.com>
6293
6294 * bookmark.el (bookmark-version-control): Give tags in the
6295 :type choices (Bug#12309), and improve doc string.
6296 (bookmark-write-file): Bind `print-circle' to `t' to allow
6297 circular custom bookmark types. (Bug#12503)
6298
6299 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
6300
6301 Revert the FOLLOW-SYMLINKS change for file-attributes.
6302 * files.el (remote-file-name-inhibit-cache, after-find-file):
6303 * time.el (display-time-file-nonempty-p): Undo last change.
6304
6305 * profiler.el (profiler-sampling-interval): Change default back to 1.
6306 See Stefan Monnier in
6307 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
6308
6309 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
6310
6311 Shell output catching a la gud-gdb.
6312 * progmodes/python.el (python-shell-fetch-lines-in-progress)
6313 (python-shell-fetch-lines-string, python-shell-fetched-lines):
6314 New Vars.
6315 (python-shell-fetch-lines-filter): New function.
6316 (python-shell-send-string-no-output): Use them.
6317
6318 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
6319
6320 * profiler.el (profiler-sampling-interval): Rename from
6321 profiler-sample-interval.
6322 (profiler-sampling-interval): Default to 10.
6323 (profiler-find-profile): New command (was profiler-find-log).
6324 (profiler-find-profile-other-window): New command.
6325 (profiler-find-profile-other-frame): New command.
6326 (profiler-profile): Introduce API-level data structure.
6327
6328 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6329
6330 file-attributes has a new optional arg FOLLOW-SYMLINKS.
6331 * files.el (remote-file-name-inhibit-cache):
6332 * time.el (display-time-file-nonempty-p): Use it.
6333 * files.el (after-find-file): Don't chase links before calling
6334 file-exists-p, as file-exists-p already does the right thing.
6335
6336 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
6337
6338 Merge from standalone RefTeX repository.
6339
6340 The following ChangeLog entries are shortened versions of the
6341 original ones with file paths adapted. A not so strongly edited
6342 version of the original ChangeLog can be found in the commit log.
6343
6344 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
6345 (reftex-arg-cite): Use `reftex-cite-key-separator'.
6346 Correctly handle new value type returned by `reftex-citation'.
6347
6348 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
6349 that entries with whitespace at various places are found.
6350 Doc fix. Include entries that are cross-referenced from cited entries.
6351 Include @String definitions in the resulting bib file. Add header
6352 and footer defined in `reftex-create-bibtex-header' and
6353 `reftex-create-bibtex-footer'.
6354 (reftex-do-citation): Make it possible again to insert
6355 non-existent entries. Save match data when asking for optional
6356 arguments. Return all keys, not just the first one.
6357 (reftex-all-used-citation-keys): Fix regexp to correctly extract
6358 all citations in the same line.
6359 (reftex-parse-bibtex-entry): Accept additional optional argument
6360 `raw' and keep quotes or braces if it is non-nil. Match fields
6361 containing hyphens besides word constituents.
6362 (reftex-get-string-refs): New function.
6363 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
6364 and ask if it should be reread in case it did.
6365 (reftex-pop-to-bibtex-entry)
6366 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
6367 entries with spaces or tabs in front of arguments.
6368 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6369 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
6370 Match entries containing numbers and symbol constituents.
6371 (reftex-do-citation, reftex-figure-out-cite-format):
6372 Use `reftex-cite-key-separator'.
6373
6374 * textmodes/reftex-dcr.el: Move provide statement to end of file.
6375 (reftex-mouse-view-crossref): Explain why point is set.
6376
6377 * textmodes/reftex-global.el: Whitespace changes.
6378
6379 * textmodes/reftex-index.el: Move provide statement to end of
6380 file.
6381 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
6382 (reftex-index-visit-phrases-buffer): Set marker when visiting
6383 buffer. This allows for returning from the phrases file to the
6384 file one was just editing instead of the file where the last
6385 phrases was added from.
6386 (reftex-index-phrases-syntax-table): New variable. Give ?\"
6387 punctuation syntax as it usually is not used as string quote in
6388 TeX-related modes and may occur unmatched. The change also
6389 prevents fontification of quoted content.
6390 (reftex-index-phrases-mode): Use it.
6391
6392 * textmodes/reftex-parse.el (reftex-parse-from-file):
6393 Move backward one char if a `\' was matched after a section macro.
6394 (reftex-parse-from-file): Use beginning of match instead of end as
6395 bound.
6396
6397 * textmodes/reftex-ref.el: Adapt creation of
6398 `reftex-<package>-<macro>' functions to new structure of
6399 `reftex-ref-style-alist'.
6400 (reftex-reference): Use `reftex-ref-style-list' function.
6401 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
6402 reference macro if `reftex-ref-macro-prompt' is non-nil.
6403 (reftex-reference): Pass refstyle to `reftex-format-special'.
6404 Determine reference macro by looking at
6405 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
6406 Use only one special format function.
6407 (reftex-varioref-vref, reftex-fancyref-fref)
6408 (reftex-fancyref-Fref): Remove definitions. The functions are now
6409 generated from `reftex-ref-style-alist'.
6410 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
6411 Remove.
6412 (reftex-format-special): New function.
6413
6414 * textmodes/reftex-sel.el
6415 (reftex-select-cycle-ref-style-internal): Adapt to new structure
6416 of `reftex-ref-style-alist'. Remove code for testing macro type.
6417 (reftex-select-toggle-varioref)
6418 (reftex-select-toggle-fancyref): Remove.
6419 (reftex-select-cycle-ref-style-internal)
6420 (reftex-select-cycle-ref-style-forward)
6421 (reftex-select-cycle-ref-style-backward): New functions.
6422 (reftex-select-label-map): Use `v' and `V' for general cycling
6423 through reference styles. Add `p' for switching between number
6424 and page reference types.
6425
6426 * textmodes/reftex-toc.el (reftex-re-enlarge):
6427 Call `enlarge-window' only if there is something to do because in Emacs
6428 the horizontal version throws an error even if the parameter is 0.
6429
6430 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
6431 (reftex-plug-into-AUCTeX): Doc fix.
6432 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
6433 string. Adapt to new name.
6434 (reftex-ref-style-alist): Change structure so that it is not
6435 possible to use multiple different package names within a style.
6436 Remove the symbols for symbols for macro type distinction.
6437 Add characters for macro selection.
6438 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
6439 (reftex-create-bibtex-footer): New variables.
6440 (reftex-format-ref-function): Mention third argument of special
6441 format function.
6442 (reftex-ref-style-alist, reftex-ref-style-default-list):
6443 New variables.
6444 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
6445 to new implementation. Mark as obsolete. Add compatibility code
6446 for honoring the variable values in case they are set.
6447 (reftex-cite-format-builtin, reftex-bibliography-commands):
6448 Add support for ConTeXt.
6449 (reftex-format-ref-function, reftex-format-cite-function):
6450 Fix custom type.
6451 (reftex-cite-key-separator): New variable.
6452
6453 * textmodes/reftex.el (reftex-syntax-table-for-bib)
6454 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
6455 `reftex-syntax-table' because parens have to retain their paren
6456 syntax in order for parsing of BibTeX entries like @book(...) to
6457 work.
6458 (reftex-in-comment): Do not error out if `comment-start-skip' is
6459 not set. Deal correctly with escaped comment characters.
6460 (reftex-tie-multifile-symbols): Add doc string.
6461 Initialize `reftex-ref-style-list'.
6462 (reftex-untie-multifile-symbols): Add doc string.
6463 (reftex-add-index-macros): Doc fix.
6464 (reftex-ref-style-activate, reftex-ref-style-toggle)
6465 (reftex-ref-style-list): New functions.
6466 (reftex-mode-menu): Use them. Adapt to new structure of
6467 `reftex-ref-style-alist'.
6468 (reftex-select-with-char): Kill the RefTeX Select buffer when
6469 done.
6470 (reftex-remove-if): New function.
6471 (reftex-erase-all-selection-and-index-buffers)
6472 (reftex-mode-menu): Reference styles are now computed from
6473 `reftex-ref-style-alist'. Fix typo.
6474 (reftex-report-bug): New function.
6475 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
6476 algorithms with O(n log n). Introduce optional argument SORT (not
6477 yet used).
6478
6479 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
6480
6481 Enhancements for triple-quote string syntax.
6482 * progmodes/python.el (python-syntax-propertize-function):
6483 Match both quote cases in one regexp.
6484 (python-syntax-stringify): Handle matches properly.
6485
6486 2012-09-30 Juri Linkov <juri@jurta.org>
6487
6488 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6489 to nil around the call to `insert' to prevent
6490 directory time modification by lock_file. (Bug#2295)
6491 * tar-mode.el (tar-summarize-buffer): Idem.
6492
6493 2012-09-30 Juri Linkov <juri@jurta.org>
6494
6495 * facemenu.el (list-colors-sort): Add option "Luminance".
6496 (list-colors-sort-key): Implement it.
6497
6498 * vc/diff-mode.el (diff-refine-removed):
6499 * vc/ediff-init.el (ediff-fine-diff-A):
6500 * vc/smerge-mode.el (smerge-refined-removed):
6501 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
6502
6503 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
6504
6505 * term/ns-win.el (x-file-dialog): New function.
6506
6507 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
6508
6509 * ido.el (ido-max-directory-size): Default to nil; the current
6510 default is small for POSIX systems, and impractical on Windows 7
6511 now that lstat returns directory sizes for NTFS.
6512
6513 2012-09-30 Martin Rudalics <rudalics@gmx.at>
6514
6515 In buffer display functions handle window-height/window-width
6516 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
6517 * window.el (window--display-buffer): New argument ALIST.
6518 Obey window-height and window-width alist entries.
6519 (window--try-to-split-window): New argument ALIST.
6520 Bind window-combination-limit to t when the window's size shall be
6521 changed and window-combination-limit equals `window-size'.
6522 (display-buffer-in-atom-window)
6523 (display-buffer-in-major-side-window)
6524 (display-buffer-in-side-window, display-buffer-same-window)
6525 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6526 (display-buffer-pop-up-window, display-buffer-below-selected)
6527 (display-buffer-at-bottom, display-buffer-in-previous-window)
6528 (display-buffer-use-some-window): Adjust all callers of
6529 window--display-buffer and window--try-to-split-window.
6530 (fit-frame-to-buffer): New option.
6531 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6532 is non-nil.
6533 (display-buffer-in-major-side-window): Evaluate window-height /
6534 window-width alist entries.
6535
6536 * help.el (temp-buffer-resize-frames)
6537 (temp-buffer-resize-regexps): Remove options.
6538 (temp-buffer-resize-mode): Adjust doc-string.
6539 (resize-temp-buffer-window): Don't consult
6540 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
6541 temp-buffer-resize-frames.
6542
6543 * dired.el (dired-mark-pop-up):
6544 Call display-buffer-below-selected with a fit-window-to-buffer alist
6545 entry.
6546
6547 2012-09-30 Chong Yidong <cyd@gnu.org>
6548
6549 * server.el (server-host): Document the security implications.
6550 (server-auth-key): Doc fix.
6551
6552 * startup.el (initial-buffer-choice): Doc fix.
6553
6554 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6555
6556 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6557 restriction change.
6558
6559 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6560
6561 * help-fns.el (help-fns--obsolete): Fix last change.
6562
6563 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6564
6565 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6566 (minor-mode-map-alist): Remove redundant code.
6567
6568 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6569 visited in a buffer.
6570 (cvs-insert-visited-file): New function.
6571 (find-file-hook): Use it.
6572
6573 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6574
6575 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6576 chose face.
6577 (log-edit-empty-buffer-p): Don't require a space after a header.
6578
6579 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6580
6581 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6582
6583 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6584 a proper minor-mode.
6585
6586 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6587
6588 2012-09-29 Glenn Morris <rgm@gnu.org>
6589
6590 * winner.el (winner-mode): Remove variable (let define-minor-mode
6591 handle it).
6592 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6593 Doc fixes.
6594 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6595 (winner-mode): Use define-minor-mode.
6596
6597 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6598 the full definition in loaddefs, rather than duplicating it.
6599
6600 * help-macro.el (three-step-help): No need to autoload defcustom.
6601
6602 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6603 (inferior-lisp-program, inferior-lisp-load-command)
6604 (inferior-lisp-prompt, inferior-lisp-mode-hook):
6605 No need to autoload defcustoms.
6606
6607 * hippie-exp.el (hippie-expand-try-functions-list)
6608 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6609 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6610 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6611 (hippie-expand-only-buffers): No need to autoload defcustoms.
6612 * progmodes/vhdl-mode.el (vhdl-line-expand):
6613 Explicitly load hippie-exp, so it does not get autoloaded
6614 while hippie-expand-try-functions-list is let-bound.
6615
6616 2012-09-28 Glenn Morris <rgm@gnu.org>
6617
6618 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6619
6620 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6621 Only "cl.el" counts as cl these days.
6622
6623 2012-09-28 Juri Linkov <juri@jurta.org>
6624
6625 Display archive errors in the echo area instead of inserting
6626 to the file buffer.
6627
6628 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6629 to STDERR-TEST that can be a regexp matching a successful output.
6630 Create a temporary file and redirect stderr to it. Search for
6631 STDERR-TEST in the stderr output and display it in the echo area
6632 if no match is found.
6633 (archive-extract-by-file): New function like
6634 `archive-extract-by-stdout' but extracting archives to files
6635 and looking for successful matches in stdout. Function body is
6636 mostly copied from `archive-rar-extract'.
6637 (archive-rar-extract): Use `archive-extract-by-file'.
6638 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
6639
6640 2012-09-28 Leo Liu <sdl.web@gmail.com>
6641
6642 * pcomplete.el (pcomplete-show-completions):
6643 Use minibuffer-message to make pcomplete usable in minibuffer.
6644
6645 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6646
6647 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6648
6649 * type-break.el: Use lexical-binding.
6650 (type-break-mode): Use define-minor-mode.
6651
6652 * emacs-lisp/pcase.el (pcase--mark-used): New.
6653 (pcase--u1): Use it (bug#12512).
6654
6655 * custom.el (load-theme): Set buffer-file-name so the load is recorded
6656 in load-history with the right file name.
6657
6658 2012-09-28 Tassilo Horn <tsdh@gnu.org>
6659
6660 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6661 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6662 (doc-view-get-bounding-box): Make bounding box slicing work for
6663 ODF and DVI documents.
6664
6665 2012-09-28 Glenn Morris <rgm@gnu.org>
6666
6667 * type-break.el (type-break-mode, type-break-interval)
6668 (type-break-good-rest-interval, type-break-keystroke-threshold):
6669 No need to autoload.
6670 (type-break-good-rest-interval, type-break-keystroke-threshold):
6671 Add :set-after.
6672
6673 2012-09-28 Chong Yidong <cyd@gnu.org>
6674
6675 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6676 Add :version tag.
6677
6678 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6679
6680 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6681
6682 2012-09-27 Glenn Morris <rgm@gnu.org>
6683
6684 * faces.el (x-display-name): Declare (for without-x builds).
6685
6686 * linum.el (linum-format): Don't autoload it. Improve :type.
6687
6688 * progmodes/tcl.el: Don't require outline when compiling.
6689 (outline-regexp, outline-level): Declare.
6690 * textmodes/sgml-mode.el: Don't require outline when compiling.
6691 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6692
6693 * term.el (term-ansi-reset):
6694 Try setting term-ansi-face-already-done to nil. (Bug#11785)
6695
6696 * vc/vc.el (vc-next-action): Only gripe about committing read-only
6697 files for RCS and SCCS. (Bug#9781)
6698
6699 2012-09-27 Chong Yidong <cyd@gnu.org>
6700
6701 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6702 change; value should be t.
6703
6704 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6705
6706 * image-mode.el: Use lexical-binding.
6707 (image-mode-winprops): Use t to stand for the window of
6708 a buffer that's not displayed.
6709 * doc-view.el (doc-view-new-window-function): Handle the new
6710 t in winprops.
6711 (doc-view-enlarge): Make it a real nop if the size is not changed.
6712 (doc-view-display): Handle the case where the buffer is not (yet?)
6713 displayed in any window.
6714 (doc-view-saved-settings): New var.
6715 (doc-view-mode): Use it.
6716 (doc-view-fallback-mode): Set it.
6717
6718 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6719 Set lexical-binding.
6720 (minibuffer-eldef-shorten-default): New var.
6721 (minibuffer-default-in-prompt-regexps): Use it for new default.
6722 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6723
6724 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6725
6726 * international/uni-bidi.el:
6727 * international/uni-category.el:
6728 * international/uni-name.el:
6729 * international/uni-numeric.el: Regenerate.
6730
6731 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6732 Stefan Monnier <monnier@iro.umontreal.ca>
6733
6734 * profiler.el: New file.
6735
6736 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6737
6738 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6739 (testcover-reinstrument): Simplify with CSE.
6740
6741 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6742
6743 * window.el (temp-buffer-window-setup): Fix typo in docstring.
6744
6745 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
6746
6747 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6748 (verilog-auto-input, verilog-auto-insert-lisp)
6749 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6750 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6751 (verilog-auto-unused, verilog-auto-wire)
6752 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6753 newline. Reported by Andrew Jones.
6754 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6755 Reported by Brad Dobbie.
6756 (verilog-batch-delete-trailing-whitespace):
6757 Create verilog-batch-delete-trailing-whitespace.
6758 Reported by Brad Dobbie.
6759 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6760 parameters from another module. Reported by Dan Katz.
6761 (verilog-auto, verilog-auto-assign-modport)
6762 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6763 AUTOINOUTMODPORT for UVM interface module shell generation.
6764 Reported by Brad Dobbie.
6765 (verilog-auto-inst-interfaced-ports): Make default nil, as more
6766 standard behavior.
6767 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6768 Reported by Matt Martin.
6769
6770 2012-09-25 Martin Rudalics <rudalics@gmx.at>
6771
6772 * window.el (window--resize-child-windows): When resizing child
6773 windows proportionally, process them in reverse order to
6774 preserve the "when splitting a window the new one gets the odd
6775 line" behavior.
6776 (window--resize-root-window-vertically): When resizing the
6777 minibuffer window try to affect only windows at the bottom of the
6778 frame. (Bug#12419)
6779
6780 2012-09-25 Chong Yidong <cyd@gnu.org>
6781
6782 * subr.el (declare): Doc fix.
6783
6784 * help-fns.el (help-fns--obsolete): Handle macros properly.
6785
6786 2012-09-25 Chong Yidong <cyd@gnu.org>
6787
6788 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6789 this function obsolete.
6790
6791 * calendar/cal-x.el (calendar-two-frame-setup)
6792 (calendar-only-one-frame-setup, calendar-one-frame-setup):
6793 * calendar/calendar.el (american-calendar, european-calendar)
6794 (calendar-for-loop):
6795 * comint.el (comint-dynamic-simple-complete)
6796 (comint-dynamic-complete-as-filename, comint-unquote-filename):
6797 * desktop.el (desktop-load-default):
6798 * dired-x.el (dired-omit-here-always)
6799 (dired-hack-local-variables, dired-default-directory):
6800 * emacs-lisp/derived.el (derived-mode-class):
6801 * emacs-lisp/timer.el (timer-set-time-with-usecs):
6802 * emacs-lock.el (toggle-emacs-lock):
6803 * epa.el (epa-display-verify-result):
6804 * epg.el (epg-sign-keys, epg-start-sign-keys)
6805 (epg-passphrase-callback-function):
6806 * eshell/esh-util.el (eshell-for):
6807 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6808 (eshell-add-to-window-buffer-names):
6809 * files.el (locate-file-completion):
6810 * imenu.el (imenu-example--create-c-index)
6811 (imenu-example--create-lisp-index)
6812 (imenu-example--lisp-extract-index-name)
6813 (imenu-example--name-and-position):
6814 * international/mule-cmds.el (princ-list):
6815 * international/mule-diag.el (decode-codepage-char):
6816 * international/mule-util.el (detect-coding-with-priority):
6817 * iswitchb.el (iswitchb-read-buffer):
6818 * mail/mailalias.el (mail-complete):
6819 * mail/sendmail.el (mail-sent-via):
6820 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6821 (mouse-major-mode-menu):
6822 * password-cache.el (password-read-and-add):
6823 * pcomplete.el (pcomplete-parse-comint-arguments):
6824 * progmodes/sh-script.el (sh-maybe-here-document):
6825 * replace.el (query-replace-regexp-eval):
6826 * savehist.el (savehist-load):
6827 * simple.el (choose-completion-delete-max-match):
6828 * term.el (term-dynamic-simple-complete):
6829 * vc/ediff-init.el (ediff-check-version):
6830 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6831 * vc/vc.el (vc-diff-switches-list):
6832 * view.el (view-return-to-alist-update): Likewise.
6833
6834 * subr.el (eval-next-after-load, makehash, insert-string)
6835 (assoc-ignore-representation, assoc-ignore-case): Use declare to
6836 mark obsolete.
6837 (mode-line-inverse-video): Variable deleted.
6838
6839 * international/mule-util.el (string-to-sequence): Remove.
6840
6841 * calendar/calendar.el (calendar-version):
6842 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6843 (icalendar-convert-diary-to-ical):
6844 * cus-edit.el (custom-mode):
6845 * ansi-color.el (ansi-color-unfontify-region):
6846 * international/latin1-disp.el (latin1-char-displayable-p):
6847 * progmodes/cwarn.el (turn-on-cwarn-mode):
6848 * progmodes/which-func.el (which-func-update-1):
6849 Use define-obsolete-function-alias.
6850
6851 * net/newst-backend.el (newsticker-cache-filename):
6852 * net/newst-treeview.el (newsticker-groups-filename):
6853 Fix incorrect obsolescence declaration.
6854
6855 * allout.el (allout-passphrase-hint-string): Likewise.
6856 (allout-init): Use a declare form to mark obsolete.
6857
6858 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6859 this applies to functions.
6860
6861 * iswitchb.el (iswitchb-read-buffer): Move code of
6862 iswitchb-define-mode-map here, and delete that obsolete function.
6863
6864 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6865 font-lock-reference-face.
6866
6867 2012-09-25 Glenn Morris <rgm@gnu.org>
6868
6869 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6870 Doc fixes.
6871
6872 * eshell/em-term.el (eshell-term-name):
6873 Default to term-term-name. (Bug#12485)
6874
6875 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6876
6877 * progmodes/python.el (python-shell-send-buffer): Better handling
6878 of "if __name__ == '__main__':" conditionals when sending the buffer.
6879
6880 2012-09-24 Glenn Morris <rgm@gnu.org>
6881
6882 * eshell/esh-cmd.el (eshell-find-alias-function):
6883 Tighten up file-name regexp. (Bug#12499)
6884
6885 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6886
6887 Enhancements for triple-quote string syntax.
6888 * progmodes/python.el (python-quote-syntax): Remove.
6889 (python-syntax-propertize-function): New value.
6890 (python-syntax-count-quotes, python-syntax-stringify):
6891 New functions.
6892
6893 2012-09-24 Chong Yidong <cyd@gnu.org>
6894
6895 * mail/supercite.el (sc-version): Remove obsolete function.
6896 (sc-describe): Don't mark as obsolete, since it is bound.
6897 (sc-submit-bug-report): Remove.
6898
6899 * vc/log-edit.el (cvs-changelog-full-paragraphs)
6900 (cvs-commit-buffer-require-final-newline): Remove.
6901 (log-edit-require-final-newline)
6902 (log-edit-changelog-full-paragraphs): Default to t.
6903
6904 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6905 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6906 * vc/vc.el (vc-checkout-carefully): Likewise.
6907
6908 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6909 (emerge-version): Remove.
6910
6911 * progmodes/compile.el (compile-internal): Remove.
6912 (compilation-parse-errors-function): Fix typo.
6913
6914 * international/mule.el (set-char-table-default): Remove.
6915 (set-coding-priority, make-coding-system, generic-char-p)
6916 (charset-list, charset-bytes, charset-id): Use declare to mark
6917 functions as obsolete.
6918
6919 * vc/pcvs-defs.el (cvs-buffer-name-alist)
6920 (cvs-invert-ignore-marks): Remove references to obsolete vars.
6921 * vc/vc-hooks.el (vc-default-registered): Don't use
6922 vc-master-templates.
6923
6924 * font-lock.el (font-lock-reference-face):
6925 Use define-obsolete-variable-alias.
6926
6927 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6928 * calendar/calendar.el (calendar-font-lock-keywords):
6929 * calendar/diary-lib.el (diary-font-lock-keywords)
6930 (diary-fancy-font-lock-keywords):
6931 * textmodes/reftex-sel.el (reftex-insert-docstruct):
6932 * textmodes/reftex-index.el (reftex-insert-index):
6933 * textmodes/reftex-cite.el (reftex-format-bib-entry):
6934 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6935 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6936 * progmodes/prolog.el (prolog-font-lock-keywords):
6937 * progmodes/idlwave.el (idlwave-idl-keywords):
6938 * progmodes/ada-mode.el (ada-font-lock-keywords):
6939 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6940
6941 2012-09-24 Glenn Morris <rgm@gnu.org>
6942
6943 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6944
6945 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
6946
6947 * progmodes/python.el (python-indent-line): More consistent cursor
6948 movement behavior.
6949
6950 2012-09-23 Stefan Merten <smerten@oekonux.de>
6951
6952 * textmodes/rst.el: Fix compiler warning.
6953
6954 2012-09-23 Roland Winkler <winkler@gnu.org>
6955
6956 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6957 Transcribe also LaTeX hyphenation.
6958 (bibtex-reformat): Bug fix. Do not quote twice the elements of
6959 bibtex-reformat-previous-options.
6960
6961 2012-09-23 Roland Winkler <winkler@gnu.org>
6962
6963 * proced.el (proced-renice-command): New variable.
6964 (proced-marked-processes): New function.
6965 (proced-with-processes-buffer): New macro.
6966 (proced-send-signal): Use them.
6967 (proced-renice): New command bound to r.
6968
6969 2012-09-23 Roland Winkler <winkler@gnu.org>
6970
6971 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6972 ibuffer-saved-filter-groups has one element, shortcut the call of
6973 completing-read. (Bug#12331)
6974
6975 2012-09-23 Chong Yidong <cyd@gnu.org>
6976
6977 * bindings.el (mode-line-toggle-read-only):
6978 * bs.el (bs-toggle-readonly):
6979 * buff-menu.el (Buffer-menu-toggle-read-only):
6980 * dired.el (dired-toggle-read-only):
6981 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6982
6983 2012-09-23 Chong Yidong <cyd@gnu.org>
6984
6985 * image.el (image-type-available-p): Adapt to init-image-library
6986 argument changes.
6987
6988 2012-09-22 Juri Linkov <juri@jurta.org>
6989
6990 * dired.el (dired-mode-map): Add [remap read-only-mode] for
6991 `dired-toggle-read-only'. (Bug#12462)
6992
6993 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6994
6995 * subr.el (temp-output-buffer-show): New function.
6996 (with-output-to-temp-buffer): Call temp-output-buffer-show
6997 instead of internal-temp-output-buffer-show.
6998
6999 2012-09-22 Chong Yidong <cyd@gnu.org>
7000
7001 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
7002 (Bug#12462).
7003
7004 * repeat.el (repeat): Doc fix (Bug#12348).
7005
7006 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
7007 (Bug#10909).
7008
7009 * simple.el (shell-command-on-region): Doc fix.
7010 (read-only-mode): Doc fix.
7011
7012 2012-09-22 Eli Zaretskii <eliz@gnu.org>
7013
7014 * emacs-lisp/timer.el (run-with-idle-timer)
7015 (timer-activate-when-idle): Warn against reinvoking an idle timer
7016 from within its own timer action. (Bug#12447)
7017
7018 2012-09-22 Martin Rudalics <rudalics@gmx.at>
7019
7020 * cus-start.el (window-combination-limit): Add new optional
7021 values.
7022 * window.el (temp-buffer-window-show)
7023 (window--try-to-split-window): Handle new values of
7024 window-combination-limit (Bug#1806).
7025 (split-window): Test window-combination-limit for t instead of
7026 non-nil.
7027 (display-buffer-at-bottom): New buffer display action function.
7028 * help.el (temp-buffer-resize-regexps): New option.
7029 (temp-buffer-resize-mode): Rewrite doc-string.
7030 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
7031 Don't resize reused window. Suggested by Glenn Morris.
7032
7033 2012-09-22 Stefan Merten <smerten@oekonux.de>
7034
7035 * textmodes/rst.el: Revamp section title faces.
7036 (rst-official-version)
7037 (rst-package-emacs-version-alist): Sync with official version
7038 V1.4.0.
7039 (rst-faces-defaults, rst-set-level-default)
7040 (rst-level-face-max, rst-level-face-base-color)
7041 (rst-level-face-base-light, rst-level-face-format-light)
7042 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
7043 (rst-adornment-faces-alist): Match new setup.
7044 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
7045 (rst-level-5, rst-level-6): New faces.
7046
7047 2012-09-22 Chong Yidong <cyd@gnu.org>
7048
7049 * simple.el (undo): Handle indirect buffers (Bug#8207).
7050
7051 2012-09-21 Leo Liu <sdl.web@gmail.com>
7052
7053 IDO: Disable match re-ordering for buffer switching.
7054 * ido.el (ido-buffer-disable-smart-matches): New variable.
7055 (ido-set-matches-1): Use it. (Bug#2042)
7056
7057 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
7058
7059 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
7060 Fix 2011-05-17 change. (Bug#12418)
7061
7062 2012-09-21 Leo Liu <sdl.web@gmail.com>
7063
7064 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
7065
7066 2012-09-21 Glenn Morris <rgm@gnu.org>
7067
7068 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
7069 Be more robust about locating simple.el.
7070
7071 2012-09-21 Glenn Morris <rgm@gnu.org>
7072
7073 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
7074
7075 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
7076
7077 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
7078
7079 2012-09-20 Juri Linkov <juri@jurta.org>
7080
7081 * replace.el (query-replace-read-from): Use `read-regexp' instead
7082 of `read-from-minibuffer' when `regexp-flag' is non-nil.
7083 (occur-read-primary-args): Use `read-regexp' instead of
7084 `read-string'.
7085 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
7086 `read-from-minibuffer'.
7087 * isearch.el (isearch-occur): Use `read-regexp' instead of
7088 `read-string'.
7089 * dired.el (dired-read-regexp): Use `read-regexp' instead of
7090 `read-from-minibuffer'.
7091 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
7092 of `read-string'. (Bug#7567)
7093
7094 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
7095 and allow accepting a list of strings prepended to a list of
7096 standard default values. Doc fix. (Bug#12321)
7097
7098 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
7099
7100 * replace.el (read-regexp): Don't add ": " when PROMPT already
7101 ends with a colon and space. (Bug#12321)
7102
7103 2012-09-20 Tassilo Horn <tsdh@gnu.org>
7104
7105 * doc-view.el (doc-view-display): Better fix for the cl-assertion
7106 error.
7107
7108 2012-09-20 Stefan Merten <smerten@oekonux.de>
7109
7110 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
7111 Fixes feature request bug#11711.
7112 (rst-mode): Create `imenu-create-index-function'.
7113 (rst-get-stripped-line): Delete after refactoring.
7114 (rst-section-tree, rst-section-tree-rec)
7115 (rst-section-tree-point): Refactor and document properly.
7116 (rst-imenu-find-adornments-for-position)
7117 (rst-imenu-convert-cell, rst-imenu-create-index):
7118 New function.
7119
7120 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7121
7122 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
7123 (macroexp--expand-all): Use it.
7124 (macroexp--funcall-and-return): Remove by folding it into its sole
7125 caller (macroexp--warn-and-return).
7126 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
7127 Use macroexp--obsolete-warning.
7128
7129 * calc/calc.el: Fix last change by removing the whole chunk, since it
7130 was only needed back when Calc was not bundled.
7131
7132 2012-09-20 Martin Rudalics <rudalics@gmx.at>
7133
7134 * emacs-lisp/debug.el (debug): Restore assignment to
7135 debugger-old-buffer removed on 2012-09-08.
7136
7137 2012-09-20 Juri Linkov <juri@jurta.org>
7138
7139 * dired-aux.el (dired-diff): Remove (require 'diff) since
7140 `diff-latest-backup-file' is now autoloaded.
7141
7142 2012-09-20 Chong Yidong <cyd@gnu.org>
7143
7144 * vc/diff.el (diff-latest-backup-file): Autoload.
7145
7146 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7147
7148 * calc/calc.el: Remove redundant autoload shape check.
7149 (sel-mode): Don't defvar.
7150 (calc-get-stack-element): Add `sel-mode' arg instead.
7151 (calc-top, calc-top-list): Pass it this additional argument.
7152 * calc/calc-store.el (calc-store-map):
7153 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
7154 (calc-map-equation, calc-outer-product, calc-inner-product):
7155 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
7156
7157 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
7158
7159 2012-09-19 Juri Linkov <juri@jurta.org>
7160
7161 * dired-aux.el (dired-diff): Add (require 'diff) because
7162 `diff-latest-backup-file' is not autoloaded.
7163 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
7164 of `dired-get-filename' to t to not report error when there is
7165 no default file on the current line.
7166
7167 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7168
7169 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
7170 macroexp--eval-if-compile.
7171 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
7172 (macroexp--expand-all): Use them (bug#12371).
7173
7174 * doc-view.el (doc-view-guess-paper-size)
7175 (doc-view-scale-bounding-box): Fix unbound `caddr'.
7176
7177 2012-09-19 Tassilo Horn <tsdh@gnu.org>
7178
7179 New feature: set optimal slice from BoundingBox information.
7180 * doc-view.el (doc-view-mode-map): Add keybinding.
7181 (doc-view-menu): Add menu entry.
7182 (doc-view-set-slice): Adapt docstring.
7183 (doc-view-get-bounding-box, doc-view-guess-paper-size)
7184 (doc-view-scale-bounding-box)
7185 (doc-view-set-slice-from-bounding-box): New functions.
7186 (doc-view-paper-sizes): New defvar.
7187
7188 2012-09-19 Glenn Morris <rgm@gnu.org>
7189
7190 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
7191 (byte-compile-log-warning): Autoload. (Bug#12371)
7192
7193 * calendar/calendar.el (calendar-american-month-header)
7194 (calendar-european-month-header, calendar-iso-month-header)
7195 (calendar-month-header): New options.
7196 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
7197 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
7198
7199 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
7200
7201 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
7202
7203 2012-09-18 Juri Linkov <juri@jurta.org>
7204
7205 * dired-aux.el (dired-diff): Restore original functionality of
7206 getting the default value, but keep new feature of using the
7207 latest existing backup file (`diff-latest-backup-file').
7208
7209 2012-09-18 Juri Linkov <juri@jurta.org>
7210
7211 * dired.el (dired-mark): If the region is active in Transient Mark
7212 mode, mark all files in the active region. Doc fix.
7213 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
7214 Doc fix. (Bug#10624)
7215
7216 2012-09-18 Juri Linkov <juri@jurta.org>
7217
7218 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
7219 attributes for M-n are pulled from the file at point.
7220 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
7221 Suggested by Drew Adams. (Bug#10624)
7222
7223 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
7224
7225 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
7226 whitespace after "end".
7227 (ruby-do-end-to-brace): Collapse block to one line if it fits
7228 within fill-column.
7229
7230 2012-09-18 Martin Rudalics <rudalics@gmx.at>
7231
7232 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
7233 value.
7234 (debug): Don't remove debugger window when debugger is expected
7235 to be back.
7236
7237 2012-09-18 Chong Yidong <cyd@gnu.org>
7238
7239 * custom.el (defface): Doc fix.
7240
7241 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
7242
7243 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
7244
7245 * progmodes/compile.el (compilation-start): Use compilation-always-kill
7246 to initialize query-on-exit; then test that instead (bug#12288).
7247
7248 2012-09-17 Stefan Merten <smerten@oekonux.de>
7249
7250 * textmodes/rst.el: Add support for `testcover'.
7251 (rst-defcustom-testcover, rst-testcover-add-compose)
7252 (rst-testcover-add-1value): New functions.
7253 (rst-portable-mark-active-p): Replace by `use-region-p'.
7254 (rst-update-section, rst-classify-adornment)
7255 (rst-find-title-line): Mark `1value' forms.
7256 (rst-classify-adornment): Remove superfluous form.
7257 (rst-update-section, rst-get-adornments-around)
7258 (rst-adornment-complete-p, rst-get-next-adornment)
7259 (rst-adjust, rst-promote-region)
7260 (rst-display-adornments-hierarchy, rst-straighten-adornments)
7261 (rst-find-pfx-in-region, rst-section-tree-rec)
7262 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
7263 (rst-toc-node, rst-toc, rst-forward-section)
7264 (rst-iterate-leftmost-paragraphs)
7265 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
7266 (rst-bullet-list-region)
7267 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
7268 (rst-compile-find-conf, rst-compile)
7269 (rst-repeat-last-character): Fix style.
7270
7271 2012-09-17 Chong Yidong <cyd@gnu.org>
7272
7273 * comint.el (comint--complete-file-name-data): Don't add a space
7274 if the status is `sole'; that adds a gratuitous space in the
7275 completion-cycling case (Bug#12092).
7276
7277 * pcomplete.el (pcomplete-completions-at-point): Likewise.
7278
7279 2012-09-17 Richard Stallman <rms@gnu.org>
7280
7281 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
7282 only in the mime-shown mode, not in raw mode.
7283 (rmail-mime): Toggle off mime by displaying the message without
7284 mime processing. (Bug#12305)
7285
7286 * mail/rmail.el (rmail-retry-failure):
7287 Turn off mime processing first. (Bug#12037)
7288
7289 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
7290
7291 2012-09-17 Chong Yidong <cyd@gnu.org>
7292
7293 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
7294 (shell-dynamic-complete-functions): Convert to defcustom.
7295 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
7296
7297 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
7298 * comint.el (comint-prompt-read-only):
7299 * custom.el (defcustom):
7300 * hi-lock.el (hi-lock-mode):
7301 * ibuffer.el (ibuffer-formats):
7302 * ielm.el (ielm-prompt-read-only):
7303 * novice.el (disable-command):
7304 * saveplace.el (toggle-save-place):
7305 * speedbar.el (speedbar-supported-extension-expressions):
7306 * startup.el (auto-save-list-file-prefix, init-file-user)
7307 (after-init-hook, inhibit-startup-echo-area-message):
7308 * strokes.el (strokes-help):
7309 * time-stamp.el (time-stamp):
7310 * calendar/calendar.el (calendar, diary-file):
7311 * calendar/diary-lib.el (diary-mail-entries, diary)
7312 (diary-list-entries-hook):
7313 * calendar/holidays.el (holidays, calendar-holidays):
7314 * calendar/lunar.el (lunar-phases):
7315 * calendar/solar.el (sunrise-sunset):
7316 * emulation/edt.el (edt-load-keys):
7317 * emulation/viper.el (viper-mode):
7318 * eshell/em-alias.el (eshell-command-aliases-list):
7319 * eshell/esh-util.el (eshell-convert-numeric-arguments):
7320 * international/ogonek.el (ogonek-information):
7321 * net/tramp-cmds.el (tramp-bug):
7322 * net/quickurl.el (quickurl-reread-hook-postfix):
7323 * play/decipher.el (decipher-font-lock-keywords):
7324 * progmodes/cc-styles.el (c-set-style):
7325 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
7326 * progmodes/inf-lisp.el (inferior-lisp-prompt):
7327 * progmodes/octave-mod.el (octave-mode):
7328 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
7329 * progmodes/verilog-mode.el (verilog-read-defines):
7330 * textmodes/two-column.el (2C-mode): Likewise.
7331
7332 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
7333
7334 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
7335 that holds many addresses.
7336
7337 2012-09-16 Chong Yidong <cyd@gnu.org>
7338
7339 * align.el (align-areas): Call the indication function with
7340 positions instead of markers for arguments (Bug#12343).
7341
7342 * files.el (parse-colon-path): Use split-string (Bug#12351).
7343
7344 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7345 (display-buffer-function): Mark as obsolete.
7346
7347 * progmodes/compile.el (compilation-parse-errors): Accept list
7348 values similar to font-lock-keywords (Bug#12136).
7349 Suggested by Oleksandr Manzyuk.
7350 (compilation-error-regexp-alist): Doc fix.
7351
7352 2012-09-15 Glenn Morris <rgm@gnu.org>
7353
7354 * version.el (emacs-bzr-version-bzr): New function.
7355 (emacs-bzr-get-version): Add optional EXTERNAL argument.
7356
7357 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
7358 checkouts, check the parent dirstate matches the branch.
7359 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
7360 empty string.
7361
7362 * version.el (emacs-bzr-version): Doc fix.
7363 (emacs-bzr-version-dirstate): New function.
7364 (emacs-bzr-get-version): For lightweight checkouts, if the parent
7365 is local try and check that it matches the branch. If not, just
7366 use dirstate information. (Bug#12441)
7367
7368 2012-09-14 Juri Linkov <juri@jurta.org>
7369
7370 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
7371 (Bug#12399)
7372
7373 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7374
7375 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
7376
7377 * emacs-lisp/edebug.el: Miscellaneous cleanup.
7378 Remove obsolete byte-compiler hack that tried to silence some warnings.
7379 (edebug-submit-bug-report): Remove.
7380 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
7381 Remove aliases, use the un-prefixed name instead.
7382 (edebug-pop-to-buffer): Consider other frames.
7383 (edebug-original-read):: Make it more obvious that it's always defined.
7384 (edebug--make-form-data-entry, edebug--form-data-name)
7385 (edebug--form-data-begin, edebug--form-data-end): Rename from the
7386 single-dashed name, and implement with cl-defstruct.
7387 (edebug-set-form-data-entry): Use the standard accessors.
7388 (edebug-make-top-form-data-entry): Use push.
7389 (edebug-no-match): Drop useless `funcall'.
7390 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
7391 to functions.
7392 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
7393 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
7394 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
7395 (easy-menu-define, with-custom-print): Remove redundant specs.
7396 (edebug-outside-overriding-local-map)
7397 (edebug-outside-overriding-terminal-local-map): Remove, unused.
7398 (edebug--display): Bind unread-command-events directly to nil rather
7399 than binding it to unread-command-events and later setting it to nil.
7400 (edebug--display): Kill edebug-eval-buffer here...
7401 (edebug--recursive-edit): ...rather than here.
7402 Bind standard-output and standard-input.
7403 (edebug-eval): Check cl-macroexpand-all is fboundp.
7404 (edebug-temp-display-freq-count): Fix last change.
7405
7406 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
7407 * subr.el (noreturn, 1value): Add `debug' spec.
7408 * emacs-lisp/advice.el: Require cl-lib.
7409 (ad-copy-tree): Remove, use copy-tree instead.
7410 (ad-dolist): Remove use dolist or cl-dolist instead.
7411 (ad-do-return): Remove, use cl-return instead.
7412 (defadvice): Add `debug' spec.
7413
7414 2012-09-13 Juri Linkov <juri@jurta.org>
7415
7416 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
7417 (Bug#12399)
7418
7419 2012-09-13 Glenn Morris <rgm@gnu.org>
7420
7421 * calc/calc.el (math-compose-expr):
7422 * calc/calc-ext.el (math-compose-expr):
7423 * progmodes/cc-defs.el (cl-macroexpand-all):
7424 * progmodes/cc-langs.el (delete-duplicates, mapcan)
7425 (cl-macroexpand-all): Update declarations.
7426
7427 * vc/vc.el: No need to require ediff.
7428 (ediff-load-version-control): Declare.
7429 (ediff-vc-internal): Fix declaration.
7430 (vc-version-ediff): Require ediff.
7431
7432 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7433
7434 Use a more backwards-compatible timer format (Bug#12430).
7435 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
7436 being right after USECS, as that better supports old code that
7437 inadvisedly looked directly at the timer vector.
7438
7439 2012-09-13 Kenichi Handa <handa@gnu.org>
7440
7441 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7442 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
7443 `coding-priority' property of these language environment.
7444
7445 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7446
7447 Fix glitches caused by addition of psec to timers (Bug#12430).
7448 * image.el (image-animate-timer):
7449 * time.el (display-time-world-timer):
7450 Use timer--function and timer--args rather than raw access to
7451 timer vector.
7452
7453 2012-09-13 Glenn Morris <rgm@gnu.org>
7454
7455 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7456 If not compiling a file, try using load-file-name.
7457
7458 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
7459
7460 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
7461 Fix last change.
7462 (edebug-update-eval-list): Use `push'.
7463
7464 * emacs-lisp/edebug.el: Use lexical-binding.
7465 Remove the "edebug-" prefix from non-dynamically-scoped variables.
7466 Mark unused args with underscore.
7467 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
7468 (edebug-form-data): Use defvar-local.
7469 (edebug-make-before-and-after-form, edebug-make-after-form):
7470 Use backquote.
7471 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
7472 Not dynamically scoped any more.
7473 (edebug--enter-trace): Add arguments `function' and `args'.
7474 Rename from edebug-enter-trace.
7475 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
7476 (edebug--update-coverage): Add `after-index' and `value' args.
7477 Rename from edebug-update-coverage.
7478 (edebug-slow-after): Call it accordingly.
7479 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
7480 edebug-recursive-edit.
7481 (edebug--display): Call it accordingly. Add args `value',
7482 `offset-index', and `arg-mode'. Rename from edebug-display.
7483 (edebug-debugger, edebug): Call it accordingly.
7484 (edebug-eval-display-list): Use dolist.
7485
7486 2012-09-12 Juri Linkov <juri@jurta.org>
7487
7488 * info.el (Info-search): Don't check for isearch-mode and
7489 isearch-regexp before let-binding search-spaces-regexp to
7490 Info-search-whitespace-regexp.
7491 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7492 search-whitespace-regexp if isearch-lax-whitespace or
7493 isearch-regexp-lax-whitespace is non-nil.
7494 (Info-mode): Don't set local variable search-whitespace-regexp.
7495 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7496
7497 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7498
7499 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7500 (debugger-env-macro): Remove support for unread-command-char.
7501
7502 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7503 the temporary map re-appearing on emulation-mode-map-alists.
7504
7505 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7506 since 22.1.
7507
7508 * ehelp.el (with-electric-help): Accept functions in
7509 electric-help-form-to-execute.
7510 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7511 And replace unread-command-char -> unread-command-events.
7512
7513 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
7514
7515 Sync with Tramp 2.2.6.
7516
7517 * net/tramp.el (tramp-accept-process-output): Don't use
7518 JUST-THIS-ONE in the XEmacs case.
7519
7520 * net/trampver.el: Update release number.
7521
7522 2012-09-12 Martin Rudalics <rudalics@gmx.at>
7523
7524 * emacs-lisp/debug.el (debugger-previous-window-height):
7525 New variable.
7526 (debug): When debugger-jumping-flag is non-nil try to restore
7527 height of debugger window. (Bug#8789)
7528
7529 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7530
7531 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7532 overriding-local-map and pre/post-command-hook here.
7533 (edebug-recursive-edit): Do it here instead (bug#12345).
7534 (edebug-outside-unread-command-char): Remove all uses of
7535 unread-command-char.
7536
7537 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7538 inhibit-debugger is bound instead.
7539
7540 2012-09-11 Bastien Guerry <bzg@gnu.org>
7541
7542 * subr.el (set-temporary-overlay-map): Add a docstring.
7543 (Bug#12346)
7544
7545 2012-09-11 Bastien Guerry <bzg@gnu.org>
7546
7547 * minibuffer.el (completion-table-subvert): Fix docstring.
7548 (Bug#12347)
7549
7550 2012-09-11 Bastien Guerry <bzg@gnu.org>
7551
7552 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
7553
7554 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
7555
7556 * progmodes/sql.el: Version 3.1
7557 (sql-db2-escape-newlines): New variable.
7558 (sql-escape-newlines-filter): Use it.
7559
7560 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
7561
7562 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7563
7564 2012-09-10 Dan Nicolaescu <dann@gnu.org>
7565
7566 * vc/diff-mode.el (diff-mode-menu):
7567 Bind diff-remove-trailing-whitespace.
7568
7569 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7570
7571 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7572 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7573 (emacs-lisp-byte-code-mode): New functions.
7574 (eval-sexp-add-defvars): Don't skip defvars in column >0.
7575 (eval-defun-2): Remove bogus interactive spec.
7576 (lisp-indent-line): Remove redundant whole-exp code, now done in
7577 indent-according-to-mode.
7578 (save-match-data): Remove redundant indent data.
7579
7580 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7581 Use `declare'.
7582
7583 2012-09-09 Juri Linkov <juri@jurta.org>
7584
7585 * replace.el (replace-regexp-lax-whitespace): New defcustom.
7586 (replace-lax-whitespace, query-replace-regexp)
7587 (query-replace-regexp-eval, replace-regexp): Doc fix.
7588 (perform-replace, replace-highlight): Let-bind
7589 isearch-lax-whitespace to replace-lax-whitespace and
7590 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7591
7592 * isearch.el (isearch-query-replace): Let-bind
7593 replace-lax-whitespace to isearch-lax-whitespace and
7594 replace-regexp-lax-whitespace to
7595 isearch-regexp-lax-whitespace. (Bug#10885)
7596
7597 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7598
7599 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7600
7601 2012-09-09 Alan Mackenzie <acm@muc.de>
7602
7603 * progmodes/cc-engine.el (c-state-cache-init):
7604 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7605 (c-record-parse-state-state):
7606 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7607
7608 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
7609
7610 * register.el (register-separator): Rename from
7611 separator-register. All uses changed. Doc fix.
7612 (register): Fix version.
7613
7614 2012-09-09 Chong Yidong <cyd@gnu.org>
7615
7616 * replace.el (query-replace-map): Bind four new symbols for
7617 requesting window scrolling.
7618
7619 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7620 query-replace-map (Bug#8948).
7621
7622 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7623
7624 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7625 since they are now in query-replace-map.
7626
7627 * window.el (scroll-other-window-down): Make the arg optional.
7628
7629 2012-09-09 Chong Yidong <cyd@gnu.org>
7630
7631 * files.el (hack-local-variables-confirm): Use quit-window to kill
7632 the *Local Variables* buffer.
7633
7634 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7635
7636 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7637 not just expect to be at its beginning. Adjust callees.
7638 Succeed when do-end block has no space before the pipe character.
7639 (ruby-brace-to-do-end): When the original block is one-liner,
7640 convert to multiline. Reindent the result.
7641
7642 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
7643
7644 * register.el (register): New group.
7645 (separator-register): New user option.
7646 (increment-register): Route it to `append-to-register', if
7647 register contains text. Implication is that `C-x r +' can now be
7648 used for appending to a text register (bug#12217).
7649 (append-to-register, prepend-to-register): Add separator based on
7650 `separator-register'.
7651
7652 2012-09-08 Alan Mackenzie <acm@muc.de>
7653
7654 AWK Mode: make auto-newline work when there's "==" in the pattern.
7655 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7656 correctly.
7657 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7658 Test more rigorously for "=" token.
7659
7660 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7661
7662 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7663 Only fail when reached LIMIT.
7664
7665 2012-09-08 Chong Yidong <cyd@gnu.org>
7666
7667 * dired.el (dired-mode-map): Don't bind M-=.
7668
7669 * dired-aux.el (dired-diff): Use backup file as default.
7670
7671 2012-09-08 Drew Adams <drew.adams@oracle.com>
7672
7673 * subr.el (add-to-history): Fix delete usage (Bug#12314).
7674
7675 2012-09-08 Chong Yidong <cyd@gnu.org>
7676
7677 * subr.el (syntax-after, syntax-class): Doc fix.
7678
7679 2012-09-08 Martin Rudalics <rudalics@gmx.at>
7680
7681 * window.el (display-buffer-in-previous-window): New buffer
7682 display action function.
7683
7684 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7685 (debugger-previous-window): New variable.
7686 (debug): Rewrite using display-buffer-in-previous-window,
7687 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
7688
7689 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7690
7691 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
7692
7693 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
7694
7695 * progmodes/python.el (python-shell-send-string):
7696 When default-directory is remote, create temp file on remote
7697 filesystem.
7698 (python-shell-send-file): When file is remote, pass local view of
7699 file paths to remote Python interpreter. (Bug#12340)
7700
7701 2012-09-07 Chong Yidong <cyd@gnu.org>
7702
7703 * window.el (switch-to-buffer): Doc fix (Bug#12181).
7704
7705 * files.el (after-find-file): Don't fail on a read-only buffer if
7706 require-final-newline is `visit' or `visit-save' (Bug#11156).
7707
7708 * subr.el (read-char-choice): Allow quitting via ESC ESC.
7709
7710 * userlock.el (ask-user-about-supersession-threat):
7711 Use read-char-choice (Bug#12093).
7712
7713 2012-09-07 Chong Yidong <cyd@gnu.org>
7714
7715 * subr.el (buffer-narrowed-p): New function.
7716
7717 * ses.el (ses-widen):
7718 * simple.el (count-words--buffer-message):
7719 * net/browse-url.el (browse-url-of-buffer): Use it.
7720
7721 * simple.el (count-words-region): Don't signal an error if there
7722 is a non-nil prefix arg and the mark is not set.
7723
7724 * help.el (describe-key-briefly): Allow the message to be seen
7725 when invoked from the minibuffer (Bug#7014).
7726
7727 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7728
7729 * progmodes/ruby-mode.el (ruby-end-of-defun)
7730 (ruby-beginning-of-defun): Simplify, allow indentation before
7731 block beginning and end keywords.
7732 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7733 (ruby-end-of-defun): Expect that the point is at the beginning of
7734 the defun.
7735
7736 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7737
7738 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7739 (bug#12367).
7740 (cl--make-usage-args): Strip _ from argument names.
7741
7742 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7743
7744 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7745 obsolete alias speedbar-key-map.
7746 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7747 (vhdl-index-menu-init): Don't use obsolete variable
7748 font-lock-maximum-size.
7749
7750 2012-09-06 Chong Yidong <cyd@gnu.org>
7751
7752 * frame.el (window-system-version): Mark as obsolete.
7753
7754 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7755 of obsolete variable speedbar-key-map.
7756
7757 2012-09-06 Juri Linkov <juri@jurta.org>
7758
7759 * replace.el (replace-lax-whitespace): New defcustom.
7760 (query-replace, query-replace-regexp, query-replace-regexp-eval)
7761 (replace-string, replace-regexp): Mention it in docstrings.
7762 (perform-replace, replace-highlight): Let-bind
7763 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7764 to the values of replace-lax-whitespace and regexp-flag.
7765 Don't let-bind search-whitespace-regexp. (Bug#10885)
7766
7767 * isearch.el (isearch-query-replace): Let-bind
7768 replace-lax-whitespace instead of let-binding
7769 replace-search-function and replace-re-search-function.
7770 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7771 and isearch-regexp-lax-whitespace to lazy-highlight variables.
7772 (isearch-toggle-symbol): Set isearch-regexp to nil
7773 in isearch-word mode (like in isearch-toggle-word).
7774
7775 2012-09-06 Juri Linkov <juri@jurta.org>
7776
7777 * replace.el (replace-search-function)
7778 (replace-re-search-function): Set default values to nil.
7779 (perform-replace): Let-bind isearch-related variables based on
7780 replace-related values, call `isearch-search-fun' and let-bind
7781 the result to `search-function'. Remove code that sets
7782 `search-function' and `search-string' separately for
7783 `delimited-flag'.
7784 (replace-highlight): Add new argument `delimited-flag' and
7785 rename other arguments to the names used in `perform-replace'.
7786 Let-bind `isearch-word' to the argument `delimited-flag'.
7787 (Bug#10885, bug#10887)
7788
7789 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7790
7791 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7792 ruby-beginning-of-indent, simplify, allow all keywords to have
7793 indentation before them.
7794 (ruby-beginning-of-indent): Adjust for above. Search until the
7795 found point is not inside a string or comment.
7796 (ruby-font-lock-keywords): Allow symbols to start with "@"
7797 character, give them higher priority than variables.
7798 (ruby-syntax-propertize-function)
7799 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7800 matchers. Expression expansions are not comments when inside a
7801 string, and there comment syntax status is irrelevant.
7802 (ruby-match-expression-expansion): New function. Check that
7803 expression expansion is inside a string, and it's not escaped.
7804 (ruby-font-lock-keywords): Use it.
7805
7806 2012-09-05 Martin Rudalics <rudalics@gmx.at>
7807
7808 * help.el (temp-buffer-max-height): New default value.
7809 (temp-buffer-resize-frames): New option.
7810 (resize-temp-buffer-window): Optionally resize frame.
7811
7812 * window.el (fit-frame-to-buffer-bottom-margin): New option.
7813 (fit-frame-to-buffer): New function.
7814
7815 2012-09-05 Glenn Morris <rgm@gnu.org>
7816
7817 * emulation/cua-rect.el (cua--init-rectangles):
7818 * textmodes/picture.el (picture-mode-map):
7819 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7820 like forward-char and backward-char. (Bug#12317)
7821
7822 2012-09-05 Leo Liu <sdl.web@gmail.com>
7823
7824 * progmodes/flymake.el (flymake-warning-re): New variable.
7825 (flymake-parse-line): Use it.
7826
7827 2012-09-05 Glenn Morris <rgm@gnu.org>
7828
7829 * calendar/holidays.el (holiday-christian-holidays):
7830 Rename an entry. (Bug#12289)
7831
7832 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7833
7834 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7835 (bug#12222).
7836
7837 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7838
7839 * loadup.el: Load macroexp. Remove hack.
7840 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7841 (macroexp--expand-all): Use it to get better warnings.
7842 (macroexp--backtrace, macroexp--trim-backtrace-frame)
7843 (internal-macroexpand-for-load): New functions.
7844 (macroexp--pending-eager-loads): New var.
7845 (emacs-startup-hook): New hack to replace one in loadup.el.
7846 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7847 (cl--compiler-macro-cXXr): Move to top, before they can be used.
7848 (cl-psetf): Simplify.
7849 (cl-defstruct): Add indent rule.
7850
7851 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7852
7853 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7854 over `user-mail-address' for the SMTP MAIL FROM envelope.
7855 (smtpmail-via-smtp): Ditto.
7856
7857 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
7858
7859 * progmodes/ruby-mode.el: Clean up keybindings.
7860 (ruby-mode-map): Don't bind ruby-electric-brace,
7861 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7862 backward-kill-word, reindent-then-newline-and-indent.
7863 (ruby-mark-defun): Remove.
7864 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
7865 (ruby-mode): Set local beginning-of-defun-function and
7866 end-of-defun-function values.
7867
7868 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7869
7870 * window.el (temp-buffer-window-setup-hook)
7871 (temp-buffer-window-show-hook): New hooks.
7872 (temp-buffer-window-setup, temp-buffer-window-show)
7873 (with-temp-buffer-window): New functions.
7874 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7875 (special-display-popup-frame): Make sure the window used shows BUFFER.
7876
7877 * help.el (temp-buffer-resize-mode): Fix doc-string.
7878 (resize-temp-buffer-window): New optional argument WINDOW.
7879
7880 * files.el (recover-file, save-buffers-kill-emacs):
7881 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7882
7883 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
7884
7885 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7886 remote definition of `default-directory', ensure we can connect.
7887
7888 2012-09-02 Juri Linkov <juri@jurta.org>
7889
7890 Toggle whitespace matching mode with M-s SPC.
7891 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7892
7893 * isearch.el (search-whitespace-regexp): Doc fix.
7894 Remove cons cell customization.
7895 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7896 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7897 New variables.
7898 (isearch-forward, isearch-forward-regexp): Doc fix.
7899 (isearch-toggle-lax-whitespace): New command.
7900 (search-forward-lax-whitespace, search-backward-lax-whitespace)
7901 (re-search-forward-lax-whitespace)
7902 (re-search-backward-lax-whitespace): New functions.
7903 (isearch-whitespace-regexp): Remove function.
7904 (isearch-query-replace): Let-bind replace-search-function and
7905 replace-re-search-function.
7906 (isearch-occur): Let-bind search-spaces-regexp according to the
7907 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7908 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7909 condition for C-q SPC.
7910 (isearch-search-fun-default): Use new functions mentioned above.
7911 (isearch-search-forward, isearch-search-backward): Remove functions.
7912 (isearch-search): Don't let-bind search-spaces-regexp.
7913 (isearch-lazy-highlight-space-regexp): Remove variable.
7914 (isearch-lazy-highlight-lax-whitespace)
7915 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7916 (isearch-lazy-highlight-new-loop): Use them.
7917 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7918
7919 2012-09-02 Chong Yidong <cyd@gnu.org>
7920
7921 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7922
7923 2012-09-02 Glenn Morris <rgm@gnu.org>
7924
7925 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
7926
7927 2012-09-01 Glenn Morris <rgm@gnu.org>
7928
7929 * term.el: Tidy up menu definitions.
7930 (term-mode-map): Use easymenu for In/Out, Complete menus.
7931 (term-pager-break-map): Initialize in the defvar.
7932 (term-terminal-menu, term-signals-menu): Define with easymenu.
7933 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
7934 (term-pager-menu): New, extracted from term-process-pager.
7935 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7936 (term-update-mode-line): Propertize line/char and page items.
7937 (term-process-pager): Move keymap initialization elsewhere.
7938
7939 2012-09-01 Martin Rudalics <rudalics@gmx.at>
7940
7941 * window.el (switch-to-prev-buffer): Handle additional values of
7942 BURY-OR-KILL argument. Don't switch in minibuffer window.
7943 (switch-to-next-buffer): Don't switch in minibuffer window.
7944 (quit-restore-window): New function based on quit-window.
7945 Handle additional values of former KILL argument.
7946 (quit-window): Call quit-restore-window with appropriate
7947 interpretation of KILL argument.
7948 (display-buffer-below-selected): New buffer display action
7949 function.
7950
7951 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
7952
7953 * minibuffer.el (completion-at-point-functions): Complete docstring
7954 (bug#12254).
7955
7956 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7957
7958 Better seed support for (random).
7959 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7960 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7961 * play/mpuz.el, play/tetris.el, play/zone.el:
7962 * calc/calc-comb.el (math-init-random-base):
7963 * play/blackbox.el (bb-init-board):
7964 * play/life.el (life):
7965 * server.el (server-use-tcp):
7966 * type-break.el (type-break):
7967 Remove unnecessary call to (random t).
7968 * net/sasl.el (sasl-unique-id-function):
7969 Change (random t) to (random), now that the latter is more random.
7970 * play/life.el (life-initialized): Remove no-longer-needed var.
7971
7972 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
7973
7974 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7975 Consider frame's buffer predicate when choosing the buffer.
7976 (Bug#12081)
7977
7978 2012-08-30 Richard Stallman <rms@gnu.org>
7979
7980 * simple.el (special-mode-map): Delete binding for `z'.
7981
7982 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
7983
7984 * progmodes/compile.el (compilation-always-kill): Doc fix.
7985
7986 2012-08-30 Chong Yidong <cyd@gnu.org>
7987
7988 * window.el (display-buffer-reuse-frames): Make the obsolescence
7989 message more informative.
7990
7991 2012-08-30 Glenn Morris <rgm@gnu.org>
7992
7993 * paren.el (show-paren-delay):
7994 Add a :set function. Doc fix. (Bug#12297)
7995
7996 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
7997
7998 * progmodes/compile.el (compilation-always-kill): New var.
7999 (compilation-start): Use it.
8000
8001 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
8002
8003 * simple.el (read-only-mode): Move from files.el for bootstrapping.
8004 * files.el (read-only-mode): Move to simple.el.
8005
8006 * files.el (read-only-mode): New minor mode.
8007 (toggle-read-only): Use it and mark obsolete.
8008 (find-file--read-only):
8009 * vc/vc.el (vc-next-action, vc-checkout):
8010 * vc/vc-cvs.el (vc-cvs-checkout):
8011 * obsolete/vc-mcvs.el (vc-mcvs-update):
8012 * ffap.el (ffap--toggle-read-only): Update callers.
8013
8014 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
8015
8016 * eshell/esh-ext.el (eshell-external-command): Do not examine
8017 remote shell scripts.
8018 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
8019
8020 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
8021 "/usr/local/sbin".
8022
8023 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8024
8025 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
8026
8027 2012-08-28 Leo Liu <sdl.web@gmail.com>
8028
8029 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
8030 completion-at-point. (Bug#12220)
8031
8032 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
8033
8034 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
8035
8036 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8037
8038 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
8039 be buffer-local; add delete-trailing-whitespace (bug#12259).
8040
8041 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
8042
8043 * progmodes/hideif.el (hif-compress-define-list):
8044 Fix typo. (Bug#11951)
8045
8046 2012-08-28 Dan Nicolaescu <dann@gnu.org>
8047
8048 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
8049 buffer local setting.
8050
8051 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
8052 rcirc-encode-coding-system.
8053
8054 2012-08-28 Leo Liu <sdl.web@gmail.com>
8055
8056 * net/rcirc.el (rcirc-split-message): New function.
8057 (rcirc-send-message): Use it. (Bug#12051)
8058
8059 2012-08-28 Juri Linkov <juri@jurta.org>
8060
8061 * info.el (Info-fontify-node): Hide empty lines at the end of
8062 the node. (Bug#12272)
8063
8064 2012-08-27 Drew Adams <drew.adams@oracle.com>
8065
8066 * dired.el (dired-pop-to-buffer): Make window start at beginning
8067 of buffer (Bug#12281).
8068
8069 2012-08-26 Chong Yidong <cyd@gnu.org>
8070
8071 * window.el (special-display-regexps, special-display-frame-alist)
8072 (special-display-buffer-names, special-display-function)
8073 (display-buffer-reuse-frames): Mark as obsolete.
8074
8075 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
8076
8077 * help.el (help-print-return-message): Don't treat
8078 display-buffer-reuse-frames specially.
8079
8080 2012-08-26 Chong Yidong <cyd@gnu.org>
8081
8082 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
8083 New variable, replacing gdb-frame-parameters.
8084 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
8085 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
8086 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
8087 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
8088 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
8089 the functions directly with gdb-display-buffer-other-frame-action.
8090 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
8091 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
8092 (gdb-display-stack-buffer, gdb-display-locals-buffer)
8093 (gdb-display-registers-buffer): Define directly.
8094 (def-gdb-display-buffer): Macro deleted.
8095 (gdb-display-buffer): Remove second and third args, callers don't
8096 use them. Defer to the default display-buffer behavior, apart
8097 from making windows dedicated.
8098 (gdb-setup-windows): Don't call display-buffer unnecessarily.
8099
8100 * progmodes/gud.el (gud-display-line): Just use display-buffer.
8101
8102 * window.el (display-buffer-pop-up-frame): Handle a
8103 pop-up-frame-parameters alist entry.
8104 (display-buffer): Document it.
8105
8106 2012-08-26 Chong Yidong <cyd@gnu.org>
8107
8108 * isearch.el (search-whitespace-regexp): Make string and nil
8109 values apply to both ordinary and regexp search. Allow a cons
8110 cell value to distinguish between the two.
8111 (isearch-whitespace-regexp, isearch-search-forward)
8112 (isearch-search-backward): New functions.
8113 (isearch-occur, isearch-search-fun-default, isearch-search)
8114 (isearch-lazy-highlight-new-loop): Use them.
8115 (isearch-forward, isearch-forward-regexp): Doc fix.
8116
8117 2012-08-26 Chong Yidong <cyd@gnu.org>
8118
8119 * faces.el (help-argument-name): Always inherit from italic
8120 (Bug#12213).
8121
8122 2012-08-25 Martin Rudalics <rudalics@gmx.at>
8123
8124 * window.el (window--even-window-heights): Even heights when
8125 WINDOW and the selected window form a vertical combination.
8126 (display-buffer-use-some-window): Provide that window used gets
8127 sized back by quit-window. (Bug#11880) and (Bug#12091)
8128
8129 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
8130
8131 Fix file time stamp problem with bzr and CVS (Bug#12001).
8132 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
8133 in the file's time stamp, since the version control system loses
8134 that information.
8135
8136 2012-08-22 Juri Linkov <juri@jurta.org>
8137
8138 * info.el (Info-fontify-node): Hide the suffix of the
8139 Info file name in the header line. (Bug#12187)
8140
8141 2012-08-22 Glenn Morris <rgm@gnu.org>
8142
8143 * calendar/cal-tex.el (cal-tex-weekly-common):
8144 Restore leading blank page.
8145
8146 2012-08-22 Le Wang <l26wang@gmail.com>
8147
8148 * misc.el (forward-to-word, backward-to-word): Activate or extend
8149 the region under `shift-select-mode'. (Bug#12231)
8150
8151 2012-08-22 Bastien Guerry <bzg@gnu.org>
8152
8153 * progmodes/executable.el (executable-prefix): Set to "#!" instead
8154 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
8155 gives details on why the space is never needed.
8156
8157 2012-08-22 Martin Rudalics <rudalics@gmx.at>
8158
8159 * window.el (walk-window-tree, window-with-parameter):
8160 New optional argument MINIBUF to control whether these functions
8161 should run on the minibuffer window.
8162 (window-at-side-list): Don't operate on minibuffer window.
8163 (window-in-direction): Simplify and rewrite doc-string.
8164 (window--size-ignore): Rename to window--size-ignore-p.
8165 Update callers.
8166 (display-buffer-in-atom-window, window--major-non-side-window)
8167 (window--major-side-window, display-buffer-in-major-side-window)
8168 (delete-side-window, display-buffer-in-side-window):
8169 New functions.
8170 (window--side-check, window-deletable-p, delete-window)
8171 (delete-other-windows, split-window): Handle side windows and
8172 atomic windows appropriately.
8173 (window--display-buffer): Call display-buffer-record-window also
8174 when the window buffer did not change.
8175
8176 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
8177
8178 * help-fns.el (help-fns--key-bindings):
8179 Abbreviate non-symbol remap targets. (Bug#12174)
8180
8181 2012-08-22 Martin Rudalics <rudalics@gmx.at>
8182
8183 * dired.el (dired-mark-remembered): Don't clobber point.
8184 (Bug#11795)
8185
8186 2012-08-22 Glenn Morris <rgm@gnu.org>
8187
8188 * progmodes/bug-reference.el (bug-reference): New custom group.
8189 (bug-reference-bug-regexp): Make it a defcustom.
8190
8191 2012-08-22 Daiki Ueno <ueno@unixuser.org>
8192
8193 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
8194 (js-paren-indent-offset, js-square-indent-offset)
8195 (js-curly-indent-offset): Add :safe (Bug#12257).
8196
8197 2012-08-22 Edward O'Connor <hober0@gmail.com>
8198
8199 * json.el (json-key-format): Add error properties.
8200 (json-encode-key): New function.
8201 (json-encode-hash-table, json-encode-alist, json-encode-plist):
8202 Use json-encode-key.
8203
8204 2012-08-22 Glenn Morris <rgm@gnu.org>
8205
8206 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
8207 (cal-tex-leftday, cal-tex-rightday): Remove functions.
8208 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
8209 Update for above change.
8210
8211 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
8212
8213 * cus-face.el (custom-face-attributes): Fix customize type for the
8214 :underline attribute. (Bug#11805)
8215
8216 2012-08-21 Martin Rudalics <rudalics@gmx.at>
8217
8218 * window.el (window-point-1, set-window-point-1): Remove.
8219 (window-in-direction, record-window-buffer)
8220 (set-window-buffer-start-and-point, split-window-below)
8221 (window--state-get-1, display-buffer-record-window):
8222 Replace calls to window-point-1 and set-window-point-1 by calls to
8223 window-point and set-window-point respectively.
8224
8225 2012-08-21 Glenn Morris <rgm@gnu.org>
8226
8227 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
8228 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
8229 Use it.
8230
8231 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
8232 (cal-tex-shortday): New function.
8233 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
8234 (cal-tex-cursor-filofax-daily): Use the above.
8235
8236 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
8237 New functions.
8238 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8239 (cal-tex-cursor-filofax-week): Use them.
8240
8241 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
8242 New constants.
8243 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8244 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
8245
8246 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
8247 (cal-tex-end-document): Don't rely on buffer name.
8248
8249 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
8250 Use cal-tex-vspace.
8251 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
8252 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
8253 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
8254 Use cal-tex-arg.
8255
8256 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
8257 (cal-tex-cursor-week, cal-tex-cursor-week2)
8258 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
8259 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8260 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
8261 (cal-tex-insert-preamble, cal-tex-b-document)
8262 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
8263 Improve cal-tex-cmd usage.
8264
8265 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
8266 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
8267 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
8268 (cal-tex-weekly-paper): New function.
8269 (cal-tex-cursor-week, cal-tex-cursor-week2)
8270 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
8271 (cal-tex-cursor-day): Use it.
8272
8273 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
8274 (cal-tex-cursor-filofax-week): Remove leading blank page.
8275
8276 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8277 Add autoload cookie. For now at least, don't use color, since
8278 no other cal-tex function does.
8279
8280 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
8281 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8282 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
8283
8284 2012-08-21 Juri Linkov <juri@jurta.org>
8285
8286 * info.el (Info-file-attributes): New variable.
8287 (info-insert-file-contents): Add file attributes to
8288 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
8289 `Info-toc-nodes' when previous modtime of the Info file is less
8290 than new modtime.
8291 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
8292 of info.el. (Bug#12230)
8293
8294 2012-08-20 Glenn Morris <rgm@gnu.org>
8295
8296 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
8297 * calendar/holidays.el (calendar-holiday-list):
8298 Report errors with display-warning rather than beep'n'sleep.
8299
8300 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
8301
8302 * net/tramp.el (tramp-accept-process-output): Accept only output
8303 from PROC. Otherwise, process filters and sentinels might be
8304 confused. (Bug#12145)
8305
8306 2012-08-20 Chong Yidong <cyd@gnu.org>
8307
8308 * descr-text.el (describe-text-properties-1): Use overlays-in to
8309 report on empty overlays (Bug#3322).
8310
8311 2012-08-20 Glenn Morris <rgm@gnu.org>
8312
8313 * mail/rmailout.el (rmail-output-read-file-name):
8314 Trap and report errors in rmail-output-file-alist elements.
8315
8316 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
8317 since most non-font-lock faces are not also variables).
8318
8319 2012-08-20 Edward Reingold <reingold@iit.edu>
8320
8321 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8322 New function. (Bug12160)
8323
8324 2012-08-19 Glenn Morris <rgm@gnu.org>
8325
8326 * mail/rmailout.el (rmail-output-read-file-name):
8327 Fix previous change (when the alist is nil or does not match).
8328
8329 2012-08-19 Chong Yidong <cyd@gnu.org>
8330
8331 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
8332 (Bug#12228).
8333
8334 2012-08-18 Chong Yidong <cyd@gnu.org>
8335
8336 * simple.el (yank-handled-properties): New defcustom.
8337 (yank-excluded-properties): Add font-lock-face and category.
8338 (yank): Doc fix.
8339
8340 * subr.el (remove-yank-excluded-properties):
8341 Obey yank-handled-properties. The special handling of font-lock-face
8342 and category is now done this way, instead of being hard-coded.
8343 (insert-for-yank-1): Remove font-lock-face handling.
8344 (yank-handle-font-lock-face-property)
8345 (yank-handle-category-property): New function.
8346
8347 2012-08-17 Glenn Morris <rgm@gnu.org>
8348
8349 * mail/rmailout.el (rmail-output-read-file-name):
8350 Check rmail-output-file-alist against the full message body
8351 in the correct rmail buffer. (Bug#12214)
8352
8353 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
8354
8355 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8356 Eliminate superfluous prompt. (Bug#12203)
8357
8358 2012-08-17 Chong Yidong <cyd@gnu.org>
8359
8360 * mouse.el (mouse-appearance-menu): If x-select-font returns a
8361 font spec, set the font directly (Bug#3228).
8362
8363 2012-08-17 Martin Rudalics <rudalics@gmx.at>
8364
8365 * window.el (delete-window): Fix last fix.
8366
8367 2012-08-16 Martin Rudalics <rudalics@gmx.at>
8368
8369 * window.el (window-valid-p): Move to window.c.
8370 (window-child, window-child-count, window-last-child)
8371 (window-normalize-window, window-combined-p)
8372 (window-combinations, window-atom-root, window-min-size)
8373 (window-sizable, window-sizable-p, window-size-fixed-p)
8374 (window-min-delta, window-max-delta, window--resizable)
8375 (window--resizable-p, window-resizable, window-total-size)
8376 (window-full-height-p, window-full-width-p, window-body-size)
8377 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
8378 (minimize-window, window-deletable-p, delete-window)
8379 (delete-other-windows, set-window-buffer-start-and-point)
8380 (next-buffer, previous-buffer, split-window, balance-windows-2)
8381 (set-window-text-height, window-buffer-height)
8382 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
8383 (truncated-partial-width-window-p): Minor code adjustments.
8384 In doc-strings state whether the argument window has to denote a
8385 live, valid or any window.
8386
8387 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
8388
8389 * progmodes/subword.el (subword-forward-function)
8390 (subword-backward-function, subword-forward-regexp)
8391 (subword-backward-regexp): New variables.
8392 (subword-forward, subword-forward-internal, subword-backward-internal):
8393 Use new variables, eg so that different "word" definitions
8394 can be easily used. (Bug#11411)
8395
8396 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8397
8398 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
8399 for composite selectors.
8400 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
8401 operation just because we can't find a previous revision.
8402
8403 2012-08-15 Chong Yidong <cyd@gnu.org>
8404
8405 * frame.el (set-frame-font): Accept font objects.
8406
8407 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8408
8409 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
8410
8411 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
8412
8413 * man.el (Man-overstrike-face, Man-underline-face)
8414 (Man-reverse-face): Remove variables.
8415 (Man-overstrike, Man-underline, Man-reverse): New faces.
8416 (Man-fontify-manpage): Use them instead of the variables.
8417 (Man-cleanup-manpage): Comment change.
8418 (Man-ansi-color-map): New variable.
8419 (Man-fontify-manpage): Use it.
8420 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
8421
8422 Implement ANSI SGR parameters 22-27 (bug#12146).
8423 * ansi-color.el (ansi-colors): Doc fix.
8424 (ansi-color-context, ansi-color-context-region): Doc fix.
8425 (ansi-color--find-face): New function.
8426 (ansi-color-apply, ansi-color-apply-on-region): Use it.
8427 Rename the local variable `face' to `codes' since it is now a list of
8428 ansi codes. Doc fix.
8429 (ansi-color-get-face): Remove.
8430 (ansi-color-parse-sequence): New function, derived from
8431 ansi-color-get-face.
8432 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
8433 codes 22-27.
8434
8435 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
8436
8437 * subr.el (read-passwd): Allow use from a minibuffer.
8438
8439 2012-08-14 Eli Zaretskii <eliz@gnu.org>
8440
8441 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
8442 inside comments and strings as identifiers.
8443
8444 * progmodes/gud.el (gud-tooltip-print-command): Quote the
8445 expression to evaluate. This allows to evaluate expressions with
8446 embedded whitespace.
8447 (gud-tooltip-tips): Add a blank before the newline in the
8448 message-box text, for the benefit of message-box emulation on
8449 MS-Windows.
8450
8451 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
8452 messages from GDB, pop them up in a tooltip to give feedback to
8453 user.
8454 (gdb-tooltip-print-1): Quote the expression to evaluate.
8455 This allows to evaluate expressions with embedded whitespace.
8456 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
8457 if the TTY name is nil or empty (which happens when communicating
8458 with the inferior via pipes, e.g. on MS-Windows).
8459 (gdb-internals): If GDB sends a "&\n" empty debugging message,
8460 don't send that to the GUD buffer.
8461
8462 2012-08-14 Glenn Morris <rgm@gnu.org>
8463
8464 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
8465 Optimize away setq-default with no args, as for setq. (Bug#12195)
8466
8467 2012-08-14 Chong Yidong <cyd@gnu.org>
8468
8469 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
8470
8471 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
8472 (Bug#12085).
8473
8474 2012-08-14 Glenn Morris <rgm@gnu.org>
8475
8476 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
8477
8478 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
8479
8480 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8481 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8482 Use cached shell name.
8483
8484 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8485
8486 * progmodes/python.el (python-shell-send-string):
8487 (python-shell-send-setup-code): Do not use `format' with `message'.
8488
8489 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
8490
8491 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8492 (ruby-percent-literal-beg-re): New constant.
8493 (ruby-syntax-general-delimiters-goto-beg): Rename to
8494 `ruby-syntax-enclosing-percent-literal', improve literal type check.
8495 (ruby-syntax-propertize-general-delimiters): Rename to
8496 `ruby-syntax-propertize-percent-literal', it's a shorter and more
8497 popular term. Adjust comments everywhere.
8498 (ruby-syntax-propertize-percent-literal): Only propertize when not
8499 inside a simple string or comment. When the literal is unclosed,
8500 leave the text after it unpropertized.
8501 (ruby-syntax-methods-before-regexp): New constant.
8502 (ruby-syntax-propertize-function): Use it to recognize regexps.
8503 Don't look at the text after regexp, just use the whitelist.
8504
8505 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8506
8507 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8508 non-nil always load the compiled file if it exists. (Bug#12197)
8509
8510 2012-08-14 Chong Yidong <cyd@gnu.org>
8511
8512 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8513 (hi-lock-set-pattern): When deciding whether to use font lock or
8514 overlays, look at font-lock-mode instead of font-lock-fontified
8515 (Bug#12168).
8516 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8517 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8518
8519 2012-08-14 Daiki Ueno <ueno@unixuser.org>
8520
8521 * subr.el (internal--after-with-selected-window): Fix typo
8522 (Bug#12193).
8523
8524 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8525
8526 Use `completion-table-dynamic' for completion functions.
8527 * progmodes/python.el
8528 (python-shell-completion--do-completion-at-point)
8529 (python-shell-completion--get-completions):
8530 Remove functions.
8531 (python-shell-completion-complete-at-point): New function.
8532 (python-completion-complete-at-point): Use it.
8533
8534 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
8535
8536 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8537 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8538
8539 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
8540
8541 * subr.el (function-get): Refine `autoload' arg so it can also
8542 autoload functions for gv.el (bug#12191).
8543 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8544 autoloads macros.
8545
8546 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8547 Prefer pcase-let over destructuring-bind.
8548 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8549 Also, remove whitespace as we go, rather than after accumulating the
8550 various places.
8551
8552 * subr.el (internal--before-with-selected-window)
8553 (internal--after-with-selected-window): Fix typo seleted->selected.
8554 (with-selected-window): Adjust callers.
8555 Reported by Dmitry Gutov <dgutov@yandex.ru>.
8556
8557 2012-08-13 Bastien Guerry <bzg@gnu.org>
8558
8559 * window.el (special-display-popup-frame): Minor docstring
8560 enhancement. (Bug#12172)
8561
8562 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
8563
8564 * tar-mode.el (tar-header-data-end): Only ignore size for files of
8565 type 1-6.
8566 (tar-header-block-summarize, tar-get-descriptor): Handle pax
8567 extended headers.
8568
8569 * files.el (hack-local-variables-filter): Remove useless eval.
8570
8571 2012-08-13 Martin Rudalics <rudalics@gmx.at>
8572
8573 * subr.el (with-selected-window): Fix last change.
8574
8575 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8576
8577 * subr.el (internal--before-with-seleted-window)
8578 (internal--after-with-seleted-window): New functions.
8579 (with-selected-window): Use them, to replace dependency on
8580 tty-top-frame.
8581
8582 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
8583
8584 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8585 binding for `newline'.
8586 (ruby-move-to-block): When moving backward, stop at block opening,
8587 not indentation.
8588 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8589 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8590 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8591 `ruby-toggle-block'.
8592
8593 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8594
8595 * ibuffer.el (ibuffer-do-toggle-read-only):
8596 * dired.el (dired-toggle-read-only):
8597 * buff-menu.el (Buffer-menu-toggle-read-only):
8598 * bindings.el (mode-line-toggle-read-only):
8599 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8600
8601 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
8602
8603 * descr-text.el (describe-char): Put the overlays over the
8604 "displayed as" character.
8605
8606 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
8607
8608 * calc/calc-units.el (math-default-units-table): Give an
8609 initial value.
8610 (math-put-default-units): Add options to put composite units and
8611 unit systems in the default units table.
8612 (calc-convert-units): Send composite units to
8613 `math-put-default-units' when appropriate.
8614
8615 2012-08-11 Glenn Morris <rgm@gnu.org>
8616
8617 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8618
8619 * tutorial.el (help-with-tutorial):
8620 * emacs-lisp/copyright.el (copyright-update-directory):
8621 * emacs-lisp/autoload.el (autoload-find-generated-file)
8622 (autoload-find-file): Disable local eval: (for insurance).
8623
8624 * files.el (hack-local-variables-filter): If an eval: form is not
8625 known to be safe, and enable-local-variables is :safe, then ignore
8626 the form totally, as is done for non-eval forms. (Bug#12155)
8627 This is CVE-2012-3479.
8628
8629 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8630
8631 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8632 (rx-form): Simplify.
8633
8634 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
8635
8636 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8637 ?, _, and : are symbol constituents, ! is not (but kinda should be).
8638 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8639 (ruby-syntax-propertize-function): Adjust for changes in
8640 `ruby-syntax-propertize-heredoc'.
8641
8642 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
8643
8644 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8645 binding (use `M-;' instead).
8646 (ruby-singleton-class-p): New function.
8647 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8648
8649 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8650
8651 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8652
8653 2012-08-10 Chong Yidong <cyd@gnu.org>
8654
8655 * progmodes/python.el (python-shell-get-process-name): Don't mess
8656 with same-window-buffer-names.
8657
8658 * eshell/eshell.el (eshell-add-to-window-buffer-names)
8659 (eshell-remove-from-window-buffer-names): Make obsolete.
8660 (eshell-buffer-name, eshell-unload-hook): Don't use them.
8661 (eshell): Just use pop-to-buffer-same-window instead.
8662
8663 2012-08-10 Chong Yidong <cyd@gnu.org>
8664
8665 * bindings.el: Bind M-= back to count-words-region.
8666
8667 * simple.el (count-words-region): Accept a prefix arg for acting
8668 on the entire buffer.
8669 (count-words--buffer-message): New helper function.
8670
8671 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8672
8673 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8674 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8675 (event-start, event-end): Use posn-at-point to return a more
8676 informative posn.
8677 (posnp): New function.
8678 * mouse.el (popup-menu-normalize-position): Use it.
8679
8680 2012-08-10 Masatake YAMATO <yamato@redhat.com>
8681
8682 * mouse.el (popup-menu-normalize-position): New function.
8683 (popup-menu): Use `popup-menu-normalize-position' to normalize
8684 the form for POSITION argument.
8685
8686 * term/x-win.el (x-menu-bar-open):
8687 Use the value returend from (posn-at-point) as position
8688 passed to `popup-menu'.
8689
8690 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8691
8692 * calc/calccomp.el (math-compose-expr): Add extra argument
8693 indicating that parentheses should be put around products in
8694 denominators. Give multiplication precedence over division during
8695 composition.
8696
8697 2012-08-09 Chong Yidong <cyd@gnu.org>
8698
8699 * man.el (Man-switches, Man-sed-command, Man-awk-command)
8700 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8701 (Man-untabify-command, manual-program): Convert to defcustom
8702 (Bug#10429).
8703
8704 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8705
8706 * descr-text.el (describe-char): Don't insert extra newlines
8707 (Bug#10127).
8708
8709 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8710 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8711
8712 * align.el (align-region): Delete temporary markers (Bug#10047).
8713 Plus some code cleanups.
8714
8715 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8716
8717 * progmodes/python.el (python-pdbtrack-tracked-buffer)
8718 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8719 (python-shell-internal-last-output): Use make-local-variable
8720 instead of make-variable-buffer-local.
8721
8722 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8723
8724 * progmodes/python.el: Enhancements to forward-sexp.
8725 (python-nav-forward-sexp): Rename from
8726 python-nav-forward-sexp-function.
8727 (python-nav--forward-sexp, python-nav--backward-sexp):
8728 New functions.
8729
8730 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8731
8732 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8733 modes and simplification modes.
8734
8735 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
8736
8737 * delsel.el (delete-selection-pre-hook): Don't propagate the
8738 file-supersession signals (bug#12161).
8739
8740 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8741
8742 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8743 (cl-map-extents): Add compatibility aliases (bug#12135).
8744
8745 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
8746
8747 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8748 tests by `ignore-error'.
8749 (tramp-find-shell): Open also a new shell, when cache is already
8750 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
8751
8752 2012-08-08 Juri Linkov <juri@jurta.org>
8753
8754 * bookmark.el: Add `defaults' property to the bookmark record.
8755 (bookmark-current-buffer): Doc fix.
8756 (bookmark-make-record): Add `defaults' property with default values
8757 to the bookmark record.
8758 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8759 with `bookmark-insert-current-bookmark'.
8760 (bookmark-set): Get `defaults' property from the bookmark record
8761 and use it in `read-from-minibuffer'.
8762 (bookmark-insert-current-bookmark): Remove function.
8763
8764 * info.el (Info-bookmark-make-record): Add `defaults' property
8765 with values of canonical Info node name, the current Info file
8766 name and the current Info node name. (Bug#12107)
8767
8768 2012-08-08 Juri Linkov <juri@jurta.org>
8769
8770 * files.el (basic-save-buffer): Use `buffer-name' as the default
8771 of `read-file-name' when buffer is not visiting a file (bug#12128).
8772
8773 2012-08-08 Juri Linkov <juri@jurta.org>
8774
8775 * info.el (Info-isearch-search): Doc fix.
8776 (Info-search): Change search-failed message from "initial node" to
8777 "end of node" (bug#12078).
8778 (Info-isearch-search): Change `isearch-string-state' to
8779 `isearch--state-string'.
8780
8781 2012-08-08 Glenn Morris <rgm@gnu.org>
8782
8783 * language/persian.el: Remove file.
8784 * language/misc-lang.el: Move unique part of persian.el here.
8785 * loadup.el: Remove language/persian.
8786
8787 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
8788
8789 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8790
8791 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
8792
8793 * progmodes/python.el: Fix defsubst warning.
8794 (python-syntax-context) Rename from python-info-ppss-context.
8795 (python-syntax-context-type): Rename from
8796 python-info-ppss-context-type.
8797 (python-syntax-comment-or-string-p): Rename from
8798 python-info-ppss-comment-or-string-p.
8799
8800 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8801
8802 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8803
8804 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
8805
8806 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8807 a defcustom that is quoted with backquote.
8808
8809 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8810 Fix handling of interactive spec when the body uses return.
8811 (math-do-arg-check, math-define-function-body): Use backquote forms.
8812 * calc/calc-ext.el (math-defcache): Likewise.
8813 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8814 * allout.el (allout-new-exposure): Likewise.
8815 * calc/calcalg2.el (math-tracing-integral): Likewise.
8816 * info.el (Info-last-menu-item): Likewise.
8817 * emulation/vip.el (vip-loop): Likewise.
8818 * textmodes/artist.el (artist-funcall): Likewise.
8819 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8820 Construct menu-item directly.
8821
8822 * progmodes/autoconf.el (font-lock-syntactic-keywords):
8823 Don't declare.
8824
8825 2012-08-07 Chong Yidong <cyd@gnu.org>
8826
8827 * simple.el (deactivate-mark): Preserve text properties when
8828 saving the primary selection (Bug#8384).
8829
8830 2012-08-07 Kevin Ryde <user42@zip.com.au>
8831
8832 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8833 (woman-parse-numeric-value): On a bad .IP line, issue a warning
8834 and continue processing (Bug#12110).
8835
8836 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8837
8838 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8839 syntax-propertize-function (bug#10095).
8840
8841 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8842
8843 * help-fns.el (help-fns--key-bindings, help-fns--signature)
8844 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8845 describe-function-1.
8846 (describe-function-1): Use them. Move compiler macro after sig.
8847 (help-fns--compiler-macro): Use function-get. Assume we're already in
8848 standard-output. Adjust layout to new call order.
8849
8850 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8851 re-binding a symbol that has a symbol-macro (bug#12119).
8852
8853 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
8854
8855 * language/persian.el: New file. (Bug#11812)
8856 * loadup.el: Add language/persian.el.
8857
8858 2012-08-06 Chong Yidong <cyd@gnu.org>
8859
8860 * window.el (window--maybe-raise-frame): New function.
8861 (window--display-buffer): Split off from here.
8862 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8863 (display-buffer-pop-up-window, display-buffer-use-some-window):
8864 Obey an inhibit-switch-frame action alist entry.
8865 (display-buffer): Update doc.
8866
8867 * replace.el (occur-after-change-function): Avoid losing focus by
8868 using the inhibit-switch-frame display parameter (Bug#12139).
8869
8870 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
8871
8872 Make internal shell process buffer names start with space.
8873 * progmodes/python.el (python-shell-make-comint): Add optional
8874 argument INTERNAL.
8875 (run-python-internal): Use it.
8876 (python-shell-internal-get-or-create-process): Check for new
8877 internal buffer names.
8878
8879 2012-08-06 Glenn Morris <rgm@gnu.org>
8880
8881 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8882 Do less getting and setting of environment variables.
8883
8884 2012-08-05 Chong Yidong <cyd@gnu.org>
8885
8886 * proced.el (proced): Add substitution string to docstring to
8887 trigger autoloading of the proced library on C-h f (Bug#1768).
8888
8889 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8890 Don't show defvars which have no second argument (Bug#8638).
8891
8892 * imenu.el (imenu-generic-expression): Move documentation here
8893 from imenu--generic-function.
8894 (imenu--generic-function): Refer to imenu-generic-expression.
8895
8896 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
8897
8898 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8899 indentation declaration.
8900 (viper-loop): Add indentation declaration (Bug#7025).
8901
8902 2012-08-05 Chong Yidong <cyd@gnu.org>
8903
8904 * help-fns.el (describe-variable): Add hyperlink for
8905 directory-local variables files. Improve buffer-local and
8906 permanent-local reporting; suggested by MON KEY (Bug#6644).
8907
8908 * help-mode.el (help-dir-local-var-def): New button type.
8909
8910 * files.el (kill-buffer-hook): Provide a defvar.
8911
8912 2012-08-05 Glenn Morris <rgm@gnu.org>
8913
8914 * eshell/esh-ext.el (eshell/addpath):
8915 Also update eshell-path-env. (Bug#12013)
8916
8917 2012-08-05 Chong Yidong <cyd@gnu.org>
8918
8919 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8920
8921 * fringe.el (fringe-styles): Add docstring.
8922 (fringe--check-mode): New function.
8923 (set-fringe-mode, set-fringe-style): Use it.
8924 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8925
8926 * files.el (set-auto-mode): Fix invalid setq call.
8927
8928 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8929
8930 * isearch.el: Misc simplification; use defstruct.
8931 (isearch-mode-map): Dense maps now work like sparse ones.
8932 (isearch--state): New defstruct.
8933 (isearch-string-state, isearch-message-state, isearch-point-state)
8934 (isearch-success-state, isearch-forward-state)
8935 (isearch-other-end-state, isearch-word-state, isearch-error-state)
8936 (isearch-wrapped-state, isearch-barrier-state)
8937 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8938 replaced by defstruct's accessors.
8939 (isearch--set-state): Rename from isearch-top-state and change
8940 calling convention.
8941 (isearch-push-state): Use new isearch--get-state.
8942 (isearch-toggle-word): Disable regexp when enabling word.
8943 (isearch-message-prefix): Remove unused arg _c-q-hack.
8944 (isearch-message-suffix): Remove unused arg _ellipsis.
8945
8946 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
8947
8948 * simple.el (list-processes--refresh): For a server use :host or
8949 :local as the address.
8950 (list-processes): Doc fix.
8951
8952 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
8953
8954 * lisp/mpc.el: Support password in host argument.
8955 (mpc--proc-connect): Parse and use new password element.
8956 Set mpc-proc variable instead of returning process.
8957 (mpc-proc): Adjust accordingly.
8958
8959 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8960
8961 * whitespace.el (whitespace-display-mappings): Use Unicode
8962 codepoints, instead of emacs-mule codepoints. See
8963 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8964 for the details.
8965
8966 * files.el (file-truename): Don't skip symlink-chasing part on
8967 windows-nt. Incorporate the resolution of 8+3 short aliases on
8968 Windows into the loop that recursively chases symlinks.
8969 Compare directory and its parent case-insensitively on MS-Windows and
8970 MS-DOS.
8971
8972 2012-08-03 Chong Yidong <cyd@gnu.org>
8973
8974 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8975
8976 * sort.el (sort-regexp-fields): Doc fix.
8977
8978 2012-08-03 Tassilo Horn <tsdh@gnu.org>
8979
8980 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8981 labels regex position point at the expected place.
8982
8983 2012-08-03 MON KEY <monkey@sandpframing.com>
8984
8985 * net/imap.el (imap-interactive-login, imap-authenticate)
8986 (imap-mailbox-lsub, imap-mailbox-list)
8987 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8988 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8989 (imap-parse-response): Doc fix.
8990
8991 2012-08-03 João Távora <joaotavora@gmail.com>
8992
8993 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8994 if sexp scanning does not move point (Bug#5734).
8995
8996 2012-08-02 Tassilo Horn <tsdh@gnu.org>
8997
8998 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8999 Add listings, minted, and ctable packages.
9000 (reftex-label-alist-builtin): Move listings, minted, and ctable
9001 entries before LaTeX.
9002 (reftex-label-alist): Docfix.
9003
9004 2012-08-02 Bastien Guerry <bzg@gnu.org>
9005
9006 * replace.el (occur): Fix docstring (bug#12122).
9007
9008 2012-08-02 Glenn Morris <rgm@gnu.org>
9009
9010 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
9011
9012 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
9013
9014 Obsolete alias inactivate-current-input-method-function (Bug#10150).
9015 * international/mule-cmds.el: Create
9016 inactivate-current-input-method-function as an obsolete alias for
9017 deactivate-current-input-method-function. See Katsumi Yamaoka in
9018 <http://bugs.gnu.org/10150#46>.
9019
9020 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
9021
9022 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
9023 of nested `if's.
9024
9025 2012-08-01 Glenn Morris <rgm@gnu.org>
9026
9027 * progmodes/autoconf.el (autoconf-definition-regexp):
9028 Add AH_TEMPLATE, adjust submatch numbering.
9029 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
9030 (autoconf-current-defun-function): Update for above change.
9031 (autoconf-current-defun-function): First skip to end of current word.
9032
9033 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
9034
9035 * calendar/cal-html.el (cal-html-insert-agenda-days):
9036 Fix typo. (Bug#12018)
9037
9038 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
9039
9040 Shell processes: enhancements to startup and CEDET compatibility.
9041 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
9042 (python-shell-make-comint): accept-process-output at startup.
9043 (run-python-internal): Set inferior-python-mode-hook to nil.
9044 (python-shell-internal-get-or-create-process): call sit-for.
9045 (python-preoutput-result): Add obsolete alias.
9046 (python-shell-internal-send-string): Use it.
9047 (python-shell-send-setup-code): Remove call to
9048 accept-process-output.
9049
9050 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
9051
9052 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
9053 (Bug#12108)
9054
9055 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
9056
9057 * calc-mode.el (calc-basic-simplification-mode): Rename from
9058 `calc-limited-simplification-mode'.
9059 (calc-alg-simplification-mode): New function.
9060 (calc-set-simplify-mode): Adjust message.
9061
9062 * calc.el (calc-set-mode-line): Adjust mode line display for
9063 basic simplification mode.
9064
9065 * calc-help.el (calc-m-prefix-help): Update help message.
9066
9067 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
9068 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
9069
9070 2012-07-31 Bastien Guerry <bzg@gnu.org>
9071
9072 * man.el (man): Fix comment. (bug#12101)
9073
9074 2012-07-31 Martin Rudalics <rudalics@gmx.at>
9075
9076 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
9077 Don't return a non-nil value when no suitable buffer was found.
9078
9079 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
9080
9081 * progmodes/python.el (run-python-internal): Disable font lock for
9082 internal shells.
9083
9084 2012-07-30 Stefan Merten <smerten@oekonux.de>
9085
9086 * textmodes/rst.el: Silence `checkdoc-ispell'.
9087 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
9088 (rst-official-version, rst-official-cvs-rev)
9089 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
9090 (rst-mode-map): New key binding.
9091
9092 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9093
9094 Update .PHONY listings in makefiles.
9095 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
9096 autoloads, update-subdirs, updates, bzr-update, update-authors,
9097 compile-onefile, compile-calc, backup-compiled-files,
9098 compile-after-backup, compile-one-process, mh-autoloads,
9099 bootstrap-clean, distclean, maintainer-clean.
9100
9101 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
9102
9103 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
9104 (calc-set-mode-line): Don't display "AlgSimp ".
9105
9106 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
9107 (calc-lim-simplify-mode): New function.
9108 (calc-set-simplify-mode): Default to 'alg.
9109 (calc-default-simplify-mode): Make algebraic simplifications
9110 the default.
9111
9112 * calc/calc-ext.el (calc-init-extensions): Remove binding for
9113 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
9114
9115 * calc/calc-help.el (calc-m-prefix-help): Change messages to
9116 indicate new simplification modes.
9117
9118 * calc/README: Mention new default simplification mode.
9119
9120 * calc/calc.el (math-normalize-error): New variable.
9121 (math-normalize): Set `math-normalize-error' to t
9122 when there's an error.
9123
9124 * calc/calc-alg.el (math-simplify): Don't simplify when
9125 `math-normalize' returns an error.
9126
9127 2012-07-29 Eli Zaretskii <eliz@gnu.org>
9128
9129 * international/mule-cmds.el (set-locale-environment): Revert last
9130 change, since display-graphic-p returns nil when this function is
9131 called during startup. Instead...
9132
9133 * term/w32console.el (terminal-init-w32console): ...setup the
9134 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
9135
9136 2012-07-29 Juri Linkov <juri@jurta.org>
9137
9138 * simple.el (goto-line): Don't display default line number in the
9139 prompt because it should be displayed by `read-number' (bug#9952).
9140 Add the current line number to the defaults of `goto-line' to
9141 allow its easier modification by users with `M-n' (bug#9201).
9142
9143 * subr.el (read-number): Support multiple default values like in
9144 other minibuffer reading functions. Replace `read' with
9145 `string-to-number' for consistency with `number-to-string'.
9146
9147 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9148
9149 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
9150 * emulation/viper-init.el (viper-deactivate-input-method-action):
9151 Rename from viper-inactivate-input-method-action.
9152 (viper-deactivate-input-method):
9153 Rename from viper-inactivate-input-method.
9154 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
9155 * international/mule-cmds.el (deactivate-input-method):
9156 Rename from inactivate-input-method.
9157 Also run input-method-deactivate-hook.
9158 (deactivate-current-input-method-function):
9159 Rename from inactivate-current-input-method-function.
9160 (input-method-deactivate-hook): New hook.
9161 (input-method-inactivate-hook): Mark obsolete.
9162 (inactivate-input-method): Mark obsolete.
9163
9164 * international/quail.el (quail-activate):
9165 Also run quail-deactivate-hook.
9166 (quail-deactivate): Rename from quail-inactivate.
9167 * international/robin.el (robin-activate):
9168 Also run robin-deactivate-hook.
9169 (robin-deactivate): Rename from robin-inactivate.
9170
9171 2012-07-29 Chong Yidong <cyd@gnu.org>
9172
9173 * simple.el (indicate-copied-region): New function.
9174 (kill-ring-save): Split off from here.
9175
9176 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
9177 (kill-rectangle): Set deactivate-mark to t on read-only error.
9178
9179 * register.el (copy-to-register, copy-rectangle-to-register):
9180 Deactivate the mark, and use indicate-copied-region (Bug#10056).
9181 (append-to-register, prepend-to-register): Call indicate-copied-region.
9182
9183 2012-07-29 Juri Linkov <juri@jurta.org>
9184
9185 * simple.el (async-shell-command-buffer): New defcustom.
9186 (shell-command): Use it. (Bug#4719)
9187
9188 2012-07-28 Eli Zaretskii <eliz@gnu.org>
9189
9190 * international/mule-cmds.el (set-locale-environment): In a
9191 console session on MS-Windows, set up keyboard and terminal
9192 encoding from the OEM codepage, not the ANSI codepage.
9193 (Bug#12055)
9194
9195 2012-07-28 Chong Yidong <cyd@gnu.org>
9196
9197 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
9198 gdb-get-location.
9199
9200 2012-07-28 Leo Liu <sdl.web@gmail.com>
9201
9202 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
9203 the alist (bug#12029).
9204
9205 2012-07-28 Eli Zaretskii <eliz@gnu.org>
9206
9207 * makefile.w32-in (custom-deps, finder-data, updates, compile)
9208 (compile-always, compile-first)
9209 ($(lisp)/calendar/cal-loaddefs.el)
9210 ($(lisp)/calendar/diary-loaddefs.el)
9211 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9212 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
9213 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
9214 instead of on update-subdirs.
9215 (bootstrap-clean): Delete $(lisp)/subdirs.el.
9216
9217 2012-07-28 Chong Yidong <cyd@gnu.org>
9218
9219 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
9220 directory if vc-deduce-backend returns nil (Bug#7350).
9221
9222 * simple.el (delete-trailing-lines): New option.
9223 (delete-trailing-whitespace): Obey it (Bug#11879).
9224
9225 2012-07-28 David Engster <deng@randomsample.de>
9226
9227 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
9228 Explanation of new 'symbol-qnames feature in doc-strings.
9229 (xml-maybe-do-ns): Return expanded names as plain symbols if
9230 'symbol-qnames was provided in XML-NS argument (Bug#11916).
9231 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
9232
9233 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
9234
9235 Consistent completion in inferior python with emacs -nw.
9236 * progmodes/python.el (inferior-python-mode): replace "<tab>"
9237 binding in inferior-python-mode-map with "\t".
9238 (python-shell-completion-complete-at-point)
9239 (python-completion-complete-at-point): Remove interactive spec.
9240
9241 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
9242
9243 * calc/calccomp.el (math-compose-expr): Undo previous change.
9244
9245 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
9246
9247 * progmodes/python.el (python-mode-map): Add keybinding for
9248 run-python.
9249 (python-shell-make-comint): Fix pop-to-buffer call.
9250 (run-python): Autoload. New arg SHOW.
9251 (python-shell-get-or-create-process): Do not pop python process
9252 buffer.
9253
9254 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
9255
9256 * notifications.el (notifications-on-action-signal)
9257 (notifications-on-closed-signal): Use also the bus address for the map.
9258 (notifications-notify, notifications-close-notification)
9259 (notifications-get-capabilities): Add optional argument BUS.
9260
9261 2012-07-27 Tassilo Horn <tsdh@gnu.org>
9262
9263 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
9264 Add support for the lstlisting and minted environments, and for the
9265 ctable macro.
9266 * textmodes/reftex.el (reftex-compile-variables): Also recognize
9267 labels written in keyvals syntax.
9268
9269 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
9270
9271 * calc/calccomp.el (math-compose-expr): Use parentheses when
9272 there is a product in the denominator of a fraction.
9273
9274 2012-07-26 Eli Zaretskii <eliz@gnu.org>
9275
9276 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
9277 ($(lisp)/calendar/diary-loaddefs.el)
9278 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9279 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
9280 Fixes failures in parallel bootstrap because subdirs.el is being
9281 rewritten while the autoload files are built at the same time,
9282 which needs to load subdirs.el.
9283
9284 2012-07-26 Martin Rudalics <rudalics@gmx.at>
9285
9286 * mouse.el (popup-menu): Fix doc-string and re-indent code.
9287 (mouse-drag-line): Don't exit tracking when a switch-frame or
9288 switch-window event occurs (Bug#12006).
9289
9290 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9291
9292 * mouse.el (popup-menu): Fix last change.
9293
9294 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9295
9296 Autoload from Lisp with more care. Follow aliases when looking for
9297 function properties.
9298 * subr.el (autoloadp): New function.
9299 (symbol-file): Use it.
9300 (function-get): New function.
9301 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
9302 autoload-do-load.
9303 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
9304 (lisp-indent-function):
9305 * emacs-lisp/gv.el (gv-get):
9306 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
9307 * emacs-lisp/byte-opt.el (byte-optimize-form):
9308 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9309 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
9310 Use function-get.
9311 * emacs-lisp/cl.el: Don't propagate function properties any more.
9312
9313 * speedbar.el (speedbar-add-localized-speedbar-support):
9314 * emacs-lisp/disass.el (disassemble-internal):
9315 * desktop.el (desktop-load-file):
9316 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
9317 (describe-function-1):
9318 * emacs-lisp/find-func.el (find-function-noselect):
9319 * emacs-lisp/elp.el (elp-instrument-function):
9320 * emacs-lisp/advice.el (ad-has-proper-definition):
9321 * apropos.el (apropos-safe-documentation, apropos-macrop):
9322 * emacs-lisp/debug.el (debug-on-entry):
9323 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
9324 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9325 * calc/calc.el (name): Use autoloadp & autoload-do-load.
9326
9327 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
9328
9329 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
9330 function, not an obsolete variable (Bug#12046).
9331
9332 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
9333
9334 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
9335
9336 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
9337
9338 * emacs-lisp/pp.el (pp-display-expression): Select old selected
9339 window only if it is still live (Bug#12034).
9340
9341 2012-07-25 Martin Rudalics <rudalics@gmx.at>
9342
9343 * subr.el (redirect-frame-focus): Add advertised calling
9344 convention (Bug#12030).
9345
9346 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
9347
9348 Prefer typical American spelling for "acknowledgment".
9349 * vc/add-log.el (change-log-acknowledgment): Rename from
9350 change-log-acknowledgement, with an alias for the old name.
9351
9352 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
9353
9354 * calc-alg.el (math-simplify-divide): Don't cross multiply
9355 in an equation when the lhs is a variable.
9356
9357 2012-07-24 Julien Danjou <julien@danjou.info>
9358
9359 * net/netrc.el (netrc-find-service-number, netrc-store-data):
9360 Remove, unused.
9361
9362 2012-07-23 Eli Zaretskii <eliz@gnu.org>
9363
9364 * startup.el (command-line): Don't display an empty user name in
9365 the error message about non-existent home directory, when
9366 init-file-user was set to an empty string. See
9367 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
9368 for the details and context.
9369
9370 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
9371
9372 * ses.el (ses-cell-formula-aset): New macro.
9373 (ses-cell-references-aset): New macro.
9374 (ses-cell-p): New function.
9375 (ses-rename-cell): Do no longer rely on complex operations like
9376 ses-cell-set-formula or ses-set-cell to change the cell and handle
9377 the undo at the same time, but rather use lower level new macros
9378 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
9379 the undo directly. Refresh the mode line.
9380
9381 2012-07-21 Leo Liu <sdl.web@gmail.com>
9382
9383 * progmodes/cc-cmds.el (c-defun-name):
9384 Use match-string-no-properties instead for consistency.
9385
9386 2012-07-20 Leo Liu <sdl.web@gmail.com>
9387
9388 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
9389 (Bug#7879)
9390
9391 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
9392
9393 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
9394
9395 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
9396 * progmodes/bug-reference.el, misearch.el: Provide themselves
9397 (bug#11915).
9398
9399 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
9400 of narrowed buffer (bug#11966).
9401
9402 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
9403
9404 * ses.el (ses-rename-cell): Set new name also in reference list of
9405 cells of which the renamed cell depends.
9406
9407 2012-07-20 Masatake YAMATO <yamato@redhat.com>
9408
9409 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
9410 to check whether menu-bar is shown or not. If not shown,
9411 show the menu-bar as a popup menu instead of using tmm.
9412 * mouse.el (popup-menu): Accept `point' as `position' argument.
9413
9414 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
9415
9416 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
9417 up inside string symbol literal (bug#11923).
9418
9419 2012-07-20 Eli Zaretskii <eliz@gnu.org>
9420
9421 * startup.el (fancy-startup-text): Read the whole tutorial, not
9422 just its first 256 bytes. Prevents gibberish in display of the
9423 tutorial title.
9424
9425 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9426
9427 Drop idle buffer compaction due to an absence of the
9428 proved efficiency.
9429 * compact.el: Remove.
9430
9431 2012-07-19 Sam Steingold <sds@gnu.org>
9432
9433 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
9434 vc-bzr-pull & vc-bzr-merge-branch.
9435 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
9436 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
9437 for consistency with compilation-error-regexp-alist.
9438 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
9439 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
9440 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
9441 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
9442
9443 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9444
9445 * emacs-lisp/chart.el: Use lexical-binding.
9446 (chart-emacs-storage): Don't hardcode the list of entries.
9447
9448 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9449
9450 Next round of tweaks caused by Fgarbage_collect changes.
9451 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
9452
9453 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9454
9455 Compact buffers when idle.
9456 * compact.el: New file.
9457
9458 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9459
9460 * subr.el (eventp): Presume that if it looks vaguely like an event,
9461 it's an event (bug#10190).
9462
9463 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
9464
9465 Enhancements to ppss related code (thanks Stefan).
9466 * progmodes/python.el (python-indent-context)
9467 (python-indent-calculate-indentation, python-indent-dedent-line)
9468 (python-indent-electric-colon, python-nav-forward-block)
9469 (python-mode-abbrev-table)
9470 (python-info-assignment-continuation-line-p): Simplify checks
9471 for ppss context.
9472 (python-info-continuation-line-p): Cleanup.
9473 (python-info-ppss-context): Do not catch 'quote.
9474 (python-info-ppss-context-type)
9475 (python-info-ppss-comment-or-string-p): Simplify.
9476
9477 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
9478
9479 * progmodes/python.el: Enhancements to eldoc support.
9480 (python-info-current-symbol): New function.
9481 (python-eldoc-at-point): Use python-info-current-symbol.
9482 (python-info-current-defun): Fix cornercase on first defun scan.
9483 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9484 and signal error when no inferior python process is available.
9485
9486 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
9487
9488 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9489 assume it's always t.
9490 (vc-git-registered): Remove caching, the function is only called
9491 once.
9492 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9493
9494 2012-07-18 Chong Yidong <cyd@gnu.org>
9495
9496 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9497
9498 * simple.el (count-words): Report on narrowing (Bug#9959).
9499
9500 * bindings.el: Bind M-= to count-words.
9501
9502 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9503
9504 2012-07-18 Masatake YAMATO <yamato@redhat.com>
9505
9506 * progmodes/sh-script.el (sh-imenu-generic-expression):
9507 Capture a function with `function' keyword and without parentheses
9508 like "function FOO" (bug#11856).
9509
9510 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
9511
9512 * window.el (split-window-sensibly): Make WINDOW argument
9513 optional.
9514
9515 2012-07-18 Chong Yidong <cyd@gnu.org>
9516
9517 * subr.el (keyboard-translate): Doc fix (Bug#7261).
9518
9519 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9520 and make C-x 8 RET exit isearch (Bug#11439).
9521
9522 * international/iso-transl.el: Move isearch-mode-map key
9523 definitions to isearch.el.
9524
9525 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9526
9527 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9528 (eieio-defclass): Use gv-define-setter when possible.
9529
9530 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9531
9532 Reflect recent changes in Fgarbage_collect.
9533 * emacs-lisp/chart.el (chart-emacs-storage): Change to
9534 reflect new format of data returned by Fgarbage_collect.
9535
9536 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9537
9538 New utility functions + python-info-ppss-context fix (Bug#11910).
9539 * progmodes/python.el (python-info-beginning-of-block-statement-p)
9540 (python-info-ppss-comment-or-string-p): New functions.
9541 (python-info-ppss-context): Small fix for string check.
9542
9543 2012-07-17 Juri Linkov <juri@jurta.org>
9544
9545 * dired-aux.el (dired-do-async-shell-command): Doc fix.
9546 (dired-do-async-shell-command): Don't add `*' at the end of the
9547 command (Bug#11815).
9548 (dired-do-shell-command): Doc fix.
9549 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9550 Join the individual commands using either "&" or ";" as the
9551 separator depending on the values of these trailing characters.
9552 At the end re-add the trailing "&". (Bug#10598)
9553
9554 * simple.el (async-shell-command): Sync the interactive spec with
9555 `shell-command'. Doc fix.
9556 (shell-command): Doc fix.
9557
9558 2012-07-17 Juri Linkov <juri@jurta.org>
9559
9560 * descr-text.el (describe-char): Fix format args. (Bug#10129)
9561
9562 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9563
9564 Final renames and doc fixes for movement commands (bug#11899).
9565 * progmodes/python.el (python-nav-beginning-of-statement):
9566 Rename from python-nav-statement-start.
9567 (python-nav-end-of-statement): Rename from
9568 python-nav-statement-end.
9569 (python-nav-beginning-of-block): Rename from
9570 python-nav-block-start.
9571 (python-nav-end-of-block): Rename from python-nav-block-end.
9572
9573 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9574
9575 * progmodes/python.el (python-shell-send-string-no-output):
9576 Allow accept-process-output to quit, keeping shell process ready for
9577 future interactions (Bug#11868).
9578
9579 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9580
9581 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9582
9583 * emacs-lisp/elint.el (elint-find-args-in-code):
9584 Use help-function-arglist, so as to handle lexical byte-code.
9585
9586 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9587 change (bug#11826).
9588
9589 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9590
9591 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9592 Avoid spuriously marking the buffer as modified because of c-is-sws.
9593
9594 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9595 as not-a-comment (bug#11946).
9596
9597 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9598 for uninterned vars.
9599
9600 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9601 Use read-event since we don't really want to read chars but bytes.
9602
9603 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9604 $$..$$ but also $..$ using regexps (bug#11953).
9605 Use tex-verbatim for \url and \path.
9606 (tex-font-lock-keywords): Define as defconst like the others.
9607 (tex-common-initialization): Don't use font-lock-syntax-table any more.
9608
9609 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9610
9611 * international/mule-cmds.el (ucs-insert): Make it an obsolete
9612 alias for insert-char.
9613
9614 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9615
9616 * progmodes/python.el: Simplified imenu implementation.
9617 (python-nav-jump-to-defun): Remove command.
9618 (python-mode-map): Use `imenu' instead.
9619 (python-nav-list-defun-positions-cache)
9620 (python-imenu-include-defun-type, python-imenu-make-tree)
9621 (python-imenu-subtree-root-label, python-imenu-index-alist):
9622 Remove vars.
9623 (python-nav-list-defun-positions, python-nav-read-defun)
9624 (python-imenu-tree-assoc, python-imenu-make-element-tree)
9625 (python-imenu-make-tree, python-imenu-create-index):
9626 Remove functions.
9627 (python-mode): Update to interact with imenu by setting
9628 `imenu-extract-index-name-function' only.
9629
9630 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9631
9632 * progmodes/python.el: Enhancements to navigation commands.
9633 (python-nav-backward-sentence)
9634 (python-nav-forward-sentence): Remove.
9635 (python-nav-backward-statement, python-nav-forward-statement)
9636 (python-nav-statement-start, python-nav-statement-end)
9637 (python-nav-backward-block, python-nav-forward-block)
9638 (python-nav-block-start, python-nav-block-end)
9639 (python-nav-forward-sexp-function)
9640 (python-info-current-line-comment-p)
9641 (python-info-current-line-empty-p): New functions.
9642 (python-indent-context): Use `python-nav-statement-start'.
9643
9644 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
9645
9646 * eshell/em-ls.el (eshell/ls): Use `apply'.
9647
9648 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9649 multi-hops, instead of Tramp internals.
9650
9651 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9652
9653 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9654 when F1 and F2 are located on different hosts.
9655
9656 2012-07-14 Chong Yidong <cyd@gnu.org>
9657
9658 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9659 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9660 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9661 (xterm-mouse--read-event-sequence-1000)
9662 (xterm-mouse--read-event-sequence-1006): New functions. For old
9663 mouse protocol, handle M-mouse-X events correctly.
9664 (xterm-mouse-event): New arg specifying mouse protocol.
9665 (turn-on-xterm-mouse-tracking-on-terminal)
9666 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9667 sequence to toggle extended coordinates on newer XTerms.
9668 This appears to be harmless on terminals which do not support this.
9669
9670 2012-07-14 Leo Liu <sdl.web@gmail.com>
9671
9672 Add fringe bitmap indicators for flymake. (Bug#11253)
9673 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9674 (flymake-make-overlay): New arg BITMAP.
9675 (flymake-error-bitmap, flymake-warning-bitmap)
9676 (flymake-fringe-indicator-position): New user variables.
9677
9678 * fringe.el: New bitmap exclamation-mark.
9679
9680 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
9681
9682 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9683 also (Bug#7879).
9684
9685 2012-07-14 Chong Yidong <cyd@gnu.org>
9686
9687 * electric.el (electric-pair-post-self-insert-function): Fix pair
9688 insertion in empty-region case (Bug#11520).
9689
9690 2012-07-14 Chong Yidong <cyd@gnu.org>
9691
9692 * bindings.el: Consolidate ctl-x-r-map bindings.
9693 Bind copy-rectangle-as-kill to C-x r w.
9694
9695 * rect.el, register.el: Move bindings to bindings.el.
9696
9697 2012-07-14 Reuben Thomas <rrt@sc3d.org>
9698
9699 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9700
9701 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
9702
9703 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
9704
9705 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9706
9707 * bindings.el (top): Use `mapc' instead of `mapcar'.
9708
9709 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9710
9711 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
9712
9713 * progmodes/sql.el (sql-comint): Suppress the check for program on
9714 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
9715 (Bug#11908)
9716
9717 2012-07-13 Chong Yidong <cyd@gnu.org>
9718
9719 * bindings.el: Assign a non-nil permanent-local property to
9720 per-buffer variables which lack a default value (Bug#11930).
9721
9722 * help-fns.el (describe-variable): In the "automatically becomes
9723 local" notice, take note of permanent-local variables.
9724
9725 2012-07-13 Chong Yidong <cyd@gnu.org>
9726
9727 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
9728 to allow printing the message when called from Lisp.
9729
9730 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9731 Remove toggle-read-only.
9732
9733 * bs.el (bs-toggle-readonly):
9734 * buff-menu.el (Buffer-menu-toggle-read-only):
9735 Remove with-no-warnings around toggle-read-only.
9736
9737 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9738 Remove with-no-warnings around toggle-read-only.
9739 (ffap-read-only, ffap-read-only-other-window)
9740 (ffap-read-only-other-frame): Callers changed.
9741
9742 * help-mode.el: Don't require view package.
9743 (help-mode-finish): Set buffer-read-only instead of calling
9744 toggle-read-only.
9745
9746 * bindings.el (mode-line-toggle-read-only):
9747 * dired.el (dired-toggle-read-only):
9748 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9749 with non-nil second arg.
9750
9751 * emacs-lisp/eieio-custom.el (eieio-customize-object):
9752 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9753 directly.
9754
9755 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9756
9757 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9758 not incf.
9759
9760 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9761
9762 More CL cleanups and reduction of use of cl.el.
9763 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9764 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9765 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9766 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9767 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9768 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9769 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9770 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9771 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9772 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9773 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9774 * eshell/em-cmpl.el, eshell/em-banner.el:
9775 * calendar/parse-time.el: Use cl-lib.
9776 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9777 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9778 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9779 * term/ns-win.el, term.el, shell.el, ps-samp.el:
9780 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9781 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9782 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9783 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9784 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9785 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9786 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9787 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9788 `lambda' rather than with `quote'.
9789 (eshell-do-opt): Adjust accordingly.
9790 (eshell-process-option): Simplify.
9791 * eshell/esh-var.el:
9792 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9793 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9794 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9795 to `pcase--dontcare'.
9796 * emacs-lisp/cl.el (labels): Mark obsolete.
9797 (cl--letf, letf): Move to cl-lib.
9798 (cl--letf*, letf*): Remove.
9799 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9800 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9801 (cl-progv): Rewrite.
9802 (cl--letf, cl-letf): Move from cl.el.
9803 (cl-letf*): New macro.
9804 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9805
9806 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
9807
9808 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9809
9810 2012-07-11 Chong Yidong <cyd@gnu.org>
9811
9812 * vc/log-edit.el (log-edit-vc-backend): New variable.
9813 (log-edit): Doc fix.
9814
9815 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
9816 argument of log-edit to set up all local variables.
9817 (vc-start-logentry): New optional arg specifying VC backend.
9818
9819 * vc/vc.el (vc-checkin): Use it.
9820 (vc-deduce-fileset): Handle Log Edit buffers.
9821 (vc-diff): Make first argument optional too.
9822
9823 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9824
9825 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
9826
9827 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9828 command, just in case. The function is not needed anymore.
9829 (eshell-external-command): Do not call `eshell-remote-command'.
9830
9831 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
9832
9833 Reduce use of (require 'cl).
9834 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9835 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9836 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9837 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9838 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9839 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9840 * battery.el, avoid.el, abbrev.el: Use cl-lib.
9841 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9842 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9843 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9844 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9845 * calculator.el, autorevert.el, apropos.el: Don't require CL.
9846 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9847 (byte-compile-unfold-bcf, byte-compile-check-variable):
9848 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9849 (byte-compile-nilconstp):
9850 * emacs-lisp/autoload.el (make-autoload): Use pcase.
9851 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9852
9853 * emacs-lisp/gv.el (cond): Make it a valid place.
9854 (if): Simplify slightly.
9855
9856 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9857 (pcase--self-quoting-p): New function.
9858 (pcase--u1): Use it.
9859
9860 2012-07-10 Glenn Morris <rgm@gnu.org>
9861
9862 * emacs-lisp/authors.el (authors-fixed-entries):
9863 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9864
9865 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9866
9867 Rename configure.in to configure.ac (Bug#11603).
9868 * emacs-lisp/authors.el (authors-canonical-file-name):
9869 * progmodes/autoconf.el (autoconf-mode):
9870 Prefer configure.ac to configure.in.
9871
9872 2012-07-08 Chong Yidong <cyd@gnu.org>
9873
9874 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9875 Implement the mouse-1-click-follows-link handling properly.
9876
9877 * info.el (Info-link-keymap): Use follow-link mechanism for
9878 header-line links (Bug#374).
9879
9880 * simple.el (deactivate-mark): Do not set the primary selection
9881 if another program has acquired it (Bug#11772).
9882
9883 2012-07-07 Kevin Ryde <user42@zip.com.au>
9884
9885 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9886 (woman-decode-region): Replace escaped-escapes without destroying
9887 bold or underline (Bug#11552).
9888 (woman2-process-escapes): Handle nofill regions (Bug#11591).
9889
9890 2012-07-07 Chong Yidong <cyd@gnu.org>
9891
9892 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9893 (interprogram-cut-function, interprogram-paste-function):
9894 Mention that we typically mean the clipboard.
9895
9896 2012-07-06 Glenn Morris <rgm@gnu.org>
9897
9898 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
9899
9900 * files.el (toggle-read-only): Restrict message to interactive use.
9901
9902 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
9903
9904 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9905
9906 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9907
9908 2012-07-06 Glenn Morris <rgm@gnu.org>
9909
9910 * Makefile.in (compile-one-process): Rename from "recompile".
9911
9912 * Makefile.in (bzr-update): "compile" is the same as "recompile
9913 autoloads", but parallelizable, so use that instead.
9914
9915 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
9916
9917 * window.el (quit-window): Always restore window height when
9918 it's saved in quit-restore parameter (Bug#11810).
9919
9920 2012-07-06 Glenn Morris <rgm@gnu.org>
9921
9922 * simple.el (kill-whole-line): Doc tweak.
9923
9924 2012-07-06 Eli Zaretskii <eliz@gnu.org>
9925
9926 * files.el (file-relative-name): Compare file names
9927 case-insensitively if on MS-Windows or MS-DOS, or if
9928 read-file-name-completion-ignore-case is non-nil. Don't use
9929 case-fold-search for this purpose. (Bug#11827)
9930
9931 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9932
9933 * calendar/cal-dst.el (calendar-current-time-zone):
9934 Return calendar-current-time-zone-cache if non-nil.
9935
9936 2012-07-17 Masatake YAMATO <yamato@redhat.com>
9937 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9938
9939 * calendar/cal-dst.el (calendar-current-time-zone):
9940 Return calendar-current-time-zone-cache if non-nil.
9941
9942 2012-07-06 Glenn Morris <rgm@gnu.org>
9943
9944 * Makefile.in (cvs-update): Remove old alias.
9945
9946 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
9947
9948 Sync with Tramp 2.2.6-pre.
9949
9950 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9951 compatible declaration.
9952
9953 * net/tramp-cmds.el (tramp-append-tramp-buffers):
9954 Protect `list-load-path-shadows' call.
9955
9956 * net/tramp-compat.el (top): Require packages, which aren't
9957 autoloaded anymore for XEmacs. Protect call of
9958 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9959 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
9960 it hurts at least for SXEmacs.
9961 (tramp-compat-temporary-file-directory): In XEmacs, there is no
9962 standard-value for `temporary-file-directory'.
9963
9964 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9965 Redirect stderr to /dev/null.
9966 (tramp-sh-handle-write-region): uid and gid can be floats.
9967 Reported by Russell Sim <russell.sim@gmail.com>.
9968 (tramp-sh-handle-vc-registered): Hide errors.
9969 (tramp-vc-file-name-handler): Use dummy results for `process-file'
9970 and `start-file-process'.
9971 (tramp-maybe-open-connection): Check also whether `non-essential'
9972 is bound.
9973
9974 2012-07-04 Chong Yidong <cyd@gnu.org>
9975
9976 * xml.el (xml--parse-buffer): Use xml-syntax-table.
9977 (xml-parse-tag): Likewise, and avoid changing entity tables.
9978 (xml-syntax-table): Define from scratch, making sure not to give
9979 x2000 and other Unicode spaces whitespace syntax, since those are
9980 not spaces in XML.
9981 (xml-parse-fragment): Delete unused function.
9982 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9983 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9984 (xml-entity-ref, xml-pe-reference-re)
9985 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9986 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9987 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9988 (xml-entity-value-re): Use syntax references in regexps where
9989 possible; no need to define inside a let-binding.
9990 (xml-parse-dtd): Use xml-pe-reference-re.
9991 (xml-entity-or-char-ref-re): New defconst.
9992 (xml-parse-string, xml-substitute-special): Use it.
9993
9994 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9995
9996 * files.el (locate-dominating-file): Allow `name' to be a predicate.
9997 (find-file--read-only): New function.
9998 (find-file-read-only, find-file-read-only-other-window)
9999 (find-file-read-only-other-frame): Use it.
10000 (insert-file-contents-literally): Don't `fset'.
10001 (get-free-disk-space): Use locate-dominating-file.
10002
10003 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
10004 function is already compiled.
10005
10006 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
10007
10008 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
10009
10010 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
10011 files on the same host.
10012
10013 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10014
10015 * help-fns.el (describe-function-1): Only call
10016 help-fns--autoloaded-p when we have a file name. (Bug#11848)
10017
10018 2012-07-03 Chong Yidong <cyd@gnu.org>
10019
10020 * xml.el: Protect parser against XML bombs.
10021 (xml-entity-expansion-limit): New variable.
10022 (xml-parse-string, xml-substitute-special): Use it.
10023 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
10024
10025 2012-07-03 Glenn Morris <rgm@gnu.org>
10026
10027 * progmodes/bug-reference.el (bug-reference-bug-regexp):
10028 Allow linking to specific messages in debbugs reports (eg 123#5).
10029
10030 2012-07-02 Chong Yidong <cyd@gnu.org>
10031
10032 * xml.el: Fix entity and character reference expansion, allowing
10033 them to expand into markup as per XML spec.
10034 (xml-default-ns): New variable.
10035 (xml-entity-alist): Use XML spec definitions for lt and amp.
10036 (xml-parse-region): Make first two arguments optional.
10037 Discard text properties.
10038 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
10039 All callers changed.
10040 (xml-parse-tag): Call xml-parse-tag-1. For backward
10041 compatibility, this function should not modify buffer contents.
10042 (xml-parse-tag-1): Fix opening-tag regexp.
10043 (xml-parse-string): Rewrite, handling entity and character
10044 references properly.
10045 (xml--entity-replacement-text): Signal an error if a parameter
10046 entity is undefined.
10047
10048 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
10049
10050 * comint.el (comint-output-filter): Filter out repeated prompts.
10051
10052 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
10053 and file-name-absolute-p.
10054 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
10055 internal calls.
10056
10057 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10058
10059 Spelling fixes.
10060 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
10061 Rename from byte-compile--refiy-function. All uses changed.
10062
10063 2012-07-01 Chong Yidong <cyd@gnu.org>
10064
10065 * xml.el (xml--parse-buffer): New function. Move most of
10066 xml-parse-region here.
10067 (xml-parse-region): Copy region into a temporary buffer, since
10068 parameter entity substitution requires changing buffer contents.
10069 Use xml--parse-buffer.
10070 (xml-parse-file): Use xml--parse-buffer.
10071 (xml-parse-dtd): Make parameter entity substitution work right.
10072 Use proper regexps for ELEMENT declarations (Bug#7172).
10073
10074 2012-06-30 Glenn Morris <rgm@gnu.org>
10075
10076 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
10077
10078 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
10079 Remove outdated and unnecessary dbus declarations.
10080
10081 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10082
10083 * emacs-lisp/timer.el (timer-until): Subtract results of
10084 float-time, instead of taking float-time of the result of
10085 time-subtract, since float-time signals an error for negative time
10086 arguments.
10087
10088 2012-06-30 Chong Yidong <cyd@gnu.org>
10089
10090 * xml.el (xml-*-re): Convert defvars into defconsts, and
10091 eval-and-compile them so eval-and-compile works on derivatives.
10092 (xml--entity-replacement-text): Use eval-and-comple.
10093
10094 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
10095
10096 * vc/vc-git.el (vc-git-registered): Use cache property
10097 `git-registered'.
10098 (vc-git-mode-line-string): Call `vc-working-revision' instead of
10099 `vc-git-working-revision' in order to benefit from the cache.
10100 (vc-git-root): Use cache property `git-root'. (Bug#11757)
10101
10102 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
10103
10104 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
10105 removed (likely outside Emacs). (Bug#11757)
10106
10107 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
10108
10109 * emacs-lisp/cl-lib.el: Require macroexp.
10110
10111 2012-06-30 Chong Yidong <cyd@gnu.org>
10112
10113 * xml.el: Implement XML parameter entities.
10114 (xml-parameter-entity-alist): New variable.
10115 (xml-parse-region, xml-parse-fragment): Preserve previous values
10116 of xml-entity-alist and xml-parameter-entity-alist, so that
10117 repeated calls on different documents do not change them.
10118 (xml-parse-tag): Fix doctype regexp.
10119 (xml--entity-replacement-text): New function.
10120 (xml-parse-dtd): Use it. Don't handle system entities; doing that
10121 properly requires url retrieval which is unimplemented.
10122 (xml-escape-string): Doc fix.
10123
10124 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
10125
10126 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
10127
10128 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10129
10130 * fringe.el (fringe-mode): Doc fix.
10131
10132 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
10133
10134 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
10135 is non-nil.
10136 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
10137 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
10138
10139 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10140
10141 * calendar/cal-dst.el (calendar-current-time-zone):
10142 Return calendar-current-time-zone-cache if non-nil.
10143
10144 2012-06-29 Masatake YAMATO <yamato@redhat.com>
10145
10146 * progmodes/which-func.el (which-func-format):
10147 Add mouse-face. (Bug#11698)
10148
10149 2012-06-29 Leo Liu <sdl.web@gmail.com>
10150
10151 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
10152
10153 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
10154
10155 * minibuffer.el (minibuffer-confirm-exit-commands):
10156 Add completion-at-point (bug#11725).
10157
10158 2012-06-29 Glenn Morris <rgm@gnu.org>
10159
10160 * progmodes/f90.el (f90-font-lock-keywords-2):
10161 Add some preprocessor elements. (Bug#10499)
10162
10163 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
10164
10165 * progmodes/cperl-mode.el (cperl-update-syntaxification):
10166 Use syntax-propertize (bug#11739).
10167
10168 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10169
10170 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
10171
10172 2012-06-28 Julien Danjou <julien@danjou.info>
10173
10174 * term.el (term-handle-colors-array): Use a set of new faces to
10175 color the terminal. Also uses :inverse-video property.
10176 (term-default-fg-color): Set to nil by default, deprecate in favor
10177 of `term-face'.
10178 (term-default-bg-color): Set to nil by default, deprecate in favor
10179 of `term-face'.
10180 (term-current-face): Use `term-face' by default.
10181 (term-bold-attribute): Variable deleted.
10182
10183 2012-06-28 Glenn Morris <rgm@gnu.org>
10184
10185 * simple.el (completion-list-mode-finish):
10186 Don't use toggle-read-only. (Since completion-list-mode has
10187 a special mode-class, it wasn't doing anything extra anyway.)
10188
10189 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10190
10191 Make inlining of other-mode interpreted functions work (bug#11799).
10192 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
10193 (byte-compile): Use it to fix compilation of lexical-binding closures.
10194 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
10195 function, if needed.
10196
10197 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * help-mode.el (help-make-xrefs): Don't just withstand
10200 cyclic-variable-indirection but any error in documentation-property.
10201
10202 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
10203 memory use.
10204 * bindings.el (bindings--define-key): New function.
10205 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
10206 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
10207 * bindings.el: Use it to purecopy define-key bindings.
10208
10209 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
10210
10211 * emacs-lisp/cl.el (flet): Mark obsolete.
10212 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
10213 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
10214 * progmodes/js.el (js-c-fill-paragraph):
10215 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
10216 (ebrowse-switch-member-buffer-to-derived-class):
10217 * play/5x5.el (5x5-solver): Use cl-flet.
10218
10219 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
10220 (cl--symbol-function): New macro.
10221 (cl--letf, cl--letf*): Use it.
10222
10223 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10224 Strip "toggle-" if any.
10225
10226 2012-06-27 Glenn Morris <rgm@gnu.org>
10227
10228 * info.el (Info-default-directory-list): Move here from paths.el.
10229 * paths.el: Remove file, which is now empty.
10230 * loadup.el: No longer load "paths".
10231
10232 * custom.el (custom-initialize-delay): Doc fix.
10233
10234 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
10235 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
10236 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
10237 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
10238 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
10239 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
10240 * eshell/eshell.el (eshell-defgroup): Remove alias.
10241
10242 2012-06-27 Chong Yidong <cyd@gnu.org>
10243
10244 * help.el (help-enable-auto-load): New variable.
10245
10246 * help-fns.el (help-fns--autoloaded-p): New function.
10247 (describe-function-1): Refer to a function as "autoloaded" if it
10248 was autoloaded at any time in the past. Perform autoloading if
10249 help-enable-auto-load is non-nil.
10250
10251 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10252
10253 * makefile.w32-in (compile, compile-always): Depend on
10254 update-subdirs, not on subdirs.el. Otherwise, several different
10255 sub-targets of 'bootstrap' running in parallel could
10256 simultaneously write to subdirs.el, producing a garbled file.
10257
10258 2012-06-26 Sam Steingold <sds@gnu.org>
10259
10260 * files.el (file-name-base): New convenience function.
10261 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
10262 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
10263 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
10264 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
10265 * textmodes/ispell.el, textmodes/reftex-ref.el:
10266 * textmodes/tex-mode.el: Use it.
10267 Did not touch cedet and org because they are maintained elsewhere.
10268
10269 2012-06-26 Martin Rudalics <rudalics@gmx.at>
10270
10271 * calendar/calendar.el (calendar-exit): Don't try to delete or
10272 iconify last frame. See:
10273 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
10274
10275 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
10276
10277 * server.el (server-process-filter): Remember dir in the
10278 process's `server-client-directory' properties.
10279
10280 2012-06-24 Chong Yidong <cyd@gnu.org>
10281
10282 * xml.el (xml-parse-tag): Correctly handle comment embedded in
10283 non-tag text.
10284
10285 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10286
10287 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
10288
10289 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10290
10291 * help-fns.el (describe-variable): Don't croak when doc is not found.
10292 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
10293 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
10294 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
10295 * emacs-lisp/smie.el (smie-next-sexp): CSE.
10296 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
10297 ((lambda ..) ..).
10298 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
10299
10300 2012-06-23 Chong Yidong <cyd@gnu.org>
10301
10302 * info.el (Info-mouse-follow-link): Accept symbol values of
10303 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
10304 (Info-fontify-node): Use Info-link-keymap for all navigation
10305 buttons, with link-args property to perform the desired action.
10306 (Info-link-keymap): Doc fix.
10307 (Info-next-link-keymap, Info-prev-link-keymap)
10308 (Info-up-link-keymap): Delete now-unused keymaps.
10309
10310 2012-06-23 Chong Yidong <cyd@gnu.org>
10311
10312 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
10313
10314 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
10315 system abbrevs.
10316
10317 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
10318
10319 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10320
10321 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
10322 (bug#11719).
10323
10324 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
10325 the requote function doesn't work properly (bug#11714).
10326
10327 2012-06-23 Glenn Morris <rgm@gnu.org>
10328
10329 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
10330
10331 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10332
10333 Further GV/CL cleanups.
10334 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
10335 gv-expander.
10336 (gv--defun-declaration): New function.
10337 (defun-declarations-alist): Use it.
10338 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
10339 (gv-place): Autoload.
10340 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
10341 original definition of dotimes and dolist.
10342 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
10343 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
10344 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
10345 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10346 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
10347 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
10348 to the function's definition.
10349 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
10350 * window.el:
10351 * files.el:
10352 * faces.el:
10353 * env.el: Don't use CL.
10354
10355 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10356
10357 Support higher-resolution time stamps (Bug#9000).
10358
10359 * calendar/time-date.el (with-decoded-time-value): New arg
10360 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
10361 (encode-time-value): New optional arg PICO. New type 3.
10362 (time-to-seconds) [!float-time]: Support the new picoseconds
10363 component if it's used.
10364 (seconds-to-time, time-subtract, time-add):
10365 Support ps-resolution time stamps as well.
10366
10367 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
10368 (timerp): Timer vectors now have length 9, not 8.
10369 (timer--time): Support new-style (4-part) time stamps.
10370 (timer-next-integral-multiple-of-time): Time stamps now have
10371 picosecond resolution, so take a bit more care about rounding.
10372 (timer-relative-time, timer-inc-time): New optional arg psecs.
10373 (timer-set-time-with-usecs): Set psecs to 0.
10374 (timer--activate): Check psecs component, too.
10375
10376 * proced.el (proced-time-lessp): Support ps-resolution stamps.
10377
10378 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10379
10380 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
10381 Move the non-essential binding to the post/pre-command-hook where it is
10382 more obviously correct.
10383
10384 * subr.el (read-passwd): Don't use a history at all.
10385 * savehist.el (savehist-save): Remove password saved accidentally
10386 because of the above bug.
10387
10388 2012-06-22 Bastien Guerry <bzg@gnu.org>
10389
10390 * files.el (toggle-read-only): Display a message telling whether
10391 the buffer is read-only or not (bug#11726).
10392
10393 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10394
10395 * emacs-lisp/gv.el: New file.
10396 * subr.el (push, pop): Extend to generalized variables.
10397 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
10398 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
10399 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
10400 gv-define-simple-setter, and gv-define-expander.
10401 Remove setf-methods defined in gv. Rename cl-setf -> setf.
10402 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
10403 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
10404 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
10405 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
10406 gv-letplace.
10407 (cl-defstruct): Don't define setf-method any more.
10408 * emacs-lisp/cl.el (flet): Don't autoload.
10409 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
10410 (define-setf-expander, defsetf, define-modify-macro)
10411 (cl-struct-setf-expander): Move from cl-lib.el.
10412 * emacs-lisp/syntax.el:
10413 * emacs-lisp/ewoc.el:
10414 * emacs-lisp/smie.el:
10415 * emacs-lisp/cconv.el:
10416 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
10417 (timer--time): Use gv-define-simple-setter.
10418 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
10419 to avoid coding-system problems in subr.el. Adjust all users.
10420 (macroexp--maxsize, macroexp-small-p): New functions.
10421 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
10422 * scroll-bar.el (scroll-bar-mode):
10423 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
10424 (normal-erase-is-backspace-mode): Don't use the `eq' place.
10425 * winner.el (winner-configuration, winner-make-point-alist)
10426 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
10427 * files.el (locate-file-completion-table): Avoid list*.
10428
10429 2012-06-22 Chong Yidong <cyd@gnu.org>
10430
10431 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
10432 (dired-create-files): Doc fix (Bug#11329).
10433 (dired-do-copy): Doc fix (Bug#11334).
10434 (dired-mark-read-string): Doc fix (Bug#11553).
10435
10436 * dired.el (dired-recursive-copies, dired-recursive-deletes):
10437 Doc fix (Bug#11326).
10438 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
10439 (dired-dwim-target): Doc fix.
10440
10441 * wdired.el (wdired-mode): Doc fix.
10442
10443 2012-06-22 Glenn Morris <rgm@gnu.org>
10444
10445 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
10446 (pcmpl-rpm-cache-stamp-file): New constant.
10447 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
10448 (pcmpl-rpm-packages): Optionally cache list of packages.
10449
10450 * pcmpl-rpm.el (pcmpl-rpm): New group.
10451 (pcmpl-rpm-query-options): New option.
10452 (pcmpl-rpm-packages): No need to inline it.
10453 Use pcmpl-rpm-query-options.
10454
10455 * calendar/calendar.el (calendar-in-read-only-buffer):
10456 Avoid some needless mode changes.
10457
10458 2012-06-21 Chong Yidong <cyd@gnu.org>
10459
10460 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
10461 (desktop-path): Remove . from the default value (Bug#10977).
10462 (desktop-read): Use user-emacs-directory if desktop-path is nil.
10463
10464 2012-06-20 Chong Yidong <cyd@gnu.org>
10465
10466 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
10467
10468 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
10469
10470 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
10471 (bug#11201).
10472
10473 2012-06-20 Chong Yidong <cyd@gnu.org>
10474
10475 * term.el (term-window-width): Handle the case of a missing right
10476 fringe (Bug#8837).
10477 (term-check-size): Use window-text-height (Bug#5445).
10478 (term-mode): Use define-derived-mode. Minor cleanups.
10479 Set font-lock-defaults (Bug#7692).
10480 (term-move-columns, term-insert-char, term-emulate-terminal)
10481 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10482
10483 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
10484
10485 * net/ange-ftp.el (ange-ftp-get-passwd):
10486 Bind `enable-recursive-minibuffers'.
10487 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10488
10489 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
10490
10491 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10492
10493 2012-06-19 Glenn Morris <rgm@gnu.org>
10494
10495 * progmodes/python.el (python-mode): Derive from prog-mode.
10496
10497 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
10498
10499 * emulation/edt.el (edt-default-menu-bar-update-buffers)
10500 (edt-user-menu-bar-update-buffers): New functions.
10501 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10502
10503 2012-06-19 Chong Yidong <cyd@gnu.org>
10504
10505 * subr.el (with-selected-window): Preserve the selected window's
10506 terminal's top-frame (Bug#4702).
10507
10508 * window.el (save-selected-window): Likewise.
10509
10510 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10511
10512 * progmodes/python.el (python-rx-constituents): Move backquote.
10513 (python-skeleton-define, python-define-auxiliary-skeleton):
10514 Use `declare'.
10515
10516 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
10517
10518 * minibuffer.el (read-file-name-default): Revert the patch from
10519 2012-06-17.
10520
10521 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10522
10523 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10524 (pcase--u1, pcase--q1): Don't use apply-partially.
10525
10526 2012-06-18 Glenn Morris <rgm@gnu.org>
10527
10528 * progmodes/python.el (python-proc, python-buffer)
10529 (python-send-receive, python-send-string): Fix obsolete versions.
10530
10531 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10532
10533 * window.el (special-display-p): Completely remove stringp
10534 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10535
10536 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
10537
10538 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10539
10540 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10541
10542 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10543 * net/tramp-sh.el (tramp-maybe-open-connection):
10544 Throw if `non-essential' is non-nil.
10545
10546 2012-06-17 Martin Rudalics <rudalics@gmx.at>
10547
10548 * window.el (special-display-p): Signal an error if BUFFER-NAME
10549 is not a string (Bug#11713).
10550
10551 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10552
10553 * progmodes/python.el (python-info-beginning-of-backslash):
10554 Rename from python-info-beginning-of-backlash, as a spelling fix.
10555
10556 2012-06-17 Chong Yidong <cyd@gnu.org>
10557
10558 * term.el (term-emulate-terminal): If term-check-size is called,
10559 move point to the process mark without resetting point (Bug#4635).
10560
10561 2012-06-17 Glenn Morris <rgm@gnu.org>
10562
10563 * international/mule-cmds.el (mule-menu-keymap)
10564 (set-language-environment, set-locale-environment): Doc tweaks.
10565
10566 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10567
10568 * cus-face.el (custom-face-attributes): Add wave-style underline
10569 attribute.
10570 * faces.el (set-face-attribute): Update docstring to describe
10571 wave-style underline attribute.
10572
10573 2012-06-16 Chong Yidong <cyd@gnu.org>
10574
10575 * term/xterm.el (terminal-init-xterm): Discard input before
10576 querying background mode (Bug#10959).
10577
10578 2012-06-16 Stefan Merten <smerten@oekonux.de>
10579
10580 * textmodes/rst.el: Added and corrected some comments.
10581 (rst-re-alist-def): Improve symbol syntax.
10582 (rst-mode-syntax-table): Correct syntax entries.
10583 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10584 (rst-official-version, rst-official-cvs-rev): Update version
10585 information.
10586
10587 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
10588
10589 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10590 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10591
10592 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
10593
10594 * progmodes/python.el: New python.el merge.
10595 (python-guess-indent): Obsolete var.
10596 (python-indent-guess-indent-offset): New defcustom.
10597 (python-indent): Obsolete var.
10598 (python-indent-offset): New defcustom.
10599 (python-python-command, python-jython-command): Delete var.
10600 (python-shell-interpreter): New defcustom.
10601 (python-pdbtrack-do-tracking-p): Delete var.
10602 (python-pdbtrack-activate): New defcustom.
10603 (python-use-skeletons): Obsolete var.
10604 (python-skeleton-autoinsert): New defcustom.
10605 (inferior-python-filter-regexp, python-continuation-offset)
10606 (python-honour-comment-indentation, python-indent-string-contents)
10607 (python-jython-packages, python-mode-hook)
10608 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10609 (python-shell-prompt-alist)
10610 (python-source-modes): Delete defcustoms.
10611 (python-check-buffer-name, python-eldoc-setup-code)
10612 (python-eldoc-string-code, python-ffap-setup-code)
10613 (python-ffap-string-code, python-fill-comment-function)
10614 (python-fill-decorator-function, python-fill-paren-function)
10615 (python-fill-string-function, python-imenu-include-defun-type)
10616 (python-imenu-make-tree, python-imenu-subtree-root-label)
10617 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10618 (python-shell-compilation-regexp-alist)
10619 (python-shell-completion-module-string-code)
10620 (python-shell-completion-pdb-string-code)
10621 (python-shell-completion-setup-code)
10622 (python-shell-completion-string-code)
10623 (python-shell-enable-font-lock, python-shell-exec-path)
10624 (python-shell-extra-pythonpaths)
10625 (python-shell-internal-buffer-name, python-shell-interpreter-args)
10626 (python-shell-process-environment)
10627 (python-shell-prompt-block-regexp)
10628 (python-shell-prompt-output-regexp)
10629 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10630 (python-shell-send-setup-max-wait, python-shell-setup-codes)
10631 (python-shell-virtualenv-path): New defcustoms.
10632 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10633 (inferior-python-mode-syntax-table, python--prompt-regexp)
10634 (python-buffer, python-command python-python-command)
10635 (python-default-template, python-imports, python-indent-index)
10636 (python-indent-list, python-indent-list-length)
10637 (python-mode-running, python-pdbtrack-is-tracking-p)
10638 (python-preoutput-continuation, python-preoutput-leftover)
10639 (python-preoutput-result, python-preoutput-skip-next-prompt)
10640 (python-prev-dir/file, python-recursing)
10641 (python-saved-check-command, python-version-checked)
10642 (python-which-func-length-limit)
10643 (view-return-to-alist): Delete vars.
10644 (python-check-custom-command, python-dotty-syntax-table)
10645 (python-imenu-index-alist, python-indent-current-level)
10646 (python-indent-dedenters, python-indent-levels)
10647 (python-nav-beginning-of-defun-regexp)
10648 (python-nav-list-defun-positions-cache)
10649 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10650 (python-shell-internal-buffer)
10651 (python-skeleton-available): New vars.
10652 (def-python-skeleton): Delete macro.
10653 (python-skeleton-define): New macro.
10654 (python-define-auxiliary-skeleton, python-rx): New macros.
10655 (python-insert-class): Delete command.
10656 (python-skeleton-class): New command.
10657 (python-insert-def): Delete command.
10658 (python-skeleton-def): New command.
10659 (python-insert-for): Delete command.
10660 (python-skeleton-for): New command.
10661 (python-insert-if): Delete command.
10662 (python-skeleton-if): New command.
10663 (python-insert-try/except, python-insert-try/finally): Delete commands.
10664 (python-skeleton-try): New command.
10665 (python-insert-while): Delete command.
10666 (python-skeleton-while): New command.
10667 (python-backspace): Delete command.
10668 (python-indent-dedent-line-backspace): New command.
10669 (python-electric-colon): Delete command.
10670 (python-indent-electric-colon): New command.
10671 (python-guess-indent): Delete command.
10672 (python-indent-guess-indent-offset): New command.
10673 (python-shift-left): Delete command.
10674 (python-indent-shift-left): New command.
10675 (python-shift-right): Delete command.
10676 (python-indent-shift-right): New command.
10677 (python-find-function): Delete command.
10678 (python-nav-jump-to-defun): New command.
10679 (python-next-statement): Delete command.
10680 (python-nav-forward-sentence): New command.
10681 (python-previous-statement): Delete command.
10682 (python-nav-backward-sentence): New command.
10683 (python-fill-paragraph): Delete command.
10684 (python-fill-paragraph-function): New command.
10685 (python-send-buffer): Delete command.
10686 (python-shell-send-buffer): New command.
10687 (python-send-defun): Delete command.
10688 (python-shell-send-defun): New command.
10689 (python-send-region, python-send-region-and-go): Delete commands.
10690 (python-shell-send-region)
10691 (python-shell-switch-to-shell): New commands.
10692 (python-send-string): Delete command.
10693 (python-shell-send-string): New command.
10694 (python-switch-to-python): Delete command.
10695 (python-shell-switch-to-shell): New command.
10696 (python-describe-symbol): Delete command.
10697 (python-eldoc-at-point): New command.
10698 (python--set-prompt-regexp, python-args-to-list)
10699 (python-after-info-look, python-check-version)
10700 (python-check-comint-prompt, python-find-imports)
10701 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10702 (python-unload-function, python-expand-template)
10703 (python-maybe-jython, python-preoutput-filter)
10704 (python-pdbtrack-get-source-buffer)
10705 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10706 (python-pdbtrack-toggle-stack-tracking)
10707 (python-pdbtrack-track-stack-file, python-initial-text)
10708 (python-first-word, python-comment-line-p, python-send-command)
10709 (python-setup-brm, python-sentinel, python-set-proc)
10710 (python-skip-out, python-input-filter, python-outdent-p)
10711 (python-outline-level, python-backslash-continuation-line-p)
10712 (python-end-of-block, python-end-of-statement, python-mark-block)
10713 (python-beginning-of-block, python-beginning-of-statement)
10714 (python-blank-line-p, python-beginning-of-string)
10715 (python-open-block-statement-p): Delete functions.
10716 (python-indent-line, python-indent-line-1): Delete functions.
10717 (python-indent-line): New function.
10718 (python-indentation-levels): Delete function.
10719 (python-indent-calculate-levels): New function.
10720 (python-proc): Delete function.
10721 (python-shell-get-process): New function.
10722 (python-send-receive): Delete function.
10723 (python-shell-send-string-no-output): New function.
10724 (python-module-path): Delete function.
10725 (python-ffap-module-path): New function.
10726 (python-completion-at-point)
10727 (python-symbol-completions): Delete functions.
10728 (python-completion-complete-at-point): New function.
10729 (python-load-file): Delete function.
10730 (python-shell-send-file): New function.
10731 (python-calculate-indentation): Delete function.
10732 (python-indent-calculate-indentation): New function.
10733 (python-skip-comments/blanks): Delete function.
10734 (python-util-forward-comment): New function.
10735 (python-continuation-line-p): Delete function.
10736 (python-info-continuation-line-p): New function.
10737 (python-which-func, python-current-defun): Delete function.
10738 (python-info-current-defun): New function.
10739 (python-beginning-of-defun): Delete function.
10740 (python-nav-beginning-of-defun): New function.
10741 (python-close-block-statement-p)
10742 (python-block-end-p): Delete function.
10743 (python-info-closing-block): New function.
10744 (python-comint-output-filter-function)
10745 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10746 (python-fill-comment, python-fill-decorator, python-fill-paren)
10747 (python-fill-string, python-imenu-make-element-tree)
10748 (python-imenu-make-tree, python-imenu-tree-assoc)
10749 (python-indent-context, python-indent-dedent-line)
10750 (python-indent-line-function)
10751 (python-indent-post-self-insert-function)
10752 (python-indent-toggle-levels)
10753 (python-info-assignment-continuation-line-p)
10754 (python-info-beginning-of-backlash)
10755 (python-info-block-continuation-line-p)
10756 (python-info-closing-block-message)
10757 (python-info-line-ends-backslash-p)
10758 (python-info-looking-at-beginning-of-defun)
10759 (python-info-ppss-context, python-info-ppss-context-type)
10760 (python-nav-list-defun-positions, python-nav-read-defun)
10761 (python-nav-sentence-end, python-nav-sentence-start)
10762 (python-pdbtrack-comint-output-filter-function)
10763 (python-pdbtrack-set-tracked-buffer)
10764 (python-shell-calculate-exec-path)
10765 (python-shell-calculate-process-environment)
10766 (python-shell-completion--do-completion-at-point)
10767 (python-shell-completion--get-completions)
10768 (python-shell-completion-complete-at-point)
10769 (python-shell-completion-complete-or-indent)
10770 (python-shell-get-or-create-process)
10771 (python-shell-get-process-name)
10772 (python-shell-internal-get-or-create-process)
10773 (python-shell-internal-get-process-name)
10774 (python-shell-internal-send-string, python-shell-make-comint)
10775 (python-shell-parse-command, python-shell-send-setup-code)
10776 (python-skeleton-add-menu-items)
10777 (python-util-clone-local-variables, python-util-position)
10778 (run-python-internal, python-indentation-levels)
10779 (python-nav-beginning-of-defun)
10780 (python-completion-complete-at-point): New functions.
10781 (run-python): Change arguments. New API requirements.
10782
10783 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10784
10785 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10786 (bug#11649).
10787
10788 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10789 (macroexp--expand-all): Use it.
10790
10791 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10792 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10793 Use `cl-function' instead.
10794
10795 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
10796
10797 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10798 Suggested by Stefan Monnier while discussing bug#11657.
10799
10800 2012-06-14 Sam Steingold <sds@gnu.org>
10801
10802 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10803
10804 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
10805
10806 * play/doctor.el (doctor-doc): Remove parameter and use
10807 doctor-sent instead of sent.
10808 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
10809
10810 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10811
10812 * files.el: Require cl-lib.
10813 (file-name-non-special): Replace case -> cl-case.
10814
10815 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10816
10817 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10818 mapping from #' to function*.
10819
10820 2012-06-13 Chong Yidong <cyd@gnu.org>
10821
10822 * mouse.el (mouse-drag-track): Do not set the mark if the user
10823 releases the mouse without selecting anything (Bug#11588).
10824
10825 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10826
10827 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10828 as well (bug#11646).
10829
10830 * loadup.el: Count byte-code functions as well.
10831
10832 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10833 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10834
10835 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10836 (bug#11649). Add cl-defun and cl-defmacro.
10837
10838 2012-06-13 Drew Adams <drew.adams@oracle.com>
10839
10840 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10841 Fix last change.
10842
10843 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
10844
10845 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10846 Otherwise, it blocks in batch mode.
10847
10848 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10849
10850 * help-mode.el (bookmark-make-record-default): Declare.
10851
10852 2012-06-13 Chong Yidong <cyd@gnu.org>
10853
10854 * emacs-lisp/package.el (list-packages): Compute a list of
10855 packages that are newly-available since the last list-packages
10856 invocation.
10857 (package-menu--new-package-list): New var.
10858 (package-menu--generate, package-menu--print-info)
10859 (package-menu--status-predicate, package-menu-mark-install):
10860 Handle new status label "new".
10861
10862 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10863
10864 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10865 conversion to backquotes.
10866
10867 2012-06-12 Chong Yidong <cyd@gnu.org>
10868
10869 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10870 Rename from gud-inhibit-global-bindings.
10871
10872 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10873
10874 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10875 hook from nxml-glyph-set-hook.
10876
10877 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10878 declaration.
10879
10880 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10881
10882 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10883 Convert to defcustom.
10884
10885 2012-06-12 Drew Adams <drew.adams@oracle.com>
10886
10887 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10888 New functions.
10889 (help-mode): Use them.
10890
10891 2012-06-11 Glenn Morris <rgm@gnu.org>
10892
10893 * progmodes/fortran.el (fortran-font-lock-keywords-3):
10894 Use preprocessor face for directives.
10895 (fortran-directive-re): Doc fix.
10896
10897 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10898
10899 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10900 conversion to backquotes (bug#11652).
10901
10902 Fix compiler-expansion of CL's cXXr functions (bug#11673).
10903 * emacs-lisp/cl-lib.el (cl--defalias): New function.
10904 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10905 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10906 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10907 (cl-ninth, cl-tenth): Mark them as inlinable.
10908 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10909 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10910 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10911 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10912 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10913 (cl-list*, cl-adjoin): Don't put an autoload manually.
10914 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10915 (cl--compiler-macro-list*): Add autoload cookie.
10916 (cl--compiler-macro-cXXr): New function.
10917
10918 * help-fns.el (help-fns--compiler-macro): New function extracted from
10919 describe-function-1; follow aliases and use `compiler-macro' property.
10920 (describe-function-1): Use it.
10921
10922 2012-06-11 Chong Yidong <cyd@gnu.org>
10923
10924 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10925 is uninstalled, if imagemagick is installed.
10926
10927 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10928
10929 * emacs-lisp/cl-lib.el: Use lexical-binding.
10930 (cl-map-extents, cl-maclisp-member): Remove.
10931 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10932 (cl--set-substring, cl--block-wrapper, cl--block-throw)
10933 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10934 * emacs-lisp/cl-extra.el: Use lexical-binding.
10935 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10936 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10937 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10938 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10939 * emacs-lisp/cl-seq.el: Use lexical-binding.
10940 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10941 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10942 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10943 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10944 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10945 CL's internals.
10946
10947 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
10948
10949 Sync with Tramp 2.2.6-pre.
10950
10951 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10952 `print-length' and `print-level' to nil, in order to avoid
10953 truncation. Reported by Christopher Schmidt
10954 <christopher@ristopher.com>.
10955
10956 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10957
10958 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10959 New defmacro.
10960 (tramp-compat-copy-directory): Add optional argument
10961 COPY-CONTENTS. It is not handled yet.
10962
10963 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10964 (tramp-ftp-file-name-p): Simplify.
10965
10966 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10967 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10968 connection vector.
10969
10970 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10971 (tramp-methods): Do not use `tramp-password-end-of-line'.
10972 (tramp-completion-function-alist-putty): Handle UNIX case.
10973 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10974 (tramp-do-file-attributes-with-stat)
10975 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10976 gid as real numbers. They could run out of integer range on cygwin.
10977 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10978 (tramp-sh-handle-expand-file-name): Handle hops.
10979 (tramp-open-connection-setup-interactive-shell):
10980 Use `tramp-cleanup'. Move check for busyboxes ...
10981 (tramp-find-shell): ... here. Simplify implementation.
10982 Set "remote-shell" property also for alternative shells.
10983 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10984 If failing, a regular file would be written otherwise.
10985 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10986 (tramp-find-inline-encoding): Cache the coding commands in the
10987 process cache. Apply test command on the remote side, if defined.
10988 (tramp-find-inline-compress): Cache the compress commands in the
10989 process cache.
10990 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10991 when requested. Handle hops.
10992 (tramp-current-connection): New defvar.
10993 (tramp-maybe-open-connection): Use `tramp-cleanup'.
10994 Throw `suppress', if there was a failed connection shortly before.
10995 Handle user interrupt. (Bug#10187)
10996 (tramp-get-inline-compress, tramp-get-inline-coding):
10997 Read connection properties from the process cache.
10998
10999 * net/tramp-smb.el (tramp-smb-server-version)
11000 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
11001 New defconsts.
11002 (tramp-smb-prompt): Extend for powershell prompt.
11003 (tramp-smb-file-name-handler-alist): Add handlers for
11004 `process-file', `shell-command' and `start-file-process'.
11005 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
11006 (tramp-smb-winexe-shell-command-switch): New defcustoms.
11007 (tramp-smb-file-name-p): Simplify.
11008 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
11009 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
11010 (tramp-smb-shell-quote-argument): New defuns.
11011 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
11012 Implement using "tar". By this, time-stamps are preserved.
11013 (tramp-smb-handle-copy-file): Handle also the case of directories.
11014 (tramp-smb-do-file-attributes-with-stat)
11015 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
11016 Use `tramp-get-connection-buffer').
11017 (tramp-smb-handle-rename-file): Use "rename", when source and
11018 target are on the same share.
11019 (tramp-smb-maybe-open-connection): Handle wrong passwords.
11020 Use `tramp-smb-server-version'.
11021 (tramp-smb-wait-for-output): Remove prompt.
11022
11023 * net/tramp.el (top): Require 'cl.
11024 (tramp-methods, tramp-rsh-end-of-line):
11025 Remove `tramp-password-end-of-line' from docstring.
11026 (tramp-save-ad-hoc-proxies): New defcustom.
11027 (tramp-completion-function-alist): Adapt docstring.
11028 (tramp-default-password-end-of-line): Remove defcustom.
11029 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
11030 (tramp-user-regexp, tramp-file-name-regexp-unified)
11031 (tramp-file-name-regexp-url): Extend regexp by hop separator.
11032 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
11033 (tramp-remote-file-name-spec-regexp): New defconst.
11034 (tramp-file-name-structure): Extend structure for hops.
11035 (tramp-get-method-parameter): Move up.
11036 (tramp-file-name-p, tramp-dissect-file-name)
11037 (with-parsed-tramp-file-name): Handle hops.
11038 (tramp-file-name-hop): New defun.
11039 (tramp-make-tramp-file-name): New optional arg HOP.
11040 (tramp-message-show-progress-reporter-message): New defvar.
11041 (tramp-with-progress-reporter): Use it. We cannot use
11042 `tramp-message-show-message' here, because this suppresses also
11043 error buffers.
11044 (tramp-error-with-buffer): Suppress buffer view, if
11045 `tramp-message-show-message' is nil.
11046 Use `tramp-get-connection-buffer'.
11047 (tramp-cleanup): New defun.
11048 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
11049 (tramp-file-name-handler): If `debug-on-error' is set, propagate
11050 an error unchanged.
11051 (tramp-completion-handle-file-name-all-completions): Handle hops.
11052 Fix an error when called from ido.
11053 (tramp-completion-dissect-file-name): Use better local variable
11054 name. Add hop to the vector.
11055 (tramp-handle-insert-file-contents): Use progress-reporter for the
11056 whole scenario.
11057 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
11058 to `t'.
11059 (tramp-check-for-regexp): Simplify search.
11060 (tramp-enter-password): Remove it. Move implementation ...
11061 (tramp-action-password): ... here.
11062 (tramp-mode-string-to-int, tramp-local-host-p)
11063 (tramp-make-tramp-temp-file, tramp-read-passwd)
11064 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
11065 Set tramp-autoload cookie.
11066
11067 * net/trampver.el: Update release number.
11068
11069 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11070 Michael Albinus <michael.albinus@gmx.de>
11071
11072 * net/tramp.el (tramp-set-completion-function): Fix docstring.
11073 (tramp-parse-group, tramp-parse-file)
11074 (tramp-parse-shostkeys-sknownhosts): New defuns.
11075 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
11076 (tramp-parse-shosts-group, tramp-parse-sconfig)
11077 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
11078 (tramp-parse-sknownhosts, tramp-parse-hosts)
11079 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
11080 Use them.
11081 (tramp-parse-passwd-group, tramp-parse-netrc-group)
11082 (tramp-parse-putty-group): Don't narrow.
11083 (tramp-parse-putty): Make a loop.
11084 (tramp-file-name-handler): Catch the `suppress' signal.
11085
11086 2012-06-11 Chong Yidong <cyd@gnu.org>
11087
11088 * image.el (imagemagick-register-types): Put the ImageMagick entry
11089 at the end of image-type-file-name-regexps.
11090
11091 2012-06-11 Johan Bockgård <bojohan@gnu.org>
11092
11093 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
11094 (pcase, pcase-let*, pcase-dolist): Use them.
11095
11096 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11097
11098 * emacs-lisp/pcase.el (pcase--let*): New function.
11099 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
11100 (pcase--expand): Use macroexp-let².
11101
11102 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
11103
11104 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
11105 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
11106 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
11107 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
11108 * emacs-lisp/derived.el: Use pcase instead of `cl'.
11109 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
11110
11111 2012-06-10 Glenn Morris <rgm@gnu.org>
11112
11113 * mail/rmail.el (rmail-yank-current-message): Leave point at
11114 correct position. (Bug#11660)
11115
11116 2012-06-10 Chong Yidong <cyd@gnu.org>
11117
11118 * allout-widgets.el: Fix code header.
11119
11120 2012-06-10 Chong Yidong <cyd@gnu.org>
11121
11122 * cus-edit.el (customize-changed-options-previous-release):
11123 Bump to 24.1.
11124
11125 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
11126
11127 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
11128
11129 2012-06-09 Chong Yidong <cyd@gnu.org>
11130
11131 * ebuff-menu.el (electric-buffer-list): Preserve header line.
11132
11133 2012-06-09 Martin Rudalics <rudalics@gmx.at>
11134
11135 * window.el (special-display-popup-frame): Don't use
11136 window--display-buffer (Bug#11651).
11137
11138 2012-06-09 Eli Zaretskii <eliz@gnu.org>
11139
11140 Fix parallel builds: make sure loaddefs.el is not being written
11141 while Lisp files are compiled.
11142 (compile): Don't depend on 'mh-autoloads'.
11143 (compile-CMD, compile-SH): Depend on 'autoloads'.
11144 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
11145
11146 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
11147
11148 2012-06-09 Chong Yidong <cyd@gnu.org>
11149
11150 * face-remap.el (face-remap-add-relative, face-remap-set-base)
11151 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
11152 Doc fixes (Bug#11225).
11153
11154 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
11155
11156 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
11157 a function if there's a clear indication that it has a compiler-macro.
11158 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
11159 (macro-declarations-alist): Add arglist to declaration functions.
11160 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
11161 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
11162 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
11163 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
11164 Also add autoload to find the compiler macro.
11165 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
11166 (cl--compiler-macro-member, cl--compiler-macro-assoc)
11167 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
11168 (cl--compiler-macro-get): New functions, replacing calls to
11169 cl-define-compiler-macro.
11170 (cl-typep) [compiler-macro]: Use macroexp-let².
11171
11172 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
11173
11174 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
11175 string properly, fixes Bug#11473.
11176
11177 2012-06-08 Chong Yidong <cyd@gnu.org>
11178
11179 * faces.el (set-face-attribute): Doc fix.
11180 (modify-face): Don't use :bold and :italic.
11181 (error, warning, success): Tweak definitions.
11182
11183 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
11184 (custom-modified, custom-set, custom-changed, custom-themed)
11185 (custom-saved, custom-button, custom-button-mouse)
11186 (custom-button-pressed, custom-state, custom-comment-tag)
11187 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
11188 (custom-group-subtitle): Use new-style face specs.
11189 (custom-invalid-face, custom-rogue-face, custom-modified-face)
11190 (custom-set-face, custom-changed-face, custom-saved-face)
11191 (custom-button-face, custom-button-pressed-face)
11192 (custom-documentation-face, custom-state-face)
11193 (custom-comment-face, custom-comment-tag-face)
11194 (custom-variable-tag-face, custom-variable-button-face)
11195 (custom-face-tag-face, custom-group-tag-face-1)
11196 (custom-group-tag-face): Remove obsolete face alias.
11197
11198 * epa.el (epa-validity-high, epa-validity-medium)
11199 (epa-validity-low, epa-mark, epa-field-name, epa-string)
11200 (epa-field-name, epa-field-body):
11201 * font-lock.el (font-lock-comment-face, font-lock-string-face)
11202 (font-lock-keyword-face, font-lock-builtin-face)
11203 (font-lock-function-name-face, font-lock-variable-name-face)
11204 (font-lock-type-face, font-lock-constant-face):
11205 * ido.el (ido-first-match, ido-only-match, ido-subdir)
11206 (ido-virtual, ido-indicator, ido-incomplete-regexp):
11207 * speedbar.el (speedbar-button-face, speedbar-file-face)
11208 (speedbar-directory-face, speedbar-tag-face)
11209 (speedbar-selected-face, speedbar-highlight-face)
11210 (speedbar-separator-face):
11211 * whitespace.el (whitespace-newline, whitespace-space)
11212 (whitespace-hspace, whitespace-tab, whitespace-trailing)
11213 (whitespace-line, whitespace-space-before-tab)
11214 (whitespace-space-after-tab, whitespace-indentation)
11215 (whitespace-empty):
11216 * emulation/cua-base.el (cua-global-mark):
11217 * eshell/em-prompt.el (eshell-prompt):
11218 * net/newst-plainview.el (newsticker-new-item-face)
11219 (newsticker-old-item-face, newsticker-immortal-item-face)
11220 (newsticker-obsolete-item-face, newsticker-date-face)
11221 (newsticker-statistics-face, newsticker-default-face):
11222 * net/newst-reader.el (newsticker-feed-face)
11223 (newsticker-extra-face, newsticker-enclosure-face):
11224 * net/newst-treeview.el (newsticker-treeview-face)
11225 (newsticker-treeview-new-face, newsticker-treeview-old-face)
11226 (newsticker-treeview-immortal-face)
11227 (newsticker-treeview-obsolete-face)
11228 (newsticker-treeview-selection-face):
11229 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
11230 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
11231 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
11232 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
11233 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
11234 (nxml-outline-active-indicator, nxml-outline-ellipsis):
11235 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
11236 (mpuz-text):
11237 * progmodes/vera-mode.el (vera-font-lock-number)
11238 (vera-font-lock-function, vera-font-lock-interface):
11239 * textmodes/table.el (table-cell): Use new-style face specs, and
11240 don't use the old :bold and :italic attributes.
11241
11242 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
11243 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
11244 (ebrowse-member-class, ebrowse-progress): Likewise.
11245 (ebrowse-tree-mark-face, ebrowse-root-class-face)
11246 (ebrowse-file-name-face, ebrowse-default-face)
11247 (ebrowse-member-attribute-face, ebrowse-member-class-face)
11248 (ebrowse-progress-face): Remove obsolete faces.
11249
11250 * progmodes/flymake.el (flymake-errline, flymake-warnline):
11251 Inherit from error and warning faces respectively.
11252
11253 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
11254 Likewise.
11255 (flyspell-incorrect-face, flyspell-duplicate-face):
11256 Remove obsolete aliases.
11257
11258 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
11259
11260 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11261 Avoid infloop.
11262
11263 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11264
11265 * startup.el (argv, argi): Make lexically scoped.
11266 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
11267 * emacs-lisp/cl-macs.el: Use lexical-binding.
11268 Rename cl-bind-* to cl--bind-*.
11269 * files.el: Don't require `cl' since it doesn't use it.
11270 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
11271
11272 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11273
11274 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
11275 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
11276 instead of calling external sort utility.
11277 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
11278
11279 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11280
11281 * descr-text.el (describe-char): Mention how to insert the
11282 character, if the current input method doesn't support it.
11283 See the discussion in this thread for the details:
11284 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
11285
11286 2012-06-08 Sam Steingold <sds@gnu.org>
11287
11288 * bindings.el (global-map): Bind XF86Forward to next-buffer and
11289 XF86Back to previous-buffer.
11290 (minibuffer-local-map): Bind them to next-history-element and
11291 previous-history-element respectively.
11292 * help-mode.el (help-mode-map): Bind them to help-go-forward and
11293 help-go-back respectively.
11294 * info.el (Info-mode-map): Bind them to Info-history-forward and
11295 Info-history-back respectively.
11296 These are the keys next to Up on the ThinkPad keyboard.
11297
11298 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11299
11300 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
11301 * emacs-lisp/cl-macs.el: Provide itself.
11302 (cl--labels-convert-cache): New var.
11303 (cl--labels-convert): New function.
11304 (cl-flet, cl-labels): New implementation with new semantics, relying on
11305 lexical-binding.
11306 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
11307 (cl-closure-vars, cl--function-convert-cache)
11308 (cl--function-convert): Move from cl-macs.el.
11309 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
11310 rename by removing the "cl-" prefix.
11311 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
11312
11313 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11314
11315 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
11316 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
11317 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
11318 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
11319 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
11320 (cl-hash-table-count): Add old compatibility aliases.
11321
11322 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
11323 Use macroexpand-all-environment instead.
11324 (cl--old-macroexpand): New var.
11325 (cl--sm-macroexpand): New function.
11326 (cl-symbol-macrolet): Use it during macro expansion.
11327 (cl--function-convert-cache): New var.
11328 (cl--function-convert): New function, extracted from
11329 cl-macroexpand-all.
11330 (cl-lexical-let): Use it.
11331
11332 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
11333 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
11334 (cl-member): Remove old alias.
11335
11336 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
11337 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
11338 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
11339 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
11340 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
11341 (cl-macroexpand-cmacs): Remove var.
11342 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
11343 Use macroexpand-all instead.
11344
11345 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11346
11347 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
11348 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
11349 (macroexp-copyable-p): New functions and macros.
11350 * emacs-lisp/edebug.el (edebug-unwrap):
11351 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
11352 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
11353 (pcase--let*): Remove.
11354 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
11355 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
11356 macroexp-const-p instead.
11357 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
11358
11359 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
11360 instead of "cl-" for internal definitions. Use macroexp-const-p.
11361 (cl-old-bc-file-form): Remove var.
11362 (cl-const-exprs-p): Remove fun.
11363 (cl-labels, cl-macrolet): Use backquote.
11364 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
11365 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
11366 (cl-define-setf-expander): Rename from cl-define-setf-method.
11367 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
11368
11369 * international/mule-cmds.el: Don't require CL.
11370 (view-hello-file): Don't use `letf'.
11371
11372 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11373
11374 * tmm.el (tmm-prompt): Use string-prefix-p.
11375 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
11376 (tmm-add-prompt): Use minibuffer-completion-help.
11377 (tmm-delete-map): Remove.
11378
11379 * subr.el (kbd): Make it its own function.
11380
11381 2012-06-07 Stefan Merten <smerten@oekonux.de>
11382
11383 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
11384 Silence compiler warnings. Fix versions.
11385 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
11386 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
11387 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
11388 (rst-package-emacs-version-alist): Correct Emacs version to
11389 represent major merge with upstream.
11390 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
11391
11392 2012-06-06 Glenn Morris <rgm@gnu.org>
11393
11394 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
11395 Only print environment variables if set.
11396
11397 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11398
11399 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
11400 (macroexp--cons): Rename from maybe-cons.
11401 (macroexp--accumulate): Rename from macroexp-accumulate.
11402 (macroexp--all-forms): Rename from macroexpand-all-forms.
11403 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
11404 (macroexp--expand-all): Rename from macroexpand-all-1.
11405
11406 2012-06-06 Sam Steingold <sds@gnu.org>
11407
11408 * calendar/calendar.el (calendar-in-read-only-buffer):
11409 Call `special-mode' to enable the standard read-only keybindings.
11410
11411 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11412
11413 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
11414 with "loading" messages (bug#11635).
11415
11416 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
11417
11418 * files.el (enable-remote-dir-locals): New option.
11419 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
11420
11421 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11422 Ensure, that the temp directory is local.
11423
11424 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
11425 `temporary-file-directory'.
11426
11427 * progmodes/python.el (python-send-region): Ensure, that the
11428 temporary file is created also in the remote case.
11429
11430 2012-06-06 Glenn Morris <rgm@gnu.org>
11431
11432 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
11433 (vc-rcs-update-changelog): Use it.
11434
11435 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
11436
11437 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
11438 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
11439 (vc-sccs-diff): Replace use of the external vcdiff script.
11440
11441 2012-06-05 Glenn Morris <rgm@gnu.org>
11442
11443 * ledit.el: Move to obsolete/.
11444
11445 2012-06-05 Sam Steingold <sds@gnu.org>
11446
11447 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
11448 patch (Bug#11140).
11449
11450 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11451
11452 * emacs-lisp/cust-print.el: Move to obsolete.
11453
11454 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
11455 compiler-macro expansion.
11456
11457 Add native compiler-macro support.
11458 * emacs-lisp/macroexp.el (macroexpand-all-1):
11459 Support compiler-macros directly. Properly follow aliases and apply
11460 the compiler macros more thoroughly.
11461 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
11462 macroexpand now properly follows aliases.
11463 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
11464 (cl-compiler-macroexpand): Use new prop.
11465 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
11466
11467 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
11468
11469 2012-06-05 Martin Rudalics <rudalics@gmx.at>
11470
11471 * window.el (get-lru-window, get-mru-window, get-largest-window):
11472 New argument NOT-SELECTED to avoid picking the selected window.
11473 (window--display-buffer-1, window--display-buffer-2): Replace by
11474 new function window--display-buffer
11475 (display-buffer-same-window, display-buffer-reuse-window)
11476 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11477 Use window--display-buffer.
11478 (display-buffer-use-some-window): Remove temporary dedication
11479 hack by calling get-lru-window and get-largest-window with
11480 NOT-SELECTED argument non-nil. Call window--display-buffer.
11481
11482 2012-06-05 Glenn Morris <rgm@gnu.org>
11483
11484 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11485 Replace external vcdiff script.
11486
11487 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11488
11489 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11490
11491 2012-06-04 Chong Yidong <cyd@gnu.org>
11492
11493 * image.el (imagemagick-types-inhibit): Revert last change.
11494 Add INFO and M.
11495 (imagemagick-enabled-types): Remove CIN and EPS*.
11496
11497 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11498
11499 * emacs-lisp/cl-lib.el: Rename from cl.el.
11500 * emacs-lisp/cl.el: New compatibility file.
11501 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11502 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11503 to obey the "cl-" prefix.
11504 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11505
11506 2012-06-03 Glenn Morris <rgm@gnu.org>
11507
11508 * emacs-lisp/authors.el (authors-aliases): Addition.
11509
11510 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11511 Fix :version.
11512
11513 2012-06-03 Stefan Merten <smerten@oekonux.de>
11514
11515 * textmodes/rst.el: Add comments.
11516 (rst-transition, rst-adornment): New faces.
11517 (rst-adornment-faces-alist): Make default safe to reevaluate.
11518 Fixes
11519 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11520 Improve customization tags.
11521 (rst-define-level-faces): Clarify meaning.
11522
11523 2012-06-03 Chong Yidong <cyd@gnu.org>
11524
11525 * progmodes/compile.el (compilation-mode-line-fail)
11526 (compilation-mode-line-run, compilation-mode-line-exit):
11527 New faces.
11528 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11529
11530 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
11531
11532 * progmodes/which-func.el (which-func-update-ediff-windows):
11533 New function. Use it in ediff-select-hook (Bug#11478).
11534
11535 2012-06-03 Chong Yidong <cyd@gnu.org>
11536
11537 * bindings.el: Remove explicit help text from format-mode-line.
11538 It is now supplied by mode-line-default-help-echo.
11539 (mode-line-front-space, mode-line-end-spaces)
11540 (mode-line-misc-info): New variables.
11541 (mode-line-modes, mode-line-position): Move the default value to
11542 the variable definition.
11543 (mode-line-default-help-echo): New defcustom.
11544 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11545 (mode-line-modified-help-echo): New functions.
11546 (mode-line-mule-info, mode-line-modified): Use them.
11547 (mode-line-eol-desc, propertized-buffer-identification):
11548 Consistency fixes for help text.
11549 (mode-line-coding-system-map): Allow using mouse-3 to invoke
11550 set-buffer-file-coding-system (Bug#289).
11551 (mode-line-mule-info-help-echo): Update help text.
11552
11553 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11554
11555 * simple.el (execute-extended-command): Set real-this-command
11556 (bug#11506).
11557
11558 2012-06-02 Chong Yidong <cyd@gnu.org>
11559
11560 Remove incorrect uses of "modeline" in comments, docstrings, and
11561 function/variable names (Bug#10329).
11562
11563 * cus-edit.el (mode-line):
11564 * dframe.el (dframe-mouse-hscroll):
11565 * emacs-lisp/re-builder.el:
11566 * emacs-lisp/easy-mmode.el (define-minor-mode):
11567 * frame.el (set-frame-name):
11568 * help.el (lookup-minor-mode-from-indicator):
11569 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11570 * progmodes/cc-cmds.el (c-toggle-auto-newline)
11571 (c-toggle-hungry-state):
11572 * progmodes/antlr-mode.el (antlr-language-alist):
11573 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11574 * progmodes/vhdl-mode.el (vhdl-mode):
11575 * progmodes/which-func.el (which-func, which-func-cleanup-function):
11576 * term/ns-win.el (ns-face-at-pos):
11577 * term/sup-mouse.el (sup-mouse-report):
11578 * textmodes/flyspell.el (flyspell-mode-line-string):
11579 * textmodes/ispell.el (ispell-highlight-face):
11580 * textmodes/reftex-global.el:
11581 * vc/vc-arch.el (vc-arch-mode-line-string):
11582 * vc/vc-cvs.el (vc-cvs-mode-line-string):
11583 * vc/vc-git.el (vc-git-mode-line-string):
11584 * vc/vc-hooks.el (vc-display-status)
11585 (vc-default-mode-line-string):
11586 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11587
11588 * ansi-color.el (ansi-color-faces-vector): Change default faces.
11589
11590 * dired.el (dired-sort-set-mode-line): Rename from
11591 dired-sort-set-modeline. All callers changed.
11592
11593 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11594 eshell-status-in-modeline.
11595
11596 * foldout.el (foldout-mode-line-string): Rename from
11597 foldout-modeline-string. All callers changed.
11598 (foldout-update-mode-line): Rename from foldout-update-modeline.
11599
11600 * subr.el (redraw-modeline): Make into obsolete alias.
11601
11602 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11603 timeclock-modeline-display. Make old name an alias.
11604 (timeclock-update-mode-line): Likewise. All callers changed.
11605 (timeclock-mode-line-display): No need to check before using
11606 add-hook.
11607 (timeclock-relative, timeclock-day-over-hook)
11608 (timeclock-use-elapsed, timeclock-mode-string)
11609 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11610
11611 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11612 crisp-mode-modeline-string.
11613
11614 * play/solitaire.el (solitaire-build-mode-line): Rename from
11615 solitaire-build-modeline. All callers changed.
11616
11617 * play/zone.el (zone-hiding-mode-line): Rename from
11618 zone-hiding-modeline. All callers changed.
11619 (zone): Remove unusued `modeline-hidden-level' property.
11620
11621 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11622 xscheme-modeline-initialize. All callers changed.
11623
11624 * strokes.el (strokes-lighter): Rename from
11625 strokes-modeline-string.
11626
11627 * textmodes/sgml-mode.el (html-face-tag-alist)
11628 (html-tag-face-alist): Use mode-line face instead of obsolete
11629 alias modeline.
11630
11631 2012-06-02 Stefan Merten <smerten@oekonux.de>
11632
11633 * textmodes/rst.el: Always require `cl'.
11634 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11635
11636 2012-06-02 Chong Yidong <cyd@gnu.org>
11637
11638 * image.el (imagemagick-enabled-types): Rename from
11639 imagemagick-types-enable. Add many more types.
11640 (imagemagick-types-inhibit): Change default to nil.
11641 (imagemagick-filter-types): Caller changed.
11642
11643 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11644
11645 * emacs-lisp/cl-macs.el: Use backquotes.
11646 (cl-transform-function-property): Use eval-and-compile rather than
11647 abusing `require'.
11648 (defstruct): Use declare-function instead of with-no-warnings.
11649
11650 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11651 (byte-compile-output-docform): Re-add the print-circle bindings.
11652 (byte-compile-fix-header): Use #$ just because it's shorter.
11653 (byte-compile-output-file-form): Remove defun/defmacro.
11654
11655 2012-06-01 Martin Rudalics <rudalics@gmx.at>
11656
11657 * simple.el (choose-completion): Remove now obsolete binding for
11658 owindow.
11659
11660 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
11661
11662 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11663 in order to avoid "Stack overflow in regexp matcher".
11664
11665 2012-05-31 Glenn Morris <rgm@gnu.org>
11666
11667 * image.el: For clarity, call imagemagick-register-types at
11668 top-level, rather than relying on a custom :initialize.
11669 (imagemagick-types-enable): New option. (Bug#11557)
11670 (imagemagick-filter-types): New function. (Bug#7406)
11671 (imagemagick-register-types): Use imagemagick-filter-types.
11672 If disabling support, remove elements altogether rather
11673 than using an impossible regexp.
11674 (imagemagick-types-inhibit): Give it the default init function.
11675
11676 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11677
11678 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11679 Handle arbitrary file name lengths (Bug#11585).
11680
11681 2012-05-31 Martin Rudalics <rudalics@gmx.at>
11682
11683 * desktop.el (desktop-read): Clear previous and next buffers for
11684 all windows and bury *Messages* buffer (bug#11556).
11685
11686 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11687
11688 Add `declare' for `defun'. Align `defmacro's with it.
11689 * emacs-lisp/easy-mmode.el (define-minor-mode)
11690 (define-globalized-minor-mode): Don't autoload the var definitions.
11691 * emacs-lisp/byte-run.el: Use lexical-binding.
11692 (defun-declarations-alist, macro-declarations-alist): New vars.
11693 (defmacro, defun): Use them.
11694 (make-obsolete, define-obsolete-function-alias)
11695 (make-obsolete-variable, define-obsolete-variable-alias):
11696 Use `declare'.
11697 (macro-declaration-function): Mark obsolete.
11698 * emacs-lisp/autoload.el: Use lexical-binding.
11699 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
11700
11701 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11702
11703 * textmodes/ispell.el (ispell-with-no-warnings):
11704 Define as a macro.
11705 (ispell-kill-ispell, ispell-change-dictionary):
11706 Use `called-interactively-p' for Emacs instead of obsolete
11707 `interactive-p'.
11708
11709 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11710
11711 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11712 (macro-declaration-function): Move var from C code.
11713 (macro-declaration-function): Define function with defalias.
11714 * emacs-lisp/macroexp.el (macroexpand-all-1):
11715 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11716 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11717 defun/defmacro any more.
11718 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11719 Provide fallback for unknown arglist.
11720 (byte-compile-arglist-warn): Change calling convention.
11721 (byte-compile-output-file-form): Move print-vars binding.
11722 (byte-compile-output-docform): Simplify accordingly.
11723 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11724 (byte-compile-defmacro-declaration): Remove.
11725 (byte-compile-file-form-defmumble): Generalize to defalias.
11726 (byte-compile-output-as-comment): Return byte-positions.
11727 Simplify callers accordingly.
11728 (byte-compile-lambda): Use `assert'.
11729 (byte-compile-defun, byte-compile-defmacro): Remove.
11730 (byte-compile-file-form-defalias):
11731 Use byte-compile-file-form-defmumble.
11732 (byte-compile-defalias-warn): Remove.
11733
11734 2012-05-29 Stefan Merten <smerten@oekonux.de>
11735
11736 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11737 possible. Fix authors. Improve comments. Improve loading of `cl'.
11738
11739 (rst-mode-abbrev-table): Merge definition.
11740 (rst-mode): Make sure `font-lock-defaults' is buffer local.
11741 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11742
11743 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
11744
11745 * calendar/icalendar.el
11746 (icalendar-export-region): Export UID properly.
11747
11748 2012-05-29 Leo Liu <sdl.web@gmail.com>
11749 * calendar/icalendar.el (icalendar-import-format):
11750 Add `icalendar-import-format-uid' (Bug#11525).
11751 (icalendar-import-format-uid): New.
11752 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11753 Export UID.
11754
11755 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11756
11757 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11758 different alternative patterns.
11759 (pcase-codegen): Be more careful to preserve identity.
11760 (pcase--u1): Don't forget to mark vars as used.
11761
11762 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11763 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11764 (byte-compile-from-buffer): ...rather than here.
11765
11766 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11767 functions from byte-compile-function-environment.
11768
11769 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11770
11771 * window.el (window-deletable-p): Avoid deleting the root window
11772 of a frame with an active minibuffer.
11773
11774 2012-05-29 Martin Rudalics <rudalics@gmx.at>
11775
11776 * simple.el (choose-completion): Use quit-window (Bug#11567).
11777
11778 2012-05-29 Chong Yidong <cyd@gnu.org>
11779
11780 * whitespace.el (whitespace-cleanup): Fix usage of
11781 whitespace-empty-at-bob-regexp (Bug#11492).
11782
11783 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11784
11785 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11786 revert (Bug#11488).
11787
11788 2012-05-29 Juri Linkov <juri@jurta.org>
11789
11790 * isearch.el (isearch-mode-map): Bind `M-s _' to
11791 `isearch-toggle-symbol'. Bind `M-s c' to
11792 `isearch-toggle-case-fold'.
11793 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11794 (isearch-forward): Add `M-s _' to the docstring.
11795 (isearch-forward-symbol, isearch-toggle-case-fold)
11796 (isearch-symbol-regexp): New functions. (Bug#11381)
11797
11798 2012-05-29 Juri Linkov <juri@jurta.org>
11799
11800 * isearch.el (isearch-word): Add docstring. (Bug#11381)
11801 (isearch-occur, isearch-search-and-update): If `isearch-word' is
11802 a function, call it to get the regexp.
11803 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11804 property `isearch-message-prefix' instead of the string "word ".
11805 (isearch-search-fun-default): For the case of `isearch-word',
11806 return a lambda that calls re-search-forward/re-search-backward
11807 with a regexp returned by `word-search-regexp' or by the function
11808 in `isearch-word'.
11809
11810 2012-05-29 Juri Linkov <juri@jurta.org>
11811
11812 * isearch.el (isearch-search-fun-default): New function.
11813 (isearch-search-fun): Move default part to the new function
11814 `isearch-search-fun-default'.
11815 (isearch-search-fun-function): Set the default value to
11816 `isearch-search-fun-default'. (Bug#11381)
11817
11818 * comint.el (comint-history-isearch-end):
11819 Use `isearch-search-fun-default'.
11820 (comint-history-isearch-search): Use `isearch-search-fun-default'
11821 and remove spacial case for `isearch-word'.
11822 (comint-history-isearch-wrap): Remove spacial case for
11823 `isearch-word'.
11824
11825 * hexl.el (hexl-isearch-search-function):
11826 Use `isearch-search-fun-default'.
11827
11828 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11829 Use `word-search-regexp' for `isearch-word'.
11830
11831 * misearch.el (multi-isearch-search-fun):
11832 Use `isearch-search-fun-default'.
11833
11834 * simple.el (minibuffer-history-isearch-search):
11835 Use `isearch-search-fun-default' and remove spacial case for
11836 `isearch-word'.
11837 (minibuffer-history-isearch-wrap): Remove spacial case for
11838 `isearch-word'.
11839
11840 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11841 Remove spacial case for `isearch-word'.
11842 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11843
11844 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11845
11846 Decrease XEmacs incompatibilities.
11847 * textmodes/flyspell.el (flyspell-check-pre-word-p):
11848 Use `string-match'.
11849 (flyspell-delete-region-overlays): Use alternative definition for
11850 XEmacs.
11851 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11852 (flyspell-word): Use `process-kill-without-query' if XEmacs.
11853 (flyspell-mode-on): Use `interactive-p' if XEmacs.
11854 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11855 `define-obsolete-face-alias' under XEmacs, but old method.
11856
11857 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11858 `with-no-warnings' definition or Emacs alias.
11859 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11860 (ispell-word): Do not use `region-p' if XEmacs.
11861
11862 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11863
11864 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11865 Check for `ispell-dictionary-base-alist' instead of full
11866 `ispell-dictionary-alist'.
11867 (ispell-init-process): Show spellchecker when starting new Ispell
11868 process.
11869
11870 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11871
11872 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11873 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11874
11875 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
11876
11877 * version.el (motif-version-string, gtk-version-string)
11878 (ns-version-string): Declare.
11879
11880 2012-05-27 Juri Linkov <juri@jurta.org>
11881
11882 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11883 after the `eval-defun-1' specialcaseing
11884 like in `edebug-eval-defun' (bug#10181).
11885
11886 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11887 like in `eval-defun-1'.
11888
11889 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11890
11891 * mail/sendmail.el (mail-yank-region):
11892 Recognize rmail-yank-current-message in addition to insert-buffer.
11893 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11894 a *mail* buffer created through rmail-start-mail with sendmail as
11895 mail-user-agent.
11896
11897 2012-05-27 Chong Yidong <cyd@gnu.org>
11898
11899 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11900 Default to 256 (Bug#11267).
11901
11902 * help.el (describe-mode): Doc fix.
11903
11904 2012-05-26 Glenn Morris <rgm@gnu.org>
11905
11906 * w32-fns.el (w32-init-info): Remove.
11907 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11908
11909 * info.el (info-initialize): For self-contained NS builds, put the
11910 included info/ directory at the front. (Bug#2791)
11911
11912 * paths.el (Info-default-directory-list): Make it a defcustom,
11913 mainly so that we can use custom-initialize-delay.
11914
11915 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11916
11917 * subr.el (buffer-has-markers-at): Mark obsolete.
11918
11919 * subr.el (lambda): Use declare.
11920
11921 * emacs-lisp/lisp-mode.el (lambda):
11922 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11923
11924 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11925
11926 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
11927
11928 2012-05-26 Glenn Morris <rgm@gnu.org>
11929
11930 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11931
11932 2012-05-25 Glenn Morris <rgm@gnu.org>
11933
11934 * paths.el: Remove no-byte-compile.
11935 * loadup.el: No need to load paths.el uncompiled.
11936
11937 * image.el (imagemagick-types-inhibit): Doc fix.
11938
11939 * version.el: Remove no-byte-compile and associated formatting.
11940 * loadup.el: No need to load version.el uncompiled. AFAICS, this
11941 is ancient code from when there was an "inc-vers.el".
11942
11943 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11944
11945 * progmodes/gdb-mi.el: Minor style changes.
11946 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11947 Turn into minor modes.
11948 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11949 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11950 (gdb-shell): Remove unneeded let-binding.
11951 (gdb-get-many-fields): Eliminate O(n²) behavior.
11952
11953 2012-05-25 Eli Zaretskii <eliz@gnu.org>
11954
11955 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11956 platforms that don't link in fontset.c.
11957
11958 2012-05-25 Juri Linkov <juri@jurta.org>
11959
11960 Use the same diff color scheme as in modern VCSes (bug#10181).
11961
11962 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11963 to avoid confusion with `diff-added' that now uses green colors.
11964 (diff-removed): Use shades of red.
11965 (diff-added): Use shades of green.
11966 (diff-changed): Leave just the yellow color.
11967 (diff-use-changed-face): New variable.
11968 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11969 how to highlight context diff changes.
11970 (diff-refine-change): Use shades of yellow.
11971 (diff-refine-removed): New face that uses shades of red.
11972 (diff-refine-added): New face that uses shades of green.
11973 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11974 `diff-refine-removed' in the call to `smerge-refine-subst'
11975 depending on the value of `diff-use-changed-face'.
11976
11977 * vc/smerge-mode.el (smerge-mine): Use shades of red.
11978 (smerge-other): Use shades of green.
11979 (smerge-base): Use shades of yellow.
11980 (smerge-refined-change): Empty face.
11981 (smerge-refined-removed): New face that uses shades of red.
11982 (smerge-refined-added): New face that uses shades of green.
11983 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
11984 args `props-r' and `props-a', and use them. Doc fix.
11985 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11986 on its value use different faces `smerge-refined-change',
11987 `smerge-refined-removed', `smerge-refined-added' in the call to
11988 `smerge-refine-subst'.
11989
11990 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11991 Add face condition `min-colors 88' with shades of red.
11992 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11993 `min-colors 88' with shades of green.
11994 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11995 `min-colors 88' with shades of yellow.
11996
11997 2012-05-24 Glenn Morris <rgm@gnu.org>
11998
11999 * paths.el (prune-directory-list, remote-shell-program): Move to...
12000 * files.el (prune-directory-list, remote-shell-program): ...here.
12001 For the latter, delay initialization, prefer ssh, just search PATH.
12002
12003 * paths.el (term-file-prefix): Move to faces.el (the only user).
12004 * faces.el (term-file-prefix): Move here, make it a defcustom.
12005
12006 * paths.el (news-directory, news-path, news-inews-program):
12007 Move to gnus/nnspool.el.
12008
12009 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
12010
12011 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
12012 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
12013 Make the latter a defcustom, with a delayed initialization.
12014
12015 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
12016 These were deleted from Gnus itself late 2010.
12017
12018 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12019
12020 * progmodes/which-func.el (which-func-ff-hook):
12021 Check against user-error, not error.
12022
12023 * emacs-lisp/edebug.el (top): Do not load or set up loading of
12024 cl-specs.el, which no longer exists.
12025
12026 2012-05-22 Glenn Morris <rgm@gnu.org>
12027
12028 * info.el (info-emacs-bug): New command.
12029 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
12030 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
12031
12032 2012-05-21 Glenn Morris <rgm@gnu.org>
12033
12034 * makefile.w32-in (update-subdirs-SH):
12035 * Makefile.in (update-subdirs): Update for moved update-subdirs.
12036
12037 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
12038
12039 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
12040
12041 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12042 Simplify Maven regexp, and make sure the file can't start with a space
12043 (bug#11517).
12044
12045 2012-05-21 Glenn Morris <rgm@gnu.org>
12046
12047 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
12048 Scrap superfluous subshells.
12049
12050 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
12051
12052 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
12053 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
12054
12055 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
12056
12057 * calc/calc.el (calc-ensure-consistent-units): New variable.
12058
12059 * calc/calc-units.el (math-consistent-units-p)
12060 (math-check-unit-consistency): New functions.
12061 (calc-quick-units, calc-convert-units):
12062 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
12063 is non-nil.
12064 (calc-extract-units): Fix typo.
12065
12066 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
12067
12068 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
12069
12070 * textmodes/flyspell.el: Commenting style, plus code simplifications.
12071 (flyspell-default-deplacement-commands): Don't spell check after
12072 repeated window/frame switches (e.g. triggered by mouse-movement).
12073 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
12074 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
12075 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
12076 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
12077 Remove unused vars.
12078 (flyspell-get-casechars, flyspell-get-not-casechars):
12079 Simplify; Don't bother removing a ] just to add it back.
12080 * textmodes/ispell.el (ispell-program-name): Use executable-find.
12081
12082 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12083
12084 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
12085 New functions.
12086 (math-function-table): Add support for more C functions.
12087
12088 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12089
12090 * textmodes/flyspell.el (flyspell-check-pre-word-p)
12091 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
12092 Protect delay handling for otherchars against empty otherchars.
12093
12094 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
12095
12096 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
12097 their respective macro declarations.
12098 * skeleton.el (define-skeleton):
12099 * progmodes/compile.el (define-compilation-mode):
12100 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
12101 (define-ibuffer-filter):
12102 * emacs-lisp/generic.el (define-generic-mode):
12103 * emacs-lisp/easy-mmode.el (define-minor-mode)
12104 (define-globalized-minor-mode):
12105 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
12106 * emacs-lisp/byte-run.el (defsubst):
12107 * custom.el (deftheme): Add doc-string metadata.
12108
12109 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12110
12111 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
12112
12113 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12114
12115 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
12116
12117 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
12118 * emacs-lisp/cl-macs.el: Idem.
12119 * emacs-lisp/cl-specs.el: Remove.
12120
12121 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12122
12123 Minor renaming of internal CL functions and variables.
12124 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
12125 (cl--position): Rename from cl-position.
12126 (cl--delete-duplicates): Rename from cl-delete-duplicates.
12127 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
12128 (cl--random-state): Rename from *random-state*.
12129
12130 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12131
12132 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
12133 parens around the arg list (bug#11499).
12134
12135 2012-05-17 Juri Linkov <juri@jurta.org>
12136
12137 * isearch.el (word-search-regexp, word-search-backward)
12138 (word-search-forward, word-search-backward-lax)
12139 (word-search-forward-lax): Move functions from search.c
12140 (bug#10145, bug#11381).
12141
12142 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12143
12144 * textmodes/flyspell.el (flyspell-check-pre-word-p)
12145 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
12146 Delay for otherchars as for normal word components.
12147
12148 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
12149
12150 * minibuffer.el (completion--sifn-requote): Fix last change.
12151 (minibuffer-local-must-match-filename-map):
12152 Move define-obsolete-variable-alias before its var.
12153
12154 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12155
12156 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
12157
12158 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
12159 behavior.
12160 (completion--string-equal-p): New function.
12161 (completion--twq-all): Use it to get better assertion failure data.
12162
12163 Only handle ".." and '..' quoting in shell-mode (bug#11466).
12164 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
12165 (shell--requote-argument): New functions.
12166 (shell-completion-vars): Use them.
12167 (shell--parse-pcomplete-arguments): Rename from
12168 shell-parse-pcomplete-arguments.
12169 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
12170 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
12171 Obey comint-file-name-quote-list.
12172
12173 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
12174 (smie-indent-keyword): Use it.
12175
12176 2012-05-14 Stefan Merten <smerten@oekonux.de>
12177
12178 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
12179
12180 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
12181
12182 * net/rlogin.el (rlogin-mode-map): Fix last change.
12183
12184 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
12185
12186 * mail/smtpmail.el (smtpmail-send-command): Send the command and
12187 the following \r\n using a single `process-send-string', since the
12188 Lotus SMTP server refuses to accept any commands if they are sent
12189 with two `process-send-string's (Bug#11444).
12190
12191 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
12192
12193 * shell.el (shell-parse-pcomplete-arguments):
12194 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
12195
12196 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
12197
12198 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
12199 (image-transform-scale, image-transform-right-angle-fudge): New vars.
12200 (image-transform-width, image-transform-fit-width): New functions.
12201 (image-transform-properties): Use them.
12202 (image-transform-check-size): New function.
12203 (image-toggle-display-image): Use it (for testing).
12204 (image-transform-set-rotation): Reduce angle mod 360.
12205 Delete obsolete comment.
12206
12207 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
12208
12209 * image-mode.el: Fix scaling (bug#11399).
12210 (image-transform-resize): Doc fix.
12211 (image-transform-properties): Default scale is 1 and height should
12212 be an integer.
12213
12214 2012-05-13 Johan Bockgård <bojohan@gnu.org>
12215
12216 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
12217 than hard-coding `car', to fix misbehavior when moving forward.
12218
12219 2012-05-13 Chong Yidong <cyd@gnu.org>
12220
12221 * emacs-lisp/tabulated-list.el (tabulated-list-format)
12222 (tabulated-list-entries, tabulated-list-padding)
12223 (tabulated-list-sort-key): Make permanent-local.
12224
12225 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
12226 (electric-buffer-list): Put electric buffer menu
12227 command descriptions in this docstring, instead of the docstring
12228 of electric-buffer-menu-mode. Code cleanups.
12229 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
12230 Electric-buffer-menu-mode.
12231 (electric-buffer-update-highlight): Minor code cleanup.
12232
12233 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
12234
12235 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
12236 (Bug#11447)
12237
12238 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
12239
12240 Move define-obsolete-variable-alias before the var's definition.
12241 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
12242 * tooltip.el (tooltip-hook):
12243 * textmodes/reftex-toc.el (reftex-toc-map):
12244 * textmodes/reftex-sel.el (reftex-select-label-map)
12245 (reftex-select-bib-map):
12246 * textmodes/reftex-index.el (reftex-index-map)
12247 (reftex-index-phrases-map):
12248 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
12249 * progmodes/meta-mode.el (meta-mode-map):
12250 * novice.el (disabled-command-hook):
12251 * loadhist.el (unload-hook-features-list):
12252 * frame.el (blink-cursor):
12253 * files.el (find-file-not-found-hooks, write-file-hooks)
12254 (write-contents-hooks):
12255 * emulation/tpu-edt.el (GOLD-map):
12256 * emacs-lock.el (emacs-lock-from-exiting):
12257 * emacs-lisp/generic.el (generic-font-lock-defaults):
12258 * emacs-lisp/chart.el (chart-map):
12259 * dos-fns.el (register-name-alist):
12260 * dired-x.el (dired-omit-files-p):
12261 * desktop.el (desktop-enable):
12262 * cus-edit.el (custom-mode-hook):
12263 * buff-menu.el (buffer-menu-mode-hook):
12264 * bookmark.el (bookmark-read-annotation-text-func)
12265 (bookmark-exit-hooks):
12266 * allout.el (allout-mode-deactivate-hook)
12267 (allout-exposure-change-hook, allout-structure-added-hook)
12268 (allout-structure-deleted-hook, allout-structure-shifted-hook):
12269 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
12270 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
12271 comes before the corresponding variable's definition.
12272
12273 2012-05-12 Chong Yidong <cyd@gnu.org>
12274
12275 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
12276 (Buffer-menu-mouse-select): Restore function (Bug#11459).
12277 (Buffer-menu-mode-map): Bind it.
12278 (Buffer-menu--pretty-name): Add a mouse-face property.
12279
12280 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
12281
12282 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
12283 (prolog-upper-case-string, prolog-lower-case-string)
12284 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
12285 (prolog-use-smie, prolog-smie-grammar): New vars.
12286 (prolog-smie-forward-token, prolog-smie-backward-token)
12287 (prolog-smie-rules): New funs.
12288 (prolog-comment-indent): Remove.
12289 (prolog-mode-variables): Use default comment indentation instead.
12290 Setup SMIE.
12291 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
12292 (prolog-mode): Don't call them any more.
12293 (prolog-electric-colon, prolog-electric-dash)
12294 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
12295
12296 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
12297
12298 * minibuffer.el (completion--twq-all): Again, allow case differences.
12299
12300 * term.el: Move keymap initialization code to be more idiomatic.
12301 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
12302 (term-terminal-menu): Move initialization into declaration.
12303 (term-escape-char): Let the user set it in her .emacs.
12304
12305 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
12306 Provide SMIE-based indentation (not enabled by default yet).
12307 (sh-mode-map): Don't bind electric keys.
12308 Use electric-pair-mode instead of skeleton-pair.
12309 (sh-assignment-regexp): Fit within 80 columns.
12310 (sh-indent-supported): Specify actual shell name instead of boolean.
12311 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
12312 (sh-maybe-here-document): Use it. Make obsolete.
12313 (sh-electric-here-document-mode) New minor mode.
12314 (sh-mode): Use it. Don't set sh-indent-supported-here here.
12315 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
12316 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
12317 (sh-smie-rc-grammar, sh-use-smie): New vars.
12318 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
12319 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
12320 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
12321 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
12322 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
12323 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
12324 (sh-set-shell): Use smie-setup if requested.
12325
12326 * term.el (term-set-escape-char): Properly set term-escape-char.
12327 See http://stackoverflow.com/questions/10524656.
12328
12329 2012-05-10 Chong Yidong <cyd@gnu.org>
12330
12331 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
12332 Use url-generic-parse-url, and handle host names and Windows
12333 filenames properly.
12334 (ffap-url-unwrap-remote): Use url-generic-parse-url.
12335 (ffap-url-unwrap-remote): Accept list values, specifying a list of
12336 URL schemes to work on.
12337 (ffap--toggle-read-only): New function.
12338 (ffap-read-only, ffap-read-only-other-window)
12339 (ffap-read-only-other-frame): Use it.
12340 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
12341 necessary for ffap-url-unwrap-remote.
12342
12343 2012-05-10 Dave Abrahams <dave@boostpro.com>
12344
12345 * cus-start.el (create-lockfiles): Add it.
12346
12347 2012-05-09 Chong Yidong <cyd@gnu.org>
12348
12349 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
12350 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
12351
12352 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12353
12354 * shell.el (shell-completion-vars): Fix last change (bug#11348).
12355
12356 2012-05-09 Chong Yidong <cyd@gnu.org>
12357
12358 * ansi-color.el (ansi-color-process-output): Check for validity of
12359 comint-last-output-start before using it. This avoids a bad
12360 interaction with gdb-mi's input/output buffer.
12361
12362 2012-05-09 Glenn Morris <rgm@gnu.org>
12363
12364 * files.el (dir-locals-read-from-file):
12365 Mention dir-locals in any error message.
12366
12367 2012-05-09 Chong Yidong <cyd@gnu.org>
12368
12369 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
12370 package (Bug#11410).
12371
12372 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
12373 variables into description.
12374
12375 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12376
12377 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
12378 shell-delimiter-argument-list (bug#11348).
12379 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
12380
12381 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
12382
12383 * textmodes/rst.el: Silence byte-compiler warnings.
12384 (rst-re-alist, rst-reset-section-caches): Move around.
12385 (rst-re): Use `characterp', not `char-valid-p'.
12386 (font-lock-beg, font-lock-end): Declare.
12387
12388 * progmodes/idlw-shell.el (specs): Remove reference to deleted
12389 variable `idlwave-shell-activate-alt-keybindings' and simplify.
12390
12391 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
12392
12393 2012-05-08 Glenn Morris <rgm@gnu.org>
12394
12395 * files.el (auto-mode-alist): Treat ".make" like ".mk".
12396
12397 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12398
12399 * vc/log-edit.el: Add GNU coding standards highlighting.
12400 (log-edit-font-lock-gnu-style)
12401 (log-edit-font-lock-gnu-keywords): New vars.
12402 (log-edit-font-lock-keywords): New fun.
12403 (log-edit-mode): Don't fold case in font-lock.
12404 (log-edit-font-lock-keywords): Do not assume case-folding.
12405
12406 * imenu.el: Misc cleanup. Make docstrings out of comments.
12407 Use lexical-binding.
12408 (imenu--index-alist, imenu--last-menubar-index-alist)
12409 (imenu-menubar-modified-tick): Use defvar-local.
12410 (imenu--split-menu): Remove unused var.
12411 (imenu--cleanup-seen): Declare as global.
12412 (imenu--cleanup): Use dolist.
12413
12414 * subr.el (defvar-local): Add debug spec and doc-string position.
12415
12416 2012-05-08 Glenn Morris <rgm@gnu.org>
12417
12418 * language/burmese.el, language/cham.el, language/czech.el:
12419 * language/english.el, language/georgian.el, language/greek.el:
12420 * language/japanese.el, language/khmer.el, language/korean.el:
12421 * language/lao.el, language/misc-lang.el, language/romanian.el:
12422 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
12423 * language/thai.el, language/utf-8-lang.el:
12424 Remove no-byte-compile setting.
12425
12426 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
12427
12428 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12429
12430 * progmodes/make-mode.el (makefile-browse):
12431 Remove unnecessary interactive. (Bug#11324)
12432
12433 2012-05-07 Glenn Morris <rgm@gnu.org>
12434
12435 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
12436
12437 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
12438
12439 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12440
12441 * loadup.el: Preload newcomment.el.
12442 * newcomment.el: Move autoload-only code to toplevel.
12443
12444 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
12445 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12446 Handle new :right-align column property.
12447 (tabulated-list-print-col): Idem, plus use `display' text-property to
12448 try and preserve alignment for variable pitch fonts.
12449
12450 2012-05-07 Chong Yidong <cyd@gnu.org>
12451
12452 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
12453 (tabulated-list-use-header-line): New var.
12454 (tabulated-list-init-header): Use it.
12455 (tabulated-list-print-fake-header): New function.
12456 (tabulated-list-print): Use it.
12457 (tabulated-list-sort-button-map): Add non-header-line commands.
12458 (tabulated-list-init-header): Add column name property to basic
12459 labels as well.
12460 (tabulated-list-col-sort): Handle non-header-line button case.
12461 (tabulated-list--sort-by-column-name): Fix a corner case.
12462
12463 * buff-menu.el (list-buffers--refresh):
12464 Handle Buffer-menu-use-header-line.
12465
12466 2012-05-06 Chong Yidong <cyd@gnu.org>
12467
12468 * buff-menu.el: Convert to Tabulated List mode.
12469 (Buffer-menu-buffer+size-width): Make obsolete.
12470 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
12471 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
12472 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
12473 documentation into docstring of buffer-menu.
12474 (Buffer-menu-toggle-files-only): Add an informative message.
12475 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
12476 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
12477 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
12478 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12479 (Buffer-menu-execute, Buffer-menu-select)
12480 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12481 (Buffer-menu-bury): Use Tabulated List machinery.
12482 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12483 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12484 Delete.
12485 (list-buffers--refresh): New function.
12486 (list-buffers-noselect): Use it.
12487 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12488 (Buffer-menu--pretty-file-name): New helper functions.
12489
12490 * loadup.el: Preload tabulated-list.
12491
12492 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12493 tabulated-list-sort-column.
12494 (tabulated-list-init-header): Add the initial aligning space even
12495 if tabulated-list-padding is zero.
12496
12497 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
12498
12499 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12500 whose cdr is not a cons cell correctly (bug#11038).
12501
12502 2012-05-06 Chong Yidong <cyd@gnu.org>
12503
12504 * emacs-lisp/tabulated-list.el (tabulated-list-format):
12505 Accept additional plist in column descriptors.
12506 (tabulated-list-init-header): Obey it.
12507 (tabulated-list-get-entry): New function.
12508 (tabulated-list-put-tag): Use it. Use string-width instead of
12509 length.
12510 (tabulated-list--column-number): New function.
12511 (tabulated-list-print): Use it.
12512 (tabulated-list-print-col): New function.
12513 Set `tabulated-list-column-name' property on each column's text.
12514 (tabulated-list-print-entry): Use it.
12515 (tabulated-list-delete-entry, tabulated-list-set-col):
12516 New functions.
12517 (tabulated-list-sort-column): New command (Bug#11337).
12518
12519 * buff-menu.el (list-buffers): Move C-x C-b binding from
12520 buff-menu.el to bindings.el.
12521
12522 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12523 :advertised-binding feature.
12524
12525 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
12526
12527 * progmodes/compile.el (compilation-internal-error-properties):
12528 Calculate start position correctly when end-col is set but
12529 end-line is not (Bug#11382).
12530
12531 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
12532
12533 * man.el (Man-unindent): Use text-property-default-nonsticky to
12534 prevent untabify from inheriting face properties (Bug#11408).
12535
12536 2012-05-05 Stefan Merten <smerten@oekonux.de>
12537
12538 * textmodes/rst.el: Major merge with upstream development up to
12539 Docutils SVN r7399 / rst.el V1.2.1.
12540
12541 Clarify maintainership and authors.
12542
12543 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12544 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12545 (rst-official-version, rst-official-cvs-rev, rst-version)
12546 (rst-package-emacs-version-alist): New functions and variables
12547 for version information.
12548
12549 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12550 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12551 (rst-mode-syntax-table, rst-mode): New and corrected functions
12552 and variables representing reStructuredText features.
12553
12554 (rst-re): New function for reStructuredText regexes. Use in
12555 many places.
12556
12557 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12558 (rst-mode-map): Rebind keys.
12559
12560 (rst-mode-lazy, rst-font-lock-keywords)
12561 (rst-font-lock-extend-region)
12562 (rst-font-lock-extend-region-internal)
12563 (rst-font-lock-extend-region-extend)
12564 (rst-font-lock-find-unindented-line-limit)
12565 (rst-font-lock-find-unindented-line-match)
12566 (rst-adornment-level, rst-font-lock-adornment-level)
12567 (rst-font-lock-adornment-match)
12568 (rst-font-lock-handle-adornment-pre-match-form)
12569 (rst-font-lock-handle-adornment-matcher): Major revision of
12570 font-locking. Integrate with other code. Use `jit-lock-mode'.
12571
12572 (rst-preferred-adornments, rst-adjust-hook)
12573 (rst-new-adornment-down, rst-preferred-bullets)
12574 (rst-preferred-bullets, rst-indent, rst-indent-width)
12575 (rst-indent-field, rst-indent-literal-normal)
12576 (rst-indent-literal-minimized, rst-indent-comment): Change,
12577 extend and improve customization.
12578
12579 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12580 (rst-normalize-cursor-position, rst-get-decoration)
12581 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12582 (rst-rstrip, rst-toc-insert-find-delete-contents)
12583 (rst-shift-fill-region, rst-compute-bullet-tabs)
12584 (rst-debug-print-tabs, rst-debug-mark-found)
12585 (rst-shift-region-guts, rst-shift-region-right)
12586 (rst-shift-region-left, rst-use-char-classes)
12587 (rst-font-lock-keywords-function)
12588 (rst-font-lock-indentation-point)
12589 (rst-font-lock-find-unindented-line-begin)
12590 (rst-font-lock-find-unindented-line-end)
12591 (rst-font-lock-find-unindented-line)
12592 (rst-font-lock-adornment-point, rst-font-lock-level)
12593 (rst-adornment-level-alist): Remove functions and variables.
12594
12595 (rst-compare-adornments, rst-get-adornment-match)
12596 (rst-suggest-new-adornment, rst-get-adornments-around)
12597 (rst-adornment-complete-p, rst-get-next-adornment)
12598 (rst-adjust-adornment, rst-display-adornments-hierarchy)
12599 (rst-straighten-adornments): Standardize function names to
12600 use "adornment" instead of "decoration". Correct callers.
12601 Similar standardizing in many places.
12602
12603 (rst-update-section, rst-adjust, rst-promote-region)
12604 (rst-enumerate-region, rst-bullet-list-region)
12605 (rst-repeat-last-character): Correct use of `interactive'.
12606
12607 (rst-classify-adornment, rst-find-all-adornments)
12608 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12609 (rst-find-leftmost-column, rst-repeat-last-character):
12610 Refactor functions.
12611
12612 (rst-find-title-line, rst-reset-section-caches)
12613 (rst-get-adornments-around, rst-adjust-adornment-work)
12614 (rst-arabic-to-roman, rst-roman-to-arabic)
12615 (rst-insert-list-pos, rst-insert-list-new-item)
12616 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12617 New functions.
12618
12619 (rst-all-sections, rst-section-hierarchy)
12620 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12621 New variables.
12622
12623 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12624 configuration instead of only buffer. Change where necessary.
12625
12626 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12627 (rst-shift-region, rst-adaptive-fill): New functions for
12628 indentation and filling.
12629
12630 (rst-comment-line-break, rst-comment-indent)
12631 (rst-comment-insert-comment, rst-comment-region)
12632 (rst-uncomment-region): New functions for handling comments.
12633
12634 (rst-compile): Quote shell arguments.
12635
12636 (rst-compile-pdf-preview, rst-compile-slides-preview):
12637 Delete temporary files after use.
12638
12639 2012-05-05 Glenn Morris <rgm@gnu.org>
12640
12641 * calendar/cal-html.el: Optionally include holidays in the output.
12642 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12643 (cal-html-holidays): New option.
12644 (cal-html-css-default): Add holiday entry.
12645 (holiday-in-range): Autoload it.
12646 (cal-html-htmlify-entry): Add optional class argument.
12647 (cal-html-htmlify-list): Add optional holidays argument.
12648 (cal-html-insert-agenda-days): Include holidays in the output.
12649 (cal-html-one-month): Maybe include holidays.
12650
12651 * calendar/holidays.el (holiday-in-range):
12652 Move here from cal-tex-list-holidays.
12653 * calendar/cal-tex.el (cal-tex-list-holidays):
12654 Make it an obsolete alias for holiday-in-range. Update all callers.
12655
12656 2012-05-05 Chong Yidong <cyd@gnu.org>
12657
12658 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12659 Nextstep.
12660
12661 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
12662
12663 * files.el (file-auto-mode-skip): New var.
12664 (set-auto-mode-1): Use it.
12665
12666 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12667
12668 * repeat.el: Use lexical-binding.
12669 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12670 (repeat-undo-count): Remove.
12671 (repeat):
12672 * progmodes/octave-mod.el (octave-abbrev-start):
12673 * progmodes/f90.el (f90-abbrev-start):
12674 * face-remap.el (text-scale-adjust):
12675 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12676
12677 * emacs-lisp/pcase.el (pcase--let*): New function.
12678 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12679 a bit more.
12680 (pcase--split-pred): Be more clever about ruling out overlap between
12681 a predicate and some constant pattern.
12682 (pcase--q1): Use `null' instead of (eq foo nil).
12683
12684 * subr.el (setq-local, defvar-local): New macros.
12685 (kbd): Redefine as an alias.
12686 (with-selected-window): Leave unrelated frames alone.
12687 (set-temporary-overlay-map): New function.
12688
12689 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12690
12691 * subr.el (user-error): New function.
12692 * window.el (switch-to-buffer):
12693 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12694 (smerge-match-conflict):
12695 * simple.el (previous-matching-history-element)
12696 (next-matching-history-element, goto-history-element, undo-more)
12697 (undo-start):
12698 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12699 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12700 (next-file, tags-loop-scan, list-tags, complete-tag):
12701 * progmodes/compile.el (compilation-loop):
12702 * mouse.el (mouse-minibuffer-check):
12703 * man.el (Man-bgproc-sentinel, Man-goto-page):
12704 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12705 (Info-history-forward, Info-follow-reference, Info-menu)
12706 (Info-extract-menu-item, Info-extract-menu-counting)
12707 (Info-forward-node, Info-backward-node, Info-next-menu-item)
12708 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12709 (Info-next-reference, Info-prev-reference, Info-index)
12710 (Info-index-next, Info-follow-nearest-node)
12711 (Info-copy-current-node-name):
12712 * imenu.el (imenu--make-index-alist)
12713 (imenu-default-create-index-function, imenu-add-to-menubar):
12714 * files.el (basic-save-buffer, recover-file):
12715 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12716 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12717 (checkdoc-message-text, checkdoc-defun):
12718 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12719 * cus-edit.el (customize-changed-options, customize-rogue)
12720 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12721 (custom-variable-mark-to-reset-standard)
12722 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12723 (custom-file):
12724 * completion.el (check-completion-length):
12725 * comint.el (comint-search-arg)
12726 (comint-previous-matching-input-string-position)
12727 (comint-previous-matching-input)
12728 (comint-replace-by-expanded-history-before-point, comint-send-input)
12729 (comint-copy-old-input, comint-backward-matching-input)
12730 (comint-goto-process-mark, comint-set-process-mark):
12731 * calendar/calendar.el (calendar-cursor-to-date): Use it.
12732 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12733
12734 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12735
12736 * dabbrev.el (dabbrev--ignore-case-p): New function.
12737 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12738 Use it.
12739
12740 * files.el (automount-dir-prefix): Mark as obsolete.
12741
12742 2012-05-04 Glenn Morris <rgm@gnu.org>
12743
12744 * patcomp.el, play/bruce.el: Move to obsolete/.
12745
12746 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
12747
12748 Fix minor Y10k bugs.
12749 * arc-mode.el (archive-unixdate):
12750 * autoinsert.el (auto-insert-alist):
12751 * calc/calc-forms.el (math-this-year):
12752 * emacs-lisp/copyright.el (copyright-current-year)
12753 (copyright-update-year, copyright):
12754 * tar-mode.el (tar-clip-time-string):
12755 * time.el (display-time-update):
12756 Don't assume years have 4 digits.
12757
12758 2012-05-04 Chong Yidong <cyd@gnu.org>
12759
12760 * dos-w32.el (file-name-buffer-file-type-alist)
12761 (direct-print-region-use-command-dot-com):
12762 * ffap.el (ffap-menu-regexp):
12763 * find-file.el (ff-special-constructs):
12764 * follow.el (follow-debug):
12765 * forms.el (forms--debug):
12766 * iswitchb.el (iswitchb-all-frames):
12767 * ido.el (ido-all-frames):
12768 * emacs-lisp/timer.el (timer-max-repeats):
12769 * mail/feedmail.el (feedmail-mail-send-hook)
12770 (feedmail-mail-send-hook-queued):
12771 * mail/footnote.el (footnote-signature-separator):
12772 * mail/mailabbrev.el (mail-alias-separator-string)
12773 (mail-abbrev-mode-regexp):
12774 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12775 * progmodes/idlwave.el (idlwave-libinfo-file)
12776 (idlwave-default-completion-case-is-down)
12777 (idlwave-library-routines): Convert defvars to defcustoms.
12778
12779 * mail/rmail.el (rmail-decode-mime-charset):
12780 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12781 (idlwave-shell-fix-inserted-breaks)
12782 (idlwave-shell-activate-alt-keybindings)
12783 (idlwave-shell-use-breakpoint-glyph):
12784 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12785
12786 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12787
12788 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12789
12790 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
12791
12792 * progmodes/verilog-mode.el (font-lock-keywords):
12793 Fix mis-highligting auto. Reported by Craig Barner.
12794 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12795 defines from global name space. Reported by Dan Dever.
12796 (verilog-auto-reset, verilog-auto-reset-widths)
12797 (verilog-auto-tieoff): Support using unbased numbers for
12798 AUTORESET and AUTOTIEOFF.
12799 (verilog-submit-bug-report): Update variable list.
12800 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12801 parenthesis from not matching. Reported by Michael Rytting.
12802 (verilog-auto-template-lint): Fix hash error when linting modules
12803 with no used templates.
12804 (verilog-warn, verilog-warn-error)
12805 (verilog-warn-fatal): When non-interactive report multiple
12806 warnings before exiting. Suggested by Brad Dobbie.
12807 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12808 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12809 to report unused template errors. Reported by Brad Dobbie.
12810 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12811 nets, bug438. Reported by Vns Blore.
12812 (verilog-auto-inout-module, verilog-auto-reg)
12813 (verilog-read-decls, verilog-read-sub-decls-sig)
12814 (verilog-signals-edit-wire-reg, verilog-signals-with):
12815 Fix passing of Verilog data types in ANSI input/output ports
12816 such as "output logic" into the AUTOs. Special case "wire" and
12817 "reg" for backwards compatibility presuming Verilog 2001.
12818 (verilog-auto-ascii-enum): Add "auto enum" as alias.
12819 (verilog-preprocess): Fix replication of preprocess output.
12820 Reported by Brad Dobbie.
12821 (verilog-auto-inst-interfaced-ports):
12822 Create verilog-auto-inst-interfaced-ports, bug429.
12823 Reported by Julian Gorfajn.
12824 (verilog-after-save-font-hook)
12825 (verilog-before-save-font-hook): New variable.
12826 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12827 (verilog-save-font-mods): Wrap disabling fontification, reported
12828 by David Rogoff.
12829 (verilog-do-indent, verilog-pretty-declarations-auto)
12830 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12831 Reported by Pierre-David Pfister.
12832 (verilog-set-auto-endcomments): Fix endtask auto comments outside
12833 of class declarations, bug292. Reported by Kevin Heilman.
12834 (verilog-read-decls): Fix 'parameter type' not appearing in
12835 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
12836 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12837 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
12838 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12839 Reported by David Kravitz.
12840
12841 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
12842
12843 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12844 assignment with tests in ifs and for loops.
12845 (verilog-extended-complete-re, verilog-complete-reg): Change so
12846 that DPI inport functions don't look like fuction declarations.
12847 (verilog-pretty-expr): Don't line up assignment
12848 operations to the test and increment in if and for loops
12849 (verilog-extended-complete-re, verilog-complete-reg): Change so
12850 that DPI inport functions don't look like fuction declarations.
12851
12852 2012-05-03 Kenichi Handa <handa@m17n.org>
12853
12854 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12855 decoding, and show a warning message without signaling an error
12856 (Bug#11282).
12857
12858 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12859
12860 * emacs-lisp/bytecomp.el
12861 (byte-compile-file-form-custom-declare-variable): Compile all elements,
12862 since cconv.el might have introduced :fun-body, internal-make-closure,
12863 and friends for bytecomp to handle (bug#11391).
12864 * custom.el (defcustom): Avoid ((λ ..) ..).
12865
12866 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
12867
12868 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12869
12870 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
12871
12872 * notifications.el (dbus-debug):
12873 * term/linux.el (gpm-mouse-enable):
12874 * term/screen.el (xterm-register-default-colors): Declare.
12875
12876 2012-05-02 Chong Yidong <cyd@gnu.org>
12877
12878 * cus-start.el (gc-cons-percentage, exec-suffixes)
12879 (dos-display-scancodes, dos-hyper-key, dos-super-key)
12880 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12881 (make-cursor-line-fully-visible, void-text-area-pointer)
12882 (font-list-limit): Add customization data.
12883
12884 * allout.el (allout-exposure-change-functions)
12885 (allout-structure-added-functions)
12886 (allout-structure-deleted-functions)
12887 (allout-structure-shifted-functions): Rename abnormal hooks from
12888 *-hook, and convert to defcustoms.
12889 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12890 Convert to defcustoms.
12891 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12892
12893 * allout-widgets.el: Hook callers changed.
12894
12895 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12896
12897 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12898 the yanked message in preference to the default value of
12899 buffer-file-coding-system.
12900
12901 2012-05-02 Martin Rudalics <rudalics@gmx.at>
12902
12903 * window.el (display-buffer--action-function-custom-type):
12904 Fix entry.
12905
12906 2012-05-02 Alan Mackenzie <acm@muc.de>
12907
12908 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12909
12910 2012-05-01 Glenn Morris <rgm@gnu.org>
12911
12912 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12913
12914 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
12915
12916 * cus-edit.el (custom-variable-documentation): Simplify with format.
12917
12918 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12919 Stefan Monnier <monnier@iro.umontreal.ca>
12920
12921 * simple.el (suggest-key-bindings, execute-extended-command):
12922 Move from keyboard.c.
12923
12924 2012-05-01 Chong Yidong <cyd@gnu.org>
12925
12926 * follow.el: Eliminate advice.
12927 (set-process-filter, process-filter, sit-for): Advice deleted.
12928 (follow-mode-off-hook): Obsolete hook removed.
12929 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12930 Vars deleted.
12931 (follow-auto): Use a :set function.
12932 (follow-mode): Rewritten. Don't advise process filters.
12933 (follow-switch-to-current-buffer-all, follow-scroll-up)
12934 (follow-scroll-down): Assume follow-mode is bound.
12935 (follow-comint-scroll-to-bottom)
12936 (follow-align-compilation-windows): New functions.
12937 (follow--window-sorter): New function.
12938 (follow-all-followers): Use it to explicitly sort windows by their
12939 positions; don't make assumptions about next-window order.
12940 (follow-windows-start-end, follow-delete-other-windows-and-split)
12941 (follow-calc-win-start): Doc fix.
12942 (follow-windows-aligned-p, follow-select-if-visible): Don't call
12943 vertical-motion unnecessarily.
12944 (follow-adjust-window): New function.
12945 (follow-post-command-hook): Use it.
12946 (follow-call-set-process-filter, follow-call-process-filter)
12947 (follow-intercept-process-output, follow-tidy-process-filter-alist)
12948 (follow-stop-intercept-process-output, follow-generic-filter):
12949 Functions deleted.
12950 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12951 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12952 New functions, replacing advice on scroll-bar-* commands.
12953 (follow-mwheel-scroll): New function (Bug#4112).
12954
12955 * comint.el (comint-adjust-point): New function.
12956 (comint-postoutput-scroll-to-bottom): Use it.
12957 Call follow-comint-scroll-to-bottom for Follow mode buffers.
12958
12959 2012-05-01 Glenn Morris <rgm@gnu.org>
12960
12961 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12962 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12963 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12964 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12965 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12966 Remove no-byte-compile setting.
12967
12968 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12969
12970 * minibuffer.el (completion-table-with-quoting): Fix compatibility
12971 all-completions code to not return a number in the last cdr.
12972
12973 2012-04-30 Leo Liu <sdl.web@gmail.com>
12974
12975 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12976 read-only error.
12977
12978 2012-04-29 Chong Yidong <cyd@gnu.org>
12979
12980 * follow.el (follow-calc-win-end): Rewrite to handle partial
12981 screen lines correctly (Bug#8390).
12982 (follow-avoid-tail-recenter): Minor cleanup.
12983
12984 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12985
12986 Avoid the obsolete `assoc' package.
12987 * speedbar.el (speedbar-refresh): Avoid adelete.
12988 (speedbar-file-lists): Simplify and avoid aput.
12989 * man.el (Man--sections, Man--refpages): New vars, replacing
12990 Man-sections-alist and Man-refpages-alist.
12991 (Man-build-section-alist, Man-build-references-alist):
12992 Use them; avoid aput.
12993 (Man--last-section, Man--last-refpage): New vars.
12994 (Man-follow-manual-reference): Use them.
12995 Use the `default' arg of completing-read.
12996 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
12997
12998 2012-04-27 Chong Yidong <cyd@gnu.org>
12999
13000 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
13001
13002 * startup.el (x-apply-session-resources): New function.
13003
13004 * term/ns-win.el (ns-initialize-window-system):
13005 * term/w32-win.el (w32-initialize-window-system):
13006 * term/x-win.el (x-initialize-window-system): Use it to properly
13007 set menu-bar-mode and other vars from X resources, even if the
13008 initial frame is not a window-system frame (Bug#2299).
13009
13010 * subr.el (read-key): Avoid running filter function when setting
13011 up temporary tool bar entries (Bug#9922).
13012
13013 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
13014
13015 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
13016 (Bug#11344)
13017
13018 2012-04-27 Chong Yidong <cyd@gnu.org>
13019
13020 * select.el (xselect--encode-string): New function, split from
13021 xselect-convert-to-string.
13022 (xselect-convert-to-string): Use it.
13023 (xselect-convert-to-filename, xselect-convert-to-os)
13024 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
13025 returned strings are properly encoded (Bug#11315).
13026
13027 2012-04-27 Chong Yidong <cyd@gnu.org>
13028
13029 * simple.el (delete-active-region): Move to killing custom group.
13030
13031 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
13032
13033 * progmodes/which-func.el (which-func-current): Quote %
13034 characters for mode-line processing.
13035
13036 2012-04-27 Chong Yidong <cyd@gnu.org>
13037
13038 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
13039 reaching eob (Bug#11286).
13040
13041 2012-04-27 Eli Zaretskii <eliz@gnu.org>
13042
13043 * progmodes/gdb-mi.el (gdb-control-level): New variable.
13044 (gdb): Make it buffer-local and init to zero.
13045 (gdb-control-commands-regexp): New variable.
13046 (gdb-send): Don't wrap in "-interpreter-exec console" if
13047 gdb-control-level is positive. Increment gdb-control-level
13048 whenever the command matches gdb-control-commands-regexp, and
13049 decrement it each time the command is "end". (Bug#11279)
13050
13051 2012-04-27 Martin Rudalics <rudalics@gmx.at>
13052
13053 * window.el (adjust-window-trailing-edge, enlarge-window)
13054 (shrink-window, window-resize):
13055 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
13056 windows (Bug#11276).
13057
13058 2012-04-27 Chong Yidong <cyd@gnu.org>
13059
13060 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
13061 fix "missing prefix" warning. All callers changed.
13062
13063 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
13064
13065 * emacs-lisp/assoc.el: Move to obsolete/.
13066
13067 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
13068
13069 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
13070
13071 * term/ns-win.el (ns-define-service):
13072 * progmodes/pascal.el (pascal-goto-defun):
13073 * progmodes/js.el (js--read-tab):
13074 * progmodes/etags.el (tags-lazy-completion-table):
13075 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
13076 * emacs-lisp/ewoc.el (ewoc--wrap):
13077 * emacs-lisp/assoc.el (aput, adelete, amake):
13078 * doc-view.el (doc-view-convert-current-doc):
13079 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
13080
13081 2012-04-26 Chong Yidong <cyd@gnu.org>
13082
13083 * image.el (image-type-from-buffer): Only return supported image
13084 type (Bug#9045).
13085
13086 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
13087 value, for symmetry with diff-end-of-hunk.
13088 (diff-split-hunk, diff-find-source-location)
13089 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
13090 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
13091 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
13092 compute the relevant hunk or file properly (Bug#6005).
13093 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
13094
13095 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
13096
13097 * vc/vc-mtn.el:
13098 * vc/vc-hg.el:
13099 * vc/vc-git.el:
13100 * vc/vc-dir.el:
13101 * vc/vc-cvs.el:
13102 * vc/vc-bzr.el:
13103 * vc/vc-arch.el:
13104 * vc/vc.el: Replace lexical-let by lexical-binding.
13105 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
13106 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
13107 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
13108
13109 2012-04-26 Chong Yidong <cyd@gnu.org>
13110
13111 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
13112 (diff-mode-shared-map): Bind it to / and [remap undo].
13113
13114 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
13115 (ediff-window-setup-function): Use it as the default, to set up
13116 windows based on whether the current frame is graphical (Bug#2138).
13117 (ediff-choose-window-setup-function-automatically): Make obsolete.
13118
13119 * vc/ediff-init.el: Always define ediff-pixel-width/height.
13120
13121 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13122
13123 * ffap.el: Remove old code for obsolete package.
13124 (ffap-complete-as-file-p): Remove.
13125
13126 Use completion-table-with-quoting for comint and pcomplete.
13127 * comint.el (comint--unquote&requote-argument)
13128 (comint--unquote-argument, comint--requote-argument): New functions.
13129 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
13130 (comint-quote-filename): Use regexp-opt-charset.
13131 (comint--common-suffix, comint--common-quoted-suffix)
13132 (comint--table-subvert): Remove.
13133 (comint-unquote-function, comint-requote-function): New vars.
13134 (comint--complete-file-name-data): Use them with
13135 completion-table-with-quoting.
13136 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
13137 * pcomplete.el (pcomplete-arg-quote-list)
13138 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
13139 (pcomplete-unquote-argument-function): Default to non-nil.
13140 (pcomplete-unquote-argument): Simplify.
13141 (pcomplete--common-quoted-suffix): Remove.
13142 (pcomplete-requote-argument-function): New var.
13143 (pcomplete--common-suffix): New function.
13144 (pcomplete-completions-at-point): Use completion-table-with-quoting
13145 and completion-table-subvert.
13146
13147 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
13148 (minibuffer--double-dollars): Preserve properties.
13149 (completion--sifn-requote): New function.
13150 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
13151
13152 * minibuffer.el: Add support for completion of quoted/escaped data.
13153 (completion-table-with-quoting, completion-table-subvert): New funs.
13154 (completion--twq-try, completion--twq-all): New functions.
13155 (completion--nth-completion): New function.
13156 (completion-try-completion, completion-all-completions): Use it.
13157
13158 2012-04-25 Leo Liu <sdl.web@gmail.com>
13159
13160 * progmodes/python.el (python-pdbtrack-get-source-buffer):
13161 Use compilation-message if available to find real filename.
13162
13163 2012-04-25 Chong Yidong <cyd@gnu.org>
13164
13165 * vc/diff-mode.el (diff-setup-whitespace): New function.
13166 (diff-mode): Use it.
13167
13168 * vc/diff.el (diff-sentinel):
13169 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
13170 Whitespace mode variables based on diff style (Bug#8612).
13171
13172 2012-04-25 Leo Liu <sdl.web@gmail.com>
13173
13174 * progmodes/python.el (python-send-region): Add suffix .py to the
13175 temp file.
13176
13177 * files.el (auto-mode-alist): Use javascript-mode instead.
13178
13179 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
13180
13181 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
13182
13183 * net/soap-client.el (soap-resolve-references-for-sequence-type)
13184 (soap-resolve-references-for-array-type): Hack to prevent self
13185 references, see Bug#9.
13186 (soap-parse-envelope): Report the contents of the 'detail' node
13187 when receiving a fault reply.
13188 (soap-parse-envelope): Report the contents of the entire 'detail' node.
13189
13190 * net/soap-inspect.el (soap-sample-value-for-simple-type)
13191 (soap-inspect-simple-type): New function.
13192
13193 * net/soap-client.el (soap-simple-type): New struct.
13194 (soap-default-xsd-types, soap-default-soapenc-types)
13195 (soap-decode-basic-type, soap-encode-basic-type):
13196 support unsignedInt and double basic types.
13197 (soap-resolve-references-for-simple-type)
13198 (soap-parse-simple-type, soap-encode-simple-type): New function.
13199 (soap-parse-schema): Parse xsd:simpleType declarations.
13200
13201 * net/soap-client.el (soap-default-xsd-types)
13202 (soap-default-soapenc-types): Add integer, byte and anyURI types.
13203 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
13204 the local name of "soapenc:Array".
13205 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
13206 decoding integer, byte and anyURI xsd types.
13207
13208 2012-04-25 Chong Yidong <cyd@gnu.org>
13209
13210 * cus-edit.el (custom-buffer-create-internal): Update header text.
13211
13212 2012-04-25 Eli Zaretskii <eliz@gnu.org>
13213
13214 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
13215 settings on 'system-type', not on 'window-system'. On MS-Windows,
13216 set interactive-mode on in GDB.
13217
13218 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
13219
13220 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
13221 (ruby-syntax-propertize-regexp): Remove.
13222 (ruby-syntax-propertize-function): Split regexp into chunks.
13223 Match following code directly.
13224
13225 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
13226
13227 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
13228 (ruby-syntax-propertize-regexp): New function.
13229 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
13230 by a special keyword.
13231
13232 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
13233 (ruby-syntax-general-delimiters-goto-beg)
13234 (ruby-syntax-propertize-general-delimiters): New functions.
13235 (ruby-syntax-propertize-function): Use them to handle GDL.
13236 (ruby-font-lock-keywords): Move old handling of GDL...
13237 (ruby-font-lock-syntactic-keywords): .. to here.
13238 (ruby-calculate-indent): Adjust indentation for GDL.
13239
13240 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
13241
13242 * notifications.el (top): Remove unneeded declarations.
13243 (notifications-specification-version): Change to "1.2".
13244 (notifications-interface, notifications-notify-method)
13245 (notifications-close-notification-method): Fix docstring.
13246 (notifications-get-capabilities-method): New defconst.
13247 (notifications-notify): Add :action-items, :resident and
13248 :transient hints. Change "image_data" to "image-data" and
13249 "image_path" to "image-path".
13250 (notifications-get-capabilities): New defun.
13251
13252 2012-04-24 Leo Liu <sdl.web@gmail.com>
13253
13254 * progmodes/python.el: Move hideshow setup to the end.
13255
13256 2012-04-24 Martin Rudalics <rudalics@gmx.at>
13257
13258 * window.el (handle-select-window): Clear echo area since this is
13259 no more done by read_char (Bug#11304).
13260
13261 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
13262
13263 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
13264 and `/ M' to filter-derived-mode.
13265 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
13266 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
13267 (ibuffer-mark-by-mode): Use default rather than initial-input.
13268 (ibuffer-filter-by-derived-mode): Autoload and require-match.
13269
13270 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
13271
13272 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
13273 (ibuffer-filter-by-derived-mode): New filter.
13274 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
13275
13276 2012-04-23 Andreas Politz <politza@fh-trier.de>
13277
13278 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
13279
13280 2012-04-23 Chong Yidong <cyd@gnu.org>
13281
13282 * cus-edit.el (customize-apropos, customize-apropos-options):
13283 Disable matching of non-option variables (Bug#11176).
13284 (customize-option, customize-option-other-window)
13285 (customize-changed-options): Doc fix.
13286 (customize-apropos-options, customize-apropos-faces)
13287 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
13288
13289 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
13290 Fix word list splitting (Bug#11132).
13291 (apropos-symbol, apropos-keybinding, apropos-label)
13292 (apropos-property, apropos-function-button)
13293 (apropos-variable-button, apropos-misc-button): New faces.
13294 (apropos-symbol-face, apropos-keybinding-face)
13295 (apropos-label-face, apropos-property-face, apropos-match-face):
13296 Variables removed (Bug#8396).
13297 (apropos-library-button, apropos-format-plist, apropos-print)
13298 (apropos-print-doc, apropos-describe-plist): Callers changed.
13299
13300 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
13301
13302 * net/xesam.el (xesam-mode-map): Use let-bound map in
13303 initialization. (Bug#11292)
13304
13305 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13306
13307 Preserve ispell session localwords when switching back to
13308 original buffer.
13309
13310 * textmodes/ispell.el (ispell-buffer-session-localwords):
13311 New buffer-local variable to hold buffer session localwords.
13312 (ispell-kill-ispell): Add option 'clear to delete session
13313 localwords.
13314 (ispell-command-loop, ispell-change-dictionary)
13315 (ispell-buffer-local-words): Preserve session localwords when
13316 needed.
13317
13318 * textmodes/flyspell.el (flyspell-process-localwords)
13319 (flyspell-do-correct): Preserve session localwords when needed.
13320
13321 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13322
13323 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
13324 using obsolete `translation-table-for-input'.
13325 (ispell-word, ispell-process-line, ispell-complete-word):
13326 Use plain `insert' instead of removed `ispell-insert-word'.
13327
13328 2012-04-22 Chong Yidong <cyd@gnu.org>
13329
13330 * cus-edit.el (custom-variable-menu)
13331 (custom-variable-reset-saved, custom-face-menu)
13332 (custom-face-reset-saved): If there is no saved value, make the
13333 "reset-saved" operation bring back the default (Bug#9509).
13334 (custom-face-state): Properly detect themed faces.
13335
13336 * faces.el (face-spec-set): Stop supporting deprecated form of
13337 third arg.
13338
13339 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
13340
13341 Move functions from C to Lisp. Make non-blocking method calls
13342 the default. Implement further D-Bus standard interfaces.
13343
13344 * net/dbus.el (dbus-message-internal): Declare function.
13345 Remove unneeded function declarations.
13346 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
13347 (dbus-message-type-method-return, dbus-message-type-error)
13348 (dbus-message-type-signal): Declare variables. Remove local
13349 definitions.
13350 (dbus-interface-dbus, dbus-interface-peer)
13351 (dbus-interface-introspectable, dbus-interface-properties)
13352 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
13353 Adapt docstring.
13354 (dbus-interface-objectmanager): New defconst.
13355 (dbus-call-method, dbus-call-method-asynchronously)
13356 (dbus-send-signal, dbus-method-return-internal)
13357 (dbus-method-error-internal, dbus-register-service)
13358 (dbus-register-signal, dbus-register-method): New defuns, moved
13359 from dbusbind.c
13360 (dbus-call-method-handler, dbus-setenv)
13361 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
13362 New defuns.
13363 (dbus-call-method-non-blocking): Make it an obsolete function.
13364 (dbus-unregister-object, dbus-unregister-service)
13365 (dbus-handle-event, dbus-register-property)
13366 (dbus-property-handler): Obey the new structure of
13367 `bus-registered-objects'.
13368 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
13369 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
13370 Use `dbus-call-method'.
13371
13372 2012-04-22 Chong Yidong <cyd@gnu.org>
13373
13374 * cus-edit.el (custom-commands, custom-reset-menu)
13375 (Custom-reset-standard): Tweak labels.
13376 (custom-reset-button-menu): Change default to t.
13377 (custom-buffer-create-internal): For the custom-reset-button-menu
13378 case, put the revert button first.
13379 (custom-group-subtitle): New face.
13380 (custom-group-value-create): Align docstring to a specific column.
13381
13382 * wid-edit.el (widget-documentation-link-add): Don't handle
13383 indentation in this function.
13384 (widget-documentation-string-indent-to): New function.
13385 (widget-documentation-string-value-create): Use it.
13386
13387 * autorevert.el (auto-revert):
13388 * epg-config.el (epg):
13389 * ibuffer.el (ibuffer):
13390 * mpc.el (mpc):
13391 * ses.el (ses):
13392 * eshell/eshell.el (eshell):
13393 * net/ange-ftp.el (ange-ftp):
13394 * progmodes/ebnf2ps.el (postscript):
13395 * progmodes/flymake.el (flymake):
13396 * progmodes/prolog.el (prolog):
13397 * progmodes/verilog-mode.el (verilog-mode):
13398 * progmodes/which-func.el (which-func):
13399 * term/xterm.el (xterm):
13400 * textmodes/picture.el (picture):
13401 * textmodes/tildify.el (tildify):
13402 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
13403 customization buffers.
13404
13405 2012-04-22 Alan Mackenzie <acm@muc.de>
13406
13407 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13408 Adding a ) can hide the resulting (..) from searches. Fix it.
13409 Bound the backward search to the position of the existing (.
13410
13411 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
13412
13413 * progmodes/verilog-mode.el (verilog-mode): Check whether
13414 which-func-modes is t before adding verilog-mode.
13415 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
13416
13417 2012-04-21 Leo Liu <sdl.web@gmail.com>
13418
13419 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
13420
13421 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
13422
13423 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
13424 filling of the last column of a table (Bug#5635).
13425 (woman-find-next-control-line): New arg, specifying an additional
13426 regexp component for the control line.
13427 (woman2-roff-buffer): Use it.
13428 (woman-break-table): New function.
13429 (woman2-TS): Use it.
13430
13431 2012-04-21 Chong Yidong <cyd@gnu.org>
13432
13433 * woman.el (woman-set-buffer-display-table, woman-decode-region)
13434 (woman-horizontal-escapes, woman-negative-vertical-space)
13435 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
13436 (WoMan-warn-ignored): Use ?\s instead of ?\ .
13437
13438 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13439
13440 * minibuffer.el (completion-file-name-table): Complete user names.
13441
13442 2012-04-20 Leo Liu <sdl.web@gmail.com>
13443
13444 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
13445 and pcase-let*.
13446
13447 2012-04-20 Chong Yidong <cyd@gnu.org>
13448
13449 * server.el (server-execute): Respect initial-buffer-choice if it
13450 is a string and there are no files to open (Bug#2825).
13451 (server-create-window-system-frame, server-create-tty-frame):
13452 Don't switch buffers here.
13453 (server-process-filter): Only try to open a window system frame if
13454 compiled with graphical support (Bug#8314).
13455
13456 2012-04-20 Dan Nicolaescu <dann@gnu.org>
13457
13458 * battery.el (battery-echo-area-format): Display remaining time
13459 for sysfs backend too (Bug#11269).
13460 (battery-linux-sysfs): Fix conditional for the charge.
13461
13462 2012-04-20 Chong Yidong <cyd@gnu.org>
13463
13464 * progmodes/gdb-mi.el (gdb): Revert previous change.
13465 (gdb-inferior-io--init-proc): New function.
13466 (gdb-init-1): Use it.
13467 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
13468 responsible for allocating a new pty and hooking it to gdb when
13469 the old pty gets an EIO due to process exit.
13470 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
13471 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
13472 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
13473
13474 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13475
13476 * window.el (window-min-size, window-sizable, window-min-delta)
13477 (window-max-delta, window--resizable, window-resizable)
13478 (window-total-size, window-full-height-p, window-full-width-p)
13479 (window-in-direction, window--resize-mini-window, window-resize)
13480 (window--resize-child-windows-normal)
13481 (window--resize-child-windows, window--resize-siblings)
13482 (window--resize-this-window, adjust-window-trailing-edge)
13483 (enlarge-window, shrink-window): Doc fixes.
13484
13485 2012-04-20 Chong Yidong <cyd@gnu.org>
13486
13487 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13488 New function to call delete-process on the gdb-inferior buffer's pty.
13489 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13490 pty process (Bug#11273).
13491 (gdb-update): New arg to suppress talking to the gdb process.
13492 (gdb-done-or-error): Use it.
13493 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13494 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13495 sentinel not being called.
13496
13497 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13498
13499 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13500
13501 2012-04-20 Glenn Morris <rgm@gnu.org>
13502
13503 * net/network-stream.el (open-network-stream): Doc fix.
13504
13505 2012-04-20 Chong Yidong <cyd@gnu.org>
13506
13507 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13508
13509 2012-04-20 Alan Mackenzie <acm@muc.de>
13510
13511 Ensure searching for keywords is case sensitive.
13512
13513 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13514 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13515 (c-defun-name, c-mark-function, c-cpp-define-name)
13516 (c-comment-indent, c-scan-conditionals, c-indent-defun)
13517 (c-context-line-break): Bind case-fold-search to nil.
13518
13519 * progmodes/cc-mode.el (c-font-lock-fontify-region):
13520 Bind case-fold-search to nil.
13521
13522 2012-04-20 Chong Yidong <cyd@gnu.org>
13523
13524 * mail/sendmail.el (mail-bury): Call return action with the right
13525 Rmail buffer (Bug#11242).
13526
13527 * server.el (server-process-filter): Handle corner case where both
13528 tty and nowait options are present (Bug#11102).
13529
13530 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13531
13532 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13533 (top level): Put into the executable the ident-style '$Id:' tag on
13534 windows-nt as well.
13535
13536 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13537
13538 * electric.el (electric-indent-post-self-insert-function): Check that
13539 electric-indent-mode is enabled in current buffer.
13540
13541 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13542
13543 * imenu.el (imenu-progress-message): Restore; it is "used" in
13544 erc/erc-imenu.el and net/snmp-mode.el.
13545
13546 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13547
13548 * avoid.el (mouse-avoidance-mode): Mark unused arg.
13549 (mouse-avoidance-nudge-mouse): Remove unused binding.
13550
13551 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13552
13553 * descr-text.el (describe-char):
13554 * progmodes/python.el (python-describe-symbol):
13555 Don't call `toggle-read-only', set `buffer-read-only'.
13556
13557 * imenu.el (imenu-default-goto-function): Mark unused args.
13558 (imenu-progress-message): Remove obsolete macro; all callers changed.
13559
13560 * subr.el (keymap-canonicalize): Remove unused binding.
13561 (read-passwd): Mark unused arg.
13562
13563 * tutorial.el (tutorial--display-changes): Remove unused binding.
13564 (tutorial--save-tutorial-to): Remove unused variable.
13565
13566 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13567 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13568 (package-generate-autoloads, package-menu--generate)
13569 (package-menu--find-upgrades): Remove unused bindings.
13570
13571 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13572 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
13573 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13574 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13575 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13576 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13577 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13578 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13579 (cua-delete-char-rectangle): Mark unused args.
13580 (cua-align-rectangle): Remove unused binding.
13581
13582 * mail/rmail.el (compilation--message->loc)
13583 (epa--find-coding-system-for-mime-charset): Declare.
13584
13585 * net/dbus.el (dbus-register-service): Declare.
13586 (dbus-name-owner-changed-handler): Remove unused binding.
13587
13588 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13589 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13590 (nxml-scan-backward-within): Mark unused arg.
13591 (nxml-dynamic-markup-word): Remove unused binding.
13592
13593 * mouse.el (mouse-menu-major-mode-map):
13594 * emacs-lisp/authors.el (authors-scan-change-log)
13595 (authors-add-to-author-list):
13596 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13597 * emacs-lisp/smie.el (smie-auto-fill):
13598 * mail/sendmail.el (mail-bury):
13599 * mail/unrmail.el (unrmail):
13600 * net/tls.el (open-tls-stream):
13601 * textmodes/picture.el (picture-mouse-set-point):
13602 Remove unused bindings.
13603
13604 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
13605
13606 * net/tramp.el (tramp-action-password): Let-bind
13607 `enable-recursive-minibuffers' to t.
13608
13609 2012-04-18 Sam Steingold <sds@gnu.org>
13610
13611 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13612 instead of 'string to accommodate values like [f11].
13613 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13614 * progmodes/gdb-mi.el: Likewise.
13615
13616 2012-04-18 Leo Liu <sdl.web@gmail.com>
13617
13618 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13619 current buffer.
13620 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13621 LOCAL is nil.
13622
13623 2012-04-18 Chong Yidong <cyd@gnu.org>
13624
13625 * simple.el (line-move): Use forward-line if in batch mode
13626 (Bug#11053).
13627
13628 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
13629
13630 * files.el (after-find-file): Do not try to add a final newline if
13631 the buffer is read-only (Bug#11156).
13632
13633 2012-04-17 Richard Stallman <rms@gnu.org>
13634
13635 * mail/rmail.el (rmail-start-mail):
13636 Pass (rmail-mail-return...) for the return-action.
13637 Pass (rmail-yank-current-message...) for the yank-action.
13638 (rmail-yank-current-message): New function.
13639 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13640 (rmail-reply): Likewise.
13641 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13642
13643 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13644 buffer, not the last. Reject temp buffers. Use the rmail-mode
13645 buffer, not newbuf.
13646
13647 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
13648
13649 * server.el (server-ensure-safe-dir): Simplify.
13650
13651 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13652
13653 * emacs-lisp/smie.el: Provide smarter auto-filling.
13654 (smie-auto-fill): New function.
13655 (smie-setup): Use it.
13656
13657 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13658
13659 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
13660
13661 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13662 (comment-indent): Use it.
13663
13664 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
13665
13666 * ses.el: The overall change is to add cell renaming, that is
13667 setting fancy names for cell symbols other than name matching
13668 "\\`[A-Z]+[0-9]+\\'" regexp .
13669 (ses-localvars): Add ses--renamed-cell-symb-list.
13670 (ses-create-cell-variable): New defun.
13671 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13672 (ses-relocate-formula): Relocate formulas only for cells the
13673 symbols of which are not renamed, i.e. symbols whose names do not
13674 match regexp "\\`[A-Z]+[0-9]+\\'".
13675 (ses-relocate-all): Relocate values only for cells the symbols of
13676 which are not renamed.
13677 (ses-load): Create cells variables as the (ses-cell ...) are read,
13678 in order to check row col consistency with cell symbol name only
13679 for cells that are not renamed.
13680 (ses-replace-name-in-formula): New defun.
13681 (ses-rename-cell): New defun.
13682
13683 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
13684
13685 * progmodes/perl-mode.el (perl-indent-parens-as-block):
13686 New option (bug#11118).
13687 (perl-calculate-indent): Respect it.
13688
13689 2012-04-17 Glenn Morris <rgm@gnu.org>
13690
13691 * dired-aux.el (dired-mark-read-string): Doc fix.
13692
13693 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13694
13695 * dired-aux.el (dired-mark-read-string): Offer optional completion.
13696 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
13697
13698 2012-04-17 Glenn Morris <rgm@gnu.org>
13699
13700 * mouse.el (mouse-drag-track):
13701 * speedbar.el (speedbar-frame-mode):
13702 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13703
13704 2012-04-16 Leo Liu <sdl.web@gmail.com>
13705
13706 * progmodes/python.el: Trivial cleanup.
13707
13708 2012-04-16 Glenn Morris <rgm@gnu.org>
13709
13710 * vc/vc.el (vc-string-prefix-p):
13711 * vc/pcvs-util.el (cvs-string-prefix-p):
13712 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13713 * mpc.el (mpc-string-prefix-p):
13714 Make all of these into obsolete aliases for string-prefix-p.
13715 Update callers.
13716 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13717
13718 * textmodes/two-column.el: Move custom options to the start.
13719 (frame-width): Remove compat definition.
13720 (2C-associate-buffer, 2C-dissociate):
13721 Use with-current-buffer rather than save-excursion.
13722 (2C-dissociate): Force a mode-line update.
13723 (2C-autoscroll): Use ignore-errors.
13724
13725 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13726 Autoload trivia.
13727
13728 * emacs-lisp/cl-extra.el (*random-state*):
13729 Remove unnecessary declaration.
13730
13731 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13732
13733 * play/cookie1.el (cookie-snarf):
13734 Give an explicit error if input file cannot be read.
13735
13736 * play/yow.el (yow-file): Use expand-file-name rather than concat.
13737
13738 * progmodes/perl-mode.el (c-macro-expand):
13739 Remove unnecessary autoload (it is in loaddefs.el).
13740
13741 * textmodes/picture.el (picture-desired-column)
13742 (picture-update-desired-column): Convert comments to doc-strings.
13743 (picture-substitute): Remove function.
13744 (picture-mode-map): Initialize in the defvar.
13745
13746 * woman.el: Remove eval-after-load for tar-mode.
13747 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13748 (woman-tar-extract-file): Autoload it.
13749
13750 * frame.el (automatic-hscrolling): Make this alias obsolete.
13751
13752 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13753
13754 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13755 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13756 (ispell-dictionary-base-alist): Revert to original XEmacs
13757 friendly version for default. [:alpha:] will be added in
13758 `ispell-set-spellchecker-params' if needed.
13759
13760 2012-04-16 Chong Yidong <cyd@gnu.org>
13761
13762 * image.el (imagemagick--file-regexp): New variable.
13763 (imagemagick-register-types): Use it.
13764 (imagemagick-types-inhibit): Add :set function. Allow new value
13765 of t to inhibit all types.
13766
13767 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13768 so we can preload it.
13769
13770 * loadup.el (fboundp): Preload regexp-opt, needed by
13771 imagemagick-register-types.
13772
13773 2012-04-15 Chong Yidong <cyd@gnu.org>
13774
13775 * frame.el (scrolling): Remove nearly unused customization group.
13776
13777 * scroll-all.el (scroll-all-mode): Move to windows group.
13778
13779 2012-04-15 Chong Yidong <cyd@gnu.org>
13780
13781 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13782
13783 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13784
13785 Avoid the use of ((lambda ...) ...) in lexical-binding code.
13786 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13787
13788 2012-04-15 Glenn Morris <rgm@gnu.org>
13789
13790 * simple.el (process-file-side-effects): Doc fix.
13791
13792 2012-04-15 Glenn Morris <rgm@gnu.org>
13793
13794 * international/mule-cmds.el (set-language-environment): Doc fix.
13795
13796 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13797
13798 * server.el (server-auth-key, server-generate-key): Doc fixes.
13799 (server-get-auth-key): Doc fix. Use `string-match-p'.
13800 (server-start): Reflow docstring.
13801
13802 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
13803
13804 * server.el (server-generate-key): `called-interactively-p'
13805 requires a parameter.
13806
13807 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
13808
13809 * server.el (server-auth-key): New variable.
13810 (server-generate-key, server-get-auth-key): New function.
13811 (server-start): Use the new variable and functions to allow
13812 setting a permanent server key (bug#9423).
13813
13814 2012-04-14 Leo Liu <sdl.web@gmail.com>
13815
13816 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13817
13818 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13819
13820 Spelling fixes.
13821 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13822 Emacs uses American spelling.
13823
13824 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13825
13826 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13827 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
13828 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13829 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
13830
13831 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13832
13833 * progmodes/which-func.el (which-func-modes): Change default.
13834
13835 2012-04-14 Kim F. Storm <storm@cua.dk>
13836
13837 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13838 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13839
13840 2012-04-14 Chong Yidong <cyd@gnu.org>
13841
13842 * custom.el (custom-theme-set-variables): Doc fix.
13843
13844 2012-04-14 Glenn Morris <rgm@gnu.org>
13845
13846 * international/mule.el (set-auto-coding-for-load): Doc fix.
13847
13848 2012-04-14 Alan Mackenzie <acm@muc.de>
13849
13850 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13851 imenu work again for Objective C Mode. Correct the *-index values,
13852 these having been disturbed by a previous change in 2011-08.
13853
13854 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13855 Correct two search limits.
13856
13857 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13858
13859 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13860
13861 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
13862
13863 * international/characters.el: Fix sorting.
13864
13865 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13866
13867 * international/characters.el: Add more missing Latin case pairs.
13868
13869 2012-04-14 Glenn Morris <rgm@gnu.org>
13870
13871 * files.el (dir-locals-set-class-variables): Doc fix.
13872
13873 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13874
13875 * international/characters.el: Add set-case-syntax-pair call for
13876 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13877 counterpart. (Bug#11209)
13878
13879 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
13880
13881 2012-04-14 Glenn Morris <rgm@gnu.org>
13882
13883 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13884
13885 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13886
13887 * textmodes/ispell.el (ispell-dictionary-base-alist):
13888 Add data for Hebrew.
13889
13890 2012-04-14 Chong Yidong <cyd@gnu.org>
13891
13892 * net/rcirc.el (rcirc-cmd-quit):
13893 Revert 2012-03-18 change (Bug#11192).
13894
13895 2012-04-14 Glenn Morris <rgm@gnu.org>
13896
13897 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13898
13899 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13900
13901 * minibuffer.el (completion-in-region-mode-map):
13902 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
13903
13904 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
13905
13906 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13907
13908 2012-04-13 Masatake YAMATO <yamato@redhat.com>
13909
13910 * minibuffer.el (minibuffer-local-filename-syntax): New variable
13911 to allow `C-M-f' and `C-M-b' to move to the nearest path
13912 separator (bug#9511).
13913
13914 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
13915
13916 * avoid.el: Require cl when compiling. And also move the
13917 `provide' to the end.
13918
13919 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13920
13921 * avoid.el (mouse-avoidance-banish-position): New variable.
13922 (mouse-avoidance-banish-destination): Use it (bug#10165).
13923
13924 2012-04-13 Leo Liu <sdl.web@gmail.com>
13925
13926 * progmodes/which-func.el (which-func-modes): Add objc-mode.
13927
13928 2012-04-13 Ken Brown <kbrown@cornell.edu>
13929
13930 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13931 this is no longer needed now that cygstart understands file:// URLs.
13932 (browse-url-filename-alist): For the same reason, don't modify
13933 file:// URLs on Cygwin.
13934
13935 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13936
13937 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13938 the region on shift if the binding is already shifted (bug#11221).
13939
13940 2012-04-12 Glenn Morris <rgm@gnu.org>
13941
13942 * mail/mailpost.el: Move to obsolete/.
13943
13944 2012-04-12 Drew Adams <drew.adams@oracle.com>
13945
13946 * imenu.el (imenu--generic-function): Ignore invisible definitions
13947 (bug#10123).
13948
13949 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
13950
13951 * hexl.el (hexl-bits): New variable.
13952 (hexl-options): Mention the variable in the doc string.
13953 (hexl-rulerise, hexl-line-displen): New functions.
13954 (hexl-mode): Mention the new variable.
13955 (hexl-mode, hexl-current-address, hexl-current-address):
13956 Use the displen.
13957 (hexl-ascii-start-column): New function.
13958 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13959 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13960
13961 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13962
13963 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13964 '("-i" ENCODING), in 2 separate command-line arguments, to specify
13965 the encoding, as expected by hunspell.
13966
13967 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13968
13969 * battery.el (battery--linux-sysfs-regexp): New const.
13970 (battery-status-function): Use it. Remove yeeloong special case.
13971 (battery-yeeloong-sysfs): Remove.
13972 (battery-echo-area-format): Remove yeeloong special case.
13973
13974 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13975
13976 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13977 Reported by Noah Friedman.
13978
13979 * subr.el (read-passwd): Use read-string.
13980
13981 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13982
13983 * vcursor.el (vcursor-move): Increase the priority of the overlay
13984 (bug#9663).
13985
13986 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13987
13988 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13989 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13990
13991 2012-04-11 William Stevenson <yhvh2000@gmail.com>
13992
13993 * textmodes/artist.el (artist-mode): Convert artist-mode to use
13994 define-minor-mode (bug#10760).
13995
13996 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13997
13998 * progmodes/grep.el (rgrep): Tweak the find command line so
13999 that directories matching `grep-find-ignored-files' won't be
14000 pruned (bug#10351).
14001
14002 2012-04-11 Chong Yidong <cyd@gnu.org>
14003
14004 * startup.el (command-line): Remove support for long-obsolete
14005 variable font-lock-face-attributes.
14006
14007 2012-04-11 Glenn Morris <rgm@gnu.org>
14008
14009 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
14010
14011 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14012
14013 * window.el (window--state-get-1): Obey window-point-insertion-type.
14014
14015 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
14016
14017 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
14018 to previous function when point is on the first character of a
14019 function. Take care of that in `narrow-to-defun' (bug#6157).
14020
14021 2012-04-11 Glenn Morris <rgm@gnu.org>
14022
14023 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
14024 not just file-errors.
14025
14026 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
14027 (vc-bzr-sha1): Use internal sha1.
14028
14029 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14030
14031 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
14032
14033 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
14034
14035 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
14036 that start in the middle of the line (bug#10496).
14037
14038 2012-04-10 Dan Nicolaescu <dann@gnu.org>
14039
14040 * battery.el (battery-linux-proc-acpi): Only one battery is
14041 discharged at a time, but that seems to confuse battery.el when
14042 computing `rate-type' for the battery not being discharged
14043 (bug#10332).
14044
14045 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
14046
14047 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
14048
14049 * international/quail.el: Use dolist and simplify.
14050 (quail-define-package, quail-update-keyboard-layout)
14051 (quail-define-rules): Use dolist.
14052 (quail-insert-kbd-layout, quail-get-translation): CSE.
14053
14054 * tmm.el: Use dolist, remove left over hook.
14055 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
14056 Use dolist.
14057 (calendar-load-hook): Don't mess with it.
14058
14059 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
14060 Use derived-mode-p. Run the diff asynchronously.
14061
14062 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
14063
14064 * obsolete/mouse-sel.el: Add an Obsolete-since header.
14065
14066 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
14067
14068 * misc.el: Display absolute path of loaded DLLs (bug#10424).
14069 (list-dynamic-libraries--loaded): New function.
14070 (list-dynamic-libraries--refresh): Use it.
14071
14072 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
14073
14074 * progmodes/python.el (python-fill-paragraph):
14075 Make python-fill-region in a multiline string work when font-lock is
14076 disabled (bug#7018).
14077
14078 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
14079
14080 * language/european.el (cp775): Add oem/legacy (en)coding on
14081 DOS/MS Windows for the Baltic languages. There are still plenty
14082 of texts written in this encoding/codepage (bug#6519).
14083
14084 2012-04-10 Glenn Morris <rgm@gnu.org>
14085
14086 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
14087 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
14088
14089 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
14090
14091 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
14092 next-line "n" and previous-line "p" in order to make recentf more
14093 consistent with ibuffer, dired or org-mode (bug#9387).
14094
14095 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
14096
14097 * image.el (put-image): Return the overlay created instead of the
14098 optional input string (bug#7834). Note that this may break code
14099 that is (for some reason or other) depending on `put-image'
14100 returning the string.
14101
14102 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
14103
14104 * simple.el (zap-to-char): Allow zapping using input methods
14105 (bug#1580).
14106
14107 * textmodes/fill.el (fill-region): Leave point and mark where they
14108 were before filling (bug#5399).
14109
14110 2012-04-09 Glenn Morris <rgm@gnu.org>
14111
14112 * version.el (emacs-bzr-get-version):
14113 Handle lightweight checkouts of local branches.
14114
14115 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
14116
14117 * international/characters.el: Recover lost case pairs. (Bug#11209)
14118
14119 2012-04-09 Chong Yidong <cyd@gnu.org>
14120
14121 * custom.el (custom-variable-p): Return nil for non-symbol
14122 arguments instead of signaling an error.
14123 (user-variable-p): Obsolete alias for custom-variable-p.
14124
14125 * apropos.el (apropos-variable):
14126 * files-x.el (read-file-local-variable):
14127 * simple.el (set-variable):
14128 * woman.el (woman-mini-help):
14129 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
14130
14131 2012-04-09 Glenn Morris <rgm@gnu.org>
14132
14133 * startup.el (normal-top-level): Don't look for leim-list.el
14134 in places where it will not be found. (Bug#910)
14135
14136 * international/mule-cmds.el (set-default-coding-systems):
14137 * files.el (normal-mode):
14138 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
14139 This function was removed with ucs-tables.el in 2008.
14140
14141 2012-04-08 Eli Zaretskii <eliz@gnu.org>
14142
14143 * textmodes/ispell.el (ispell-check-version): For hunspell, set
14144 ispell-encoding8-command to "-i", without a trailing space.
14145 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
14146 separate command-line arguments, to specify the encoding, since
14147 that's how hunspell expects it.
14148
14149 2012-04-08 Glenn Morris <rgm@gnu.org>
14150
14151 * loadup.el: Load bindings before cus-start.
14152 This reduces somewhat the number of "rogue" settings in emacs -Q.
14153
14154 2012-04-07 Glenn Morris <rgm@gnu.org>
14155
14156 * version.el (emacs-bzr-get-version): New function.
14157 (emacs-bzr-version): New variable.
14158 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
14159 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
14160
14161 2012-04-07 Eli Zaretskii <eliz@gnu.org>
14162
14163 * international/uni-bidi.el, international/uni-category.el:
14164 * international/uni-combining.el, international/uni-decimal.el:
14165 * international/uni-decomposition.el, international/uni-digit.el:
14166 * international/uni-lowercase.el, international/uni-mirrored.el:
14167 * international/uni-name.el, international/uni-numeric.el:
14168 * international/uni-titlecase.el, international/uni-uppercase.el:
14169 Update for Unicode 6.1.
14170
14171 2012-04-07 Eli Zaretskii <eliz@gnu.org>
14172
14173 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
14174
14175 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
14176
14177 * window.el (shrink-window): Mention the `window-min-height'
14178 variable in the doc string.
14179
14180 2012-04-05 Bastien Guerry <bzg@altern.org>
14181
14182 * color.el (color-lighten-name): Fix typo.
14183
14184 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
14185
14186 * server.el (server--on-display-p): New function.
14187 (server--on-display-p): Use it.
14188
14189 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
14190
14191 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
14192 (bug#11145).
14193
14194 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
14195
14196 * comint.el (comint--common-quoted-suffix): Check string boundary
14197 before comparing (bug#11158).
14198 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
14199
14200 2012-04-04 Chong Yidong <cyd@gnu.org>
14201
14202 * minibuffer.el (completion-extra-properties): Doc fix.
14203
14204 * subr.el (delayed-warnings-hook): Doc fix.
14205
14206 2012-04-04 Daiki Ueno <ueno@unixuser.org>
14207
14208 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
14209 selection (Bug#11159).
14210 (epa-insert-keys): Inform that the default public key will be
14211 exported if no key is selected.
14212
14213 2012-04-04 Richard Stallman <rms@gnu.org>
14214
14215 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
14216
14217 2012-04-03 Chong Yidong <cyd@gnu.org>
14218
14219 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
14220 mail-insert-file, not its obsolete alias mail-attach-file.
14221
14222 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
14223
14224 * notifications.el (notifications-notify): Fix docstring.
14225
14226 2012-04-02 Glenn Morris <rgm@gnu.org>
14227
14228 * emacs-lisp/authors.el (authors-aliases): Another addition.
14229
14230 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
14231
14232 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
14233 `tramp-compat-call-process' instead of `tramp-local-call-process'.
14234 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
14235
14236 2012-04-01 Chong Yidong <cyd@gnu.org>
14237
14238 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
14239 Handle root directory properly.
14240 (copy-directory): Caller changed.
14241
14242 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14243 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
14244
14245 2012-03-31 Glenn Morris <rgm@gnu.org>
14246
14247 * term/xterm.el (xterm-extra-capabilities): Doc fix.
14248
14249 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
14250
14251 * calendar/calendar.el (calendar-window-list)
14252 (calendar-hide-window): Restore. (Bug#11140)
14253 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
14254
14255 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
14256
14257 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14258
14259 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14260 Check if file is a symlink (Bug#10489).
14261
14262 * files.el (copy-directory): Likewise.
14263
14264 2012-03-30 Chong Yidong <cyd@gnu.org>
14265
14266 * image.el (imagemagick-types-inhibit)
14267 (imagemagick-register-types): Doc fix.
14268
14269 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14270
14271 * textmodes/ispell.el (ispell-get-extended-character-mode):
14272 Disable extended-char-mode for hunspell. hunspell does not support it
14273 and treats ~word as ordinary words in pipe mode.
14274
14275 2012-03-30 Glenn Morris <rgm@gnu.org>
14276
14277 * tutorial.el (help-with-tutorial): Ensure local variables don't
14278 happen to make the buffer read-only. (Bug#11127)
14279
14280 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
14281
14282 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
14283 (perl-calculate-indent): Return `noindent' in strings.
14284
14285 2012-03-28 Sam Steingold <sds@gnu.org>
14286
14287 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
14288 instead of the broken adhockery which does not prevent calendar
14289 buffers from being displayed at random after exit.
14290 (calendar-window-list, calendar-hide-window): Remove the broken
14291 adhockery.
14292
14293 2012-03-28 Glenn Morris <rgm@gnu.org>
14294
14295 * replace.el (query-replace-map): Doc fix.
14296
14297 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
14298
14299 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
14300 contents. (Bug#11109)
14301
14302 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
14303
14304 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
14305 (bug#11077).
14306 (avl-tree--check, avl-tree--check-node): New funs.
14307
14308 2012-03-27 Martin Rudalics <rudalics@gmx.at>
14309
14310 * window.el (switch-to-visible-buffer): New option.
14311 (switch-to-prev-buffer, switch-to-next-buffer):
14312 Observe switch-to-visible-buffer. Make sure that checking for a window
14313 showing a buffer already is done on the same frame.
14314
14315 2012-03-27 Glenn Morris <rgm@gnu.org>
14316
14317 * startup.el (mail-host-address): Doc fix.
14318
14319 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14320
14321 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
14322 than 197 variables.
14323
14324 2012-03-26 Ami Fischman <ami@fischman.org>
14325
14326 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
14327
14328 2012-03-26 Glenn Morris <rgm@gnu.org>
14329
14330 * files.el (save-buffers-kill-emacs): Doc fix.
14331
14332 * startup.el (normal-top-level, command-line, command-line-1):
14333 Give them doc strings.
14334
14335 2012-03-25 Eli Zaretskii <eliz@gnu.org>
14336
14337 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
14338 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
14339
14340 2012-03-25 Chong Yidong <cyd@gnu.org>
14341
14342 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
14343 theme if it was previously enabled before (Bug#11031).
14344
14345 * cus-theme.el (custom-theme-write-faces): Retrieve current face
14346 spec with custom-face-get-current-spec if its :shown-value is not
14347 determined yet (Bug#9337).
14348 (customize-create-theme, custom-theme-revert): Doc fixes.
14349
14350 * button.el (button-at): Minor addition to docstring.
14351
14352 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
14353
14354 * vc/vc.el (vc-merge): Fix a prompt.
14355
14356 2012-03-24 Chong Yidong <cyd@gnu.org>
14357
14358 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
14359 point (Bug#9623).
14360
14361 * button.el (button-at): Minor addition to docstring.
14362
14363 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
14364
14365 * newcomment.el (comment-choose-indent): No space after BOL.
14366
14367 2012-03-22 Sam Steingold <sds@gnu.org>
14368
14369 * window.el (switch-to-prev-buffer): Revert last patch because the
14370 bug turned out to be an advertised feature (Elisp manual 28.14).
14371
14372 2012-03-22 Glenn Morris <rgm@gnu.org>
14373
14374 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
14375 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
14376
14377 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14378
14379 * net/network-stream.el (network-stream-open-starttls): Make error
14380 message under Windows be less misleading.
14381
14382 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
14383
14384 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
14385 understands (bug#9942).
14386
14387 2012-03-22 Chong Yidong <cyd@gnu.org>
14388
14389 * simple.el (end-of-visible-line): Handle return value of
14390 next-single-property-change properly (Bug#9371).
14391
14392 2012-03-22 Kenichi Handa <handa@m17n.org>
14393
14394 * international/quail.el (quail-insert-kbd-layout): Fix previous
14395 change. To avoid unwanted bidi reordering, use
14396 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
14397
14398 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
14399
14400 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
14401 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
14402 (ruby-beginning-of-indent): Be more careful with the difference
14403 between word-boundary and symbol boundary.
14404 (ruby-mode-syntax-table): Make : a symbol constituent.
14405
14406 2012-03-21 Andreas Politz <politza@fh-trier.de>
14407
14408 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
14409
14410 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14411
14412 * progmodes/etags.el (tags-completion-at-point-function):
14413 Improve last fix.
14414
14415 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
14416
14417 2012-03-21 Sam Steingold <sds@gnu.org>
14418
14419 * progmodes/etags.el (tags-completion-at-point-function):
14420 Avoid the error when point is inside the pattern.
14421
14422 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
14423
14424 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
14425 line (Bug#10855).
14426
14427 2012-03-21 Drew Adams <drew.adams@oracle.com>
14428
14429 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
14430
14431 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
14432
14433 * ido.el (ido-set-current-directory, ido-read-internal)
14434 (ido-choose-completion-string, ido-completion-help): Handle nil
14435 value of ido-completion-buffer (Bug#11008).
14436
14437 2012-03-21 Sam Steingold <sds@gnu.org>
14438
14439 * window.el (switch-to-prev-buffer): Do not switch to a visible
14440 window previous buffer, just like with the frame previous buffers.
14441
14442 2012-03-21 Chong Yidong <cyd@gnu.org>
14443
14444 * faces.el (make-face, make-empty-face, copy-face):
14445 * face-remap.el (face-remap-add-relative, face-remap-set-base):
14446 Doc fixes.
14447
14448 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14449
14450 * wid-edit.el (widget-complete-field): Remove (bug#11051).
14451 (widget-complete): Remove broken use of it.
14452
14453 2012-03-20 Chong Yidong <cyd@gnu.org>
14454
14455 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14456 Use string-width and truncate-string-width to handle arbitrary
14457 characters.
14458
14459 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
14460
14461 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
14462 to draw rectangles, not squares. (Regression introduced by revno
14463 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
14464
14465 2012-03-18 Chong Yidong <cyd@gnu.org>
14466
14467 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
14468 it is not yet defined (for temacs).
14469
14470 2012-03-18 Leo Liu <sdl.web@gmail.com>
14471
14472 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
14473 prefix.
14474
14475 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14476
14477 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
14478 (ispell-choices-win-default-height, ispell-silently-savep)
14479 (ispell-dictionary-alist, ispell-encoding8-command)
14480 (ispell-check-version, ispell-aspell-find-dictionary)
14481 (ispell-valid-dictionary-list, ispell-words-keyword)
14482 (ispell-get-word, ispell-internal-change-dictionary)
14483 (ispell-region, ispell-skip-region-list)
14484 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14485 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14486 (ispell-message-text-end, ispell-message)
14487 (ispell-buffer-local-parsing): Doc fix.
14488
14489 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
14490
14491 * htmlfontify.el: Add support for code block fontification for ODT
14492 export (Bug #9914).
14493 (hfy-optimisations): Define new option
14494 `body-text-only'
14495 (hfy-fontify-buffer): Honor above setting.
14496 (hfy-begin-span, hfy-end-span): New routines factored out form
14497 `hfy-fontify-buffer'.
14498 (hfy-begin-span-handler, hfy-end-span-handler): New variables
14499 that permit insertion of custom tags.
14500 (hfy-fontify-buffer): Use above handlers.
14501 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14502 (hfy-face-to-css): Re-defined to be a variable.
14503 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
14504 over multiple runs. This is made possible by having the caller let
14505 bind a special variable `hfy-user-sheet-assoc'.
14506 (htmlfontify-string): New defun.
14507 (hfy-compile-face-map): Make sure that the last char in the
14508 buffer is correctly fontified.
14509 (hfy-face-resolve-face): Whitespace only change.
14510
14511 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14512
14513 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14514 message more clear.
14515
14516 2012-03-16 Leo Liu <sdl.web@gmail.com>
14517
14518 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14519
14520 2012-03-16 Alan Mackenzie <acm@muc.de>
14521
14522 Further optimize the handling of large macros.
14523
14524 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14525 limit to a call of `c-literal-limits'.
14526 (c-determine-+ve-limit): New function.
14527 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14528 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14529 In CASE 5B, restrict a search limit to 500.
14530 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14531
14532 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14533 Restrict macro bounds to +-500 from after-change's BEG END.
14534
14535 2012-03-16 Leo Liu <sdl.web@gmail.com>
14536
14537 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14538
14539 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
14540
14541 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14542 `special-mode' setting of `buffer-read-only'. (Bug#11010)
14543
14544 2012-03-16 Glenn Morris <rgm@gnu.org>
14545
14546 * view.el (view-buffer, view-buffer-other-window)
14547 (view-buffer-other-frame): Doc fixes re special mode-class.
14548
14549 * subr.el (eval-after-load): If named feature is provided not from
14550 a file, run after-load forms. (Bug#10946)
14551
14552 * calendar/calendar.el (calendar-insert-at-column):
14553 Handle non-unit-width characters a bit better. (Bug#10978)
14554
14555 2012-03-15 Chong Yidong <cyd@gnu.org>
14556
14557 * emacs-lisp/ring.el (ring-extend): New function.
14558 (ring-insert+extend): Extend the ring correctly (Bug#11019).
14559
14560 * comint.el (comint-read-input-ring)
14561 (comint-add-to-input-history): Grow comint-input-ring lazily.
14562
14563 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14564
14565 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14566 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14567
14568 * imenu.el: Fix multiple inheritance breakage (bug#9199).
14569 (imenu-add-to-menubar): Don't add a redundant index.
14570 (imenu-update-menubar): Handle a dynamically composed keymap.
14571
14572 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
14573
14574 * mail/sendmail.el (mail-encode-header):
14575 Bind rfc2047-encode-encoded-words to nil.
14576
14577 2012-03-13 Glenn Morris <rgm@gnu.org>
14578
14579 * calendar/calendar.el (calendar-string-spread):
14580 Handle non-unit-width characters a bit better. (Bug#10978)
14581
14582 2012-03-13 Leo Liu <sdl.web@gmail.com>
14583
14584 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14585 directory and file as argument (Bug#10822).
14586
14587 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14588
14589 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14590 For dynamically generated code, follow $PC.
14591 (gdb-disassembly-handler-custom): Handle no function name case.
14592
14593 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
14594
14595 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14596 * emulation/ws-mode.el (ws-query-replace):
14597 * sort.el (sort-regexp-fields):
14598 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
14599
14600 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14601
14602 * dabbrev.el: Fix cycle completion order (bug#10963).
14603 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14604 (dabbrev-completion): Don't use an obarray; provide
14605 a cycle-sort-function.
14606
14607 2012-03-12 Leo Liu <sdl.web@gmail.com>
14608
14609 * simple.el (kill-new): Use equal-including-properties for comparison.
14610 (kill-do-not-save-duplicates): Doc fix.
14611
14612 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14613
14614 * dabbrev.el: Fix cycle completion (bug#10963).
14615 Use lexical binding and wrap to 80 columns.
14616 (dabbrev-completion): Delay computing the list of completions.
14617
14618 2012-03-12 Kenichi Handa <handa@m17n.org>
14619
14620 * international/quail.el (quail-insert-kbd-layout): Surround each
14621 row by LRO and PDF instead of inserting many LRMs. Pad the left
14622 and right of each non-spacing marks. Insert invisible space
14623 between lower and upper characters to prevent composition.
14624
14625 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14626
14627 * minibuffer.el (minibuffer-complete): Don't get confused when the
14628 function is run twice via different commands (bug#10958).
14629 (complete-with-action): Fix docstring.
14630
14631 2012-03-12 Chong Yidong <cyd@gnu.org>
14632
14633 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14634 (nxml-completion-at-point-function): New function.
14635 (nxml-mode): Use it.
14636 (nxml-bind-meta-tab-to-complete-flag): Default to t.
14637
14638 * emacs-lisp/package.el (package-unpack, package-unpack-single):
14639 Load generated autoloads file before byte compiling (Bug#10970).
14640 (package--make-autoloads-and-compile): New helper fun.
14641
14642 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
14643
14644 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14645
14646 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
14647
14648 * autorevert.el (auto-revert-handler): Ensure, that
14649 file-readable-p is applied only for local files or in
14650 auto-revert-tail-mode.
14651
14652 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
14653
14654 * server.el (server-eval-at): Handle non-tcp connections.
14655 Decode result string.
14656
14657 * server.el (server-msg-size): New constant.
14658 (server-reply-print): New function.
14659 (server-eval-and-print): Use it.
14660 (server-eval-at): Use server-quote-arg and server-unquote-arg.
14661 Handle -print-nonl.
14662
14663 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
14664
14665 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14666 (Bug#10987).
14667
14668 2012-03-11 Chong Yidong <cyd@gnu.org>
14669
14670 * simple.el (goto-line): Doc fix (Bug#9938).
14671
14672 * subr.el (save-window-excursion): Doc fix (Bug#9979).
14673
14674 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14675 when finished (Bug#10963).
14676
14677 2012-03-11 Martin Rudalics <rudalics@gmx.at>
14678
14679 * window.el (split-window-below): Fix bug in case where
14680 split-window-keep-point is nil (Bug#10971).
14681
14682 2012-03-11 Juri Linkov <juri@jurta.org>
14683
14684 * replace.el (replace-highlight): Set isearch-word to nil
14685 unconditionally. (Bug#10887)
14686
14687 2012-03-10 Eli Zaretskii <eliz@gnu.org>
14688
14689 * net/mairix.el (mairix-replace-invalid-chars): Rename from
14690 mairix-replace-illegal-chars; all callers changed. Don't remove
14691 ^, ~, and = characters: they are meaningful in mairix search specs.
14692 (mairix-widget-create-query): Add usage information about mairix
14693 search forms: negating words, searching for substrings, etc.
14694
14695 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
14696
14697 * international/fontset.el (font-encoding-alist): Add an entry for
14698 ksx1001 (Bug#5667).
14699
14700 2012-03-10 Richard Stallman <rms@gnu.org>
14701
14702 * mail/sendmail.el (mail-encode-header):
14703 Set rfc2047-encode-encoded-words.
14704
14705 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14706
14707 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14708 view buffer means not swapped.
14709 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14710 (rmail-write-region-annotate): Error if real text has disappeared.
14711
14712 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14713
14714 2012-03-10 Chong Yidong <cyd@gnu.org>
14715
14716 * emulation/cua-rect.el (cua--init-rectangles):
14717 * emulation/cua-base.el (cua--init-keymaps):
14718 Add delete-forward-char to remappings (Bug#9666).
14719
14720 2012-03-10 Martin Rudalics <rudalics@gmx.at>
14721
14722 * speedbar.el (speedbar-unhighlight-one-tag-line):
14723 Avoid unhighlighting due to frame switching (Bug#10275).
14724
14725 2012-03-10 Chong Yidong <cyd@gnu.org>
14726
14727 * minibuffer.el (completion-in-region, completion-help-at-point):
14728 Give the completion field overlay a high priority (Bug#6830).
14729
14730 * dired.el (dired-goto-file): Recognize absolute file name
14731 listings (Bug#7126).
14732 (dired-goto-file-1): New helper function.
14733 (dired-toggle-read-only): Inhibit warnings.
14734
14735 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
14736
14737 * net/dbus.el (dbus-property-handler): Return empty array if
14738 there are no properties.
14739
14740 2012-03-09 Leo Liu <sdl.web@gmail.com>
14741
14742 * savehist.el (savehist-printable): Stricter check for string
14743 value (Bug#10937).
14744
14745 2012-03-09 Eli Zaretskii <eliz@gnu.org>
14746
14747 * mail/smtpmail.el (smtpmail-send-it):
14748 Bind coding-system-for-write to *-unix, so that FCC files are kept in
14749 valid mbox format.
14750
14751 2012-03-09 Glenn Morris <rgm@gnu.org>
14752
14753 * files.el (dir-locals-find-file):
14754 Don't check result is regular, readable.
14755 (dir-locals-read-from-file): Demote errors.
14756
14757 2012-03-08 Eli Zaretskii <eliz@gnu.org>
14758
14759 * international/quail.el (quail-insert-kbd-layout):
14760 Insert invisible LRM characters before each character in a keyboard
14761 layout cell, to prevent their reordering by bidi display engine.
14762 For details, see the discussion in
14763 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14764
14765 2012-03-08 Alan Mackenzie <acm@muc.de>
14766
14767 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14768 the starting position; make it extend the marked region when
14769 invoked repeatedly - all under appropriate circumstances.
14770 Fixes bugs #5525, #10906.
14771
14772 2012-03-08 Glenn Morris <rgm@gnu.org>
14773
14774 * files.el (locate-dominating-file, dir-locals-find-file):
14775 Undo 2012-03-06 change.
14776
14777 2012-03-07 Eli Zaretskii <eliz@gnu.org>
14778
14779 * international/quail.el (quail-help):
14780 Force bidi-paragraph-direction be left-to-right. See discussion in
14781 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14782 for the reason.
14783
14784 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
14785
14786 Avoid superfluous registering of signals. (Bug#10807)
14787
14788 * notifications.el (notifications-on-action-object)
14789 (notifications-on-close-object): New defvars.
14790 (notifications-on-action-signal, notifications-on-closed-signal):
14791 Unregister the signal if not needed any longer.
14792 (notifications-notify): Register `notifications-action-signal' or
14793 `notifications-closed-signal', if :on-action or :on-close has been
14794 passed as argument.
14795
14796 2012-03-07 Chong Yidong <cyd@gnu.org>
14797
14798 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14799 non-X platforms.
14800
14801 2012-03-06 Glenn Morris <rgm@gnu.org>
14802
14803 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14804 (x-disown-selection-internal, x-get-selection-internal):
14805 Doc fix (add arglist signatures). (Bug#10783)
14806
14807 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14808
14809 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14810 Handle breakpoints with no "type".
14811
14812 2012-03-06 Glenn Morris <rgm@gnu.org>
14813
14814 * files.el (locate-dominating-file): Add optional predicate argument.
14815 (dir-locals-find-file): Make use of above change.
14816
14817 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
14818
14819 * info.el (Info-insert-dir): Also try "dir.gz".
14820
14821 2012-03-06 Glenn Morris <rgm@gnu.org>
14822
14823 * files.el (dir-locals-find-file):
14824 Ignore non-readable or non-regular files. (Bug#10928)
14825
14826 * files.el (locate-dominating-file): Doc fix.
14827
14828 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
14829
14830 * calendar/calendar.el (calendar-set-mode-line):
14831 `getenv' returns a string. (Bug#10951)
14832
14833 2012-03-05 Leo Liu <sdl.web@gmail.com>
14834
14835 * simple.el (backward-delete-char-untabify): Constrain point to
14836 field (Bug#10939).
14837
14838 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14839
14840 2012-03-05 Chong Yidong <cyd@gnu.org>
14841
14842 * simple.el (count-words): If called from Lisp, return the word
14843 count, for symmetry with `count-lines'. Arglist changed.
14844 (count-words--message): Args changed. Consolidate counting code
14845 from count-words and count-words-region.
14846 (count-words-region): Caller changed.
14847 (count-lines-region): Make it an obsolete alias.
14848
14849 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
14850
14851 * saveplace.el (save-place-to-alist)
14852 (save-place-ignore-files-regexp): Allow value nil to disable this
14853 feature.
14854
14855 2012-03-04 Chong Yidong <cyd@gnu.org>
14856
14857 * faces.el (face-spec-reset-face): For the default face, reset the
14858 attributes to default values (Bug#10748).
14859
14860 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14861
14862 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14863 previous patch: Check `message-send-mail-function', and not the
14864 default function (bug#10897).
14865
14866 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
14867
14868 * notifications.el (notifications-on-action-signal)
14869 (notifications-on-closed-signal): Check for unique service name of
14870 incoming event. Fix error in removing entry.
14871 (top): Register for signals with wildcard service name.
14872 (notifications-notify): Use daemon unique service name for map entries.
14873
14874 2012-03-04 Chong Yidong <cyd@gnu.org>
14875
14876 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14877
14878 2012-03-04 Glenn Morris <rgm@gnu.org>
14879
14880 * abbrev.el (copy-abbrev-table, abbrev-table-p)
14881 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14882 (expand-abbrev, define-abbrev-table): Doc fixes.
14883
14884 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14885
14886 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14887 `message-default-send-mail-function' and not `send-mail-function'
14888 when doing the prompting for `sendmail-query-once' before sending
14889 in Message buffers (bug#10897).
14890
14891 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14892 This is inconsistent with all the other stream functions, which leave
14893 the setting up to the higher levels (if so wanted) (bug#10931).
14894
14895 2012-03-02 Alan Mackenzie <acm@muc.de>
14896
14897 Depessimize the handling of very large macros.
14898
14899 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14900 (c-macro-cache-syntactic): New variables to implement a one
14901 element macro cache.
14902 (c-invalidate-macro-cache): New function.
14903 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14904 Adapt to use the new cache.
14905 (c-state-safe-place): Use better the cache of safe positions.
14906 (c-state-semi-nonlit-pos-cache)
14907 (c-state-semi-nonlit-pos-cache-limit):
14908 New variables for...
14909 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
14910 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14911 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14912 Use c-state-semi-safe-place.
14913
14914 * progmodes/cc-langs.el (c-get-state-before-change-functions):
14915 Add c-invalidate-macro-cache to the C, C++, Obj entries.
14916
14917 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
14918
14919 * jka-compr.el (jka-compr-call-process):
14920 Apply `file-accessible-directory-p' only when the default directory is
14921 not remote.
14922
14923 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
14924
14925 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
14926 access of FILE2, if FILE1 does not exist.
14927
14928 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14929 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14930
14931 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14932 Add "PAGER=" to `process-environment'.
14933
14934 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
14935
14936 * progmodes/sql.el: Bug fix
14937 (sql-get-login-ext): Save login values in globals.
14938 (sql-get-login): Use new version of `sql-get-login-ext'.
14939 (sql-interactive-mode): Set global `sql-connection' to nil.
14940 (sql-connect): Set global values for connection.
14941 (sql-product-interactive): Save global values as buffer local.
14942
14943 2012-02-29 Leo Liu <sdl.web@gmail.com>
14944
14945 * abbrev.el (define-abbrevs): Reset sys to nil.
14946
14947 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14948
14949 * files.el (file-equal-p): Rename from `files-equal-p'.
14950 Return nil when one or both files don't exist.
14951 (file-subdir-of-p): Now only top directory must exists,
14952 return nil if it doesn't.
14953 (copy-directory): No need to test with `file-subdir-of-p' after
14954 creating dir.
14955 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14956 to `file-equal-p'.
14957
14958 2012-02-28 Glenn Morris <rgm@gnu.org>
14959
14960 * shell.el (shell-mode):
14961 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14962 * play/landmark.el (landmark-font-lock-face-O):
14963 * play/handwrite.el (handwrite):
14964 * play/gomoku.el (gomoku-O):
14965 * net/browse-url.el (browse-url-browser-display):
14966 * international/mule.el (define-charset):
14967 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14968 * filesets.el (filesets-find-file-delay):
14969 * eshell/em-xtra.el (eshell-xtra):
14970 * eshell/em-unix.el (eshell-grep):
14971 * emulation/viper.el (viper-mode):
14972 * emacs-lisp/regexp-opt.el (regexp-opt-group):
14973 * emacs-lisp/easymenu.el (easy-menu-define):
14974 * calendar/timeclock.el (timeclock-use-display-time):
14975 * bs.el (bs-mode):
14976 * bookmark.el (bookmark-save-flag):
14977 Doc fix (standardize possessive apostrophe usage).
14978
14979 2012-02-27 Chong Yidong <cyd@gnu.org>
14980
14981 * emulation/viper-cmd.el (viper-intercept-ESC-key):
14982 Fix key-binding lookup for ESC key (Bug#9146).
14983
14984 * font-lock.el (font-lock-specified-p): Rename from
14985 font-lock-spec-present. Callers changed.
14986
14987 2012-02-27 Daniel Hackney <dan@haxney.org>
14988
14989 * emacs-lisp/package.el (package-compute-transaction):
14990 Handle holding a package version to t in package-load-list.
14991
14992 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
14993
14994 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14995 (tramp-get-inode, tramp-get-device): Use cached values.
14996
14997 2012-02-26 Alan Mackenzie <acm@muc.de>
14998
14999 Check there is a font-lock specification before doing initial
15000 fontification.
15001
15002 * font-core.el (font-lock-mode): Move the conditional from
15003 :after-hook to font-lock-initial-fontify.
15004 (font-lock-default-function): Move the check for a specification
15005 to font-lock-spec-present.
15006
15007 * font-lock.el (font-lock-initial-fontify): Call ...
15008 (font-lock-spec-present): New function.
15009
15010 2012-02-26 Jim Blandy <jimb@red-bean.com>
15011
15012 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
15013 (gdb-send): Apply it to the operand of the '-interpreter-exec
15014 console' command, so that we can pass arguments with (say) quotes
15015 in them. Store exact string sent in gdb-debug-log (Bug#10765).
15016
15017 2012-02-26 Chong Yidong <cyd@gnu.org>
15018
15019 * help-fns.el (describe-function-1): Clarify description of
15020 remapping (Bug#10844).
15021
15022 * files.el (files-equal-p): Doc fix.
15023 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
15024 and quit the loop once a mismatch is found.
15025
15026 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
15027
15028 * bs.el (bs--show-with-configuration): Don't throw an error
15029 if the window cannot be split; otherwise, subsequent calls to
15030 bs-show fail, restoring a stale window config. (Bug#10882)
15031
15032 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
15033
15034 * term/ns-win.el (global-map): Bind ns-drag-file to
15035 ns-find-file (Bug#5855, Bug#10050).
15036
15037 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
15038
15039 * calendar/parse-time.el (parse-time-string): Allow extractor to
15040 return nil.
15041
15042 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
15043
15044 * net/tramp.el (tramp-file-name-for-operation):
15045 Add `files-equal-p' and `file-subdir-of-p'.
15046
15047 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
15048 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
15049 Add COPY-CONTENTS argument.
15050
15051 2012-02-25 Chong Yidong <cyd@gnu.org>
15052
15053 Add custom groups for VC backends, for consistency with vc-bzr.
15054
15055 * vc/vc-arch.el (vc-arch):
15056 * vc/vc-cvs.el (vc-cvs):
15057 * vc/vc-git.el (vc-git):
15058 * vc/vc-hg.el (vc-hg):
15059 * vc/vc-mtn.el (vc-mtn):
15060 * vc/vc-rcs.el (vc-rcs):
15061 * vc/vc-sccs.el (vc-sccs):
15062 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
15063 All relevant defcustoms reassigned.
15064
15065 2012-02-25 Chong Yidong <cyd@gnu.org>
15066
15067 * newcomment.el (comment-styles): Add autoload (Bug#10868).
15068
15069 * term/x-win.el (x-initialize-window-system): Reduce default for
15070 x-selection-timeout to 5 seconds (Bug#8869).
15071
15072 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15073
15074 * files.el (files-equal-p, file-subdir-of-p): New functions.
15075 (copy-directory): Error when trying to copy a directory on itself.
15076 Add missing copy-contents arg to tramp handler.
15077 * dired-aux.el (dired-copy-file-recursive): Same.
15078 (dired-create-files): Modify destination when source is equal to
15079 dest when copying files.
15080 Return also when dest is a subdir of source. (Bug#10489)
15081
15082 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
15083
15084 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
15085 (Bug#10874)
15086
15087 2012-02-23 Alan Mackenzie <acm@muc.de>
15088
15089 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
15090 parameter "after-hook:" to allow the expansion to run code after
15091 the execution of the mode hooks.
15092
15093 * font-lock.el (font-lock-initial-fontify): New function extracted
15094 from font-lock-mode-internal.
15095
15096 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
15097 :after-hook.
15098
15099 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
15100
15101 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
15102 (completion--cache-all-sorted-completions): New function.
15103 (completion-all-sorted-completions): Use it.
15104 (completion--do-completion, minibuffer-force-complete):
15105 Use it to re-instate the flush hook.
15106
15107 * icomplete.el (icomplete-completions): Replace last fix with a better
15108 one (bug#10850).
15109
15110 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
15111
15112 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
15113 when it might call us back infinitely (bug#10797).
15114
15115 2012-02-23 Glenn Morris <rgm@gnu.org>
15116
15117 * minibuffer.el (completion-category-overrides): Doc fix.
15118
15119 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
15120
15121 * minibuffer.el (completion-table-with-context): Fix inf-loop.
15122 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
15123
15124 2012-02-23 Glenn Morris <rgm@gnu.org>
15125
15126 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
15127 (authors-obsolete-files-regexps, authors-ignored-files)
15128 (authors-ambiguous-files, authors-renamed-files-alist):
15129 Add more entries.
15130
15131 2012-02-23 Juri Linkov <juri@jurta.org>
15132
15133 * isearch.el (isearch-occur): Sync interactive spec with occur's
15134 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
15135
15136 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
15137
15138 2012-02-22 Juri Linkov <juri@jurta.org>
15139
15140 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
15141 (ucs-insert): Doc fix. Check for hex digits in the string.
15142 Don't display `nil' in the error message. (Bug#10857)
15143
15144 2012-02-22 Alan Mackenzie <acm@muc.de>
15145
15146 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
15147
15148 2012-02-22 Glenn Morris <rgm@gnu.org>
15149
15150 * ffap.el (ffap-c-path):
15151 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
15152
15153 2012-02-22 Chong Yidong <cyd@gnu.org>
15154
15155 * custom.el (load-theme): Doc fix.
15156
15157 2012-02-22 Glenn Morris <rgm@gnu.org>
15158
15159 * dired-x.el (dired-guess-shell-alist-default):
15160 Remove escape sequences from nroff output. (Bug#172)
15161
15162 2012-02-21 Glenn Morris <rgm@gnu.org>
15163
15164 * vc/emerge.el (emerge-defvar-local):
15165 Set `permanent-local' property rather than unused `preserved'.
15166
15167 * textmodes/picture.el (picture-delete-char): New alias.
15168 (picture-mode-map): Use it. (Bug#10860)
15169 (picture-mode): Doc fix.
15170
15171 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
15172
15173 * newcomment.el (uncomment-region-default): Remove unused binding.
15174
15175 2012-02-21 Glenn Morris <rgm@gnu.org>
15176
15177 * textmodes/picture.el (picture-motion, picture-motion-reverse)
15178 (picture-self-insert, picture-tab-chars): Doc fix.
15179 (picture-mode-map): Fix C-a, C-e.
15180
15181 2012-02-20 Glenn Morris <rgm@gnu.org>
15182
15183 * emacs-lisp/authors.el (authors-aliases): Add another entry.
15184
15185 2012-02-20 Leo Liu <sdl.web@gmail.com>
15186
15187 * icomplete.el (icomplete-completions): Check FROM arg before
15188 passing to substring (Bug#10850).
15189
15190 2012-02-19 Chong Yidong <cyd@gnu.org>
15191
15192 * comint.el: Require ansi-color.
15193 (comint-output-filter-functions): Add ansi-color-process-output.
15194
15195 * ansi-color.el: Don't set comint-output-filter-functions; it is
15196 now in the initial value defined in comint.el.
15197 (ansi-color-apply-face-function): New variable.
15198 (ansi-color-apply-on-region): Use it.
15199 (ansi-color-apply-overlay-face): New function.
15200
15201 * shell.el (shell): No need to require ansi-color.
15202 (shell-mode): Use ansi-color-apply-face-function to highlight
15203 color escapes using font-lock-face property (Bug#10835).
15204
15205 2012-02-19 Chong Yidong <cyd@gnu.org>
15206
15207 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
15208 mode-line formats (Bug#10839).
15209
15210 2012-02-18 Glenn Morris <rgm@gnu.org>
15211
15212 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
15213
15214 * mail/undigest.el (unforward-rmail-message): Doc fix.
15215
15216 * saveplace.el (save-place-ignore-files-regexp): Add :version.
15217
15218 2012-02-18 Eli Zaretskii <eliz@gnu.org>
15219
15220 * international/characters.el (script-list): Sync with the latest
15221 Unicode Character Database.
15222
15223 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
15224
15225 * international/titdic-cnv.el: Remove duplicate coding tag.
15226 * language/cham.el: Likewise.
15227 * language/tai-viet.el: Likewise.
15228
15229 2012-02-18 Glenn Morris <rgm@gnu.org>
15230
15231 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
15232 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
15233 (calendar-bahai-all-holidays-flag, calendar-other-dates):
15234 * calendar/diary-lib.el (diary-abbreviated-year-flag):
15235 * calendar/holidays.el (holiday-bahai-holidays)
15236 (calendar-holidays, list-holidays):
15237 Use utf-8 Bahá'í in doc-strings, menus, etc.
15238
15239 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
15240
15241 * saveplace.el (save-place-ignore-files-regexp): New variable
15242 allowing for excluding files from saving their location of point.
15243 The default value matches the temporary commit message editing
15244 files from Git, SVN, Bazaar, and Mercurial.
15245 (save-place-to-alist): Use it.
15246
15247 2012-02-17 Lawrence Mitchell <wence@gmx.li>
15248 Stefan Monnier <monnier@iro.umontreal.ca>
15249
15250 * newcomment.el (uncomment-region-default): Don't leave extra space
15251 when an arg is provided (bug#8150).
15252
15253 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
15254
15255 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
15256
15257 2012-02-17 Glenn Morris <rgm@gnu.org>
15258
15259 * net/socks.el: Require network-stream. (Bug#10599)
15260
15261 2012-02-17 Kenichi Handa <handa@m17n.org>
15262
15263 * international/charprop.el:
15264 * international/uni-name.el:
15265 * international/uni-old-name.el:
15266 * international/uni-comment.el: Regenerate.
15267
15268 2012-02-16 Glenn Morris <rgm@gnu.org>
15269
15270 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
15271 Interactively in calendar buffer, give an error if not on a date.
15272
15273 2012-02-15 Glenn Morris <rgm@gnu.org>
15274
15275 * shell.el (shell-delimiter-argument-list):
15276 Revert 2011-02-17 change. (Bug#8027)
15277
15278 2012-02-15 Chong Yidong <cyd@gnu.org>
15279
15280 * minibuffer.el (completion-at-point-functions): Doc fix.
15281
15282 * custom.el (defcustom): Doc fix; note use of defvar.
15283
15284 2012-02-15 Glenn Morris <rgm@gnu.org>
15285
15286 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
15287 Doc fixes.
15288
15289 2012-02-14 Glenn Morris <rgm@gnu.org>
15290
15291 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
15292
15293 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
15294
15295 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
15296 way the ports list is computed.
15297 (smtpmail-query-smtp-server): Prompt the user for a port number if
15298 we can't connect to any of the standard ports (bug#10810).
15299
15300 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
15301
15302 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
15303
15304 2012-02-13 Glenn Morris <rgm@gnu.org>
15305
15306 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
15307
15308 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
15309
15310 * net/gnutls.el (gnutls-trustfiles): New variable.
15311 (gnutls-negotiate): Use it.
15312
15313 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
15314
15315 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
15316 does its stuff if Gnus is running.
15317
15318 2012-02-13 Alan Mackenzie <acm@muc.de>
15319
15320 Fix a loop in c-set-fl-decl-start.
15321
15322 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
15323 c-backward-syntactic-ws actually moves backwards.
15324
15325 2012-02-13 Leo Liu <sdl.web@gmail.com>
15326
15327 * net/rcirc.el (rcirc-markup-attributes): Move point to the
15328 beginning so that all \C-o chars are removed.
15329
15330 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
15331
15332 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
15333
15334 2012-02-12 Alan Mackenzie <acm@muc.de>
15335
15336 Fix infinite loop with long macros.
15337 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
15338
15339 2012-02-12 Chong Yidong <cyd@gnu.org>
15340
15341 * window.el (display-buffer): Doc fix (Bug#10785).
15342
15343 2012-02-12 Glenn Morris <rgm@gnu.org>
15344
15345 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15346 (x-disown-selection-internal, x-get-selection-internal):
15347 Sync docs with the xselect.c versions.
15348
15349 * allout-widgets.el: Add missing license notice.
15350
15351 2012-02-11 Glenn Morris <rgm@gnu.org>
15352
15353 * select.el (x-get-selection-internal, x-own-selection-internal)
15354 (x-disown-selection-internal):
15355 * x-dnd.el (x-get-selection-internal): Update declarations.
15356
15357 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
15358
15359 * window.el (window-sides-slots):
15360 * tool-bar.el (tool-bar-position):
15361 * term/xterm.el (xterm-extra-capabilities):
15362 * ses.el (ses-self-reference-early-detection):
15363 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
15364 (verilog-auto-wire-type)
15365 (verilog-auto-delete-trailing-whitespace)
15366 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
15367 (verilog-auto-tieoff-declaration):
15368 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
15369 (sql-oracle-statement-starters, sql-oracle-scan-on):
15370 * progmodes/prolog.el (prolog-align-comments-flag)
15371 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
15372 (prolog-left-indent-regexp, prolog-paren-indent-p)
15373 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
15374 (prolog-types, prolog-mode-specificators)
15375 (prolog-determinism-specificators, prolog-directives)
15376 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
15377 (prolog-electric-dot-flag)
15378 (prolog-electric-dot-full-predicate-template)
15379 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
15380 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
15381 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
15382 (prolog-program-switches, prolog-prompt-regexp)
15383 (prolog-debug-on-string, prolog-debug-off-string)
15384 (prolog-trace-on-string, prolog-trace-off-string)
15385 (prolog-zip-on-string, prolog-zip-off-string)
15386 (prolog-use-standard-consult-compile-method-flag)
15387 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
15388 (prolog-imenu-max-lines, prolog-info-predicate-index)
15389 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
15390 (prolog-char-quote-workaround):
15391 * progmodes/cc-vars.el (c-defun-tactic):
15392 * net/tramp.el (tramp-encoding-command-interactive)
15393 (tramp-local-end-of-line):
15394 * net/soap-client.el (soap-client):
15395 * net/netrc.el (netrc-file):
15396 * net/gnutls.el (gnutls):
15397 * minibuffer.el (completion-category-overrides)
15398 (completion-cycle-threshold)
15399 (completion-pcm-complete-word-inserts-delimiters):
15400 * man.el (Man-name-local-regexp):
15401 * mail/feedmail.el (feedmail-display-full-frame):
15402 * international/characters.el (glyphless-char-display-control):
15403 * eshell/em-ls.el (eshell-ls-date-format):
15404 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
15405 (lisp-lambda-list-keyword-parameter-indentation)
15406 (lisp-lambda-list-keyword-parameter-alignment):
15407 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
15408 * dired-x.el (dired-omit-verbose):
15409 * cus-theme.el (custom-theme-allow-multiple-selections):
15410 * calc/calc.el (calc-highlight-selections-with-faces)
15411 (calc-lu-field-reference, calc-lu-power-reference)
15412 (calc-note-threshold):
15413 * battery.el (battery-mode-line-limit):
15414 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15415 (archive-7z-update):
15416 * allout.el (allout-prefixed-keybindings)
15417 (allout-unprefixed-keybindings)
15418 (allout-inhibit-auto-fill-on-headline)
15419 (allout-flattened-numbering-abbreviation):
15420 * allout-widgets.el (allout-widgets-auto-activation)
15421 (allout-widgets-icons-dark-subdir)
15422 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
15423 (allout-widgets-theme-dark-background)
15424 (allout-widgets-theme-light-background)
15425 (allout-widgets-item-image-properties-emacs)
15426 (allout-widgets-item-image-properties-xemacs)
15427 (allout-widgets-run-unit-tests-on-load)
15428 (allout-widgets-time-decoration-activity)
15429 (allout-widgets-hook-error-post-time)
15430 (allout-widgets-track-decoration):
15431 Add missing :version tags to new defcustoms and defgroups.
15432
15433 * progmodes/sql.el (sql-ansi-statement-starters)
15434 (sql-oracle-statement-starters): Add custom type.
15435
15436 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
15437 (prolog-system-version): Give it a type.
15438
15439 2012-02-11 Eli Zaretskii <eliz@gnu.org>
15440
15441 * term/pc-win.el (x-select-text, x-selection-owner-p)
15442 (x-own-selection-internal, x-disown-selection-internal)
15443 (x-get-selection-internal): Sync doc strings and argument lists
15444 with xselect.c, common-win.el and x-win.el. (Bug#10783)
15445
15446 2012-02-11 Leo Liu <sdl.web@gmail.com>
15447
15448 * progmodes/python.el (python-end-of-statement): Fix infinite
15449 loop. (Bug#10788)
15450
15451 2012-02-10 Glenn Morris <rgm@gnu.org>
15452
15453 * international/mule-cmds.el (unify-8859-on-encoding-mode)
15454 (unify-8859-on-decoding-mode): Properly mark as obsolete.
15455
15456 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
15457
15458 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
15459 about SMTP before checking the From header.
15460
15461 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
15462 into own function for reuse by emacsbug.el.
15463
15464 2012-02-10 Leo Liu <sdl.web@gmail.com>
15465
15466 * subr.el (condition-case-unless-debug): Rename from
15467 condition-case-no-debug. All callers changed.
15468 (with-demoted-errors): Fix caller.
15469
15470 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
15471 * nxml/rng-valid.el (rng-do-some-validation):
15472 * emacs-lisp/package.el (package-refresh-contents)
15473 (package-menu-execute):
15474 * desktop.el (desktop-create-buffer):
15475 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
15476
15477 2012-02-10 Glenn Morris <rgm@gnu.org>
15478
15479 * textmodes/bibtex.el:
15480 Add missing :version tags for new/changed defcustoms.
15481
15482 * files.el (remote-file-name-inhibit-cache): Doc fixes.
15483
15484 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
15485
15486 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15487 (smtpmail-via-smtp): Use it, or fall back on the From address.
15488 (smtpmail-send-it): Ditto.
15489
15490 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
15491
15492 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15493 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
15494 (byte-compile-tmp-var): New const.
15495 (byte-compile-defvar): Use it to minimize .elc size.
15496 Just use `defvar' rather than simulate it (bug#10761).
15497
15498 2012-02-09 Glenn Morris <rgm@gnu.org>
15499
15500 * files.el (rename-uniquely): Doc fix. (Bug#3806)
15501
15502 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15503 Add :version tags.
15504
15505 * progmodes/compile.el (compilation-error-screen-columns)
15506 (compilation-first-column, compilation-filter-start): Doc fixes.
15507
15508 * vc/log-view.el (log-view-toggle-entry-display):
15509 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15510
15511 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15512 (report-emacs-bug-can-use-xdg-email):
15513 (report-emacs-bug-insert-to-mailer): Doc fixes.
15514 (report-emacs-bug): Message fix.
15515
15516 * net/browse-url.el (browse-url-can-use-xdg-open)
15517 (browse-url-xdg-open): Doc fixes.
15518
15519 * electric.el (electric-indent-mode, electric-pair-mode)
15520 (electric-layout-rules, electric-layout-mode): Doc fixes.
15521 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15522
15523 2012-02-08 Martin Rudalics <rudalics@gmx.at>
15524
15525 * server.el (server-unselect-display): Don't inadvertently kill
15526 the current buffer. (Bug#10729)
15527
15528 2012-02-08 Glenn Morris <rgm@gnu.org>
15529
15530 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15531 (sql-list-table): Doc fixes.
15532
15533 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15534 Comment out (does nothing).
15535
15536 * completion.el (dynamic-completion-mode):
15537 * dirtrack.el (dirtrack-debug-mode):
15538 * electric.el (electric-layout-mode):
15539 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15540 * face-remap.el (text-scale-mode, buffer-face-mode):
15541 * iimage.el (iimage-mode):
15542 * image-mode.el (image-transform-mode):
15543 * minibuffer.el (completion-in-region-mode):
15544 * scroll-lock.el (scroll-lock-mode):
15545 * simple.el (next-error-follow-minor-mode):
15546 * tar-mode.el (tar-subfile-mode):
15547 * tooltip.el (tooltip-mode):
15548 * vcursor.el (vcursor-use-vcursor-map):
15549 * wid-browse.el (widget-minor-mode):
15550 * emulation/tpu-edt.el (tpu-edt-mode):
15551 * emulation/tpu-extras.el (tpu-cursor-free-mode):
15552 * international/iso-ascii.el (iso-ascii-mode):
15553 * language/thai-util.el (thai-word-mode):
15554 * mail/supercite.el (sc-minor-mode):
15555 * net/goto-addr.el (goto-address-mode):
15556 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15557 * progmodes/cwarn.el (cwarn-mode):
15558 * progmodes/flymake.el (flymake-mode):
15559 * progmodes/glasses.el (glasses-mode):
15560 * progmodes/hideshow.el (hs-minor-mode):
15561 * progmodes/pascal.el (pascal-outline-mode):
15562 * textmodes/enriched.el (enriched-mode):
15563 * vc/smerge-mode.el (smerge-mode):
15564 Doc fixes (minor mode argument).
15565
15566 2012-02-07 Eli Zaretskii <eliz@gnu.org>
15567
15568 * ls-lisp.el (ls-lisp-sanitize): New function.
15569 (ls-lisp-insert-directory): Use it to fix or remove any elements
15570 in file-alist with missing attributes. (Bug#4673)
15571
15572 2012-02-07 Alan Mackenzie <acm@muc.de>
15573
15574 Fix spurious recognition of c-in-knr-argdecl.
15575
15576 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15577 putative K&R region.
15578
15579 2012-02-07 Alan Mackenzie <acm@muc.de>
15580
15581 * progmodes/cc-engine.el (c-forward-objc-directive):
15582 Prevent looping in "#pragma mark @implementation".
15583
15584 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
15585
15586 * notifications.el (notifications-on-closed-signal): Make `reason'
15587 optional. (Bug#10744)
15588
15589 2012-02-07 Glenn Morris <rgm@gnu.org>
15590
15591 * emacs-lisp/easy-mmode.el (define-minor-mode):
15592 Doc fixes for the macro and the mode it defines.
15593
15594 * image.el (imagemagick-types-inhibit): Doc fix.
15595
15596 * cus-start.el (imagemagick-render-type): Add it.
15597
15598 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
15599
15600 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15601 Set the default at load time, too, so that `font-lock-fontify-buffer'
15602 can be called without setting up the entire mode first. This fixes
15603 a bug in `mm-inline-text' with C MIME parts.
15604
15605 2012-02-06 Chong Yidong <cyd@gnu.org>
15606
15607 * simple.el (list-processes--refresh): Delete exited processes
15608 (Bug#8094).
15609
15610 * comint.el (comint-next-prompt): next-single-char-property-change
15611 and prev-single-char-property-change never return nil (Bug#8657).
15612
15613 * custom.el (defcustom): Doc fix (Bug#9711).
15614
15615 2012-02-05 Chong Yidong <cyd@gnu.org>
15616
15617 * cus-edit.el (custom-variable-reset-backup): Quote the value
15618 before storing it in the customized-value property (Bug#6712).
15619 (custom-display): Add a customization type tag.
15620 (custom-buffer-create-internal): Improve tooltip message.
15621
15622 * wid-edit.el (widget-field-value-get): New optional arg to
15623 suppress trailing whitespace truncation.
15624 (character): Use it (Bug#2689).
15625
15626 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
15627
15628 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15629 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15630
15631 2012-02-05 Chong Yidong <cyd@gnu.org>
15632
15633 * cus-edit.el (custom-variable-value-create): For mismatched
15634 types, show the current value (Bug#7600).
15635
15636 * custom.el (defcustom): Doc fix.
15637
15638 2012-02-05 Glenn Morris <rgm@gnu.org>
15639
15640 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15641
15642 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
15643
15644 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15645 (pp-buffer): Use `ignore-errors', `looking-at-p'.
15646 (pp-last-sexp): Use `looking-at-p'.
15647
15648 2012-02-04 Glenn Morris <rgm@gnu.org>
15649
15650 * files.el (revert-buffer):
15651 Doc fix (mention revert-buffer-in-progress-p).
15652
15653 * emacs-lisp/ert-x.el (ert-simulate-command):
15654 Check deferred-action-list (which is obsolete) is bound.
15655
15656 * subr.el (with-wrapper-hook): Doc fixes.
15657
15658 * simple.el (filter-buffer-substring-functions)
15659 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15660
15661 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
15662
15663 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15664 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
15665
15666 2012-02-04 Leo Liu <sdl.web@gmail.com>
15667
15668 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15669
15670 2012-02-04 Glenn Morris <rgm@gnu.org>
15671
15672 * image.el (image-extension-data): Add obsolete alias.
15673
15674 * isearch.el (isearch-update): Doc fix.
15675
15676 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15677
15678 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15679
15680 2012-02-03 Glenn Morris <rgm@gnu.org>
15681
15682 * image.el (image-animated-p): Doc fix. Use image-animated-types.
15683 (image-animate-timeout): Doc fix.
15684
15685 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15686
15687 2012-02-02 Glenn Morris <rgm@gnu.org>
15688
15689 * server.el (server-auth-dir): Doc fix.
15690 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
15691
15692 * subr.el (run-mode-hooks): Doc fix.
15693
15694 2012-02-02 Juri Linkov <juri@jurta.org>
15695
15696 * image-mode.el (image-toggle-display-image): Remove tautological
15697 `major-mode' from the `derived-mode-p' test.
15698
15699 2012-02-02 Kenichi Handa <handa@m17n.org>
15700
15701 * composite.el (compose-region): Cancel previous change.
15702
15703 2012-02-02 Kenichi Handa <handa@m17n.org>
15704
15705 * composite.el (compose-region, compose-string): Signal error for
15706 a null string component (Bug#6988).
15707
15708 2012-02-01 Chong Yidong <cyd@gnu.org>
15709
15710 * view.el (view-buffer-other-window, view-buffer-other-frame):
15711 Handle special modes like view-buffer (Bug#10650).
15712 (view-buffer): Simplify.
15713
15714 * frame.el (set-frame-font): Tweak meaning of third argument.
15715
15716 * dynamic-setting.el (font-setting-change-default-font):
15717 Use set-frame-font (Bug#9982).
15718
15719 2012-02-01 Glenn Morris <rgm@gnu.org>
15720
15721 * progmodes/compile.el (compilation-internal-error-properties):
15722 Respect compilation-first-column in the "*compilation*" buffer.
15723
15724 * emacs-lisp/easy-mmode.el (define-minor-mode):
15725 Relax :variable's test for a named function.
15726
15727 2012-01-31 Alan Mackenzie <acm@muc.de>
15728
15729 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15730 off by one error.
15731
15732 2012-01-31 Chong Yidong <cyd@gnu.org>
15733
15734 * frame.el (set-frame-font): New arg ALL-FRAMES.
15735
15736 * menu-bar.el (menu-set-font): Use set-frame-font.
15737
15738 * faces.el (face-spec-reset-face): Don't apply unspecified
15739 attribute values to the default face.
15740
15741 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
15742
15743 * progmodes/cwarn.el (cwarn): Remove dead link.
15744 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15745 Remove * from defcustom docstrings.
15746 (turn-on-cwarn-mode): Make obsolete.
15747 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15748 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15749
15750 2012-01-31 Glenn Morris <rgm@gnu.org>
15751
15752 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15753 Fix :variable handling of mode a symbol not equal to modefun.
15754 Allow named functions to be used as the cdr of :variable.
15755
15756 2012-01-30 Glenn Morris <rgm@gnu.org>
15757
15758 * emacs-lisp/authors.el (authors-fixed-entries):
15759 Remove reference to deleted file rnewspost.el.
15760
15761 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
15762
15763 * window.el (window-with-parameter): Remove unused variable `windows'.
15764 (window--side-check): Remove unused variable `code'.
15765 (window--resize-siblings): Remove unused variable `first'.
15766 (adjust-window-trailing-edge): Remove unused variable `failed'.
15767 (window-deletable-p, window--delete): Remove unused variable `buffer'.
15768 Use `let', not `let*'.
15769 (balance-windows-2): Remove unused variable `found'.
15770 (window--state-put-2): Remove unused variable `splits'.
15771 (window-state-put): Remove unused variable `selected'.
15772 (same-window-p): Use `string-match-p'.
15773 (display-buffer-assq-regexp): Remove unused variable `value'.
15774 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15775 Mark argument ALIST as ignored.
15776 (pop-to-buffer): Remove unused variable `old-window'.
15777
15778 2012-01-29 Eli Zaretskii <eliz@gnu.org>
15779
15780 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15781 and .lzma compressed files.
15782
15783 2012-01-29 Chong Yidong <cyd@gnu.org>
15784
15785 * frame.el (window-system-default-frame-alist): Doc fix.
15786
15787 * dynamic-setting.el (font-setting-change-default-font): Don't
15788 change the default face if SET-FONT argument is non-nil (Bug#9982).
15789
15790 2012-01-29 Samuel Bronson <naesten@gmail.com>
15791
15792 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15793
15794 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
15795
15796 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15797 breakpoints in files outside current directory (Bug#6098).
15798
15799 2012-01-29 Chong Yidong <cyd@gnu.org>
15800
15801 * progmodes/python.el: Require ansi-color at top-level.
15802
15803 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15804 Define and use in Emacs Lisp mode (Bug#9360).
15805 (lisp-mode-abbrev-table): Add doc.
15806 (lisp-mode-variables): Don't set local-abbrev-table.
15807 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15808
15809 2012-01-28 Roland Winkler <winkler@gnu.org>
15810
15811 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15812
15813 2012-01-28 Roland Winkler <winkler@gnu.org>
15814
15815 * textmodes/bibtex.el (bibtex-entry-alist): New function.
15816 (bibtex-set-dialect): Use it. Either set global values of
15817 dialect-dependent variables or bind these variables buffer-locally
15818 (Bug#10254).
15819 (bibtex-mode): Call bibtex-set-dialect via
15820 hack-local-variables-hook.
15821 (bibtex-dialect): Update docstring.
15822 Add safe-local-variable predicate.
15823 (bibtex-entry-alist, bibtex-field-alist): Initialize via
15824 bibtex-set-dialect.
15825 (bibtex-mode-map): Define menu for each dialect.
15826 (bibtex-entry): Fix docstring.
15827
15828 2012-01-28 Chong Yidong <cyd@gnu.org>
15829
15830 * eshell/esh-arg.el (eshell-quote-argument): New function.
15831
15832 * eshell/esh-ext.el (eshell-invoke-batch-file):
15833 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15834 first arg to eshell-parse-command (Bug#10523).
15835
15836 2012-01-28 Drew Adams <drew.adams@oracle.com>
15837
15838 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15839 `default-directory' is non-nil.
15840
15841 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15842
15843 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15844 line that displays system-configuration-options. (Bug#9924)
15845
15846 2012-01-28 Drew Adams <drew.adams@oracle.com>
15847
15848 * descr-text.el (describe-char): Show information about POS, in
15849 addition to information about the character at POS. Improve and
15850 update the doc string. Change "code point" to "code point in
15851 charset", to avoid confusion with the character's Unicode code
15852 point shown above that. (Bug#10129)
15853
15854 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15855
15856 * descr-text.el (describe-char): Show the raw character, not only
15857 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
15858 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15859 for the reasons.
15860
15861 2012-01-28 Phil Hagelberg <phil@hagelb.org>
15862
15863 * emacs-lisp/package.el (package-install):
15864 Run package-refresh-contents if there is no archive yet (Bug#9798).
15865
15866 2012-01-28 Chong Yidong <cyd@gnu.org>
15867
15868 * emacs-lisp/package.el (package-maybe-load-descriptor):
15869 New function, split from package-maybe-load-descriptor.
15870 (package-maybe-load-descriptor): Use it.
15871 (package-download-transaction): Fully load required packages
15872 inside the loop, so that `require' calls work (Bug#10593).
15873 (package-install): No need to call package-initialize now.
15874
15875 2012-01-28 Chong Yidong <cyd@gnu.org>
15876
15877 * simple.el (deactivate-mark): Doc fix (Bug#8614).
15878
15879 * tooltip.el (tooltip-mode): Doc fix.
15880 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15881
15882 * frame.el (set-cursor-color): Doc fix (Bug#352).
15883
15884 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15885 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15886
15887 * cus-edit.el (custom-buffer-create-internal): Fix search button
15888 action (Bug#10542).
15889 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15890
15891 2012-01-27 Eduard Wiebe <usenet@pusto.de>
15892
15893 * dired.el (dired-mark-files-regexp):
15894 Include any subdirectory components. (Bug#10445)
15895
15896 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
15897
15898 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15899 Handle [host]:port syntax. (Bug#10533)
15900
15901 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
15902
15903 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15904
15905 2012-01-26 Glenn Morris <rgm@gnu.org>
15906
15907 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15908 * term.el (term-raw-escape-map): Use Control-X-prefix.
15909 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
15910
15911 2012-01-25 Martin Rudalics <rudalics@gmx.at>
15912
15913 * window.el (window-state-get, window--state-get-1): Don't deal
15914 with fixed-sizeness of windows. Simplify code.
15915
15916 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
15917
15918 * window.el (window--state-get-1, window--state-put-2):
15919 Don't save and restore the mark.
15920
15921 2012-01-25 Chong Yidong <cyd@gnu.org>
15922
15923 * custom.el (custom-variable-p): Doc fix.
15924
15925 2012-01-25 Glenn Morris <rgm@gnu.org>
15926
15927 * dired.el (dired-goto-file): Handle some of the more common
15928 characters that `ls -b' escapes. (Bug#10596)
15929
15930 * progmodes/compile.el (compilation-next-error-function):
15931 Respect compilation-first-column in the "*compilation*" buffer.
15932 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
15933
15934 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
15935
15936 2012-01-24 Glenn Morris <rgm@gnu.org>
15937
15938 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
15939
15940 2012-01-24 Julien Danjou <julien@danjou.info>
15941
15942 * color.el (color-rgb-to-hsl): Fix value computing.
15943 (color-hue-to-rgb): New function.
15944 (color-hsl-to-rgb): New function.
15945 (color-clamp, color-saturate-hsl, color-saturate-name)
15946 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15947 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15948
15949 2012-01-24 Glenn Morris <rgm@gnu.org>
15950
15951 * vc/vc-rcs.el (vc-rcs-create-tag):
15952 * vc/vc-sccs.el (vc-sccs-create-tag):
15953 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
15954
15955 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
15956
15957 * eshell/esh-util.el (eshell-read-hosts-file):
15958 Skip comment lines. (Bug#10549)
15959
15960 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
15961
15962 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
15963
15964 * subr.el (display-delayed-warnings): Doc fix.
15965 (collapse-delayed-warnings): New function to collapse identical
15966 adjacent warnings.
15967 (delayed-warnings-hook): Add it.
15968
15969 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
15970
15971 * net/tramp.el (tramp-action-login): Set connection property "login-as".
15972
15973 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15974 (tramp-default-user-alist): Don't add "pscp".
15975 (tramp-do-copy-or-rename-file-out-of-band): Use connection
15976 property "login-as", if set. (Bug#10530)
15977
15978 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
15979
15980 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15981 "plink1" and "psftp". (Bug#10530)
15982
15983 2012-01-21 Kenichi Handa <handa@m17n.org>
15984
15985 * international/mule-cmds.el (prefer-coding-system): Show a
15986 warning message if the default value of file-name-coding-system
15987 was not changed.
15988
15989 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15990
15991 * windmove.el (windmove-reference-loc):
15992 Fix windmove-reference-loc miscalculation.
15993
15994 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
15995
15996 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15997 default unit.
15998
15999 2012-01-21 Glenn Morris <rgm@gnu.org>
16000
16001 * international/mule.el (auto-coding-alist): Add .tbz.
16002
16003 * files.el (local-enable-local-variables): Doc fix.
16004 (inhibit-local-variables-regexps): Rename from
16005 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
16006 Doc fix. Add some extensions from auto-coding-alist.
16007 (inhibit-local-variables-suffixes):
16008 Rename from inhibit-first-line-modes-suffixes. Doc fix.
16009 (inhibit-local-variables-p):
16010 New function, extracted from set-auto-mode-1.
16011 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
16012 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
16013 (hack-local-variables): Doc fix. Make the mode-only case
16014 respect enable-local-variables and friends.
16015 Respect inhibit-local-variables-regexps for file-locals, but
16016 not for directory-locals.
16017 (set-visited-file-name):
16018 Take account of inhibit-local-variables-regexps.
16019 Whether it applies may change as the file name is changed.
16020 * jka-cmpr-hook.el (jka-compr-install):
16021 * jka-compr.el (jka-compr-uninstall):
16022 Update for inhibit-first-line-modes-suffixes name change.
16023
16024 2012-01-20 Martin Rudalics <rudalics@gmx.at>
16025
16026 * help-macro.el (make-help-screen): Temporarily restore original
16027 binding for minor-mode-map-alist (Bug#10454).
16028
16029 2012-01-19 Julien Danjou <julien@danjou.info>
16030
16031 * color.el (color-name-to-rgb): Use the white color to find the max
16032 color component value and return correctly computed values.
16033 (color-name-to-rgb): Add missing float conversion for max value.
16034
16035 2012-01-19 Martin Rudalics <rudalics@gmx.at>
16036
16037 * window.el (window--state-get-1, window-state-get): Do not use
16038 special state value for window-persistent-parameters.
16039 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
16040 (window--state-put-2): Reset all window parameters to nil before
16041 assigning values of persistent parameters.
16042
16043 2012-01-18 Alan Mackenzie <acm@muc.de>
16044
16045 Eliminate sluggishness and hangs in fontification of "semicolon
16046 deserts".
16047
16048 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
16049 Change value 10000 -> 3000.
16050 (c-state-safe-place): Reformulate so it doesn't stack up an
16051 infinite number of wrong entries in c-state-nonlit-pos-cache.
16052 (c-determine-limit-get-base, c-determine-limit): New functions to
16053 determine backward search limits disregarding literals.
16054 (c-find-decl-spots): Amend commenting.
16055 (c-cheap-inside-bracelist-p): New function which detects "={".
16056
16057 * progmodes/cc-fonts.el
16058 (c-make-font-lock-BO-decl-search-function): Give a limit to a
16059 backward search.
16060 (c-font-lock-declarations): Fix an occurrence of point being
16061 undefined. Check additionally for point being in a bracelist or
16062 near a macro invocation without a semicolon so as to avoid a
16063 fruitless time consuming search for a declarator. Give a more
16064 precise search limit for declarators using the new
16065 c-determine-limit.
16066
16067 2012-01-18 Glenn Morris <rgm@gnu.org>
16068
16069 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
16070 (set-auto-mode): Doc fixes.
16071
16072 2012-01-17 Glenn Morris <rgm@gnu.org>
16073
16074 * isearch.el (search-nonincremental-instead): Fix doc typo.
16075
16076 * dired.el (dired-insert-directory): Handle newlines in directory name.
16077 (dired-build-subdir-alist): Unescape newlines in directory name.
16078
16079 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
16080
16081 * net/tramp.el (tramp-local-end-of-line): New defcustom.
16082 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
16083 (tramp-action-terminal): Use it. (Bug#10530)
16084
16085 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
16086
16087 * minibuffer.el (completion--replace): Strip properties (bug#10062).
16088
16089 2012-01-16 Martin Rudalics <rudalics@gmx.at>
16090
16091 * window.el (window-state-ignored-parameters): Remove variable.
16092 (window--state-get-1): Rename argument MARKERS to IGNORE.
16093 Handle persistent window parameters. Make copy of clone-of
16094 parameter only if requested. (Bug#10348)
16095 (window--state-put-2): Install a window parameter only if it has
16096 a non-nil value or an existing parameter shall be overwritten.
16097
16098 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
16099
16100 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
16101
16102 2012-01-14 Eli Zaretskii <eliz@gnu.org>
16103
16104 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
16105 don't pass the (nil) value of `upnode' to string-match.
16106
16107 2012-01-14 Chong Yidong <cyd@gnu.org>
16108
16109 * startup.el (command-line): Fix X resource class for cursorColor.
16110 Fix values recognized by the cursorBlink resource.
16111
16112 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
16113
16114 * epg.el (epg--make-temp-file): Avoid permission race condition
16115 when running on old Emacs versions (bug#10403).
16116
16117 2012-01-14 Glenn Morris <rgm@gnu.org>
16118
16119 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
16120
16121 2012-01-13 Alan Mackenzie <acm@muc.de>
16122
16123 Fix filling for when filladapt mode is enabled.
16124
16125 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
16126 c-mask-paragraph, pass in `fill-paragraph' rather than
16127 `fill-region-as-paragraph'. (This is a reversion of a previous
16128 change.)
16129 * progmodes/cc-mode.el (c-basic-common-init):
16130 Make fill-paragraph-handle-comment buffer local and set it to nil.
16131
16132 2012-01-13 Glenn Morris <rgm@gnu.org>
16133
16134 * dired.el (dired-switches-escape-p): New function.
16135 (dired-insert-directory): Use dired-switches-escape-p.
16136 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
16137
16138 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
16139
16140 2012-01-12 Glenn Morris <rgm@gnu.org>
16141
16142 * mail/sendmail.el (mail-mode): Update paragraph-separate for
16143 changes in adaptive-fill-regexp. (Bug#10276)
16144
16145 2012-01-11 Alan Mackenzie <acm@muc.de>
16146
16147 Fix Emacs bug #10463 - put `widen's around the critical spots.
16148
16149 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
16150 widen around each invocation of c-state-pp-to-literal. Remove an
16151 unused let variable.
16152
16153 2012-01-11 Glenn Morris <rgm@gnu.org>
16154
16155 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
16156 Doc fix.
16157
16158 2012-01-10 Chong Yidong <cyd@gnu.org>
16159
16160 * net/network-stream.el (network-stream-open-starttls):
16161 Avoid emitting a confusing error message when the server gives a bad
16162 response to the capability command.
16163
16164 2012-01-10 Glenn Morris <rgm@gnu.org>
16165
16166 * mail/unrmail.el (unrmail): Tweak previous change.
16167
16168 2012-01-09 Chong Yidong <cyd@gnu.org>
16169
16170 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
16171
16172 2012-01-08 Alan Mackenzie <acm@muc.de>
16173
16174 Optimize font locking in long enum definitions.
16175
16176 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
16177 arm to a cond form to handle enums.
16178 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
16179 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
16180
16181 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
16182
16183 * files.el (move-file-to-trash): Preserve default file modes on error.
16184 (Bug#10401)
16185
16186 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16187
16188 * faces.el (set-face-attribute): Clarify the meaning of the nil
16189 frame (bug#10294).
16190
16191 * subr.el (with-selected-frame): Mention that the selected frame
16192 is restored (bug#9980).
16193
16194 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
16195 (bug#9759).
16196
16197 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
16198 (password-read): Don't autoload unused function.
16199
16200 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
16201
16202 * progmodes/which-func.el (which-func-mode): Turn into a
16203 non-interactive function and mark as obsolete (bug#10428).
16204
16205 2012-01-06 Chong Yidong <cyd@gnu.org>
16206
16207 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
16208 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
16209 functions, along with 1 and -1.
16210
16211 2012-01-06 Eli Zaretskii <eliz@gnu.org>
16212
16213 * time.el (display-time-load-average)
16214 (display-time-default-load-average): Doc fixes. See the thread
16215 starting at
16216 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
16217 for the details.
16218
16219 2012-01-06 Glenn Morris <rgm@gnu.org>
16220
16221 * mail/unrmail.el (unrmail): Give an explicit error if the input file
16222 has no messages. (Bug#10377)
16223
16224 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
16225 than Info-edit. (Bug#10385)
16226
16227 * time.el (display-time-load-average, display-time-next-load-average):
16228 Doc fixes.
16229
16230 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
16231 local setting of buffer-read-only to the input buffer. (Bug#10419)
16232
16233 * calendar/calendar.el (calendar-mode):
16234 Locally set scroll-margin to 0. (Bug#10379)
16235
16236 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
16237
16238 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
16239
16240 2012-01-05 Glenn Morris <rgm@gnu.org>
16241
16242 * eshell/em-unix.el (diff-no-select): Autoload it.
16243 (eshell/diff): Use diff-no-select. (Bug#10420)
16244
16245 2012-01-05 Chong Yidong <cyd@gnu.org>
16246
16247 * shell.el (shell-dynamic-complete-functions): Revert last change.
16248 (shell-command-completion-function): New function.
16249 (shell-completion-vars): Use it to implement
16250 shell-completion-execonly (Bug#10417).
16251
16252 * custom.el (enable-theme): Don't set custom-safe-themes.
16253
16254 * cus-theme.el (custom-theme-merge-theme):
16255 Ignore custom-enabled-themes and custom-safe-themes.
16256
16257 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
16258
16259 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
16260 first prompt in `sql-interacive-mode'.
16261 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
16262 keywords.
16263 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
16264 (sql-product-interactive): Bug fix: Set `sql-buffer' in
16265 context of original buffer. Invoke `sql-login-hook'.
16266
16267 2012-01-04 Eli Zaretskii <eliz@gnu.org>
16268
16269 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
16270 letters in cite-prefix.
16271
16272 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16273
16274 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
16275
16276 2012-01-03 Chong Yidong <cyd@gnu.org>
16277
16278 * shell.el (shell-dynamic-complete-functions):
16279 Put pcomplete-completions-at-point, so as to try
16280 comint-filename-completion first (Bug#10417).
16281
16282 2012-01-02 Richard Stallman <rms@gnu.org>
16283
16284 * battery.el (battery-status-function):
16285 Detect when to use battery-yeeloong-sysfs.
16286 (battery-echo-area-format): Add string for Yeeloong.
16287 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
16288 (battery-yeeloong-sysfs): New function.
16289
16290 2012-01-02 Chong Yidong <cyd@gnu.org>
16291
16292 * dirtrack.el (dirtrack-list): Eliminate unused third element.
16293 (dirtrack): Merge code for handling relative filenames in prompt
16294 from shell-dir-cookie-watcher.
16295 (dirtrack-debug-message): New arg to avoid excess format calls.
16296
16297 * shell.el (shell-dir-cookie-re): Variable deleted.
16298 (shell-dir-cookie-watcher): Function deleted.
16299 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
16300 with dirtrack-mode.
16301
16302 2012-01-01 Eli Zaretskii <eliz@gnu.org>
16303
16304 * term/w32-win.el (dynamic-library-alist) <gnutls>:
16305 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
16306 libgnutls-26.dll.
16307
16308 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
16309
16310 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
16311
16312 2011-12-31 Eli Zaretskii <eliz@gnu.org>
16313
16314 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
16315 headers of non-MIME messages, when rmail-enable-mime is non-nil.
16316
16317 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
16318
16319 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
16320 also for alternative shells.
16321 (tramp-open-connection-setup-interactive-shell): Check, whether
16322 the shell is a busybox.
16323 (tramp-send-command): Don't suppress multiple prompts for
16324 busyboxes, it hurts.
16325
16326 2011-12-28 Chong Yidong <cyd@gnu.org>
16327
16328 * progmodes/gdb-mi.el (gdb-get-source-file-list)
16329 (gdb-get-source-file): Move mode line update to
16330 gdb-get-source-file (Bug#10087).
16331
16332 2011-12-25 Chong Yidong <cyd@gnu.org>
16333
16334 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
16335 gud-gdb-marker-filter without taking it as an argument.
16336 (gud-gdb-run-command-fetch-lines): Caller changed.
16337 (gud-gdb-completion-function): New variable.
16338 (gud-gdb-completion-at-point): Use it.
16339 (gud-gdb-completions-1): Split from gud-gdb-completions.
16340
16341 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
16342 function as separate arguments.
16343 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
16344 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
16345 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
16346 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
16347 (gdb-stopped, def-gdb-auto-update-trigger)
16348 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
16349 (gdb-get-changed-registers, gdb-get-main-selected-frame):
16350 Callers changed.
16351 (gud-gdbmi-completions): New function.
16352 (gdb): Use it for generating the completion table.
16353
16354 2011-12-24 Alan Mackenzie <acm@muc.de>
16355
16356 Introduce a mechanism to widen the region used in context font
16357 locking. Use this to protect declarations from losing their contexts.
16358
16359 * progmodes/cc-langs.el (c-before-font-lock-functions):
16360 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
16361 (c-before-context-fontification-functions): New defvar, a list of
16362 functions to be run just before context (etc.) font locking.
16363
16364 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
16365 New, functionality extracted from
16366 c-neutralize-syntax-in-and-mark-CPP.
16367 (c-in-after-change-fontification): New variable.
16368 (c-after-change): Set c-in-after-change-fontification.
16369 (c-set-fl-decl-start): Rejig its interface, so it can be called
16370 from both after-change and context fontifying.
16371 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
16372 New functions.
16373 (c-standard-font-lock-fontify-region-function): New variable.
16374 (c-font-lock-fontify-region): New function.
16375
16376 2011-12-24 Juri Linkov <juri@jurta.org>
16377
16378 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
16379 (Bug#10348)
16380
16381 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
16382
16383 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
16384 existence of source file. (Bug#10325)
16385
16386 2011-12-23 Alan Mackenzie <acm@muc.de>
16387
16388 Fix unstable fontification inside templates.
16389
16390 * progmodes/cc-langs.el (c-before-font-lock-functions):
16391 Newly created from the singular version. The (c c++ objc) entry now
16392 additionally has c-set-fl-decl-start. The other languages (apart
16393 from AWK) have that as a single entry.
16394
16395 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16396 The functionality for "local" declarations has been extracted to
16397 c-set-fl-decl-start.
16398
16399 * progmodes/cc-mode.el (c-common-init, c-after-change):
16400 Changes due to pluralisation of c-before-font-lock-functions.
16401 (c-set-fl-decl-start): New function, extracted from
16402 c-font-lock-enclosing-decls and enhanced.
16403
16404 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
16405
16406 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
16407
16408 2011-12-22 Juri Linkov <juri@jurta.org>
16409
16410 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
16411
16412 2011-12-22 Chong Yidong <cyd@gnu.org>
16413
16414 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
16415
16416 2011-12-21 Drew Adams <drew.adams@oracle.com>
16417
16418 * files.el (file-remote-p): Fix docstring. (Bug#10319)
16419
16420 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
16421
16422 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
16423
16424 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
16425
16426 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
16427 highlighting and support. Fix up comments for capitalization.
16428 (cfengine-mode-debug): New var.
16429 (cfengine3-mode): Change the modeline indicator to "CFE3".
16430 (cfengine3-font-lock-keywords): Improve defun highlighting.
16431 (cfengine2-actions): Rename from `cfengine-actions'.
16432 (cfengine2-font-lock-keywords): Rename from
16433 `cfengine-font-lock-keywords'.
16434 (cfengine2-imenu-expression): Rename from
16435 `cfengine-imenu-expression'.
16436 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
16437 (cfengine2-beginning-of-defun): Rename from
16438 `cfengine-beginning-of-defun'.
16439 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
16440 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
16441 (cfengine2-mode): Rename from `cfengine-mode'. Change the
16442 modeline indicator to "CFE2".
16443 (cfengine-mode): Defalias to `cfengine-auto-mode'.
16444 (cfengine-mode-abbrevs): Mark obsolete.
16445
16446 2011-12-21 Chong Yidong <cyd@gnu.org>
16447
16448 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
16449 filename argument.
16450
16451 2011-12-20 Martin Rudalics <rudalics@gmx.at>
16452
16453 * window.el (window-normalize-buffer-to-display): Remove.
16454 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
16455
16456 2011-12-19 Chong Yidong <cyd@gnu.org>
16457
16458 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
16459 Don't signal an error in a predicate function; return non-nil.
16460 (vc-dir-mark-file): Move the error here.
16461 (vc-dir-mark-unmark): If acting on the region, keep going if one
16462 of the entries cannot be marked/unmarked.
16463 (vc-dir-mark-all-files): If current entry is a directory, mark
16464 only child files, as documented.
16465
16466 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
16467
16468 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
16469 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
16470 addition.
16471
16472 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
16473
16474 * term/ns-win.el (ns-get-selection-internal)
16475 (ns-store-selection-internal): Declare.
16476 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
16477 Declare as obsolete.
16478 (ns-get-pasteboard, ns-paste-secondary):
16479 Use ns-get-selection-internal.
16480 (ns-set-pasteboard, ns-copy-including-secondary):
16481 Use ns-store-selection-internal.
16482
16483 2011-12-17 Chong Yidong <cyd@gnu.org>
16484
16485 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16486 (vc-deduce-fileset): Doc fix.
16487
16488 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
16489
16490 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16491
16492 2011-12-13 Sam Steingold <sds@gnu.org>
16493
16494 * man.el (Man-getpage-in-background): When running under a
16495 window-system, ignore $MANWIDTH and $COLUMNS.
16496
16497 2011-12-15 Kenichi Handa <handa@m17n.org>
16498
16499 * language/ethio-util.el: Change coding tag to utf-8-emacs.
16500 (setup-ethiopic-environment-internal): Comment out key-binding for
16501 ethio-toggle-punctuation.
16502
16503 2011-12-13 Alan Mackenzie <acm@muc.de>
16504
16505 Add the switch statement to AWK Mode.
16506
16507 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16508 "default" to the keywords regexp.
16509
16510 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16511 expression as the rest.
16512 (c-nonlabel-token-key): Allow string literals for AWK.
16513 Refactor for the other modes.
16514
16515 Large brace-block initialisation makes CC Mode slow: Fix.
16516 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16517 routines. Limit backward searching in c-font-lock-enclosing.decl.
16518
16519 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16520 pp-state and literal type in addition to the limits.
16521 (c-state-safe-place): New defun, extracted from c-state-literal-at.
16522 (c-state-literal-at): Use the above new defun.
16523 (c-slow-in-literal, c-fast-in-literal): Remove.
16524 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16525
16526 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16527 being in a literal. Add a limit for backward searching.
16528
16529 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16530 c-slow-in-literal.
16531
16532 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
16533
16534 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16535
16536 2011-12-13 Martin Rudalics <rudalics@gmx.at>
16537
16538 * window.el (delete-other-windows): Use correct frame in call to
16539 window-with-parameter.
16540
16541 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
16542
16543 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16544 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16545 (makefile-gmake-statements, makefile-makepp-statements):
16546 Use it and add new makepp keywords.
16547 (makefile-makepp-font-lock-keywords): Add new patterns.
16548 (makefile-match-function-end): Match new [...] and [[...]].
16549
16550 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
16551
16552 * ses.el (ses-call-printer-return, ses-cell-property-get)
16553 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16554 (ses-create-cell-variable, ses-reset-header-string)
16555 (ses-cell-set-formula, ses-repair-cell-reference-all)
16556 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16557 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16558 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16559 (ses-aset-with-undo, ses-load, ses-truncate-cell)
16560 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16561 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16562 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16563 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16564 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16565 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16566 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16567 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16568
16569 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
16570
16571 * ses.el: The overall change is to add cell renaming, that is
16572 setting fancy names for cell symbols other than name matching
16573 "\\`[A-Z]+[0-9]+\\'" regexp .
16574 (ses-create-cell-variable): New defun.
16575 (ses-relocate-formula): Relocate formulas only for cells the
16576 symbols of which are not renamed, i.e. symbols whose names do not
16577 match regexp "\\`[A-Z]+[0-9]+\\'".
16578 (ses-relocate-all): Relocate values only for cells the symbols of
16579 which are not renamed.
16580 (ses-load): Create cells variables as the (ses-cell ...) are read,
16581 in order to check row col consistency with cell symbol name only
16582 for cells that are not renamed.
16583 (ses-replace-name-in-formula): New defun.
16584 (ses-rename-cell): New defun.
16585
16586 2011-12-11 Chong Yidong <cyd@gnu.org>
16587
16588 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16589 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16590
16591 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
16592
16593 * window.el (other-window): Fix docstring.
16594
16595 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16596
16597 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16598 `from' or `to' address before taking its substring.
16599 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16600 encoded name is chopped in the middle of the encoded string, and
16601 thus displayed encoded.
16602
16603 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
16604
16605 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16606
16607 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16608
16609 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
16610 to use texinfo-update-node and commands that call it if the
16611 Texinfo file uses @node lines without next/prev/up pointers.
16612 Correct outdated description about texinfo-master-menu.
16613 (texinfo-all-menus-update, texinfo-master-menu)
16614 (texinfo-update-node, texinfo-every-node-update)
16615 (texinfo-multiple-files-update): Doc fix. Warn against updating
16616 all the @node lines.
16617 (texinfo-master-menu): Only call texinfo-update-node if the prefix
16618 argument is numeric. Explain better in the doc string what the
16619 function really does.
16620 (texinfo-insert-master-menu-list): Improve the error message
16621 displayed if there's no menu in the Top node.
16622 (Bug#2975) See also this thread:
16623 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16624
16625 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
16626
16627 * speedbar.el (speedbar-supported-extension-expressions):
16628 Add .adb and .ads, commonly used for Ada source code (bug#10256).
16629
16630 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
16631
16632 * printing.el (pr-mode-alist):
16633 * simple.el (filter-buffer-substring-functions)
16634 (completion-list-insert-choice-function):
16635 * window.el (window-with-parameter, window-atom-root)
16636 (window-sides-slots, window-size-fixed, window-min-delta)
16637 (window-max-delta, window--resize-mini-window)
16638 (window--resize-child-windows-normal, window-tree)
16639 (delete-other-windows, quit-window, split-window)
16640 (display-buffer-record-window, special-display-buffer-names)
16641 (special-display-regexps, special-display-popup-frame)
16642 (same-window-p, split-window-sensibly)
16643 (display-buffer-overriding-action, display-buffer-alist)
16644 (display-buffer-base-action, display-buffer, switch-to-buffer)
16645 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16646 (fit-window-to-buffer, recenter-positions)
16647 (mouse-autoselect-window-state, mouse-autoselect-window-select):
16648 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16649 and remove unneeded backslashes in docstrings.
16650
16651 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
16652
16653 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16654
16655 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16656 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16657 end in ".mk".
16658 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16659 when reading the makefile (bug#10116).
16660
16661 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
16662
16663 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16664 (bug#10116).
16665
16666 2011-12-06 Glenn Morris <rgm@gnu.org>
16667
16668 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16669
16670 2011-12-06 Chong Yidong <cyd@gnu.org>
16671
16672 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16673
16674 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
16675
16676 * textmodes/table.el (table-shorten-cell): Fix typo.
16677
16678 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
16679
16680 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16681
16682 2011-12-05 Eli Zaretskii <eliz@gnu.org>
16683
16684 * descr-text.el (describe-char): Fix display of strong
16685 right-to-left characters and directional embeddings and overrides.
16686
16687 * simple.el (what-cursor-position): Fix display of codepoints of
16688 strong right-to-left characters.
16689
16690 2011-12-05 Chong Yidong <cyd@gnu.org>
16691
16692 * faces.el (read-color): Doc fix.
16693
16694 2011-12-05 Glenn Morris <rgm@gnu.org>
16695
16696 * align.el (align--set-marker): Add doc-string.
16697 Don't try to move something that is not a marker. (Bug#10216)
16698
16699 2011-12-04 Glenn Morris <rgm@gnu.org>
16700
16701 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16702 overly zealous deletion of trailing whitespace.
16703
16704 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
16705
16706 * server.el (server-delete-client): On Windows, do not try to delete
16707 the only terminal.
16708 (server-process-filter): On Windows, treat requests for a tty frame as
16709 if they were for a GUI frame if the running server is in GUI mode.
16710
16711 2011-12-03 Glenn Morris <rgm@gnu.org>
16712
16713 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
16714
16715 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
16716
16717 * electric.el: Streamline electric-indent's hook.
16718 (electric-indent-chars): Revert to simple list.
16719 (electric-indent-functions): New var.
16720 (electric-indent-post-self-insert-function): Use it.
16721
16722 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16723 there's no inferior buffer (bug#10196).
16724 (prolog-consult-compile): Don't use toggle-read-only.
16725
16726 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
16727
16728 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16729 interrupt. (Bug#10187)
16730
16731 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
16732
16733 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16734 (bug#9160).
16735
16736 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16737 (bug#10191).
16738
16739 2011-12-02 Juri Linkov <juri@jurta.org>
16740
16741 * info.el (Info-search): Display "end of manual" when Isearch
16742 reaches the end of single-file Info manual. (Bug#9918)
16743
16744 2011-12-02 Eli Zaretskii <eliz@gnu.org>
16745
16746 * isearch.el (isearch-message-prefix): Run the input method part
16747 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
16748
16749 2011-12-02 Juri Linkov <juri@jurta.org>
16750
16751 * isearch.el (isearch-occur): Use `word-search-regexp' for
16752 `isearch-word'.
16753 (isearch-search-and-update): Add condition for `isearch-word' and
16754 call `word-search-regexp'. (Bug#10145)
16755
16756 2011-12-01 Glenn Morris <rgm@gnu.org>
16757
16758 * eshell/em-hist.el (eshell-hist-initialize):
16759 Handle eshell-history-size nil and HISTSIZE set or unset.
16760 (eshell-history-file-name, eshell-history-size): Fix custom type.
16761
16762 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
16763
16764 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16765
16766 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
16767
16768 * progmodes/verilog-mode.el (verilog-pretty-expr):
16769 Rework verilog-pretty-expr to handle new assignment operators in system
16770 verilog, such as += *= and the like.
16771 (verilog-assignment-operator-re): Regular expression to find the
16772 assigment operator in a verilog assignment.
16773 (verilog-assignment-operation-re): Regular expression to find an
16774 assignment statement for pretty-expr.
16775 (verilog-in-attribute-p): Query returns true if point is in an
16776 attribute context; used to skip these for expression line up from
16777 pretty-expr.
16778 (verilog-in-parameter-p): Query returns true if point is in an
16779 parameter definition context; used to skip these for expression
16780 line up from pretty-expr.
16781 (verilog-in-parenthesis-p): Query returns true if point is in a
16782 parenthetical expression, specifically ( ) but not [ ] or { };
16783 used by pretty-expr.
16784 (verilog-just-one-space): If there is no space, don't add one.
16785 (verilog-get-lineup-indent-2): Specifically skip just attribute
16786 contexts for expression lineup, rather than skipping all
16787 parenthetical expressions.
16788 (verilog-calculate-indent): Fix comment, and fix indent.
16789 (verilog-do-indent): Indent declarations in lists (suggested by
16790 Joachim Lechner).
16791 (verilog-mode-abbrev-table): Populate abbrev mode with the various
16792 skeleton items.
16793 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16794 by Alain Mellan).
16795
16796 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
16797
16798 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16799 parameters with embedded comments. Reported by Ray Stevens.
16800 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16801 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16802 Reported by Tim Holt.
16803 (verilog-auto): Fix AUTOing a upper module then AUTOing module
16804 instantiated by upper module causing wrong expansion until AUTOed a
16805 second time. Reported by K C Buckenmaier.
16806 (verilog-diff-auto): Fix showing .* as a difference when
16807 `verilog-auto-star-save' off. Reported by Dan Dever.
16808 (verilog-auto-reset, verilog-read-always-signals)
16809 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16810 temporary signals in reset list if
16811 verilog-auto-reset-blocking-in-non is nil, and match assignment
16812 style to each signal's assignment type, bug381.
16813 Reported by Thomas Esposito.
16814 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16815 (verilog-uvm-statement-re): Support UVM indentation and
16816 highlighting, with old OVM keywords only.
16817 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16818 Support AUTOTIEOFF creating non-wire data types.
16819 Suggested by Jonathan Greenlaw.
16820 (verilog-auto-insert-lisp, verilog-delete-to-paren)
16821 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16822 (verilog-inject-sense, verilog-read-inst-pins)
16823 (verilog-read-sub-decls, verilog-read-sub-decls-line):
16824 Fix mismatching parenthesis inside commented out code when deleting
16825 AUTOINST, bug383. Reported by Jonathan Greenlaw.
16826 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16827 non-numeric vector width. Reported by Alex Reed.
16828 (verilog-auto-ascii-enum): Add "onehot" option to work around not
16829 detecting signals with parameter widths. Reported by Alex Reed.
16830 (verilog-auto-delete-trailing-whitespace):
16831 With `verilog-auto-delete-trailing-whitespace' remove trailing
16832 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
16833 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16834 Fix verilog-scan-cache corruption when running user AUTO expansion
16835 hooks that call indentation routines.
16836 (verilog-simplify-range-expression): Fix typo ignoring lower case
16837 identifiers.
16838 (verilog-delete-auto): Fix delete-autos to also remove user created
16839 automatics, as long as they start with AUTO.
16840 (verilog-batch-diff-auto, verilog-diff-auto)
16841 (verilog-diff-function): Add `verilog-diff-auto' and bind to
16842 "C-c?" to report differences in AUTO expansion, ignoring spaces.
16843 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16844 (verilog-in-paren-quick, verilog-re-search-backward-quick)
16845 (verilog-re-search-forward-quick, verilog-syntax-ppss):
16846 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16847 is disabled and its cache will get corrupt, causing AUTOS not to
16848 expand. Instead use only -quick functions.
16849 (verilog-scan-region): Fix scanning over escaped quotes.
16850 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16851 (verilog-re-search-backward-quick)
16852 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16853 related functions now ignore strings, to fix misparsing of strings
16854 with magic comments embedded in them.
16855 (verilog-read-auto-template):
16856 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16857 Reported by Brad Dobbie.
16858 (verilog-read-auto-template):
16859 Fix 'verilog-auto-inst-template-numbers' with comments.
16860 Reported by Brad Dobbie.
16861 (verilog-auto-inst, verilog-auto-inst-param)
16862 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16863 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
16864 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16865 debugging templates without merge conflicts, bug357.
16866 Reported by Brad Dobbie.
16867 (verilog-read-auto-template):
16868 Fix verilog-auto-inst-template-numbers with multiple templates.
16869 Reported by Brad Dobbie.
16870 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16871 abbrevs so user won't be asked to save.
16872 (verilog-read-auto-lisp-present): Fix to start at beginning of
16873 buffer in case called outside of verilog-auto.
16874 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16875 to "X-2". Reported by Matthew Myers.
16876 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16877 all inputs from module templates. Reported by Leith Johnson.
16878 (verilog-module-inside-filename-p): Fix locating programs as with
16879 modules.
16880 (verilog-auto-inst-port): Fix vl-width expressions when using
16881 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
16882 (verilog-decls-get-regs, verilog-decls-get-signals,
16883 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16884 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16885 verilog-read-decls): Combine reg and wire structures into one var
16886 structure to represent SystemVerilog concepts.
16887 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16888 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16889 (verilog-auto-wire-type, verilog-insert-definition):
16890 Add verilog-auto-wire-type and AUTOLOGIC to support using
16891 SystemVerilog "logic" keyword instead of "wire"/"reg".
16892 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16893 to declares outputs that also have assignments (presumably in an
16894 ifdef or generate if so there's not a driver conflict).
16895 Reported by Matthew Myers.
16896 (verilog-auto-declare-nettype, verilog-insert-definition):
16897 Add verilog-auto-declare-nettype to fix declarations using
16898 `default_nettype none. Reported by Julian Gorfajn.
16899 (verilog-read-always-signals-recurse, verilog-read-decls)
16900 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16901 malformed end statement, bug325. Reported by Joshua Wise and
16902 Andrew Drake.
16903 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16904 (verilog-inst-comment-re): Fix not deleting Interfaced comment
16905 when expanding .* in interfaces, bug320.
16906 Reported by Pierre-David Pfister.
16907 (verilog-read-module-name): Fix import statements between module
16908 name and open parenthesis, bug317.
16909 Reported by Pierre-David Pfister.
16910 (verilog-simplify-range-expression): Fix simplification of
16911 multiplications inside AUTOWIRE connections, bug303.
16912 (verilog-auto-inst-port): Support parameter expansion in
16913 multidimensional arrays.
16914 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16915 after "assert property". Reported by Julian Gorfajn.
16916 (verilog-simplify-range-expression): Fix "couldn't merge" errors
16917 with multiplication, bug303.
16918 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16919 Reported by Jan Frode Lonnum.
16920
16921 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
16922
16923 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16924 (hfy-shell-file-name, hfy-shell):
16925 * international/fontset.el (x-decompose-font-name): Fix typos.
16926
16927 2011-11-29 Ken Brown <kbrown@cornell.edu>
16928
16929 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16930 (gdb-version): Remove defvar.
16931 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16932 (gdb-gud-context-command, gdb-non-stop-handler)
16933 (gdb-current-context-command, gdb-stopped): Use it.
16934 (gdb-init-1): Enable pretty printing here.
16935 (gdb-non-stop-handler): Don't enable pretty-printing here.
16936 Check to see if the target supports non-stop mode; if not, turn off
16937 non-stop mode. Use the following.
16938 (gdb-check-target-async): New defun.
16939 (gud-watch, gdb-stopped): Fix whitespace.
16940 (gdb-get-source-file): Don't try to display the source file if
16941 `gdb-main-file' is nil.
16942
16943 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16944
16945 * align.el: Try to generate fewer markers (bug#10047).
16946 (align--set-marker): New macro.
16947 (align-region): Use it.
16948
16949 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16950
16951 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16952
16953 2011-11-29 Chong Yidong <cyd@gnu.org>
16954
16955 * indent.el (indent-for-tab-command, indent-according-to-mode):
16956 Doc fix.
16957 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
16958
16959 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
16960
16961 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16962 aware of remote file names. (Bug#10124)
16963
16964 2011-11-29 Chong Yidong <cyd@gnu.org>
16965
16966 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16967
16968 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
16969
16970 * files.el (find-file): Don't use force-same-window (bug#10144).
16971 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16972 use pop-to-buffer if the selected window can't be used.
16973 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16974
16975 2011-11-28 Eli Zaretskii <eliz@gnu.org>
16976
16977 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16978 special-mode-map.
16979
16980 2011-11-28 Chong Yidong <cyd@gnu.org>
16981
16982 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16983
16984 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
16985
16986 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16987 gdb-get-source-file-list on gdb-create-source-file-list.
16988
16989 2011-11-26 Eli Zaretskii <eliz@gnu.org>
16990
16991 * whitespace.el (whitespace-newline): Use a different foreground
16992 color for 16-color light-background displays.
16993
16994 2011-11-24 Chong Yidong <cyd@gnu.org>
16995
16996 * window.el (display-buffer--special-action): Doc fix.
16997
16998 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
16999
17000 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
17001 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
17002 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
17003 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
17004 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
17005 (avl-tree-stack-first):
17006 * emacs-lisp/cconv.el (cconv--analyse-use):
17007 * net/gnutls.el (gnutls-negotiate): Fix typos.
17008
17009 2011-11-24 Glenn Morris <rgm@gnu.org>
17010
17011 * lpr.el (lpr-windows-system, lpr-lp-system):
17012 * mail/binhex.el (binhex-begin-line):
17013 * progmodes/grep.el (grep-history, grep-find-history):
17014 * textmodes/flyspell.el:
17015 * vc/pcvs-defs.el (cvs-global-menu):
17016 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
17017 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
17018 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
17019
17020 * net/tls.el: Fix case of "GnuTLS".
17021
17022 * paths.el (rmail-file-name): Format doc-string for make-docfile.
17023
17024 * version.el (emacs-build-system): Give it a doc-string.
17025
17026 2011-11-24 Juri Linkov <juri@jurta.org>
17027
17028 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
17029
17030 2011-11-24 Glenn Morris <rgm@gnu.org>
17031
17032 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
17033 if called on a non-mime message just toggle the headers. (Bug#8006)
17034
17035 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
17036
17037 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
17038 (allout-lead-with-comment-string, allout-structure-deleted-hook)
17039 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
17040 (allout-rebullet-heading, allout-open-sibtopic)
17041 (allout-toggle-current-subtree-encryption)
17042 (allout-toggle-subtree-encryption, allout-encrypt-string)
17043 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
17044 (allout-distinctive-bullets-string, allout-auto-activation):
17045 * window.el (window-normalize-buffer-to-display):
17046 * progmodes/verilog-mode.el (verilog-batch-indent):
17047 * textmodes/bibtex.el (bibtex-field-braces-opt)
17048 (bibtex-field-strings-opt):
17049 * vc/cvs-status.el (cvs-tree-merge):
17050 Fix typos.
17051
17052 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
17053
17054 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
17055 `non-essential' to t, in order to avoid remote connections.
17056
17057 2011-11-23 Eli Zaretskii <eliz@gnu.org>
17058
17059 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
17060 On MS-DOS and MS-Windows, compare with loaddefs.el
17061 case-insensitively.
17062
17063 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17064
17065 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
17066
17067 2011-11-23 Glenn Morris <rgm@gnu.org>
17068
17069 * paths.el (rmail-file-name): Reformat the doc-string so that it
17070 is picked up.
17071
17072 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
17073 (rmail-auto-file): Ignore case in the "special" field names,
17074 as mail-fetch-field does for all others.
17075
17076 * mail/rmail.el (rmail-forward):
17077 * mail/rmailkwd.el (rmail-set-label):
17078 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
17079 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
17080
17081 * mail/rmail.el (rmail-current-message): Doc fix.
17082
17083 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
17084
17085 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
17086
17087 * server.el (server-eval-and-print): Allow C-g (bug#6585).
17088
17089 2011-11-22 Glenn Morris <rgm@gnu.org>
17090
17091 * mail/rmailmm.el (test-rmail-mime-handler)
17092 (test-rmail-mime-bulk-handler)
17093 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
17094
17095 2011-11-21 Juri Linkov <juri@jurta.org>
17096
17097 * calc/calc.el (calc-read-key-sequence):
17098 Let-bind `input-method-function' to nil. (Bug#10018)
17099
17100 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17101
17102 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
17103 Tell the caller that the next line needs recomputation, even
17104 though it doesn't start a sexp (bug#10094).
17105
17106 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
17107
17108 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
17109
17110 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
17111
17112 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17113 Use force-same-window.
17114
17115 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
17116
17117 * descr-text.el (describe-char-unicode-data):
17118 * json.el (json-string-escape):
17119 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
17120 (Footnote-unicode, Footnote-style-p):
17121 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
17122
17123 2011-11-20 Chong Yidong <cyd@gnu.org>
17124
17125 * window.el (replace-buffer-in-windows): Restore interactive spec.
17126
17127 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
17128
17129 * electric.el (electric-indent-mode): Fix last change (too optimistic).
17130
17131 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
17132 (byte-compile-global-not-obsolete-vars): New var.
17133 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
17134 Use it.
17135 (byte-compile-warn-obsolete): Align text with the one in *Help*.
17136
17137 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
17138
17139 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
17140 * progmodes/pascal.el (electric-pascal-equal):
17141 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
17142 * xml.el (xml-substitute-special): Fix typos.
17143
17144 2011-11-20 Glenn Morris <rgm@gnu.org>
17145
17146 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
17147 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
17148 Doc fixes.
17149 (rmail-decode-mime-charset): Mark as obsolete.
17150
17151 * mail/rmailsum.el (rmail-message-regexp-p-1):
17152 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
17153 Before using mime functions, check they are set. (Bug#10077)
17154
17155 2011-11-19 Juri Linkov <juri@jurta.org>
17156
17157 * info.el (Info-finder-find-node): Use `package--builtins' instead
17158 of `package-alist'. Use node names formed by the pattern "Keyword "
17159 and the keyword name.
17160
17161 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
17162
17163 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
17164
17165 2011-11-19 Juri Linkov <juri@jurta.org>
17166
17167 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
17168 that calls `revert-buffer' on all Info buffers. (Bug#9915)
17169 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
17170 `old-history', `old-history-forward'. Add let-binding
17171 `window-selected'. Remove calls to `kill-buffer',
17172 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
17173 before calling `Info-find-node', so `Info-find-node-2' will reread
17174 the Info file. Restore window positions only when `window-selected'
17175 is non-nil.
17176
17177 2011-11-19 Juri Linkov <juri@jurta.org>
17178
17179 * isearch.el (isearch-lazy-highlight-new-loop):
17180 Remove condition `(not isearch-error)'. (Bug#9918)
17181
17182 * misearch.el (multi-isearch-search-fun): Add condition
17183 `(not bound)' to ignore lazy-highlighting search.
17184 Add the search-failed message "end of multi" when the end of
17185 multi-sequence is reached. Uncapitalize the search-failed
17186 message "Repeat for next buffer".
17187
17188 * info.el (Info-search): Add the search-failed message
17189 "end of the manual" when the end of the manual is reached
17190 in Isearch mode.
17191
17192 2011-11-19 Juri Linkov <juri@jurta.org>
17193
17194 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
17195 Use non-destructive `remove' instead of `delete' because
17196 `Info-history-list' stored to `Info-isearch-initial-history-list' in
17197 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
17198
17199 2011-11-19 Juri Linkov <juri@jurta.org>
17200
17201 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
17202 to nil instead of binding `search-ring' and `regexp-search-ring'.
17203 (Bug#9185)
17204
17205 2011-11-19 Eli Zaretskii <eliz@gnu.org>
17206
17207 * simple.el (line-move): Force movement by logical lines for any
17208 hscrolled window, not only when auto-hscroll-mode is on.
17209 (line-move-visual): Update doc string to that effect. (Bug#10076)
17210
17211 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
17212
17213 * language/european.el (macintosh): Define as alias for mac-roman.
17214
17215 2011-11-19 Eli Zaretskii <eliz@gnu.org>
17216
17217 * mail/rmailmm.el (rmail-mime-display-header)
17218 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
17219 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
17220 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
17221 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
17222 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
17223 of a raw aref.
17224 (rmail-mime-entity-segment): To get past the tagline, move forward
17225 2 more lines, to account for the 2 empty lines that precede and
17226 follow the line with the buttons.
17227 (rmail-mime-update-tagline): Move one more line, to get past the
17228 empty line that follows the buttons in the tagline. (Bug#9520)
17229
17230 2011-11-19 Martin Rudalics <rudalics@gmx.at>
17231
17232 * window.el (window-max-delta-1, window-min-delta-1)
17233 (window-min-size-1, window-state-get-1, window-state-put-1)
17234 (window-state-put-2): Use "window--" prefix.
17235
17236 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
17237
17238 * emacs-lisp/smie.el: Improve warnings and conflict detection.
17239 (smie-warning-count): New var.
17240 (smie-set-prec2tab): Use it.
17241 (smie-bnf->prec2): Improve warnings. Add docstring.
17242 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
17243 (smie-bnf--set-class): New function.
17244 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
17245 corner case.
17246
17247 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
17248 (compilation-error-properties, compilation-move-to-column):
17249 Handle compilation-first-column while in the target buffer.
17250
17251 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
17252 Don't hardcode point-min==1.
17253
17254 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
17255 (eshell-rewrite-for-command): Remove workaround.
17256 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
17257 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
17258 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
17259
17260 * files-x.el (modify-file-local-variable): Obey commenting conventions.
17261
17262 2011-11-17 Glenn Morris <rgm@gnu.org>
17263
17264 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
17265 Ignore buffer-local generated-autoload-file if it is the same
17266 as the global value. (Bug#10049)
17267
17268 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
17269
17270 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
17271 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
17272 (reftex-toc-previous-heading, reftex-toc-max-level)
17273 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
17274 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
17275 (reftex-toc-do-promote, reftex-toc-promote-prepare)
17276 (reftex-toc-promote-action, reftex-toc-extract-section-number)
17277 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
17278 (reftex-toc-rename-label, reftex-toc-visit-location)
17279 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
17280 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
17281 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
17282 leaving "*toc*" only for references to the buffer.
17283
17284 2011-11-17 Martin Rudalics <rudalics@gmx.at>
17285
17286 * window.el (window-resize, delete-window, split-window):
17287 Replace window-splits by window-combination-resize.
17288 * cus-start.el (window-splits): Replace by window-combination-resize.
17289
17290 2011-11-17 Glenn Morris <rgm@gnu.org>
17291
17292 * progmodes/sh-script.el (sh-font-lock-keywords-var):
17293 Make bash entry derive from sh entry, not shell entry.
17294
17295 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
17296
17297 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
17298 local file name.
17299
17300 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
17301
17302 * menu-bar.el (menu-bar-file-menu):
17303 * printing.el (pr-ps-utility):
17304 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
17305 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
17306 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
17307 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
17308 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
17309 (icalendar--convert-cyclic-to-ical)
17310 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
17311 (icalendar--convert-ical-to-diary)
17312 (icalendar--convert-recurring-to-diary)
17313 (icalendar--convert-non-recurring-all-day-to-diary)
17314 (icalendar-import-format-sample):
17315 * progmodes/idlw-shell.el (idlwave-shell-mode):
17316 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
17317 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
17318 (vhdl-ps-print-init): Fix typos.
17319
17320 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
17321
17322 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
17323 FSF and collapse date sequence, obscure author/maintainer email address
17324 better, remove extra version line, track relocation of author's webpage.
17325
17326 * progmodes/python.el (python-pdbtrack-input-prompt)
17327 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
17328 regular python pdb prompts. Adjustments shamelessly taken exactly as
17329 suggested in EmacsWiki page (tiny change):
17330 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
17331
17332 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
17333
17334 * expand.el (expand-pos, expand-index, expand-point):
17335 Remove redundant info from docstring.
17336 (expand-add-abbrevs): Doc fix.
17337 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
17338 (expand-sample-perl-mode-expand-list): Fix typos.
17339
17340 * net/dbus.el (dbus-event-member-name):
17341 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
17342 * term/pc-win.el (msdos-create-frame-with-faces):
17343 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
17344
17345 2011-11-16 Martin Rudalics <rudalics@gmx.at>
17346
17347 * window.el (split-window, window-state-get-1)
17348 (window-state-put-1, window-state-put-2): Rename occurrences of
17349 window-nest to window-combination-limit.
17350 * cus-start.el (window-nest): Rename to window-combination-limit.
17351
17352 2011-11-16 Chong Yidong <cyd@gnu.org>
17353
17354 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
17355 regexp (Bug#10033).
17356
17357 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
17358
17359 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
17360 `completing-read' will remove *Completions* and will preserve
17361 current-buffer for us.
17362 (tmm-add-prompt): Users of *Completions* will always (re)set its
17363 major mode.
17364 (tmm-old-comp-map): Remove.
17365
17366 2011-11-16 Glenn Morris <rgm@gnu.org>
17367
17368 * mail/rmailedit.el: Require rmailmm when compiling.
17369 (rmail-old-mime-state): New declaration.
17370 (rmail-edit-current-message): If editing a mime message,
17371 edit the "raw" message from the mbox buffer.
17372 (rmail-cease-edit): Handle mime messages. (Bug#9840)
17373
17374 2011-11-15 Glenn Morris <rgm@gnu.org>
17375
17376 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
17377 which wasn't being used. Add optional arg to force given state.
17378 (rmail-mime): Add optional arg to force given state.
17379
17380 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17381
17382 * allout.el (allout-encryption-plaintext-sanitization-regexps):
17383 * frame.el (display-mm-dimensions-alist):
17384 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
17385 (outline-move-subtree-down):
17386 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
17387 (newsticker--treeview-do-get-node):
17388 * net/quickurl.el (quickurl-list-buffer-name):
17389 * progmodes/dcl-mode.el (dcl-mode):
17390 * progmodes/gdb-mi.el (gdb-mapcar*):
17391 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
17392
17393 2011-11-15 Glenn Morris <rgm@gnu.org>
17394
17395 * mail/rmail.el (rmail-file-coding-system): It's only ever used
17396 in a boolean sense, so just make it a boolean, and fix the doc.
17397 (rmail-show-mime-function, rmail-mime-feature)
17398 (rmail-require-mime-maybe): Doc fixes.
17399 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
17400
17401 * mail/rmailmm.el (rmail-show-mime): Doc fix.
17402
17403 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17404
17405 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
17406 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
17407 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
17408 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
17409
17410 2011-11-15 Glenn Morris <rgm@gnu.org>
17411
17412 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
17413 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
17414 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
17415 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
17416 (rmail-mime, rmail-show-mime): Doc fixes.
17417
17418 * term/ns-win.el (mode-line-frame-identification):
17419 Leave it alone. (Bug#10051)
17420
17421 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
17422
17423 * mail/rmailout.el (rmail-output-to-rmail-buffer):
17424 Handle empty buffers. (Bug#9978)
17425
17426 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
17427
17428 * international/mule.el (define-charset):
17429 * mail/rmailmm.el (rmail-mime-find-header-encoding):
17430 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
17431 * progmodes/verilog-mode.el (verilog-backward-token):
17432 * textmodes/ispell.el (lookup-words):
17433 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
17434
17435 2011-11-14 Glenn Morris <rgm@gnu.org>
17436
17437 * progmodes/executable.el
17438 (executable-make-buffer-file-executable-if-script-p):
17439 Handle file-modes returning nil.
17440
17441 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
17442 message - not necessary, and causes problems. (Bug#9831)
17443
17444 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
17445
17446 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
17447
17448 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
17449 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
17450 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
17451
17452 2011-11-12 Martin Rudalics <rudalics@gmx.at>
17453
17454 * window.el (window-resize, delete-window): Use window-splits
17455 variable instead of function.
17456 (window-state-get-1, window-state-put-2, window-state-put):
17457 Don't deal with windows' splits status.
17458
17459 2011-11-12 Glenn Morris <rgm@gnu.org>
17460
17461 * apropos.el (apropos-do-all, apropos-library, apropos-value)
17462 (apropos-documentation): Doc fixes.
17463
17464 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
17465
17466 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
17467 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
17468
17469 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
17470
17471 * electric.el (electric-indent-post-self-insert-function): Make it
17472 possible for a char to only indent in some circumstances.
17473 (electric-indent-mode): Simplify.
17474
17475 2011-11-11 Martin Rudalics <rudalics@gmx.at>
17476
17477 * window.el (windows-with-parameter): Remove unused function.
17478 (windows-at-side): Rename to window-at-side-list.
17479 (window-check, window-atom-check, window-atom-check-1)
17480 (window-side-check, window-size-ignore, window-size-fixed-1)
17481 (window-in-direction-2): Prefix with "window--".
17482 (window-tree-1): Rename to window--subtree, fix doc-string.
17483
17484 2011-11-11 Glenn Morris <rgm@gnu.org>
17485
17486 * subr.el (eval-after-load): If FILE is already loaded,
17487 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
17488
17489 2011-11-10 Glenn Morris <rgm@gnu.org>
17490
17491 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17492 Call svn via vc-svn-command rather than vc-do-command.
17493 (vc-svn-command): Add --non-interactive. (Bug#9993)
17494 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17495
17496 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17497 Add toggle-read-only. (Bug#7292)
17498 * files.el (toggle-read-only): Mention that it should only
17499 be used interactively. (Bug#10006)
17500
17501 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
17502
17503 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17504 Adjust regexp for OCaml warnings.
17505
17506 * electric.el (electric-pair-post-self-insert-function): Let user
17507 turn it off buffer-locally (bug#9932).
17508
17509 * progmodes/python.el (python-beginning-of-statement):
17510 Rewrite (bug#2703).
17511
17512 * progmodes/compile.el: Better handle TABs (bug#9749).
17513 (compilation-internal-error-properties)
17514 (compilation-next-error-function): Obey the target buffer's
17515 compilation-error-screen-columns.
17516
17517 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
17518
17519 * progmodes/meta-mode.el: Remove obsolete comments.
17520 (meta-right-comment-regexp, meta-ignore-comment-regexp):
17521 Fix typos in docstrings.
17522
17523 2011-11-09 Martin Rudalics <rudalics@gmx.at>
17524
17525 * window.el (window-size-fixed-p): Rewrite doc-string.
17526 (window-resizable-p): Rename to window--resizable-p. Update callers.
17527 (window--resizable): New function. Make all callers of
17528 window-resizable call window--resizable instead.
17529 (window-resizable): Rewrite in terms of window--resizable.
17530
17531 2011-11-08 Glenn Morris <rgm@gnu.org>
17532
17533 * progmodes/delphi.el (delphi-mode-syntax-table):
17534 Let define-derived-mode define a proper syntax table. (Bug#9994)
17535
17536 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17537
17538 * window.el: Stay away from defsubst.
17539 (window-list-no-nils): Remove.
17540 (window-state-get-1, window-state-get): Use backquote instead.
17541
17542 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17543
17544 * emacs-lisp/find-func.el (find-function-read):
17545 Fix incorrect use of default argument in `completing-read'.
17546
17547 2011-11-08 Martin Rudalics <rudalics@gmx.at>
17548
17549 * window.el (display-buffer-function, special-display-function):
17550 Mention display-buffer-record-window but do not mention
17551 help-setup parameter in doc-strings.
17552 (window-min-delta): Fix doc-string typo.
17553
17554 2011-11-08 Chong Yidong <cyd@gnu.org>
17555
17556 * window.el (window-total-height, window-total-width): Doc fix.
17557 (window-body-size): Move from C.
17558 (window-body-height, window-body-width): Move to C.
17559
17560 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17561
17562 * window.el: Make special-display like display-buffer-alist (bug#9532).
17563 (display-buffer--special-action): New function, morphed
17564 from display-buffer--special.
17565 (display-buffer): Use it to handle special-display-buffers at higher
17566 priority (just after display-buffer-alist).
17567 (display-buffer-fallback-action, display-buffer--other-frame-action)
17568 (pop-to-buffer-same-window): Remove display-buffer--special.
17569
17570 2011-11-07 Glenn Morris <rgm@gnu.org>
17571
17572 * calendar/cal-menu.el (cal-menu-set-date-title):
17573 Do nothing if not in a calendar. (Bug#9976)
17574
17575 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
17576
17577 * files.el (find-file): Always use selected-window.
17578
17579 2011-11-07 Martin Rudalics <rudalics@gmx.at>
17580
17581 * window.el (window-combinations): Make WINDOW argument
17582 mandatory. Rewrite doc-string.
17583 (walk-window-subtree, window-atom-check, window-min-delta)
17584 (window-max-delta, window--resize-this-window)
17585 (window--resize-root-window-vertically, window-tree)
17586 (balance-windows, window-state-put): Rewrite doc-strings as to
17587 not mention the term "subwindow".
17588 (window--resize-subwindows-skip-p): Rename to
17589 window--resize-child-windows-skip-p.
17590 (window--resize-subwindows-normal): Rename to
17591 window--resize-child-windows-normal.
17592 (window--resize-subwindows): Rename to
17593 window--resize-child-windows.
17594 (window-or-subwindow-p): Rename to window--in-subtree-p.
17595
17596 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17597
17598 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17599 Ensure that mbox format messages end in two newlines (Bug#9974).
17600
17601 2011-11-06 Chong Yidong <cyd@gnu.org>
17602
17603 * window.el (window-combination-p): Function deleted; its
17604 side-effect is not used in any existing code.
17605 (window-combinations, window-combined-p): Call window-*-child
17606 directly.
17607
17608 2011-11-05 Chong Yidong <cyd@gnu.org>
17609
17610 * window.el (window-valid-p): Rename from window-any-p.
17611 (window-size-ignore, window-state-get): Callers changed.
17612 (window-normalize-window): Rename from window-normalize-any-window.
17613 New arg LIVE-ONLY, replacing window-normalize-live-window.
17614 (window-normalize-live-window): Delete.
17615 (window-combination-p, window-combined-p, window-combinations)
17616 (walk-window-subtree, window-atom-root, window-min-size)
17617 (window-sizable, window-sizable-p, window-size-fixed-p)
17618 (window-min-delta, window-max-delta, window-resizable)
17619 (window-resizable-p, window-full-height-p, window-full-width-p)
17620 (window-current-scroll-bars, window-point-1, set-window-point-1)
17621 (window-at-side-p, window-in-direction, window-resize)
17622 (adjust-window-trailing-edge, maximize-window, minimize-window)
17623 (window-deletable-p, delete-window, delete-other-windows)
17624 (record-window-buffer, unrecord-window-buffer)
17625 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17626 (quit-window, split-window, window-state-put)
17627 (set-window-text-height, fit-window-to-buffer)
17628 (shrink-window-if-larger-than-buffer): Callers changed.
17629
17630 2011-11-04 Eli Zaretskii <eliz@gnu.org>
17631
17632 * mail/rmail.el (rmail-simplified-subject): Decode subject with
17633 rfc2047-decode-string.
17634 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17635 warnings.
17636
17637 * window.el (window-body-height, window-body-width): Mention in
17638 the doc string that the return values are in frame's canonical
17639 units. (Bug#9949)
17640
17641 2011-11-03 Alan Mackenzie <acm@muc.de>
17642
17643 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17644 change in cc-engine.el.
17645
17646 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
17647
17648 * window.el (switch-to-buffer): Use `force-same-window' interactively.
17649
17650 2011-11-02 Martin Rudalics <rudalics@gmx.at>
17651
17652 * window.el (quit-window): Call unrecord-window-buffer after
17653 showing another buffer in the window. (Bug#9937)
17654 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17655
17656 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
17657
17658 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17659 Accept status with more than 9 shelves. (Bug#9935)
17660 Reported by Colin D Bennett <colin@gibibit.com>.
17661
17662 2011-11-01 Martin Rudalics <rudalics@gmx.at>
17663
17664 * help.el (with-help-window): Don't reference
17665 temp-buffer-show-specifiers in doc-string.
17666
17667 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
17668
17669 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17670 menu-item.
17671
17672 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17673
17674 * whitespace.el: New version 13.2.2.
17675 (whitespace-newline-mode): Disable properly. Reported by Sarah
17676 <EmacsWiki>.
17677
17678 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
17679
17680 * net/newst-treeview.el: Remove "Time-stamp".
17681 (newsticker--group-manage-orphan-feeds): Do not call
17682 newsticker--treeview-tree-update.
17683 (newsticker-treeview-update, newsticker-treeview):
17684 Call newsticker--treeview-tree-update if necessary.
17685
17686 2011-10-30 Martin Rudalics <rudalics@gmx.at>
17687
17688 * window.el (window-iso-combination-p, window-iso-combined-p)
17689 (window-iso-combinations): Remove "iso-" infix.
17690 Suggested by Chong Yidong.
17691 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17692 (window-max-delta-1, window-resize, window--resize-siblings)
17693 (window--resize-this-window, adjust-window-trailing-edge)
17694 (split-window, balance-windows-1)
17695 (shrink-window-if-larger-than-buffer):
17696 * calendar/calendar.el (calendar-generate-window):
17697 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17698
17699 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17700
17701 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17702 in place (bug#9907).
17703 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17704 (eshell-rewrite-if-command, eshell-rewrite-for-command)
17705 (eshell-structure-basic-command, eshell-rewrite-while-command)
17706 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17707 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17708 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17709 (eshell-do-pipelines-synchronously, eshell-eval-command):
17710 Use backquotes and prefer setq to set.
17711 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17712 (eshell-macrop): Use functionp.
17713 (eshell-do-eval): Handle multiple expressions in `while' body.
17714
17715 2011-10-30 Chong Yidong <cyd@gnu.org>
17716
17717 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17718 instead of set-mark (Bug#9810).
17719
17720 2011-10-30 Chong Yidong <cyd@gnu.org>
17721
17722 * window.el (split-window-below, split-window-right): Rename from
17723 split-window-above-each-other and split-window-side-by-side
17724 respectively. All callers changed.
17725 (split-window-sensibly, split-window-sensibly): Use them.
17726 (split-window-keep-point): Doc fix.
17727
17728 * isearch.el: Add isearch-scroll property to split-window-below
17729 and split-window-right.
17730
17731 * follow.el (follow-mode):
17732 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17733 * progmodes/ada-xref.el (ada-gdb-application):
17734 * emulation/vip.el (vip-buffer-in-two-windows):
17735 * image-dired.el (image-dired-dired-with-window-configuration):
17736 * dired-x.el (dired-do-find-marked-files):
17737 * dired.el (dired-pop-to-buffer):
17738 * bs.el (bs--show-with-configuration):
17739 * vc/emerge.el (emerge-setup-windows):
17740 * textmodes/two-column.el (2C-two-columns):
17741 * textmodes/reftex-toc.el (reftex-toc):
17742 * progmodes/gdb-mi.el (gdb-setup-windows):
17743 * progmodes/fortran.el (fortran-window-create):
17744 * net/newst-treeview.el (newsticker--treeview-window-init):
17745 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17746 * emulation/tpu-edt.el (tpu-gold-map):
17747 * emulation/crisp.el (crisp-mode-map):
17748 * calendar/calendar.el (calendar-basic-setup): Callers changed.
17749
17750 2011-10-29 Chong Yidong <cyd@gnu.org>
17751
17752 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17753
17754 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17755
17756 * textmodes/flyspell.el (flyspell-word): Fix char offset for
17757 forged Ispell output (Bug#7904).
17758
17759 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17760
17761 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17762
17763 * doc-view.el: Avoid ugly errors about not finding nil.
17764 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17765 (doc-view-dvipdf-program, doc-view-unoconv-program)
17766 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17767 Avoid nil or absolute file name as default value.
17768 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17769
17770 2011-10-28 Alan Mackenzie <acm@muc.de>
17771
17772 * progmodes/cc-defs.el (c-version): -> 5.32.2.
17773
17774 2011-10-28 Alan Mackenzie <acm@muc.de>
17775
17776 Amend the handling of c-beginning/end-of-defun in nested declaration
17777 scopes.
17778
17779 * progmodes/cc-vars.el (c-defun-tactic): Move here from
17780 cc-langs.el. Change it to a defcustom.
17781
17782 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17783 cc-vars.el.
17784
17785 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17786 Prevent "class foo : bar" being spuriously recognized as a label.
17787
17788 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17789 Add parameter `inclusive' (to include enclosing braces in the region).
17790 (c-widen-to-enclosing-decl-scope): New function.
17791 (c-while-widening-to-decl-block): New macro.
17792 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17793 outward for defun boundaries, and correspondingly change symbol
17794 `respect-enclosure' to `go-outward'.
17795 (c-declaration-limits): Change algorithm to report only the "innermost"
17796 defun's boundaries.
17797
17798 2011-10-28 Deniz Dogan <deniz@dogan.se>
17799
17800 * net/rcirc.el (rcirc-mode): Use hard newlines.
17801
17802 2011-10-28 Alan Mackenzie <acm@muc.de>
17803
17804 Amend to indent and fontify macros "which include their own semicolon"
17805 correctly, using the "virtual semicolon" mechanism.
17806
17807 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17808
17809 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17810 Recode to scan one line at a time rather than having \n and \r
17811 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17812 (c-forward-label): Amend for virtual semicolons.
17813 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17814
17815 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17816 of the new C macros.
17817
17818 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17819 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17820 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17821 (c-opt-cpp-macro-define): Make into a full language variable.
17822 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17823 AWK Mode (including \n, \r) removed, no longer needed.
17824
17825 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17826 Invoke c-make-macro-with-semi-re.
17827
17828 * progmodes/cc-vars.el (c-macro-with-semi-re):
17829 (c-macro-names-with-semicolon): New variables.
17830 (c-make-macro-with-semi-re): New function.
17831
17832 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17833
17834 * vc/log-edit.el: Fill empty field rather than adding new one.
17835 (log-edit-add-field): New function.
17836 (log-edit-insert-changelog): Use it.
17837
17838 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17839
17840 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17841
17842 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17843
17844 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17845 (gdb--check-interpreter): New function.
17846 (gdb): Use it.
17847
17848 2011-10-27 Glenn Morris <rgm@gnu.org>
17849
17850 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17851 (least-positive-float, least-negative-float)
17852 (least-positive-normalized-float, least-negative-normalized-float)
17853 (float-epsilon, float-negative-epsilon):
17854 Remove unnecessary declarations.
17855
17856 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17857 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17858 (least-positive-float, least-negative-float)
17859 (least-positive-normalized-float, least-negative-normalized-float)
17860 (float-epsilon, float-negative-epsilon): Add doc-strings,
17861 based on those in cl.texi.
17862
17863 * files.el (set-visited-file-name): If the major-mode changed,
17864 reload the local variables. (Bug#9796)
17865
17866 2011-10-27 Chong Yidong <cyd@gnu.org>
17867
17868 * subr.el (change-major-mode-after-body-hook): New hook.
17869 (run-mode-hooks): Run it.
17870
17871 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17872 Use change-major-mode-before-body-hook.
17873
17874 * simple.el (fundamental-mode):
17875 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17876 change introducing fundamental-mode-hook.
17877
17878 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
17879
17880 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17881
17882 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
17883
17884 * ido.el (ido-file-name-all-completions-1): Do not require
17885 tramp.el explicitly. (Bug#7583)
17886
17887 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17888
17889 * progmodes/octave-mod.el:
17890 * progmodes/octave-inf.el: Update maintainer.
17891
17892 2011-10-26 Chong Yidong <cyd@gnu.org>
17893
17894 * subr.el (with-wrapper-hook): Rewrite doc.
17895
17896 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
17897
17898 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17899 filenames "/method:foo:". (Bug#9793)
17900
17901 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17902
17903 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17904 (bug#9865).
17905
17906 2011-10-24 Glenn Morris <rgm@gnu.org>
17907
17908 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
17909
17910 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
17911
17912 * notifications.el: Add the requirement of a running D-Bus session
17913 bus to the Commentary.
17914
17915 2011-10-24 Juri Linkov <juri@jurta.org>
17916
17917 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17918 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17919 (Bug#9364)
17920
17921 2011-10-24 Juri Linkov <juri@jurta.org>
17922
17923 * info.el (Info-following-node-name-re): Add newline to the list
17924 of allowed characters for leading space. (Bug#9824)
17925
17926 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17927
17928 * progmodes/octave-inf.el (inferior-octave-mode-map):
17929 Fix C-c C-h binding.
17930 * progmodes/octave-mod.el (octave-help): Remove.
17931
17932 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
17933
17934 Sync with Tramp 2.2.3.
17935
17936 * net/tramp-cache.el (top): Pacify byte-compiler using
17937 `init-file-user' and `site-run-file'.
17938
17939 * net/trampver.el: Update release number.
17940
17941 2011-10-23 Chong Yidong <cyd@gnu.org>
17942
17943 * files.el (toggle-read-only): Remove obsolete comment about
17944 version control.
17945
17946 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17947 for toggle-read-only. Note that this hasn't called vc-next-action
17948 since 2008-05-02, though it wasn't documented at the time.
17949
17950 * vc/ediff-init.el (ediff-toggle-read-only-function):
17951 Use toggle-read-only.
17952
17953 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
17954
17955 Fix bug #9560, sporadic wrong indentation; improve instrumentation
17956 of c-parse-state.
17957
17958 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17959 correct faulty logical expression.
17960 (c-parse-state-state, c-record-parse-state-state):
17961 (c-replay-parse-state-state): New defvar/defuns.
17962 (c-debug-parse-state): Use new functions.
17963
17964 2011-10-22 Martin Rudalics <rudalics@gmx.at>
17965
17966 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17967 last fix. Use window-in-direction correctly.
17968
17969 2011-10-21 Chong Yidong <cyd@gnu.org>
17970
17971 * progmodes/idlwave.el (idlwave-mode):
17972 * progmodes/vera-mode.el (vera-mode): No need to set
17973 require-final-newline; that's done in prog-mode.
17974 Suggested by Stefan Monnier.
17975
17976 2011-10-21 Martin Rudalics <rudalics@gmx.at>
17977
17978 * mouse.el (mouse-drag-window-above)
17979 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17980 (mouse-drag-mode-line-1, mouse-drag-header-line)
17981 (mouse-drag-vertical-line-rightward-window): Remove.
17982 (mouse-drag-line): New function.
17983 (mouse-drag-mode-line, mouse-drag-header-line)
17984 (mouse-drag-vertical-line): Call mouse-drag-line.
17985 * window.el (window-at-side-p, windows-at-side): New functions.
17986
17987 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
17988
17989 * tar-mode.el (tar-grind-file-mode):
17990 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
17991
17992 2011-10-21 Chong Yidong <cyd@gnu.org>
17993
17994 * progmodes/idlwave.el (idlwave-mode):
17995 * progmodes/vera-mode.el (vera-mode):
17996 Use mode-require-final-newline.
17997
17998 2011-10-20 Glenn Morris <rgm@gnu.org>
17999
18000 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
18001
18002 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
18003
18004 * emulation/cua-base.el (cua-set-mark): Fix case of string.
18005
18006 2011-10-20 Chong Yidong <cyd@gnu.org>
18007
18008 * emulation/cua-base.el (cua-mode):
18009 * mail/footnote.el (footnote-mode):
18010 * mail/mailabbrev.el (mail-abbrevs-mode):
18011 * net/xesam.el (xesam-minor-mode):
18012 * progmodes/bug-reference.el (bug-reference-mode):
18013 * progmodes/cap-words.el (capitalized-words-mode):
18014 * progmodes/compile.el (compilation-minor-mode)
18015 (compilation-shell-minor-mode):
18016 * progmodes/gud.el (gud-tooltip-mode):
18017 * progmodes/hideif.el (hide-ifdef-mode):
18018 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
18019 * progmodes/subword.el (subword-mode):
18020 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
18021 * progmodes/which-func.el (which-function-mode):
18022 * term/tvi970.el (tvi970-set-keypad-mode):
18023 * term/vt100.el (vt100-wide-mode):
18024 * textmodes/flyspell.el (flyspell-mode):
18025 * textmodes/ispell.el (ispell-minor-mode):
18026 * textmodes/nroff-mode.el (nroff-electric-mode):
18027 * textmodes/paragraphs.el (use-hard-newlines):
18028 * textmodes/refill.el (refill-mode):
18029 * textmodes/reftex.el (reftex-mode):
18030 * textmodes/rst.el (rst-minor-mode):
18031 * textmodes/sgml-mode.el (html-autoview-mode)
18032 (sgml-electric-tag-pair-mode):
18033 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
18034 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
18035 * emulation/crisp.el (crisp-mode):
18036 * emacs-lisp/eldoc.el (eldoc-mode):
18037 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
18038 minor mode behavior.
18039
18040 2011-10-19 Juri Linkov <juri@jurta.org>
18041
18042 * descr-text.el (describe-char): Add #x2010 and #x2011 to
18043 the list of hard-coded chars with escape-glyph face.
18044
18045 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
18046
18047 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
18048
18049 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
18050
18051 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
18052 running process.
18053
18054 2011-10-19 Glenn Morris <rgm@gnu.org>
18055
18056 * vc/vc-bzr.el (vc-bzr-after-dir-status):
18057 Ignore ignored files. (Bug#9726)
18058
18059 2011-10-19 Chong Yidong <cyd@gnu.org>
18060
18061 Doc fix for minor modes, stating that an omitted argument enables
18062 the mode unconditionally when called from Lisp.
18063
18064 * abbrev.el (abbrev-mode):
18065 * allout.el (allout-mode):
18066 * autoinsert.el (auto-insert-mode):
18067 * autoarg.el (autoarg-mode, autoarg-kp-mode):
18068 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
18069 (global-auto-revert-mode):
18070 * battery.el (display-battery-mode):
18071 * composite.el (global-auto-composition-mode)
18072 (auto-composition-mode):
18073 * delsel.el (delete-selection-mode):
18074 * desktop.el (desktop-save-mode):
18075 * dired-x.el (dired-omit-mode):
18076 * dirtrack.el (dirtrack-mode):
18077 * doc-view.el (doc-view-minor-mode):
18078 * double.el (double-mode):
18079 * electric.el (electric-indent-mode, electric-pair-mode):
18080 * emacs-lock.el (emacs-lock-mode):
18081 * epa-hook.el (auto-encryption-mode):
18082 * follow.el (follow-mode):
18083 * font-core.el (font-lock-mode):
18084 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
18085 * help.el (temp-buffer-resize-mode):
18086 * hilit-chg.el (highlight-changes-mode)
18087 (highlight-changes-visible-mode):
18088 * hi-lock.el (hi-lock-mode):
18089 * hl-line.el (hl-line-mode, global-hl-line-mode):
18090 * icomplete.el (icomplete-mode):
18091 * ido.el (ido-everywhere):
18092 * image-file.el (auto-image-file-mode):
18093 * image-mode.el (image-minor-mode):
18094 * iswitchb.el (iswitchb-mode):
18095 * jka-cmpr-hook.el (auto-compression-mode):
18096 * linum.el (linum-mode):
18097 * longlines.el (longlines-mode):
18098 * master.el (master-mode):
18099 * mb-depth.el (minibuffer-depth-indicate-mode):
18100 * menu-bar.el (menu-bar-mode):
18101 * minibuf-eldef.el (minibuffer-electric-default-mode):
18102 * mouse-sel.el (mouse-sel-mode):
18103 * msb.el (msb-mode):
18104 * mwheel.el (mouse-wheel-mode):
18105 * outline.el (outline-minor-mode):
18106 * paren.el (show-paren-mode):
18107 * recentf.el (recentf-mode):
18108 * reveal.el (reveal-mode, global-reveal-mode):
18109 * rfn-eshadow.el (file-name-shadow-mode):
18110 * ruler-mode.el (ruler-mode):
18111 * savehist.el (savehist-mode):
18112 * scroll-all.el (scroll-all-mode):
18113 * scroll-bar.el (scroll-bar-mode):
18114 * server.el (server-mode):
18115 * shell.el (shell-dirtrack-mode):
18116 * simple.el (auto-fill-mode, transient-mark-mode)
18117 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
18118 (line-number-mode, column-number-mode, size-indication-mode)
18119 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
18120 * strokes.el (strokes-mode):
18121 * time.el (display-time-mode):
18122 * t-mouse.el (gpm-mouse-mode):
18123 * tool-bar.el (tool-bar-mode):
18124 * tooltip.el (tooltip-mode):
18125 * type-break.el (type-break-mode-line-message-mode)
18126 (type-break-query-mode):
18127 * view.el (view-mode):
18128 * whitespace.el (whitespace-mode, whitespace-newline-mode)
18129 (global-whitespace-mode, global-whitespace-newline-mode):
18130 * xt-mouse.el (xterm-mouse-mode): Doc fix.
18131
18132 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
18133 Fix autogenerated docstring.
18134
18135 2011-10-19 Juri Linkov <juri@jurta.org>
18136
18137 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
18138 by checking environment variables "DESKTOP_SESSION" and
18139 "XDG_CURRENT_DESKTOP". (Bug#9779)
18140
18141 2011-10-19 Juri Linkov <juri@jurta.org>
18142
18143 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
18144 (browse-url-chromium-program, browse-url-chromium-arguments):
18145 New defcustoms.
18146 (browse-url-default-browser): Check for `browse-url-chromium' and
18147 call `browse-url-chromium-program'.
18148 (browse-url-chromium): New command. (Bug#9779)
18149
18150 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
18151
18152 * facemenu.el (list-colors-duplicates): On Windows, detect more
18153 duplicates by assuming that only colors matching "^System" are
18154 special "system colors". (Bug#9722)
18155
18156 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
18157
18158 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
18159 to distinguish the author from the committer.
18160
18161 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
18162
18163 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
18164
18165 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
18166
18167 * international/mule.el (sgml-html-meta-auto-coding-function):
18168 Add support for detecting encoding in HTML5 specified only as
18169 <meta charset="UTF-8">. Implementation just makes http-equiv and
18170 content-type parts from HTML4 encoding string optional. (Bug#9716)
18171
18172 2011-10-18 Glenn Morris <rgm@gnu.org>
18173
18174 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
18175
18176 2011-10-18 Chong Yidong <cyd@gnu.org>
18177
18178 * faces.el (cursor): Doc fix.
18179
18180 2011-10-17 Chong Yidong <cyd@gnu.org>
18181
18182 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
18183
18184 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
18185
18186 * dirtrack.el (dirtrack): Support shell buffers with path
18187 prefixes, e.g. tramp-based remote shells. (Bug#9647)
18188
18189 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
18190
18191 * json.el: Bump version to 1.3 and note change in History.
18192 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
18193
18194 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
18195
18196 * comint.el (comint-insert-input, comint-send-input)
18197 (comint-get-old-input-default, comint-backward-matching-input)
18198 (comint-next-prompt): Use nil instead of `input' for field property of
18199 past user input (bug#114).
18200
18201 * minibuffer.el (completion--replace): Inherit surrounding properties
18202 (bug#114).
18203 (minibuffer-complete-and-exit): Use it.
18204
18205 * comint.el (comint--table-subvert): Quote the all-completions output
18206 (bug#9160).
18207
18208 2011-10-17 Martin Rudalics <rudalics@gmx.at>
18209
18210 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
18211
18212 * menu-bar.el (menu-bar-file-menu): Add entry for making new
18213 window on right of selected. (Bug#9350) Reword other window
18214 entries and separate them from frame entries.
18215
18216 2011-10-15 Glenn Morris <rgm@gnu.org>
18217
18218 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
18219 Doc fixes.
18220
18221 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
18222
18223 * net/network-stream.el (network-stream-open-starttls):
18224 Improve detection of failure due to lack of TLS support.
18225
18226 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
18227 putting the input text in front and in bold.
18228
18229 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
18230
18231 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
18232
18233 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
18234 empty buffer.
18235
18236 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
18237 unread-command-events rather than pushing yet-another event.
18238
18239 2011-10-14 Eli Zaretskii <eliz@gnu.org>
18240
18241 * mail/sendmail.el (sendmail-query-once): Improve the wording of
18242 the explanation of the possible choices. Make the options passed
18243 to completing-read shorter.
18244
18245 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
18246
18247 * textmodes/flyspell.el (flyspell-large-region): Make sure
18248 extended character mode is used if defined (Bug#1339).
18249
18250 2011-10-13 Eli Zaretskii <eliz@gnu.org>
18251
18252 * simple.el (what-cursor-position): Fix the display of the
18253 character info for LRE, LRO, RLE, and RLO characters by appending
18254 an invisible PDF.
18255
18256 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
18257
18258 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
18259 even in case of error; add debug spec; simplify data flow.
18260 (with-timeout-handler): Remove.
18261
18262 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
18263
18264 Fix Bug#6019, Bug#9315.
18265
18266 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
18267 complete `buffer-file-name', the local file name part could look
18268 remotely (for example on VMS).
18269
18270 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
18271 `tramp-run-real-handler'.
18272 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
18273 already quoted by '"'.
18274
18275 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
18276 Let `file-name-handler-alist' be nil, the local file name part
18277 could look remotely (for example on VMS).
18278
18279 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
18280
18281 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
18282 from here...
18283 (flyspell-post-command-hook): ...to here.
18284
18285 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
18286
18287 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
18288 if not needed.
18289 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
18290 using completion. Protect against "slow" callers.
18291 Remove the "message hack".
18292
18293 2011-10-11 Juri Linkov <juri@jurta.org>
18294
18295 * isearch.el (isearch-lazy-highlight-word): New variable.
18296 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
18297 Use it. (Bug#9727)
18298
18299 2011-10-11 Glenn Morris <rgm@gnu.org>
18300
18301 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
18302 like f90-previous-statement does.
18303
18304 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18305
18306 * eshell/eshell.el (eshell-command): History should be saved
18307 only in interactive use, to avoid error.
18308
18309 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
18310
18311 * minibuffer.el (completion-file-name-table): Fix last change,
18312 i.e. ignore normal errors but not the other ones.
18313
18314 2011-10-10 Martin Rudalics <rudalics@gmx.at>
18315
18316 * window.el (special-display-buffer-names)
18317 (special-display-regexps): Remove some remnants of earlier
18318 changes from doc-strings.
18319 (quit-windows-on): New function.
18320
18321 * vc/vc.el (vc-revert, vc-rollback):
18322 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
18323 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
18324 (Bug#6183) (Bug#7074) (Bug#7447)
18325
18326 2011-10-09 Martin Rudalics <rudalics@gmx.at>
18327
18328 * window.el (frame-auto-hide-function): Add version tag.
18329 (Bug#9699)
18330
18331 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
18332
18333 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
18334 condition.
18335
18336 2011-10-09 Leo Liu <sdl.web@gmail.com>
18337
18338 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
18339 (Bug#9701)
18340
18341 2011-10-08 Glenn Morris <rgm@gnu.org>
18342
18343 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
18344 before the first code statement zero indent. (Bug#9690)
18345
18346 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
18347
18348 * simple.el (count-words-region): Always count in the region.
18349 Report the number of lines and characters too.
18350 (count-words): New command, which counts in the buffer if the
18351 region is inactive, as count-words-region used to.
18352 (count-words--message): New function. Handle plurals.
18353 (count-lines-region): Make it an alias for count-words-region.
18354
18355 * bindings.el (esc-map): Replace count-lines-region with
18356 count-words-region.
18357
18358 2011-10-08 Martin Rudalics <rudalics@gmx.at>
18359
18360 * window.el (window--delete): Delete dedicated frame
18361 unconditionally when argument KILL is non-nil. (Bug#9699)
18362 (switch-to-buffer): Fix doc-string typo.
18363
18364 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18365
18366 * eshell/eshell.el (eshell-command): Avoid using hooks.
18367
18368 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
18369
18370 * bindings.el ([M-left],[M-right]): Bind to left-word and
18371 right-word respectively.
18372
18373 2011-10-07 Glenn Morris <rgm@gnu.org>
18374
18375 * cus-start.el (debug-on-quit): Fix custom type.
18376
18377 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
18378
18379 * subr.el (define-key-after): Clarify that the function is not
18380 useful for non-menu keymaps.
18381
18382 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
18383
18384 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18385
18386 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
18387 in current minibuffer (Fix bug with recursive minibuffers).
18388
18389 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
18390
18391 * progmodes/gdb-mi.el (gdb): Doc fix.
18392
18393 2011-10-05 Martin Rudalics <rudalics@gmx.at>
18394
18395 * window.el (frame-auto-hide-function): New option replacing
18396 frame-auto-delete. Suggested by Stefan Monnier.
18397 (window--delete): Call frame-auto-hide-function instead of
18398 investigating frame-auto-delete.
18399 (window-point-1, set-window-point-1): New functions.
18400 (window-in-direction, record-window-buffer, window-state-get-1)
18401 (display-buffer-record-window): Use window-point-1 instead of
18402 window-point.
18403 (set-window-buffer-start-and-point): Use set-window-point-1.
18404
18405 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18406
18407 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
18408
18409 2011-10-05 Glenn Morris <rgm@gnu.org>
18410
18411 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
18412 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
18413
18414 2011-10-05 Leo Liu <sdl.web@gmail.com>
18415
18416 * subr.el (read-char-choice): Fix argument to buffer-live-p which
18417 works with buffer object.
18418
18419 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18420
18421 * mpc.el (mpc-tool-bar-map): Add labels.
18422
18423 2011-10-04 Glenn Morris <rgm@gnu.org>
18424
18425 * calendar/holidays.el (calendar-check-holidays): Doc fix.
18426
18427 2011-10-04 Martin Rudalics <rudalics@gmx.at>
18428
18429 * window.el (window--delete): New function.
18430 (frame-auto-delete): Resuscitate option.
18431 (bury-buffer, replace-buffer-in-windows)
18432 (quit-window): Rewrite using window--delete.
18433 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18434 Pass display-buffer-mark-dedicated to window--display-buffer-2
18435 (Bug#9639).
18436
18437 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18438
18439 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
18440 returns a list (bug#9554). Add remote file name completion.
18441 * comint.el (comint--table-subvert): Curry and get quote&unquote
18442 functions as arguments.
18443 (comint--complete-file-name-data): Adjust call accordingly.
18444 * pcomplete.el (pcomplete--table-subvert): Remove.
18445 (pcomplete-completions-at-point): Use comint--table-subvert instead.
18446
18447 * minibuffer.el (completion-table-case-fold): Use currying.
18448 (completion--styles-type, completion--cycling-threshold-type):
18449 New constants.
18450 (completion-styles, completion-category-overrides)
18451 (completion-cycle-threshold): Use them.
18452 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
18453 completion-table-case-fold.
18454
18455 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
18456
18457 * minibuffer.el (completion-category-overrides): Fix type of styles
18458 and add more user friendly tags (bug#9660).
18459
18460 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18461
18462 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
18463 (mule-input-method-string): New widget.
18464 (default-input-method, language-info-custom-alist): Use it.
18465
18466 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18467
18468 * pcomplete.el: Require comint.
18469 (pcomplete--common-suffix): Remove.
18470 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
18471 (pcomplete--table-subvert): Sync with comint--table-subvert.
18472 (pcomplete--entries): Use comint-completion-file-name-table.
18473 * comint.el (comint-unquote-filename): Simplify.
18474 (comint-completion-file-name-table): New function (bug#9616).
18475 (comint--complete-file-name-data): Use it.
18476
18477 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
18478 (pcmpl-gnu-tar-buffer): Remove.
18479 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18480 around. Make sure pcomplete-suffix-list is only changed temporarily.
18481 Don't look inside the tar's file if it's too large.
18482
18483 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
18484
18485 * cus-edit.el (custom-mode-map):
18486 * epa.el (epa-key-list-mode-map):
18487 * man.el (Man-mode-map):
18488 * startup.el (splash-screen-keymap):
18489 * simple.el (special-mode-map): Use scroll-up-command and
18490 scroll-down-command.
18491
18492 * progmodes/idlw-help.el (idlwave-help-mode-map):
18493 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18494 * net/newst-plainview.el (newsticker-mode-map):
18495 * emulation/ws-mode.el (wordstar-mode-map):
18496 * emulation/vi.el (vi-com-map):
18497 * calc/calc-graph.el (calc-graph-show-dumb):
18498 * term/sun.el (terminal-init-sun):
18499 * term/ns-win.el (global-map):
18500 * progmodes/grep.el (grep-mode-map):
18501 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18502 * mail/rmail.el (rmail-mode-map):
18503 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18504
18505 * custom.el (custom-safe-themes, load-theme): Treat value of t for
18506 custom-safe-themes as special.
18507
18508 2011-10-01 Julien Danjou <julien@danjou.info>
18509
18510 * notifications.el (notifications-notify): Fix docstring.
18511
18512 2011-10-01 Per Starbäck <per@starback.se>
18513
18514 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
18515
18516 2011-09-30 Martin Rudalics <rudalics@gmx.at>
18517
18518 * startup.el (command-line-1): Fix last fix by inserting
18519 initial-scratch-message into *scratch* before displaying it.
18520 (Bug#9605) and (Bug#9636)
18521
18522 2011-09-29 Eli Zaretskii <eliz@gnu.org>
18523
18524 * simple.el (line-move): If auto-hscroll-mode is disabled and the
18525 window is hscrolled, move by logical lines. (Bug#9607)
18526 (line-move-visual): Update the doc string to the above effect.
18527
18528 2011-09-29 Martin Rudalics <rudalics@gmx.at>
18529
18530 * window.el (display-buffer-record-window): When WINDOW is the
18531 selected window use `point' instead of `window-point'. (Bug#9626)
18532
18533 * startup.el (command-line-1): Use insert-before-markers when
18534 inserting initial-scratch-message. (Bug#9605)
18535
18536 * help.el (help-window): Remove variable.
18537
18538 2011-09-29 Glenn Morris <rgm@gnu.org>
18539
18540 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18541
18542 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
18543
18544 * descr-text.el (describe-char-categories): Accept category
18545 descriptions more than one line long.
18546
18547 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
18548
18549 * simple.el (delete-trailing-whitespace): Fix last change.
18550
18551 * progmodes/perl-mode.el (perl-syntax-propertize-function):
18552 Don't confuse "y => 3" as the beginning of a `y' operation.
18553
18554 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18555 object has more than 4 slots (bug#9613).
18556
18557 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
18558
18559 * subr.el (with-output-to-temp-buffer):
18560 * net/quickurl.el (quickurl, quickurl-browse-url):
18561 Fix typos in docstrings.
18562
18563 2011-09-27 Eli Zaretskii <eliz@gnu.org>
18564
18565 * minibuffer.el (completion-styles)
18566 (completion-category-overrides): Cross reference each other in doc
18567 strings.
18568
18569 2011-09-27 Glenn Morris <rgm@gnu.org>
18570
18571 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18572 to split-string. (Bug#9606)
18573
18574 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
18575
18576 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18577 (bug#9615).
18578
18579 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
18580
18581 * emacs-lisp/package.el (list-packages): Fix echo area message.
18582
18583 2011-09-27 Leo Liu <sdl.web@gmail.com>
18584
18585 * ido.el (ido-read-internal): Accept cons cell HIST arg.
18586
18587 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
18588
18589 * net/dbus.el (dbus-unregister-object): Don't release services for
18590 registered signals. (Bug#9581)
18591
18592 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
18593
18594 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18595 function that picks between cfengine 2 and 3 support
18596 automatically. Update docs accordingly.
18597
18598 2011-09-22 Kenichi Handa <handa@m17n.org>
18599
18600 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18601 ZERO.
18602 (indian-itrans-v5-table-for-tamil): New variable.
18603 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18604
18605 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
18606
18607 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18608 that's true if the current command involved collapsing of text.
18609 It's reset to false at the beginning of the next command.
18610 (allout-post-command-business): Move the cursor to the beginning
18611 of entry if the cursor is hidden and collapsing activity just
18612 happened.
18613
18614 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
18615
18616 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18617 tracking (Bug#9541).
18618
18619 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
18620
18621 * net/newst-reader.el (newsticker-html-renderer)
18622 (newsticker-show-news): Automatically load html rendering package
18623 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
18624 because w3m-fill-column is let-bound" and the error "Symbol's value
18625 as variable is void: w3m-fill-column".
18626
18627 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
18628
18629 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18630 Release services only if they are defined. (Bug#9581)
18631
18632 2011-09-23 Richard Stallman <rms@gnu.org>
18633
18634 * textmodes/paragraphs.el (forward-sentence): For backwards case,
18635 distinguish start of paragraph from start of its text.
18636
18637 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18638
18639 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18640 (rmail-generate-viewer-buffer): Put that hook on view buffer.
18641 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18642
18643 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
18644
18645 * international/mule-diag.el (mule-diag): Insert a newline after
18646 each fontset description.
18647
18648 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18649
18650 * simple.el (delete-trailing-whitespace):
18651 Document last change; simplify.
18652
18653 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
18654
18655 * simple.el (delete-trailing-whitespace): Also delete
18656 extra newlines at the end of the buffer.
18657
18658 * textmodes/picture.el: Make motion commands obey shift-select-mode.
18659 (picture-newline): Use forward-line so as to ignore fields.
18660
18661 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18662
18663 * subr.el (with-wrapper-hook): Fix edebug spec.
18664
18665 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
18666
18667 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18668 (bug#4538).
18669
18670 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
18671
18672 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18673 Fix nasty bug using wrong cached values.
18674
18675 2011-09-23 Alan Mackenzie <acm@muc.de>
18676
18677 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18678
18679 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
18680
18681 * window.el (pop-to-buffer): Ensure right window is selected if we
18682 chose another frame.
18683
18684 2011-09-22 Eli Zaretskii <eliz@gnu.org>
18685
18686 * simple.el (what-cursor-position): Use get-char-property-change
18687 and next-single-char-property-change, to be able to show display
18688 properties that come from overlays as well as text properties.
18689
18690 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
18691
18692 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18693
18694 * cmuscheme.el (run-scheme, switch-to-scheme):
18695 * cus-edit.el (customize-group, custom-buffer-create)
18696 (customize-browse):
18697 * info.el (info):
18698 * shell.el (shell):
18699 * mail/sendmail.el (mail):
18700 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18701
18702 2011-09-22 Richard Stallman <rms@gnu.org>
18703
18704 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18705 move back only to line beg, don't move back over blank lines.
18706
18707 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
18708
18709 * files.el (copy-directory): Set directory attributes only in case
18710 they could be retrieved from the source directory. (Bug#9565)
18711
18712 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
18713
18714 * progmodes/hideshow.el (hs-looking-at-block-start-p)
18715 (hs-find-block-beginning, hs-hide-level-recursive):
18716 Ignore strings as well as comments. (Bug#9502)
18717
18718 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
18719
18720 * progmodes/sql.el (sql-comint-postgres):
18721 Convert port number to a string. (Bug#9566)
18722
18723 2011-09-22 Martin Rudalics <rudalics@gmx.at>
18724
18725 * window.el (quit-window): Undedicate window when switching to
18726 previous buffer. Reported by Thierry Volpiatto
18727 <thierry.volpiatto@gmail.com>.
18728 (special-display-popup-frame): When popping up a new frame reset
18729 its previous buffers to nil. Simplify code.
18730
18731 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
18732
18733 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18734 and process filter, as done also in `shell-command'.
18735
18736 2011-09-21 Martin Rudalics <rudalics@gmx.at>
18737
18738 * window.el (set-window-buffer-start-and-point):
18739 Call set-window-start with NOFORCE argument t.
18740 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18741 (quit-window): Reword doc-string. Handle new format of
18742 quit-restore parameter. Don't delete window if it has a
18743 previous buffer we can show instead of the present one.
18744 (display-buffer-record-window): Rewrite using a new format for
18745 the quit-restore window parameter
18746 (special-display-popup-frame, display-buffer-same-window)
18747 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18748 (display-buffer-pop-up-window, display-buffer-use-some-window):
18749 Adapt symbol passed to display-buffer-record-window.
18750 * help.el (help-window-setup): Handle new format of quit-restore
18751 parameter.
18752
18753 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
18754
18755 * faces.el (face-list): Fix docstring (bug#9564).
18756
18757 * window.el (display-buffer--action-function-custom-type):
18758 Don't include internal functions in the Custom interface.
18759
18760 2011-09-20 Juri Linkov <juri@jurta.org>
18761
18762 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18763 (Info-forward-node, Info-backward-node, Info-next-preorder)
18764 (Info-last-preorder): Use it. (Bug#9528)
18765
18766 2011-09-20 Juri Linkov <juri@jurta.org>
18767
18768 * info.el (Info-last-preorder): Visit last menu item only when
18769 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18770
18771 2011-09-20 Julien Danjou <julien@danjou.info>
18772
18773 * password-cache.el (password-cache-remove): Remove entries even if the
18774 value is nil, so that password with a nil value (negative caching) is
18775 possible to invalidate.
18776
18777 2011-09-20 Lawrence Mitchell <wence@gmx.li>
18778
18779 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18780 all whitespace around breakpoint. (Bug#9553)
18781 (f90-find-breakpoint): Only break at whitespace inside a comment.
18782
18783 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18784
18785 * minibuffer.el (completion-file-name-table): Keep track of errors.
18786 (completion-table-with-predicate): Handle the case where pred1 is nil.
18787 * pcomplete.el (pcomplete-completions-at-point): Simplify.
18788
18789 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18790
18791 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18792 (debugger-return-value): Signal an error if the debugging context does
18793 not await any return value.
18794
18795 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18796 * image-mode.el (image-toggle-display-text)
18797 (image-toggle-display-image): Stay away from evil `intangible'.
18798
18799 2011-09-19 Leo Liu <sdl.web@gmail.com>
18800
18801 * replace.el (occur-revert-arguments): Make it permanent-local.
18802 (occur-mode): Don't call font-lock-defontify.
18803
18804 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
18805
18806 * net/ldap.el (ldap-search-internal): Don't push empty search
18807 result (Bug#9508).
18808
18809 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18810
18811 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18812
18813 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
18814
18815 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18816 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18817
18818 2011-09-18 Juri Linkov <juri@jurta.org>
18819
18820 * buff-menu.el (Buffer-menu-mode-map):
18821 * dired.el (dired-mode-map):
18822 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18823 (lisp-interaction-mode-map):
18824 * emacs-lisp/package.el (package-menu-mode-map):
18825 * epa.el (epa-key-list-mode-map):
18826 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18827 (menu-bar-options-menu):
18828 * outline.el (outline-mode-menu-bar-map):
18829 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18830 * vc/vc-dir.el (vc-dir-menu-map):
18831 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18832 Capitalize non-function content words in menu item strings.
18833
18834 * dired.el (dired-mode-map): Add menu item for
18835 `image-dired-dired-toggle-marked-thumbs'.
18836
18837 2011-09-18 Juri Linkov <juri@jurta.org>
18838
18839 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18840 to `isearch-case-fold-search' and restore its original value
18841 after the `isearch-mode' call.
18842
18843 2011-09-18 Juri Linkov <juri@jurta.org>
18844
18845 * progmodes/grep.el (grep-process-setup): Don't check code for 1
18846 because `zgrep' returns 1 for successful matches (bug#9226).
18847
18848 2011-09-18 Juri Linkov <juri@jurta.org>
18849
18850 * info.el (Info-extract-menu-node-name): Check the second match
18851 for empty string (second test-case of bug#9528).
18852 (Info-last-preorder): Let-bind `Info-history' to nil to not add
18853 intermediate nodes to the history (first test-case of bug#9528).
18854
18855 2011-09-18 Juri Linkov <juri@jurta.org>
18856
18857 * info.el (Info-mode-syntax-table): New variable.
18858 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18859
18860 2011-09-18 Juri Linkov <juri@jurta.org>
18861
18862 * info.el (Info-file-supports-index-cookies):
18863 Increment line-beginning-position's arg from 3 to 4 because makeinfo
18864 outputs one more line for long file names (bug#4142).
18865
18866 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18867
18868 * newcomment.el (comment-normalize-vars): If prompting for
18869 comment-start, set comment-start-skip too (Bug#8424).
18870
18871 2011-09-18 Johan Bockgård <bojohan@gnu.org>
18872
18873 * icomplete.el: Fix previous fix of Bug#5849.
18874 (icomplete-mode): Don't set completion-show-inline-help.
18875 (icomplete-minibuffer-setup): Set completion-show-inline-help
18876 locally during icompletion.
18877
18878 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18879
18880 * woman.el (woman2-process-escapes): Don't delete unrecognized
18881 escapes (Bug#7843).
18882
18883 * files.el (inhibit-first-line-modes-regexps): Add image files.
18884 (hack-local-variables-prop-line): Return nil for malformed
18885 prop-lines (Bug#9044).
18886
18887 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
18888
18889 * net/tramp.el (top): Don't require 'shell.
18890 (tramp-methods): Fix docstring.
18891 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18892 Return complete remote file name. Handle "smb" case.
18893 Use `tramp-tmpdir', if defined for the respective method.
18894 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18895
18896 * net/tramp-compat.el (top): Require 'shell.
18897
18898 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18899 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18900 `tramp-current-host'.
18901 (tramp-get-remote-tmpdir): Remove.
18902
18903 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18904 `tramp-tmpdir' entries.
18905 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18906 (tramp-smb-handle-file-attributes): Ignore errors.
18907 (tramp-smb-wait-for-output): Check also for process end.
18908
18909 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
18910
18911 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18912 when sending QUIT (bug#9312).
18913
18914 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
18915
18916 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18917 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18918 occur-mode-display-occurrence.
18919 (occur-edit-mode): Add usage message.
18920 (occur-cease-edit): New command.
18921 (occur-after-change-function): Use text properties to find the
18922 position of the prefix text.
18923 (occur-engine): Set stickiness of prefix text properties.
18924
18925 2011-09-17 Glenn Morris <rgm@gnu.org>
18926
18927 * progmodes/etags.el (complete-tag):
18928 Fix call to completion-in-region. (Bug#9526)
18929
18930 2011-09-17 Juri Linkov <juri@jurta.org>
18931
18932 * textmodes/ispell.el (ispell-word): Add to the error message
18933 the word, ispell program name and current dictionary (bug#9121).
18934 (ispell-tex-arg-end): Capitalize "error" in the error message.
18935
18936 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
18937
18938 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18939 check. (Bug#4251)
18940
18941 2011-09-17 Juri Linkov <juri@jurta.org>
18942
18943 * window.el (window-safe-min-height, window-safe-min-width):
18944 Fix typos (followup to bug#9522).
18945
18946 2011-09-17 Sven Joachim <svenjoac@gmx.de>
18947
18948 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18949
18950 2011-09-16 Eli Zaretskii <eliz@gnu.org>
18951
18952 * simple.el (line-move): If goal-column is set, move by logical
18953 lines, not by display lines. (Bug#971)
18954 (next-line, previous-line, goal-column, line-move-visual): Doc fix
18955 to reflect the above change.
18956
18957 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18958
18959 * image.el (imagemagick-register-types): Use regexp-opt.
18960
18961 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18962
18963 * window.el (display-buffer-base-action): Rename from
18964 display-buffer-default-action. Make default value empty.
18965 (display-buffer-overriding-action): Convert to defvar.
18966 (display-buffer-fallback-action): New var.
18967
18968 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18969
18970 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18971 declaration.
18972 (package--add-to-archive-contents): If there is a duplicate entry
18973 with an older version, remove it.
18974 (package-menu-mark-delete, package-menu-mark-install)
18975 (package-menu-mark-unmark): Make unused args optional.
18976 (package-menu-mark-obsolete-for-deletion):
18977 Use package-menu-get-status instead of a regexp search.
18978 (package-menu-get-status): Use tabulated-list-entry.
18979 (package-menu-mark-upgrades): New command.
18980 (package-menu-mode-map): Bind it to U. Add it to menu bar.
18981 (package-menu-execute): Do installation before deletion.
18982 (package-menu-refresh, package-menu-execute): Use derived-mode-p
18983 instead of checking major-mode.
18984 (package-menu--find-upgrades): New function.
18985
18986 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18987
18988 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18989 passwords in the log buffer.
18990 (smtpmail-process-filter): Update the process marker so that the
18991 "broken by peer" status message is inserted in the right place.
18992
18993 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
18994
18995 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18996 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18997 bibtex-completion-at-point-function.
18998 (bibtex-completion-at-point-function): Use them.
18999
19000 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
19001
19002 * mpc.el (mpc-constraints-tag-lookup): New function.
19003 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
19004 also to browser "album|playlist".
19005
19006 2011-09-14 Juri Linkov <juri@jurta.org>
19007
19008 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
19009 (isearch-edit-string): Use length of `isearch-string' when
19010 `isearch-fail-pos' returns nil.
19011 (isearch-message): Remove duplicate code and call
19012 `isearch-fail-pos' with arg `t'.
19013
19014 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
19015
19016 * replace.el (occur-mode-goto-occurrence): Don't force using other
19017 window (Bug#9499).
19018
19019 * dired-aux.el (dired-do-chmod): Don't provide initial input.
19020
19021 2011-09-14 Martin Rudalics <rudalics@gmx.at>
19022
19023 * window.el (display-buffer-window): Remove.
19024 (display-buffer-record-window): Use help-setup window parameter
19025 instead of variable display-buffer-window.
19026 (display-buffer-function, special-display-buffer-names)
19027 (special-display-function): Mention help-setup parameter instead
19028 of display-buffer-window in doc-string.
19029 * help.el (help-window-setup): New argument help-window.
19030 Use help-window-setup parameter instead of display-buffer-window.
19031 Reword some messages.
19032 (with-help-window): Pass window used for displaying the buffer
19033 to help-window-setup. Don't set display-buffer-window.
19034
19035 2011-09-13 Glenn Morris <rgm@gnu.org>
19036
19037 * emacs-lisp/debug.el (debugger-make-xrefs):
19038 Preserve point. (Bug#9462)
19039
19040 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
19041
19042 * window.el (window-deletable-p): Use next-frame.
19043
19044 2011-09-13 Martin Rudalics <rudalics@gmx.at>
19045
19046 * window.el (window-auto-delete): Remove.
19047 (window-deletable-p): Remove argument FORCE. Don't deal with
19048 dedication and previous buffers.
19049 (switch-to-prev-buffer): Don't delete window.
19050 (delete-windows-on): Delete a window's frame if and only if the
19051 window is dedicated.
19052 (replace-buffer-in-windows): Delete buffer's window or frame if
19053 and only if window is dedicated.
19054 (quit-window): Handle quit-restore as before last change.
19055 (bury-buffer): Delete window only if window-deletable-p returns t.
19056
19057 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
19058
19059 * window.el (window-deletable-p): Never delete the last frame on a
19060 given terminal.
19061
19062 2011-09-13 Glenn Morris <rgm@gnu.org>
19063
19064 * help.el (describe-key-briefly): Copy previous standard-output change.
19065
19066 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
19067
19068 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
19069
19070 2011-09-13 Glenn Morris <rgm@gnu.org>
19071
19072 * emacs-lisp/lisp-mode.el (lisp-indent-function):
19073 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
19074
19075 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
19076
19077 * dired-aux.el (dired-mark-read-string): Don't return default
19078 value on empty input (Bug#9361).
19079 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
19080 Omit initial minibuffer contents.
19081 (dired-do-chmod): Signal an error on empty input.
19082 (dired-mark-read-string): Don't return default on empty input.
19083
19084 * files.el (file-modes-symbolic-to-number): Doc fix.
19085
19086 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
19087
19088 * international/mule-cmds.el (ucs-completions): Remove.
19089 (read-char-by-name): Use complete-with-action instead; add metadata.
19090
19091 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
19092
19093 * window.el (display-buffer--action-function-custom-type)
19094 (display-buffer--action-custom-type): New vars.
19095 (display-buffer-alist, display-buffer-default-action)
19096 (display-buffer-overriding-action): Add defcustom types.
19097
19098 * frame.el (delete-other-frames): Doc fix (Bug#276).
19099
19100 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19101
19102 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
19103
19104 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
19105
19106 Change modes that used same-window-* vars to use switch-to-buffer.
19107
19108 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
19109 Use switch-to-buffer.
19110
19111 * cus-edit.el (customize-group, custom-buffer-create)
19112 (customize-browse, custom-buffer-create-other-window):
19113 Use switch-to-buffer or switch-to-buffer-other-window.
19114
19115 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
19116 (Info-prev, Info-up, Info-speedbar-goto-node)
19117 (info-display-manual): Use switch-to-buffer.
19118 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
19119
19120 * mail/sendmail.el (mail): Use switch-to-buffer.
19121 (mail-recover): Use switch-to-buffer-other-window.
19122
19123 * cmuscheme.el (run-scheme, switch-to-scheme):
19124 * ielm.el (ielm):
19125 * shell.el (shell):
19126 * net/rlogin.el (rlogin):
19127 * net/telnet.el (telnet, rsh):
19128 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
19129
19130 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
19131
19132 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
19133
19134 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19135
19136 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
19137 so don't mention it (bug#9301).
19138 (dired-sort-toggle-or-edit): Clarify string further.
19139
19140 * faces.el (face-spec-set-match-display): Make `(type graphic)'
19141 match `x', `w32' and `ns', like the manual says (bug#9029).
19142
19143 * subr.el (eval-after-load): Doc string clarification (bug#9125).
19144 (process-kill-buffer-query-function): Mention the buffer name in
19145 the query.
19146
19147 * image-mode.el (image-next-line): The line parameter is mandatory
19148 (bug#9258).
19149
19150 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
19151 which can be useful (bug#9301).
19152
19153 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
19154
19155 * subr.el (match-string): Mention that the current buffer should
19156 be the same as the search was done in (bug#9282).
19157
19158 * facemenu.el: Disable the remove-* commands if the mark isn't
19159 active (bug#9162).
19160
19161 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
19162
19163 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
19164 of display-buffer.
19165 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
19166
19167 * replace.el (occur-mode-goto-occurrence)
19168 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
19169 and display-buffer.
19170
19171 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
19172 display-buffer.
19173
19174 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
19175 special-display and same-window variables.
19176 (mail-other-window): Use switch-to-buffer-other-window.
19177 (mail-other-frame): USe switch-to-buffer-other-frame.
19178
19179 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
19180 Use display-buffer-other-frame.
19181 (gdb-display-gdb-buffer): Use pop-to-buffer.
19182
19183 * progmodes/gud.el (gud-goto-info): Use info-other-window.
19184
19185 * progmodes/python.el: Don't set same-window-buffer-names.
19186
19187 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
19188
19189 * window.el (display-buffer-alist): Add *Python*.
19190
19191 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
19192
19193 * window.el (display-buffer-alist): Add entry for buffers
19194 previously handled same-window-*.
19195 (display-buffer-alist, display-buffer-default-action)
19196 (display-buffer-overriding-action): Mark as risky.
19197 (display-buffer-alist): Document action function changes.
19198 (display-buffer--same-window-action)
19199 (display-buffer--other-frame-action): New variables.
19200 (switch-to-buffer, display-buffer-other-frame): Use them.
19201 (display-buffer): Rename reuse-frame entry to reusable-frames.
19202 (display-buffer-reuse-selected-window): Function deleted.
19203 (display-buffer-reuse-window): Handle reusable-frames alist entry.
19204 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
19205 (display-buffer-special): New function.
19206 (display-buffer--maybe-pop-up-frame-or-window): Rename from
19207 display-buffer-reuse-or-pop-window. Split off special-display
19208 part into display-buffer-special.
19209 (display-buffer-use-some-window): Don't perform any special
19210 pop-up-frames handling.
19211 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
19212 (display-buffer--maybe-same-window): Rename from
19213 display-buffer-maybe-same-window.
19214
19215 * info.el: Don't set same-window-regexps.
19216 (info-setup): New function.
19217 (info-other-window, info): Call it.
19218
19219 * cus-edit.el: Don't set same-window-regexps.
19220 (customize-group): New argument.
19221 (customize-group-other-window): Use it.
19222 (customize-face, customize-face-other-window): Likewise.
19223 (custom-buffer-create-other-window): Use pop-to-buffer directly.
19224
19225 * net/rlogin.el:
19226 * net/telnet.el:
19227 * progmodes/gud.el: Don't set same-window-regexps.
19228
19229 * cmuscheme.el:
19230 * ielm.el:
19231 * shell.el:
19232 * mail/sendmail.el:
19233 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
19234
19235 2011-09-10 Juri Linkov <juri@jurta.org>
19236
19237 * isearch.el (isearch-edit-string): Remove obsolete mention of
19238 `C-w' (`isearch-yank-word-or-char') from docstring.
19239 (isearch-query-replace): Fix typo in docstring (bug#9466).
19240
19241 2011-09-10 Juri Linkov <juri@jurta.org>
19242
19243 * paren.el (show-paren-function): Don't show escaped parens.
19244 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
19245
19246 2011-09-10 Eli Zaretskii <eliz@gnu.org>
19247
19248 * mail/sendmail.el (mml-to-mime, mml-attach-file)
19249 (mm-default-file-encoding): Remove autoload forms, they are
19250 replaced with autoload cookies in mml.el and mm-encode.el.
19251 (mail-add-attachment): New command.
19252 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
19253 (mail-mode): Mention mail-insert-file and mail-add-attachment in
19254 the doc string.
19255 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
19256
19257 2011-09-10 Reuben Thomas <rrt@sc3d.org>
19258
19259 * simple.el (count-words-region): Use buffer if there's no region
19260 (bug#9429).
19261
19262 2011-09-09 Juri Linkov <juri@jurta.org>
19263
19264 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
19265 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
19266 (wdired-isearch-filter-read-only): New function. (Bug#6362)
19267
19268 2011-09-09 Alan Mackenzie <acm@muc.de>
19269
19270 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
19271 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
19272
19273 2011-09-09 Eli Zaretskii <eliz@gnu.org>
19274
19275 Fix for Savannah bug#9392.
19276 * simple.el (mail-encode-mml): New defvar.
19277
19278 * mail/rmail.el (mail-encode-mml): Add a defvar.
19279 (rmail-enable-mime-composing): Default to t.
19280 (rmail-forward): Use MIME method of forwarding only if both
19281 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
19282 Set mail-encode-mml non-nil if the MIME method was used.
19283
19284 * mail/sendmail.el (mml-to-mime): Add autoload form.
19285 (mail-encode-mml): Add a defvar.
19286 (mail-mode): Make mail-encode-mml buffer-local and initialize it
19287 to nil.
19288 (mail-send): If mail-encode-mml is non-nil, run the outgoing
19289 message through mml-to-mime, and reset mail-encode-mml to nil.
19290
19291 2011-09-09 Glenn Morris <rgm@gnu.org>
19292
19293 * woman.el (woman-if-body): When processing an .el block,
19294 do not delete the next .el block as well. (Bug#9447)
19295 (woman-special-characters): Add oq, cq, and hy characters.
19296
19297 2011-09-08 Martin Rudalics <rudalics@gmx.at>
19298
19299 * window.el (window-deletable-p): Make sure window is live before
19300 invoking window-prev-buffers.
19301
19302 2011-09-08 Leo Liu <sdl.web@gmail.com>
19303
19304 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
19305
19306 2011-09-08 Juri Linkov <juri@jurta.org>
19307
19308 * progmodes/compile.el (compilation-environment): Make it
19309 a defcustom (bug#8340).
19310
19311 2011-09-08 Martin Rudalics <rudalics@gmx.at>
19312
19313 * window.el (frame-auto-delete): Rename to window-auto-delete.
19314 Make it control auto-deletion of windows and/or frames.
19315 (window-deletable-p): New argument FORCE. Rewrite conditions
19316 for deleting window/frame. (Bug#9419)
19317 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
19318 Rewrite handling of case when window/frame can be deleted.
19319 (delete-windows-on): Call window-deletable-p with new FORCE
19320 argument t. (Bug#9456)
19321
19322 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
19323
19324 * help-mode.el (help-mode): Restore autoload.
19325
19326 2011-09-07 Juri Linkov <juri@jurta.org>
19327
19328 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
19329 `compilation-environment'. Set buffer-local
19330 `compilation-environment' to `thisenv' later after (funcall mode).
19331 (Bug#8340)
19332
19333 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
19334 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
19335 instead of replacing its value. (Bug#8340)
19336
19337 2011-09-07 Juri Linkov <juri@jurta.org>
19338
19339 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
19340 based on text properties put by `grep-filter' instead of matching
19341 escape sequences.
19342 (grep-mode): Set buffer-local `compilation-error-screen-columns'
19343 to the value of `grep-error-screen-columns' (bug#9438).
19344
19345 2011-09-07 Juri Linkov <juri@jurta.org>
19346
19347 * simple.el (next-error-highlight, next-error-highlight-no-select):
19348 Doc fix (bug#9432).
19349
19350 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
19351
19352 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19353 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
19354
19355 2011-09-07 Leo Liu <sdl.web@gmail.com>
19356
19357 * net/rcirc.el (rcirc-mode): Conditionally initialize
19358 rcirc-input-ring.
19359
19360 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19361
19362 * emacs-lisp/find-func.el (find-function-C-source): Only set
19363 find-function-C-source-directory after checking that we found a source
19364 file there (bug#9440).
19365
19366 2011-09-06 Alan Mackenzie <acm@muc.de>
19367
19368 * isearch.el (isearch-other-meta-char): Wherever a key list is
19369 unread, "unread" the prefix arg, too. This fixes bug #8901.
19370
19371 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
19372
19373 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
19374
19375 2011-09-05 Juri Linkov <juri@jurta.org>
19376
19377 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
19378
19379 2011-09-05 Juri Linkov <juri@jurta.org>
19380
19381 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
19382 keeping point where processing of grep matches begins, and
19383 continue to delete remaining escape sequences from the same point.
19384 (grep-filter): Make leading zero optional in "0?1;31m" because
19385 git-grep emits "\033[1;31m" escape sequences unlike expected
19386 "\033[01;31m" as GNU Grep does (bug#9408).
19387 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
19388
19389 2011-09-05 Juri Linkov <juri@jurta.org>
19390
19391 * subr.el (y-or-n-p): Capitalize "yes".
19392
19393 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
19394
19395 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
19396 `tramp-cache-unload-hook' where appropriate.
19397 (tramp-methods): Rename `tramp-remote-sh' to
19398 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
19399 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
19400
19401 * net/tramp-sh.el (top): Don't require 'shell.
19402 (tramp-methods): Add `tramp-remote-shell' and
19403 `tramp-remote-shell-args' entries.
19404 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
19405 (tramp-sh-handle-shell-command): Remove.
19406 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
19407 Use `tramp-remote-shell'.
19408
19409 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
19410
19411 * mail/sendmail.el (sendmail-query-once-function): Delete.
19412 (sendmail-query-once): Save directly to send-mail-function.
19413 Update message-send-mail-function too.
19414
19415 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
19416
19417 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19418
19419 * progmodes/python.el (python-mode-map): Use correct function to
19420 start python interpreter from menu-bar (as reported by Geert
19421 Kloosterman).
19422 (inferior-python-mode-map): Fix typo.
19423 (python-shell-map): Remove.
19424
19425 2011-09-03 Deniz Dogan <deniz@dogan.se>
19426
19427 * net/rcirc.el (rcirc-print): Simplify code for
19428 rcirc-scroll-show-maximum-output. There is no need to walk
19429 through all windows to find the right one.
19430
19431 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19432
19433 * help.el (help-return-method): Doc fix.
19434
19435 2011-09-03 Martin Rudalics <rudalics@gmx.at>
19436
19437 * window.el (window-deletable-p): Don't return a non-nil value
19438 when there's a buffer that was shown in the window before.
19439 (Bug#9419)
19440 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
19441 Set window's previous buffers to nil.
19442
19443 2011-09-03 Eli Zaretskii <eliz@gnu.org>
19444
19445 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
19446 newline before and after the tag line, so it doesn't interfere
19447 with determining the paragraph direction of bidirectional text.
19448
19449 2011-09-03 Leo Liu <sdl.web@gmail.com>
19450
19451 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
19452
19453 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19454
19455 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
19456 (pop-to-buffer): Change interactive spec. Pass second argument
19457 directly to display-buffer.
19458 (display-buffer): Fix interactive spec. Use functionp to
19459 distinguish between a function and a list of functions.
19460
19461 * abbrev.el (edit-abbrevs):
19462 * arc-mode.el (archive-extract):
19463 * autoinsert.el (auto-insert):
19464 * bookmark.el (bookmark-bmenu-list):
19465 * files.el (find-file):
19466 * view.el (view-buffer):
19467 * progmodes/compile.el (compilation-goto-locus):
19468 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
19469
19470 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19471
19472 * window.el (display-buffer-alist): Doc fix.
19473 (display-buffer): Add docstring. Don't treat
19474 display-buffer-default specially.
19475 (display-buffer-reuse-selected-window)
19476 (display-buffer-same-window, display-buffer-maybe-same-window)
19477 (display-buffer-reuse-window, display-buffer-pop-up-frame)
19478 (display-buffer-pop-up-window)
19479 (display-buffer-reuse-or-pop-window)
19480 (display-buffer-use-some-window): New functions.
19481 (display-buffer-default-action): Use them.
19482 (display-buffer-default): Delete.
19483 (pop-to-buffer-1): Fix choice of actions.
19484
19485 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
19486
19487 * minibuffer.el (completion--insert-strings): Don't get confused by
19488 completion entries that end with an LF char.
19489
19490 2011-09-01 Eli Zaretskii <eliz@gnu.org>
19491
19492 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19493
19494 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
19495
19496 * window.el (display-buffer): Restore interactive spec.
19497 (display-buffer-same-window, display-buffer-other-window):
19498 New functions.
19499 (pop-to-buffer-1): New function. Use the above.
19500 (pop-to-buffer, pop-to-buffer-same-window): Use it.
19501 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19502
19503 * view.el (view-buffer-other-window, view-buffer-other-frame):
19504 Just use pop-to-buffer.
19505
19506 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
19507
19508 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
19509
19510 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
19511
19512 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
19513
19514 2011-08-31 Richard Stallman <rms@gnu.org>
19515
19516 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19517 of the separation of rmail-view-buffer from rmail-buffer.
19518 If you say no to "replace original", the decrypt is in the
19519 view buffer. If you say yes, the decrypt goes into the
19520 rmail buffer also.
19521
19522 2011-08-31 Martin Rudalics <rudalics@gmx.at>
19523
19524 * window.el (display-buffer-window): Rewrite doc-string.
19525 (display-buffer-record-window): New function.
19526 (display-buffer-macro-specifiers)
19527 (display-buffer-even-window-sizes, display-buffer-set-height)
19528 (display-buffer-set-width, display-buffer-in-window)
19529 (display-buffer-reuse-window, display-buffer-split-specifiers)
19530 (display-buffer-side-specifiers, display-buffer-split-window-1)
19531 (display-buffer-split-window, display-buffer-split-atom-window)
19532 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19533 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19534 (display-buffer-other-window-means-other-frame)
19535 (display-buffer-normalize-special)
19536 (display-buffer-normalize-default)
19537 (display-buffer-normalize-argument)
19538 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19539 (display-buffer-normalize-specifiers, display-buffer-frame)
19540 (display-buffer-same-window, display-buffer-same-frame)
19541 (display-buffer-other-window)
19542 (display-buffer-same-frame-other-window)
19543 (display-buffer-other-frame, pop-to-buffer-same-window)
19544 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19545 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19546 (switch-to-buffer-same-frame)
19547 (switch-to-buffer-other-window-same-frame)
19548 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19549 (display-buffer-alist-set-1, display-buffer-alist-set-2)
19550 (display-buffer-alist-set): Remove.
19551 (display-buffer-function, special-display-buffer-names)
19552 (special-display-regexps, special-display-function):
19553 In doc-string refer to display-buffer-window and quit-restore
19554 parameter.
19555 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19556 (special-display-frame-alist, special-display-popup-frame)
19557 (same-window-buffer-names, same-window-regexps, same-window-p)
19558 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19559 (split-window-preferred-function, split-height-threshold)
19560 (split-width-threshold, window-splittable-p)
19561 (split-window-sensibly, window--try-to-split-window)
19562 (window--frame-usable-p, even-window-heights)
19563 (window--even-window-heights, window--display-buffer-1)
19564 (window--display-buffer-2, display-buffer-other-frame):
19565 Restore old Emacs 23 code, order and doc-strings where applicable.
19566 (display-buffer-default, display-buffer-assq-regexp): New functions.
19567 (display-buffer-alist): Rewrite doc-string.
19568 (display-buffer-default-action)
19569 (display-buffer-overriding-action): New variables.
19570 (display-buffer, switch-to-buffer): Rewrite.
19571 (pop-to-buffer): Restore Emacs 23 behavior but use
19572 window-normalize-buffer-to-display.
19573 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19574 Restore Emacs 23 behavior but use
19575 window-normalize-buffer-to-switch-to.
19576 (pop-to-buffer-same-window): Rewrite.
19577 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19578 Rewrite using Emacs 23 options.
19579
19580 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
19581
19582 * net/tramp.el (tramp-root-regexp): Remove.
19583 (tramp-completion-file-name-regexp-unified)
19584 (tramp-completion-file-name-regexp-separate)
19585 (tramp-completion-file-name-regexp-url): Don't use leading volume
19586 letter on w32 systems. (Bug#5303, Bug#9311)
19587 (tramp-drop-volume-letter): Simplify definition.
19588 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19589
19590 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
19591
19592 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19593 (bug#9356).
19594
19595 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
19596
19597 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19598
19599 2011-08-29 Juri Linkov <juri@jurta.org>
19600
19601 * isearch.el (isearch-done): Don't display message "Mark saved"
19602 when arg `edit' is non-nil to prevent its flicker in the echo area.
19603
19604 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19605
19606 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19607 obsolete packages for deletion.
19608
19609 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
19610
19611 * help-mode.el (help-mode-map): Add special-mode-map to parent.
19612 (help-mode): Derive help-mode from special-mode. Don't invoke
19613 view-mode from help-mode.
19614 (help-xref-override-view-map): Remove.
19615 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19616 view-mode is not used anymore.
19617
19618 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19619
19620 * server.el (server-port): Doc fix.
19621
19622 * cus-theme.el (custom-theme-choose-mode): Inherit from
19623 special-mode (Bug#9124).
19624 (custom-theme-choose-mode-map): Add special-mode to parent.
19625
19626 2011-08-28 Alan Mackenzie <acm@muc.de>
19627
19628 * progmodes/cc-fonts.el
19629 (c-make-font-lock-BO-decl-search-function): New function.
19630 (c-basic-matchers-after - "Fontify the clauses after various
19631 keywords"): Extract the three keyword lists for the 3 erroneous
19632 constructs from the list of four, and use the new function above
19633 in place of an old one.
19634
19635 2011-08-28 Deniz Dogan <deniz@dogan.se>
19636
19637 * net/rcirc.el (rcirc-insert-prev-input)
19638 (rcirc-insert-next-input): Remove unused argument.
19639
19640 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19641
19642 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19643
19644 2011-08-27 Alan Mackenzie <acm@muc.de>
19645
19646 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19647 handle function pointer parameters properly.
19648
19649 2011-08-27 Martin Rudalics <rudalics@gmx.at>
19650
19651 * window.el (display-buffer-reuse-window): Fix case where
19652 selected window was reused with non-nil OTHER-WINDOW argument.
19653 (Bug#9381)
19654
19655 2011-08-27 Deniz Dogan <deniz@dogan.se>
19656
19657 * net/rcirc.el (rcirc-check-auth-status): Adding support for
19658 oftc's NickServ messages.
19659
19660 2011-08-27 Glenn Morris <rgm@gnu.org>
19661
19662 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
19663
19664 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
19665
19666 * emacs-lisp/package.el (package-install): Call package-initialize
19667 if called interactively.
19668
19669 2011-08-26 Leo Liu <sdl.web@gmail.com>
19670
19671 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
19672
19673 2011-08-25 Juri Linkov <juri@jurta.org>
19674
19675 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19676 `search-whitespace-regexp' (bug#9364).
19677
19678 2011-08-25 Juri Linkov <juri@jurta.org>
19679
19680 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19681 `regexp-search-ring' to their global values to protect from
19682 updating by `read-from-minibuffer' (bug#9185).
19683
19684 2011-08-25 Juri Linkov <juri@jurta.org>
19685
19686 * textmodes/ispell.el (ispell-command-loop): Add newline
19687 at the end of the "Use option `i'..." line.
19688
19689 2011-08-25 Juri Linkov <juri@jurta.org>
19690
19691 * battery.el (display-battery-mode): If `battery-status-function'
19692 or `battery-mode-line-format' is nil, display the message and set
19693 `display-battery-mode' to nil (bug#9363).
19694
19695 2011-08-25 Eli Zaretskii <eliz@gnu.org>
19696
19697 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19698 bidi-string-mark-left-to-right; they are unnecessary now.
19699
19700 2011-08-25 Deniz Dogan <deniz@dogan.se>
19701
19702 * net/quickurl.el: Documentation typo fixes.
19703
19704 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
19705
19706 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19707
19708 2011-08-25 Glenn Morris <rgm@gnu.org>
19709
19710 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19711
19712 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19713 (smtpmail-via-smtp): Handle nil response from smtp.
19714
19715 2011-08-24 Juri Linkov <juri@jurta.org>
19716
19717 * proced.el (proced-marked): Inherit from `error' instead of
19718 `font-lock-warning-face'.
19719
19720 * ibuffer.el (ibuffer-marked-face): Change default face from
19721 `font-lock-warning-face' to `warning'.
19722 (ibuffer-deletion-face): Change default face from
19723 `font-lock-type-face' to `error'.
19724
19725 * battery.el (battery-update): Use the face `error' instead of
19726 `font-lock-warning-face' (bug#6117).
19727
19728 2011-08-24 Juri Linkov <juri@jurta.org>
19729
19730 * faces.el (success): Change face color from "Green3" to
19731 "ForestGreen" on light background (bug#9353).
19732
19733 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
19734
19735 * window.el (quit-window): Rename from quit-restore-window.
19736 Use same arglist as old quit-window.
19737 (frame-auto-delete): Doc fix.
19738
19739 * view.el (view-mode-exit): Use quit-window.
19740
19741 2011-08-24 Juri Linkov <juri@jurta.org>
19742
19743 * isearch.el (isearch-ring-adjust1): Start visiting previous
19744 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19745 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19746 for empty search string (when the last search string is reused
19747 automatically) to adjust the isearch ring to the last element and
19748 prepare the correct index for further M-p commands (bug#9185).
19749
19750 2011-08-24 Kenichi Handa <handa@m17n.org>
19751
19752 * international/ucs-normalize.el: If decomposition property of
19753 CHAR is the default one (i.e. a list of CHAR itself), treat it as
19754 nil.
19755 (nfd, nfkd): Likewise.
19756
19757 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
19758
19759 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19760 from process filters aren't reliably transmitted to the surrounding
19761 accept-process-output.
19762 (mpc-proc-check): New function.
19763 (mpc-proc-sync): Use it (bug#8293)
19764
19765 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19766
19767 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19768 Add compatibility functions (bug#9313).
19769
19770 2011-08-23 Eli Zaretskii <eliz@gnu.org>
19771
19772 * cus-start.el (all): Add entry for bidi-paragraph-direction.
19773
19774 * international/uni-bidi.el: Regenerate.
19775
19776 2011-08-23 Kenichi Handa <handa@m17n.org>
19777
19778 * international/charprop.el:
19779 * international/uni-bidi.el:
19780 * international/uni-category.el:
19781 * international/uni-combining.el:
19782 * international/uni-comment.el:
19783 * international/uni-decimal.el:
19784 * international/uni-decomposition.el:
19785 * international/uni-digit.el:
19786 * international/uni-lowercase.el:
19787 * international/uni-mirrored.el:
19788 * international/uni-name.el:
19789 * international/uni-numeric.el:
19790 * international/uni-old-name.el:
19791 * international/uni-titlecase.el:
19792 * international/uni-uppercase.el: Regenerate.
19793
19794 2011-08-23 Martin Rudalics <rudalics@gmx.at>
19795
19796 * help.el (help-window-setup): Fix message displayed when other
19797 window is reused. (Bug#9341)
19798
19799 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19800
19801 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19802 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19803
19804 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19805 Mark obsolete.
19806 * shell.el (shell-parse-pcomplete-arguments): New function.
19807 (shell-completion-vars): Use it instead (bug#9160).
19808
19809 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
19810
19811 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19812 strings and comments (bug#9333).
19813
19814 * emacs-lisp/debug.el (debug-arglist): New function.
19815 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
19816 (debug-on-entry-1): Handle interpreted closures (bug#9120).
19817
19818 2011-08-22 Juri Linkov <juri@jurta.org>
19819
19820 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19821 Revert regexp that highlights output switches to its old
19822 pre-2010-10-28 value and remove one `?' from it (bug#9319).
19823
19824 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19825 to check for empty output (bug#9226).
19826
19827 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
19828
19829 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19830 symbol-constituent as the default, as that stops font-lock from
19831 working properly (Bug#8843).
19832
19833 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19834
19835 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19836 `coding-system-for-*' around the process open call to avoid
19837 auth-source side effects.
19838 (smtpmail-try-auth-methods): Expand the secret password.
19839 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19840 probe hangs.
19841
19842 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19843
19844 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19845
19846 * emacs-lisp/find-func.el (find-function-noselect): New arg
19847 lisp-only.
19848
19849 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19850 signal an error for built-in functions (Bug#6664).
19851
19852 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19853
19854 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19855 (smtpmail-try-auth-methods): Use it.
19856
19857 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19858
19859 * font-lock.el (font-lock-fontify-region)
19860 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19861 (font-lock-default-unfontify-buffer)
19862 (font-lock-default-fontify-region)
19863 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19864
19865 * progmodes/compile.el (compilation-error-properties):
19866 Fix confusion between file struct and message struct (Bug#9319).
19867 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19868 `ant' regexp.
19869
19870 * net/browse-url.el (browse-url-firefox): Don't call
19871 browse-url-firefox-sentinel unless using -remote (Bug#9328).
19872
19873 2011-08-20 Glenn Morris <rgm@gnu.org>
19874
19875 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19876
19877 * tutorial.el (tutorial--default-keys): Update some default bindings.
19878
19879 * files.el (hack-local-variables): Fully ignore case for "mode:".
19880
19881 2011-08-20 Alan Mackenzie <acm@muc.de>
19882
19883 Resolve invalid use of a regexp in regexp-opt.
19884
19885 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19886 detection for a java annotation.
19887
19888 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19889 detection for a java annotation.
19890
19891 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19892 handling for java.
19893 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19894
19895 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
19896
19897 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19898 (Bug#9274).
19899
19900 2011-08-20 Alan Mackenzie <acm@muc.de>
19901
19902 Fontify CPP expressions correctly when starting in the middle of
19903 such a construct. Mainly for when jit-lock etc. starts a chunk
19904 here.
19905
19906 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19907 variable.
19908 (c-make-font-lock-search-form): New function, extracted from
19909 c-make-font-lock-search-function.
19910 (c-make-font-lock-search-function): Use the above function.
19911 (c-make-font-lock-context-search-function): New function.
19912 (c-cpp-matchers): Enhance the preprocessor expression case with
19913 the above function
19914 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19915 which takes an expression.
19916
19917 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19918
19919 2011-08-20 Martin Rudalics <rudalics@gmx.at>
19920
19921 * window.el (display-buffer-reuse-window)
19922 (display-buffer-pop-up-window): Don't reuse or split a side
19923 window.
19924
19925 2011-08-19 Glenn Morris <rgm@gnu.org>
19926
19927 * files.el (hack-local-variables-prop-line, hack-local-variables):
19928 Downcase "Mode:". (Bug#9331)
19929
19930 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
19931
19932 * international/characters.el: Add L and R categories.
19933
19934 * subr.el (bidi-string-mark-left-to-right): Rename from
19935 string-mark-left-to-right. Use category search.
19936
19937 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19938
19939 2011-08-18 Juri Linkov <juri@jurta.org>
19940
19941 * faces.el (error, warning, success): New faces with definitions
19942 copied from old default values of `font-lock-warning-face',
19943 `compilation-warning', `compilation-info' (bug#6117).
19944
19945 * font-lock.el (font-lock-warning-face): Inherit from `error'.
19946
19947 * progmodes/compile.el (compilation-error): Inherit from `error'.
19948 (compilation-warning): Inherit from `warning'.
19949 (compilation-info): Inherit from `success'.
19950
19951 * dired.el (dired-marked): Inherit from `warning'.
19952 (dired-flagged): Inherit from `error'.
19953
19954 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19955
19956 * mail/smtpmail.el (auth-source): Require to avoid problems with
19957 binding variables (bug#9298). Also clean up some unused
19958 autoloads.
19959
19960 * net/network-stream.el (network-stream-open-starttls):
19961 Support using starttls.el without using gnutls-cli.
19962
19963 2011-08-17 Juri Linkov <juri@jurta.org>
19964
19965 * progmodes/grep.el (rgrep): Handle the case when
19966 `grep-find-command' is a cons cell (bug#9278).
19967
19968 2011-08-17 Martin Rudalics <rudalics@gmx.at>
19969
19970 * window.el (display-buffer-pop-up-frame): Run frame creation
19971 function with BUFFER current (as special-display-popup-frame
19972 does). Reported by Drew Adams.
19973
19974 2011-08-17 Daiki Ueno <ueno@unixuser.org>
19975
19976 * epa-mail.el: Simplify GnuPG group expansion using
19977 epg-expand-group.
19978 (epa-mail-group-alist, epa-mail-group-modtime)
19979 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19980 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19981 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19982 Remove.
19983
19984 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
19985
19986 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19987
19988 2011-08-16 Alan Mackenzie <acm@muc.de>
19989
19990 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19991 Correct, to avoid the inside of macros.
19992
19993 2011-08-16 Richard Stallman <rms@gnu.org>
19994
19995 * epa-mail.el: Handle GnuPG group definitions.
19996 (epa-mail-group-alist, epa-mail-group-modtime)
19997 (epa-mail-gnupg-conf-file): New variables.
19998 (epa-mail-parse-groups, epa-mail-sync-groups)
19999 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
20000 (epa-mail-expand-recipients): New functions.
20001 (epa-mail-encrypt): Call epa-mail-expand-recipients.
20002
20003 * mail/rmail.el (rmail-epa-decrypt): New command.
20004
20005 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
20006 Don't bind buffer-read-only, just inhibit-read-only.
20007 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
20008 (epa-decrypt-armor-in-region): Make error message clearer.
20009
20010 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
20011
20012 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
20013 and "a2b" to "ab" for `prefix'.
20014
20015 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
20016
20017 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
20018 filter groups.
20019 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
20020 Fourquet (Bug#8804).
20021
20022 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
20023
20024 * startup.el (argi): Declare as global variable (bug#9275).
20025
20026 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
20027
20028 * subr.el (string-mark-left-to-right): Search the entire string
20029 for RTL script, not just the terminating character. Doc fix.
20030
20031 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
20032
20033 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
20034 New function.
20035 (js--regexp-literal, js-syntax-propertize-function): Remove.
20036 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
20037 (js-mode-map): Don't rebind electric keys.
20038 (js-insert-and-indent): Remove.
20039 (js-mode): Setup electric-layout and electric-indent instead.
20040
20041 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
20042
20043 2011-08-12 Daiki Ueno <ueno@unixuser.org>
20044
20045 * epa.el (epa-progress-callback-function): Fix the logic of
20046 displaying progress.
20047 * epa-file.el (epa-file-insert-file-contents): Make progress
20048 display more user-friendly.
20049 (epa-file-write-region): Ditto.
20050
20051 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
20052
20053 * subr.el (string-mark-left-to-right): New function.
20054
20055 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
20056 Use string-mark-left-to-right.
20057 (list-buffers-noselect): Caller changed.
20058
20059 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20060 Use string-mark-left-to-right.
20061 (tabulated-list-print): Recenter after moving point.
20062
20063 2011-08-10 Juri Linkov <juri@jurta.org>
20064
20065 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
20066 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
20067 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
20068
20069 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
20070
20071 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
20072 (Bug#7554).
20073
20074 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
20075
20076 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
20077 character. (Bug#6594)
20078
20079 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
20080
20081 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
20082 (image-dired--with-db-file): New macro.
20083 (image-dired-write-tags, image-dired-remove-tag)
20084 (image-dired-create-gallery-lists, image-dired-write-comments)
20085 (image-dired-get-comment, image-dired-mark-tagged-files)
20086 (image-dired-list-tags, image-dired-gallery-generate): Use it.
20087 (image-dired-gallery-generate): Use insert-file-contents.
20088
20089 * time.el (display-time-world-list, display-time-world-display):
20090 * time-stamp.el (time-stamp-string):
20091 * vc/add-log.el (add-change-log-entry): Use setenv instead of
20092 set-time-zone-rule (Bug#7337).
20093
20094 2011-08-08 Daiki Ueno <ueno@unixuser.org>
20095
20096 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
20097 (epg-error-to-string, epg-errors-to-string): New function.
20098 (epg-wait-for-completion): Reverse errors list.
20099 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
20100 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
20101 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
20102 (epg-sign-keys, epg-generate-key-from-file)
20103 (epg-generate-key-from-string): Format errors by using
20104 epg-errors-to-string (bug#9255).
20105 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
20106
20107 2011-08-07 Juri Linkov <juri@jurta.org>
20108
20109 * faces.el (list-faces-display): Remove extra angle bracket
20110 from `help-mode-map'.
20111
20112 * info.el (Info-history-toc-nodes): Doc fix.
20113
20114 * longlines.el (longlines-mode): Doc fix.
20115
20116 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
20117
20118 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
20119 of statements and in a few more cases (bug#9183).
20120
20121 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
20122 New functions.
20123 (cl-transform-lambda): Use them (bug#9239).
20124
20125 2011-08-05 Martin Rudalics <rudalics@gmx.at>
20126
20127 * window.el (display-buffer-same-window)
20128 (display-buffer-same-frame, display-buffer-other-window)
20129 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
20130 (pop-to-buffer-other-window)
20131 (pop-to-buffer-same-frame-other-window)
20132 (pop-to-buffer-other-frame): Make them defuns.
20133 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
20134
20135 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
20136
20137 * subr.el (make-composed-keymap): Move from C. Change calling
20138 convention, and improve docstring to bring attention to a subtle point.
20139 * minibuffer.el (completing-read-default): Adjust accordingly.
20140
20141 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
20142
20143 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
20144 (tramp-open-shell): Use `tramp-shell-quote-argument'.
20145
20146 * net/trampver.el: Update release number.
20147
20148 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
20149
20150 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
20151 "in" (bug#9190).
20152
20153 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
20154
20155 * mail/sendmail.el (sendmail-query-once): Restore the current
20156 buffer after querying (bug#9074).
20157
20158 * dired.el (dired-flagged): Use different faces for marked and
20159 flagged files (bug#6117).
20160
20161 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
20162 (bug#4433).
20163
20164 * ido.el (ido-mode): Switch off the message if called
20165 non-interactively.
20166
20167 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
20168 before 587, since it appears that that's more likely to work for
20169 more people.
20170
20171 * cus-edit.el (custom-file): When running under emacs -q, always
20172 refuse to save the customizations, even if the .emacs file doesn't
20173 exist.
20174
20175 * info.el: Remove the `Info-beginning-of-buffer' function
20176 (bug#8325).
20177
20178 * net/network-stream.el (network-stream-open-starttls):
20179 Use `starttls-available-p' to see whether starttls.el can be used.
20180
20181 2011-08-01 Martin Rudalics <rudalics@gmx.at>
20182
20183 * window.el (display-buffer-in-window): Don't set dedicated status
20184 of window here (Bug#9215).
20185 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
20186 (display-buffer-pop-up-side-window)
20187 (display-buffer-in-side-window): Set dedicated status of window here.
20188
20189 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
20190
20191 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
20192 before binding generated-autoload-file.
20193
20194 2011-08-01 Deniz Dogan <deniz@dogan.se>
20195
20196 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
20197
20198 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
20199
20200 Sync with Tramp 2.2.2.
20201
20202 * net/trampver.el: Update release number.
20203
20204 2011-07-30 Juri Linkov <juri@jurta.org>
20205
20206 * dired-aux.el (dired-touch-initial): Remove function.
20207 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
20208 current time, and `default' to the last modification time of the
20209 current marked file (bug#6887).
20210
20211 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
20212
20213 * simple.el (goto-line): Use string-to-number to provide a
20214 numeric argument to read-number (bug#9163).
20215
20216 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
20217
20218 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
20219 connection process, it could be nil.
20220
20221 2011-07-27 Leo Liu <sdl.web@gmail.com>
20222
20223 Simplify url handling in rcirc-mode.
20224
20225 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
20226 (rcirc-browse-url-at-mouse): Remove.
20227 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
20228
20229 2011-07-26 Alan Mackenzie <acm@muc.de>
20230
20231 Fontify bitfield declarations properly.
20232
20233 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
20234 (c-symbol-chars): Now exported as a lang variable.
20235 (c-not-primitive-type-keywords): New lang variable.
20236
20237 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
20238 QT keyword "more" to prevent "more slots: ...." being spuriously
20239 parsed as a bitfield declaration.
20240
20241 * progmodes/cc-engine.el (c-beginning-of-statement-1):
20242 Refactor and enhance to handle bitfield declarations.
20243 (c-punctuation-in): New function.
20244 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
20245 declarations properly.
20246
20247 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
20248
20249 * calendar/icalendar.el (icalendar--all-events): Take care of
20250 multiple vcalendars in a single file.
20251 (icalendar--convert-float-to-ical): Checkdoc fixes.
20252
20253 2011-07-25 Deniz Dogan <deniz@dogan.se>
20254
20255 * image.el (insert-image): Clarifying docstring.
20256
20257 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
20258
20259 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
20260 `tramp-send-command-and-check' if there is no error.
20261 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
20262
20263 2011-07-22 Alan Mackenzie <acm@muc.de>
20264
20265 Prevent cc-langs.elc being loaded at run time.
20266
20267 * progmodes/cc-mode.el: Remove two autoload forms which loaded
20268 cc-langs.
20269
20270 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
20271 "(require 'cc-langs)". Quote a form so it will evaluate at
20272 (cc-mode's) compilation time.
20273
20274 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
20275
20276 * net/tramp.el (tramp-file-name-handler): Avoid recursive
20277 loading. (Bug#9114)
20278
20279 2011-07-21 Martin Rudalics <rudalics@gmx.at>
20280
20281 * window.el (display-buffer-pop-up-window)
20282 (display-buffer-pop-up-side-window)
20283 (display-buffer-in-side-window): Call display-buffer-set-height
20284 and display-buffer-set-width after setting the new window's
20285 buffer so `fit-window-to-buffer' and friends work on the right buffer.
20286
20287 2011-07-20 Sam Steingold <sds@gnu.org>
20288
20289 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
20290 (etags-tags-included-tables): Call `convert-standard-filename' on
20291 the file names contained in TAGS so that windows Emacs can handle
20292 TAGS files created by cygwin ctags.
20293
20294 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
20295
20296 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
20297 which apparently didn't work.
20298
20299 2011-07-19 Roland Winkler <winkler@gnu.org>
20300
20301 * proced.el (proced-send-signal): For *Marked Processes* buffer
20302 put point at beginning of buffer.
20303
20304 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
20305
20306 * proced.el (proced-format): Make header lines align with the text
20307 (bug#1779).
20308
20309 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20310
20311 * view.el (view-buffer): Allow running in `special' modes if we're
20312 visiting a file (bug#8615).
20313
20314 2011-07-19 Martin Rudalics <rudalics@gmx.at>
20315
20316 * window.el (display-buffer-alist-of-strings-p)
20317 (display-buffer-alist-set-1, display-buffer-alist-set-2):
20318 New functions.
20319 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
20320 more accurately.
20321
20322 2011-07-18 Alan Mackenzie <acm@muc.de>
20323
20324 Fontify declarators properly when, e.g., a jit-lock chunk begins
20325 inside a declaration.
20326
20327 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
20328
20329 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
20330 New function.
20331 (c-complex-decl-matchers): Insert reference to
20332 c-font-lock-enclosing-decls.
20333
20334 * progmodes/cc-engine.el (c-backward-single-comment):
20335 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
20336 to nil around calls to (forward-comment -1).
20337
20338 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20339
20340 * image.el (put-image): Doc typo fix.
20341
20342 * progmodes/etags.el (tags-search): Doc typo fix.
20343
20344 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
20345 password if we get errors 550 to 554.
20346
20347 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
20348
20349 * net/gnutls.el (gnutls-log-level): Remove.
20350
20351 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
20352 indentation character (bug#6380).
20353
20354 * files.el (buffer-offer-save): Made permanently local (bug#6241).
20355
20356 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
20357 to clarify what the problem is (bug#4291).
20358
20359 * simple.el (current-kill): Clarify what
20360 `interprogram-paste-function' does (bug#7500).
20361 (auto-fill-mode): Document `auto-fill-function' in relation to
20362 `auto-fill-mode' (bug#2470).
20363
20364 2011-07-16 Lawrence Mitchell <wence@gmx.li>
20365
20366 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
20367 method if slot is read-only (bug#9035).
20368
20369 2011-07-16 Martin Rudalics <rudalics@gmx.at>
20370
20371 * frame.el (select-frame-set-input-focus): New argument NORECORD.
20372 * window.el (pop-to-buffer): Select window used even if it was
20373 selected before, see discussion of (Bug#8615), (Bug#6954).
20374 Pass argument NORECORD on to select-frame-set-input-focus.
20375
20376 2011-07-15 Glenn Morris <rgm@gnu.org>
20377
20378 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
20379 Respect help-form.
20380
20381 2011-07-09 Lawrence Mitchell <wence@gmx.li>
20382
20383 * net/gnutls.el (gnutls-min-prime-bits): New variable.
20384 (gnutls-negotiate): Use it.
20385
20386 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20387
20388 * net/gnutls.el (gnutls-negotiate):
20389 Upcase `gnutls-algorithm-priority'.
20390
20391 2011-07-15 Glenn Morris <rgm@gnu.org>
20392
20393 * jka-compr.el (jka-compr-verbose): Move from here...
20394 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
20395 Add missing :version tag.
20396 * info.el: No need to require jka-compr when compiling.
20397
20398 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20399
20400 * net/gnutls.el (gnutls-algorithm-priority): New variable.
20401 (gnutls-negotiate): Use it.
20402
20403 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
20404
20405 * info.el (Info-beginning-of-buffer): New command.
20406 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
20407 announcing `b' as the key (bug#8325).
20408 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
20409
20410 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
20411
20412 * international/mule-cmds.el
20413 (describe-specified-language-support): Make the error message
20414 clearer (bug#8905).
20415
20416 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
20417
20418 * isearch.el (isearch-barrier): Add a doc string, since it's
20419 mentioned in a function doc string (bug#8678).
20420
20421 2011-07-15 Martin Rudalics <rudalics@gmx.at>
20422
20423 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
20424 buffer argument (Bug#9083) and self-identifying label argument.
20425
20426 2011-07-15 Glenn Morris <rgm@gnu.org>
20427
20428 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
20429
20430 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20431
20432 * man.el (Man-fontify-manpage): Fix message when formatting the
20433 man page (bug#7929).
20434
20435 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20436
20437 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
20438 argument LRM; if non-nil, append an invisible LRM character to the
20439 buffer name.
20440 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
20441 last argument non-nil, when formatting buffer names.
20442 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
20443 paragraph direction.
20444
20445 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20446
20447 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
20448 the man page name (bug#7929).
20449
20450 * image.el (put-image): Mention the `put-image' overlay property
20451 (bug#7834).
20452
20453 * scroll-bar.el (set-scroll-bar-mode): Mention that
20454 `scroll-bar-mode' lists the values (bug#7772).
20455
20456 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
20457 command (bug#7729).
20458
20459 * rect.el (apply-on-rectangle): Return the point after the last
20460 operation.
20461 (string-rectangle): Go to the point after the last operation
20462 (bug#7522).
20463
20464 * printing.el (pr-toggle-region): Clarify the documentation
20465 slightly (bug#7493).
20466
20467 * time.el (display-time-update):
20468 Allow `display-time-mail-function' to return nil (bug#7158).
20469 Fix suggested by Detlev Zundel.
20470
20471 * vc/diff.el (diff): Clarify the order the file names are read
20472 (bug#7111).
20473
20474 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
20475 the doc string (bug#7015).
20476
20477 * font-lock.el (font-lock-maximum-decoration): Mention what
20478 numeric levels mean (bug#6935).
20479
20480 * startup.el (initial-buffer-choice): Don't mention the `none'
20481 selection, which is against policy.
20482
20483 2011-07-14 Martin Rudalics <rudalics@gmx.at>
20484
20485 * window.el (display-buffer-normalize-special):
20486 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20487
20488 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20489
20490 * subr.el (version<, version<=, version=): Mention "-CVS" and
20491 "-12345" alpha version numbers.
20492
20493 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20494
20495 * bindings.el: Add advertised binding for set-mark-command
20496 (Bug#5772).
20497
20498 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20499
20500 * bindings.el (mode-line-other-buffer):
20501 * bookmark.el (bookmark-bmenu-2-window):
20502 * bs.el (bs-cycle-next, bs-cycle-previous):
20503 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20504 switch-to-buffer.
20505
20506 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20507 Delete.
20508
20509 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
20510
20511 * follow.el (follow-debug-message, follow-redisplay):
20512 * jka-cmpr-hook.el (with-auto-compression-mode):
20513 Fix typos in docstrings.
20514
20515 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20516
20517 * subr.el (with-silent-modifications): Clarify somewhat what the
20518 macro inhibits (bug#6525).
20519
20520 * simple.el (eval-expression): Note what it does if called
20521 interactively (bug#6495).
20522
20523 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20524
20525 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20526 Use pop-to-buffer buffer-or-name if it is nil.
20527
20528 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20529 Remove switch-to-buffer.
20530
20531 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20532
20533 * files.el (make-directory): Clarify that an error will be raised
20534 if there's an error (bug#6397).
20535
20536 * startup.el (initial-buffer-choice): Add `none' as a choice
20537 (bug#6234).
20538
20539 * subr.el (add-hook): Clarify section about buffer-local hooks
20540 (bug#6218).
20541
20542 * dired.el (dired-flagged): Clarify doc string (bug#6117).
20543
20544 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20545
20546 * tabify.el (untabify): Preserve the current column so that point
20547 doesn't move (bug#6032).
20548
20549 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20550
20551 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20552 Rewrite to avoid awkward possessive "s" (bug#5986).
20553
20554 2011-07-13 Glenn Morris <rgm@gnu.org>
20555
20556 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
20557 (dired-insert-directory): Give a message the first time
20558 if ls is found not to support --dired.
20559
20560 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20561
20562 * simple.el (toggle-truncate-lines): Clarify what is toggled
20563 (bug#5580). Text by Drew Adams.
20564
20565 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20566
20567 * simple.el (blink-matching-open): Make the error message from the
20568 last change less verbose.
20569
20570 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
20571
20572 * font-lock.el (font-lock-comment-face): Use the high contrast
20573 "yellow" color for font-lock-comment-face on low color terminals
20574 using a dark background color (bug#4221).
20575
20576 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20577
20578 * dired.el (dired-insert-set-properties): Make the doc string
20579 reflect what it does now (bug#5325).
20580
20581 * simple.el (blink-matching-open): Say that we were unable to find
20582 the match within the limit, if we're limited (bug#5122).
20583
20584 * international/mule-cmds.el (prefer-coding-system): Add an
20585 example (bug#4869).
20586
20587 * progmodes/etags.el (tags-search): Document `file-list-form'
20588 (bug#4731).
20589
20590 2011-07-13 Lawrence Mitchell <wence@gmx.li>
20591
20592 * net/browse-url.el (browse-url-default-browser)
20593 (browse-url-browser-function): Make the default browser choice a
20594 bit more logical (bug#4300). Also clean up the doc string.
20595
20596 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20597
20598 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20599 binary endings (bug#4440).
20600
20601 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20602
20603 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20604 which can be pretty annoying (bug#8971).
20605
20606 * jka-compr.el (jka-compr-verbose): New variable, and use
20607 throughout (bug#8971).
20608
20609 * info.el (Info-find-file): Fall back on the installation
20610 directory if we can't find the info node anywhere else.
20611
20612 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
20613
20614 * vc/vc.el (vc-revert-file):
20615 Don't set file time-stamp in the past. (Bug#5181)
20616
20617 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20618
20619 * files.el (after-find-file): Give a better error message when
20620 trying to find a symlink that points to a file that doesn't exist
20621 (bug#4398).
20622
20623 * progmodes/cc-vars.el: Remove (probably) misleading comment
20624 (bug#4396).
20625
20626 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20627
20628 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20629
20630 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20631
20632 * mouse-sel.el: Hack restoring functionality, while keeping
20633 compatibility with 2010-07-03 changes to mouse selection.
20634 (mouse-sel-primary-overlay): New var.
20635 (mouse-sel-selection-alist): Use it.
20636 (mouse-sel-mode): Doc fix; remove points that are default features
20637 of mouse.el.
20638
20639 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20640
20641 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20642 Fix previous fix (bug#2490).
20643
20644 2011-07-12 Roland Winkler <winkler@gnu.org>
20645
20646 * textmodes/bibtex.el (bibtex-initialize):
20647 Use pop-to-buffer-same-window.
20648 (bibtex-search-entries): Fix interactive call.
20649
20650 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20651
20652 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20653 Fontise bytecomp Error lines more correctly (bug#2490).
20654 Fix suggested by Johan Bockgård.
20655
20656 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20657
20658 * dired-x.el (dired-guess-default): Use `delete-dups'.
20659
20660 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20661
20662 * dired.el (dired-mark-prompt):
20663 * dired-aux.el (dired-read-shell-command): Doc fix.
20664
20665 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20666
20667 * mail/sendmail.el (sendmail-query-once):
20668 Use `customize-save-variable' unconditionally, now that it works under
20669 emacs -Q.
20670
20671 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20672
20673 * cus-edit.el (custom-file): Take an optional no-error variable.
20674 (customize-save-variable): Set the variable, and give a warning if
20675 running under "emacs -q".
20676
20677 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
20678
20679 * loadhist.el (unload-feature-special-hooks):
20680 Add `auto-coding-functions', `fill-nobreak-predicate' and
20681 `find-directory-functions' (bug#5327).
20682
20683 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20684
20685 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20686
20687 * cus-edit.el (custom-guess-name-alist): -alist variables should
20688 use the `alist' type (bug#3120). Suggested by Drew Adams.
20689
20690 * printing.el: Add documentation to all the `pr-toggle-' commands.
20691
20692 2011-07-11 Leo Liu <sdl.web@gmail.com>
20693
20694 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20695 backends where it makes sense (bug#2623).
20696
20697 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20698
20699 * dired-x.el (dired-guess-default): Remove duplicate shell command
20700 entries (bug#2028).
20701 (dired-guess-default): Fix grammar in doc string (bug#2028).
20702 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20703
20704 * subr.el (remove-duplicates): New conveniency function.
20705
20706 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
20707
20708 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20709 (bug#1526).
20710
20711 2011-07-10 Martin Rudalics <rudalics@gmx.at>
20712
20713 * window.el (display-buffer-normalize-default): Don't invert
20714 meaning of even-window-heights. Reported by Eli Zaretskii
20715 <eliz@gnu.org>.
20716
20717 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
20718
20719 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20720
20721 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
20722
20723 * window.el (display-buffer): Fix arguments to
20724 display-buffer-reuse-window in last change.
20725
20726 * faces.el (link): Use a less saturated blue on light backgrounds.
20727
20728 * startup.el (fancy-startup-text, fancy-about-text)
20729 (fancy-startup-tail): Use font-lock faces, for background safety.
20730
20731 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
20732
20733 * emulation/viper-cmd.el (viper-change-state-to-vi):
20734 Limit triggering of abbrev expansion (Bug#9038).
20735
20736 2011-07-09 Martin Rudalics <rudalics@gmx.at>
20737
20738 * window.el (display-buffer-default-specifiers): Remove.
20739 (display-buffer-macro-specifiers): Remove default specifiers.
20740 (display-buffer-alist): Default to nil.
20741 (display-buffer-reuse-window): New optional argument other-window.
20742 (display-buffer-pop-up-window): Allow splitting internal
20743 windows. Check whether a live window was created.
20744 (display-buffer-other-window-means-other-frame)
20745 (display-buffer-normalize-arguments): Rename to
20746 display-buffer-normalize-argument and rewrite. Set the
20747 other-window specifier.
20748 (display-buffer-normalize-special): New function.
20749 (display-buffer-normalize-options): Rename to
20750 display-buffer-normalize-default and rewrite.
20751 (display-buffer-normalize-options-inhibit): Remove.
20752 (display-buffer-normalize-specifiers): Rewrite.
20753 (display-buffer): Process other-window specifier and call
20754 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
20755 more faithfully.
20756 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20757 (display-buffer-alist-set): Don't handle 'unset default values.
20758 (display-buffer-in-window, display-buffer-alist-set):
20759 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
20760 <tassilo@member.fsf.org>.
20761
20762 2011-07-09 Leo Liu <sdl.web@gmail.com>
20763
20764 * register.el (insert-register): Restore accidental change on
20765 2011-06-26. (Bug#9028)
20766
20767 2011-07-09 Glenn Morris <rgm@gnu.org>
20768
20769 * subr.el (remq): Handle the empty list. (Bug#9024)
20770
20771 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
20772
20773 * mail/sendmail.el (send-mail-function): No longer delay custom
20774 initialization.
20775 * custom.el (custom-initialize-delay): Doc fix.
20776
20777 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20778
20779 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20780
20781 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
20782
20783 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20784 human-friendly prompt.
20785
20786 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20787
20788 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20789 provided by a particular plugin.
20790
20791 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
20792
20793 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20794 save customizations (with "emacs -Q"), just set the variable
20795 instead of erroring out.
20796
20797 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20798
20799 2011-07-08 Juri Linkov <juri@jurta.org>
20800
20801 * arc-mode.el (archive-zip-expunge, archive-zip-update)
20802 (archive-zip-update-case): Use 7z if found by `executable-find'.
20803 The order of searching the available programs is the same as in
20804 `archive-zip-extract' (bug#8968).
20805
20806 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20807
20808 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20809 (menu-bar-options-menu): Tweak descriptions.
20810
20811 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20812
20813 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20814 menu items into verb phrases (bug#1421). Also refill to fit under
20815 80 columns.
20816
20817 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20818
20819 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20820 (Info-read-node-name): Doc fix (Bug#1084).
20821
20822 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20823 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20824 (end-of-sexp, beginning-of-sexp)
20825 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20826 (forward-symbol, forward-same-syntax, word-at-point)
20827 (sentence-at-point): Doc fix (Bug#1144).
20828
20829 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20830
20831 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20832 should cover it (bug#1281).
20833
20834 * cus-edit.el (custom-show): Mark as obsolete.
20835
20836 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20837 negotiation fails, then possibly try again with a non-encrypted
20838 connection (bug#9017).
20839
20840 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20841 be used.
20842
20843 2011-07-07 Richard Stallman <rms@gnu.org>
20844
20845 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20846 property, and handle its changed format.
20847 Look for the correct line number.
20848 Use file's line contents (but not past first =) to find
20849 correct line in message.
20850
20851 2011-07-07 Kenichi Handa <handa@m17n.org>
20852
20853 * international/characters.el (build-unicode-category-table):
20854 Delete it.
20855 (unicode-category-table): Set it by unicode-property-table-internal.
20856
20857 * international/mule-cmds.el (char-code-property-alist): Move to
20858 to src/chartab.c.
20859 (get-char-code-property): Call unicode-property-table-internal to
20860 load a file. Call get-unicode-property-internal where necessary.
20861 (put-char-code-property): Call unicode-property-table-internal to
20862 load a file. Call put-unicode-property-internal where necessary.
20863 put-unicode-property-internal where necessary.
20864 (char-code-property-description):
20865 Call unicode-property-table-internal to load a file.
20866
20867 * international/charprop.el:
20868 * international/uni-bidi.el:
20869 * international/uni-category.el:
20870 * international/uni-combining.el:
20871 * international/uni-comment.el:
20872 * international/uni-decimal.el:
20873 * international/uni-decomposition.el:
20874 * international/uni-digit.el:
20875 * international/uni-lowercase.el:
20876 * international/uni-mirrored.el:
20877 * international/uni-name.el:
20878 * international/uni-numeric.el:
20879 * international/uni-old-name.el:
20880 * international/uni-titlecase.el:
20881 * international/uni-uppercase.el: Regenerate.
20882
20883 * loadup.el: Load international/charprop.el before
20884 international/characters.
20885
20886 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20887
20888 * window.el (next-buffer, previous-buffer): Signal an error if
20889 called from a minibuffer window.
20890
20891 * bindings.el: Revert 2011-07-04 change.
20892
20893 2011-07-06 Richard Stallman <rms@gnu.org>
20894
20895 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20896 (rmail-mime-insert-bulk, rmail-mime-insert-text):
20897 Treat markers like ints.
20898 (rmail-mime-entity): Doc fix.
20899
20900 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20901
20902 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20903 defcustom again for backwards compatibility.
20904
20905 * simple.el (shell-command-on-region): Fill.
20906
20907 * dired-aux.el (dired-kill-line): Add a doc string.
20908
20909 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20910 to "\\sw\\|\\s_" (bug#358).
20911
20912 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20913 (dired-unmark-backward): Ditto.
20914 (dired-flag-backup-files): Ditto.
20915
20916 * dired-x.el (dired-mark-sexp): Ditto.
20917
20918 2011-07-06 Richard Stallman <rms@gnu.org>
20919
20920 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20921 (rmail-mime-entity): New arg TRUNCATED.
20922 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20923 New functions.
20924 (rmail-mime-save): Warn if entity is truncated.
20925 (rmail-mime-toggle-hidden): Likewise, for showing.
20926 (rmail-mime-process-multipart): Record when an entity is truncated.
20927
20928 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20929 if ENTITY is a string.
20930
20931 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20932
20933 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20934 of faces when `M-C-x'-ing their definitions (bug#8378).
20935 Also clean up the code slightly.
20936
20937 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20938 because that makes the colors go away.
20939
20940 * mail/sendmail.el (send-mail-function): Change the default to
20941 `sendmail-query-once'.
20942 (sendmail-query-once): Add an autoload cookie.
20943
20944 * net/network-stream.el (network-stream-open-starttls): Try using
20945 a plain connection even if the server offered STARTTLS, and we
20946 kinda wanted to use it, if Emacs doesn't have any STARTTLS
20947 capability. This should make smtpmail.el work in slightly more
20948 configurations.
20949
20950 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
20951
20952 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20953 New defun.
20954 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20955
20956 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
20957
20958 * progmodes/sql.el: Version 3.0
20959 (sql-product-alist): Add product :completion-object,
20960 :completion-column, and :statement attributes.
20961 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20962 (sql-mode-syntax-table): Mark all punctuation.
20963 (sql-font-lock-keywords-builder): Temporarily remove fallback on
20964 ansi keywords.
20965 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20966 (sql-mode-oracle-font-lock-keywords): Improve.
20967 (sql-oracle-show-reserved-words): New function for development.
20968 (sql-product-font-lock): Simplify for source code buffers.
20969 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20970 New functions.
20971 (sql-highlight-product): Set product specific syntax table.
20972 (sql-mode-map): Add statement movement functions.
20973 (sql-ansi-statement-starters, sql-oracle-statement-starters):
20974 New variable.
20975 (sql-statement-regexp, sql-beginning-of-statement)
20976 (sql-end-of-statement, sql-signum): New functions.
20977 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20978 (sql-show-sqli-buffer): Bug fix.
20979 (sql-interactive-mode): Store connection data as buffer local.
20980 (sql-connect): Add NEW-NAME parameter. Redesign interaction
20981 with sql-interactive-mode.
20982 (sql-save-connection): Save buffer local settings.
20983 (sql-connection-menu-filter): Change menu entry name.
20984 (sql-product-interactive): Bug fix.
20985 (sql-preoutput-hold): New variable.
20986 (sql-interactive-remove-continuation-prompt): Bug fixes.
20987 (sql-debug-redirect): New variable.
20988 (sql-str-literal): New function.
20989 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20990 Redesign.
20991 (sql-oracle-save-settings, sql-oracle-restore-settings)
20992 (sql-oracle-list-all, sql-oracle-list-table): New functions.
20993 (sql-completion-object, sql-completion-column)
20994 (sql-completion-sqlbuf): New variables.
20995 (sql-build-completions-1, sql-build-completions)
20996 (sql-try-completion): New functions.
20997 (sql-read-table-name): Use them.
20998 (sql-contains-names): New buffer local variable.
20999 (sql-list-all, sql-list-table): Use it.
21000 (sql-oracle-completion-types): New variable.
21001 (sql-oracle-completion-object, sql-sqlite-completion-object)
21002 (sql-postgres-completion-object): New functions.
21003
21004 2011-07-06 Glenn Morris <rgm@gnu.org>
21005
21006 * window.el (pop-to-buffer): Doc fix.
21007
21008 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
21009
21010 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
21011
21012 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
21013
21014 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
21015
21016 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
21017
21018 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
21019
21020 * button.el (button): Inherit from link face. Suggested by Dan
21021 Nicolaescu.
21022
21023 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
21024
21025 * progmodes/gdb-mi.el: Fit in 80 columns.
21026 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
21027 switch-to-buffer.
21028
21029 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
21030 if imenu is simply not configured (bug#8941).
21031
21032 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
21033
21034 * allout.el (allout-post-undo-hook): New allout outline-change
21035 event hook to signal undo activity.
21036 (allout-post-command-business): Run allout-post-undo-hook if an
21037 undo just occurred.
21038 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
21039 * allout-widgets.el (allout-widgets-after-undo-function):
21040 Ensure the integrity of the current item's decoration after it has been
21041 in the vicinity of an undo.
21042 (allout-widgets-mode): Include allout-widgets-after-undo-function
21043 on the new allout-post-undo-hook.
21044
21045 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
21046
21047 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
21048 Let define-derived-mode define it.
21049 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
21050 cycles of abbrev-table inheritance (bug#8998).
21051
21052 2011-07-05 Roland Winkler <winkler@gnu.org>
21053
21054 * textmodes/bibtex.el: Add support for biblatex.
21055 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
21056 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
21057 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
21058 (bibtex-entry-alist, bibtex-field-alist): New variables.
21059 (bibtex-entry-field-alist): Obsolete alias for
21060 bibtex-BibTeX-entry-alist.
21061 (bibtex-entry-alist, bibtex-field-alist): New widgets.
21062 (bibtex-set-dialect): New command.
21063 (bibtex-entry-type, bibtex-entry-head)
21064 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
21065 Bind via bibtex-set-dialect.
21066 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
21067 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
21068 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
21069 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
21070 Define via bibtex-set-dialect.
21071 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
21072 Obey bibtex-no-opt-remove-re.
21073 (bibtex-vec-push, bibtex-vec-incr): New functions.
21074 (bibtex-format-entry, bibtex-field-list)
21075 (bibtex-print-help-message, bibtex-validate)
21076 (bibtex-search-entries): Use new format of bibtex-entry-alist.
21077
21078 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
21079
21080 * progmodes/compile.el (compilation-goto-locus):
21081 * net/tramp-cmds.el (tramp-append-tramp-buffers):
21082 * bs.el (bs-cycle-next, bs-cycle-previous):
21083 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
21084 * bindings.el (mode-line-other-buffer):
21085 * autoinsert.el (auto-insert):
21086 * arc-mode.el (archive-extract):
21087 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
21088
21089 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
21090
21091 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
21092 Fix check of `emacs-lock-unlockable-modes'.
21093 Coerce true values of `emacs-lock--try-unlocking' to t.
21094
21095 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
21096
21097 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
21098 * emacs-lock.el: New file.
21099
21100 2011-07-05 Julien Danjou <julien@danjou.info>
21101
21102 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
21103 than `boundp' to check if face is set.
21104
21105 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
21106
21107 * register.el (registerv-make):
21108 * window.el (window-min-height): Fix typos in docstrings.
21109
21110 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
21111
21112 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
21113 Update doc string.
21114
21115 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
21116
21117 * server.el (server-execute): Catch quit and call
21118 `server-return-error' to pass the error back to emacsclient and
21119 close the connection (bug#8942).
21120
21121 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
21122
21123 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
21124 insecure exception for current topic. Also note that auto-saves
21125 are handled differently.
21126
21127 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
21128 State variables for tracking auto-save inhibition situation.
21129
21130 (allout-write-contents-hook-handler): Rename from
21131 'allout-write-file-hook-handler', and describe how it depends on
21132 write-contents-functions sensitivity to non-nil value to prevent
21133 file write.
21134
21135 (allout-auto-save-hook-handler): Remove. auto-save does not check
21136 this in individual buffers, only in the starting buffer, so this
21137 is not the right way for us to inhibit auto-save in a buffer
21138 according to its condition.
21139
21140 (allout-mode): Use new allout-write-contents-hook-handler, and
21141 only with write-contents-functions. Remove auto-save provisions -
21142 they're implemented elsewhere.
21143
21144 (allout-before-change-handler): If undo is in progress, note that
21145 for attention of allout-post-command-business.
21146
21147 (allout-post-command-business): If the command we're following was
21148 an undo, check for change in the status of encrypted items and
21149 adjust auto-save inhibitions accordingly.
21150
21151 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
21152 according to whether there are or aren't any plain-text topics
21153 pending encryption.
21154
21155 (allout-inhibit-auto-save-info-for-decryption):
21156 Adjust buffer-saved-size and some allout state to inhibit auto-saves
21157 if there are plain-text topics pending encryption.
21158
21159 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
21160 buffer-saved-size and some allout state to not inhibit auto-saves
21161 if there are no longer any plain-text topics pending encryption.
21162
21163 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
21164 No longer provide for exemption of the current topic.
21165
21166 2011-07-04 Juri Linkov <juri@jurta.org>
21167
21168 Add 7z operations to delete and save changed members (bug#8968).
21169 * arc-mode.el (archive-7z-expunge, archive-7z-update):
21170 New defcustoms.
21171 (archive-7z-write-file-member): New function.
21172 (archive-7z-summarize): Fix the number of dashes in the
21173 listing output.
21174
21175 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
21176
21177 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
21178 (bug#8958).
21179
21180 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
21181
21182 * bindings.el: Ignore next-buffer and previous-buffer in
21183 minibuffer-local-map.
21184
21185 * font-lock.el (font-lock-builtin-face): Change light background
21186 color to dark slate blue (Bug#6693).
21187
21188 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
21189
21190 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
21191
21192 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
21193
21194 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
21195 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21196 Add switch-to-buffer.
21197
21198 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
21199
21200 * isearch.el (isearch-search-fun-function): Clarify further the
21201 meaning of the function returned.
21202
21203 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
21204
21205 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
21206
21207 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
21208 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
21209 Use it.
21210 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
21211 `tramp-default-remote-path' does not exist.
21212 (tramp-send-command-and-read): New optional argument NOERROR.
21213 (tramp-open-connection-setup-interactive-shell)
21214 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
21215 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
21216 (tramp-process-sentinel): Flush also process' connection property.
21217 (tramp-sh-handle-start-file-process): Do not set process
21218 sentinel. It is done now ...
21219 (tramp-maybe-open-connection): ... here. (Bug#8929)
21220
21221 2011-07-04 MON KEY <monkey@sandpframing.com>
21222
21223 * play/animate.el (animate-string): Doc fixes and allow changing
21224 the buffer name (bug#5417).
21225
21226 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
21227
21228 * play/animate.el (animation-buffer-name): Rename from *animate*.
21229
21230 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
21231
21232 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
21233 This is simpler and helps future-proof the code.
21234 (timer-until): Use time-subtract and float-time.
21235 (timer--time-less-p): Use time-less-p.
21236
21237 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
21238
21239 * type-break.el (timep): Use the value of `float-time' to avoid a
21240 byte-compiler warning.
21241
21242 * server.el (server-eval-and-print): Return any result, even nil.
21243
21244 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
21245
21246 * type-break.el: Accept time formats that the builtins accept.
21247 (timep, type-break-time-difference): Accept any format that
21248 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
21249 This is simpler and helps future-proof the code.
21250 (type-break-time-difference): Round rather than ignoring
21251 subseconds components.
21252
21253 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21254
21255 * info.el (Info-apropos-matches): Make non-interactive, since it
21256 doesn't seem to do anything useful as a command (bug#8829).
21257
21258 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
21259
21260 * frame.el (frame-background-mode, frame-set-background-mode):
21261 Move from faces.el.
21262 (frame-default-terminal-background): New function.
21263
21264 * custom.el (custom-push-theme): Don't record faces in `changed'
21265 theme; this doesn't work correctly for per-frame face settings.
21266 (disable-theme): Use face-set-after-frame-default to reset faces.
21267 (custom--frame-color-default): New function.
21268
21269 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21270
21271 * dired.el (dired-flagging-regexp): Remove unused variable
21272 (bug#8769).
21273
21274 2011-03-29 Kevin Ryde <user42@zip.com.au>
21275
21276 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21277 `perl-Test2' extend to match possible "fail #N" rep count
21278 (bug#8377).
21279
21280 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21281
21282 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
21283 `smtpmail-via-smtp' now returns the error instead of nil.
21284
21285 * isearch.el (isearch-search-fun-function): Clarify the doc string
21286 (bug#8101).
21287
21288 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
21289
21290 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
21291 unnecessary spaces (bug#8987).
21292
21293 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21294
21295 * net/network-stream.el (open-network-stream): Use the
21296 :end-of-capability command thoughout.
21297
21298 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
21299
21300 * net/network-stream.el (open-network-stream): Add the
21301 :end-of-capability command parameter, used by pop3.el.
21302
21303 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
21304
21305 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
21306
21307 * fringe.el (fringe-query-style): Remove redundant text " (type ?
21308 for list)" (bug#6475).
21309
21310 * files.el (file-expand-wildcards): Ignore non-readable
21311 sub-directories while trying to find matches instead of signaling
21312 an error (bug#6297).
21313
21314 * man.el (Man-reference-regexp): Allow matching possible
21315 word-wrapped references (bug#6289).
21316
21317 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
21318 for consistency with the other vc buffers (bug#6197).
21319 (vc-checkin): Ditto.
21320
21321 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
21322
21323 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
21324
21325 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21326
21327 * custom.el (defcustom): Clarify that :set is only used in the
21328 Customize user interface (bug#6089).
21329
21330 * progmodes/flymake.el (flymake-mode): If the buffer isn't
21331 associated with a file, refuse to run instead of erroring out
21332 (bug#6084).
21333
21334 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
21335 the doc string, since it appears that using `fill-column' always
21336 controls the width (bug#7845).
21337
21338 * simple.el (shell-command-on-region): Say where the error output
21339 went if `shell-command-default-error-buffer' is set (bug#6857).
21340
21341 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
21342
21343 * allout.el (allout-yank-processing): Adjust cursor position for
21344 backwards-deleted space.
21345
21346 (allout-rebullet-heading): Register changes with
21347 allout-exposure-changed-hook, so the modified topic is properly
21348 decorated.
21349
21350 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21351
21352 * minibuffer.el (completion-in-region): Document PREDICATE
21353 (bug#7136).
21354
21355 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
21356 of keyword/argument pairs (bug#6904).
21357
21358 * replace.el (multi-occur):
21359 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
21360
21361 2011-07-02 Drew Adams <drew.adams@oracle.com>
21362
21363 * dired.el (dired-mark-if): Make the message about whether it's
21364 marking or unmarking clearer (bug#8523).
21365
21366 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21367
21368 * disp-table.el (display-table-print-array): New function.
21369 (describe-display-table): Use it to print the vectors more pretty
21370 (Bug#8859).
21371
21372 2011-07-02 Martin Rudalics <rudalics@gmx.at>
21373
21374 * window.el (window-state-get-1): Don't assign clone numbers.
21375 Add clone-of item to list of window parameters.
21376 (window-state-put-2): Don't process clone numbers.
21377 (display-buffer-alist): Fix doc-string.
21378
21379 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
21380
21381 * subr.el (remq): Don't allocate if it's not needed.
21382 (keymap--menu-item-binding, keymap--menu-item-with-binding)
21383 (keymap--merge-bindings): New functions.
21384 (keymap-canonicalize): Use them to refine the canonicalization.
21385 * minibuffer.el (minibuffer-local-completion-map)
21386 (minibuffer-local-must-match-map): Move initialization from C.
21387 (minibuffer-local-filename-completion-map): Move initialization from C;
21388 don't inherit from anything here.
21389 (minibuffer-local-filename-must-match-map): Make obsolete.
21390 (completing-read-default): Use make-composed-keymap to combine
21391 minibuffer-local-filename-completion-map with either
21392 minibuffer-local-must-match-map or
21393 minibuffer-local-filename-completion-map.
21394
21395 2011-07-01 Glenn Morris <rgm@gnu.org>
21396
21397 * type-break.el (type-break-time-sum): Use dolist.
21398
21399 * textmodes/flyspell.el (flyspell-word-search-backward):
21400 Replace CL function.
21401
21402 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21403
21404 * mouse.el (mouse--strip-first-event): New function.
21405 (function-key-map): Use it to map fringe clicks to normal clicks
21406 by default.
21407
21408 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
21409 (vc-bzr-revision-completion-table): Add support for annotate and date.
21410
21411 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
21412 inherit from parent.
21413
21414 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
21415
21416 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
21417 (dired-show-file-type): Doc fixup (bug#8818).
21418
21419 * dired.el (dired-mode): Fix up the doc string as suggested by
21420 Drew Adams (bug#8817).
21421
21422 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
21423 cookie, since the manual says that it should be possible to add
21424 this function to `find-file-hook' (bug#8709).
21425
21426 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21427
21428 * progmodes/cfengine.el: Moved all cfengine3.el functionality
21429 here. Noted Ted Zlatanov as the maintainer.
21430 (cfengine-common-settings, cfengine-common-syntax): New functions
21431 to set up common things between `cfengine-mode' and
21432 `cfengine3-mode'.
21433 (cfengine3-mode): New mode.
21434 (cfengine3-defuns cfengine3-defuns-regex
21435 (cfengine3-class-selector-regex cfengine3-category-regex)
21436 (cfengine3-vartypes cfengine3-font-lock-keywords)
21437 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
21438 (cfengine3-indent-line): Add from cfengine3.el.
21439
21440 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
21441
21442 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
21443
21444 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
21445
21446 2011-07-01 Martin Rudalics <rudalics@gmx.at>
21447
21448 * window.el (same-window-buffer-names, same-window-regexps)
21449 (same-window-p, special-display-frame-alist)
21450 (special-display-popup-frame, special-display-function)
21451 (special-display-buffer-names, special-display-regexps)
21452 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
21453 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21454 (split-window-preferred-function, split-height-threshold)
21455 (split-width-threshold, even-window-heights)
21456 (display-buffer-mark-dedicated, window-splittable-p)
21457 (split-window-sensibly, window-safely-shrinkable-p):
21458 Un-obsolete.
21459 (display-buffer): Don't spread args with function specifier
21460 because special-display-popup-frame won't like it.
21461
21462 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
21463
21464 Time-stamp simplifications and fixes.
21465 These improve accuracy slightly, and future-proof the code
21466 against some potential changes to current-time format.
21467
21468 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
21469 by using time-since and float-time.
21470
21471 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
21472 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
21473 + NNN microseconds".
21474
21475 * type-break.el (type-break-time-sum): Rewrite using time-add.
21476
21477 * play/hanoi.el (hanoi-current-time-float): Remove.
21478 All uses replaced by float-time.
21479
21480 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21481 This yields a more-accurate answer.
21482 (rng-time-to-float): Remove; no longer needed.
21483
21484 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21485
21486 * calendar/timeclock.el (timeclock-seconds-to-time):
21487 Defalias to seconds-to-time, since they're the same thing.
21488
21489 * emacs-lisp/elp.el (elp-elapsed-time):
21490 * emacs-lisp/benchmark.el (benchmark-elapse):
21491 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21492
21493 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21494
21495 * window.el (bury-buffer): Don't iconify the only frame.
21496 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21497 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
21498
21499 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
21500
21501 * eshell/em-smart.el (eshell-smart-display-navigate-list):
21502 Add mouse-yank-primary.
21503
21504 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21505
21506 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21507
21508 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21509
21510 * emacs-lisp/find-func.el (find-library--load-name): New fun.
21511 (find-library-name): Use it to find relative load names when provided
21512 absolute file name (bug#8803).
21513
21514 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21515
21516 * textmodes/flyspell.el (flyspell-word): Consider words that
21517 differ only in case as potential doublons (bug#5687).
21518
21519 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21520 Remove two rather uninteresting debugging-like messages to make
21521 debbugs.el more silent.
21522
21523 * comint.el (comint-password-prompt-regexp): Accept "Response" as
21524 a password-like phrase.
21525
21526 2011-06-30 Masatake YAMATO <yamato@redhat.com>
21527
21528 * progmodes/cc-guess.el: New file.
21529
21530 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21531
21532 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21533 derived from `c-basic-common-init'.
21534
21535 * progmodes/cc-mode.el (top-level): Require cc-guess.
21536 (c-basic-common-init): Use `cc-choose-style-for-mode'.
21537
21538 2011-06-30 Lawrence Mitchell <wence@gmx.li>
21539
21540 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21541
21542 2011-06-30 Alan Mackenzie <acm@muc.de>
21543
21544 * progmodes/cc-engine.el (c-guess-continued-construct):
21545 Correct the handling of template-args-cont, particularly for when font
21546 lock is disabled. Name this case as "CASE G".
21547
21548 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
21549
21550 * allout.el (allout-yank-processing): Fix injection of extra space
21551 between bullet and non-whitespace character in first topic when
21552 pasting, ensuring that the actual spacing in the pasted topic
21553 following the bullet char is preserved. This extra space was
21554 causing pasted encrypted topics to get a decrypted status even
21555 when the content was actually still encrypted. Now the decryption
21556 status from before the paste is preserved.
21557
21558 (allout-flag-region): Set all allout overlays so they evaporate
21559 when reduced to zero length (evanescent), to prevent overlay
21560 leakage.
21561
21562 2011-06-30 Glenn Morris <rgm@gnu.org>
21563
21564 * w32-fns.el (w32-charset-info-alist): Declare.
21565
21566 * find-dired.el (find-grep-options): Simplify.
21567
21568 * term/ns-win.el (ns-set-resource): Declare.
21569
21570 * ses.el (row, col): Declare dynamic variables honestly.
21571
21572 * textmodes/reftex-parse.el (index-tags): Declare.
21573
21574 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
21575
21576 * cus-edit.el (customize-push-and-save): New function.
21577
21578 * files.el (hack-local-variables-confirm): Use it.
21579
21580 * custom.el (load-theme): New arg NO-CONFIRM.
21581 Use customize-push-and-save (Bug#8720).
21582 (custom-enabled-themes): Doc fix.
21583
21584 * cus-theme.el (customize-create-theme)
21585 (custom-theme-merge-theme): Callers to load-theme changed.
21586
21587 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21588
21589 * thingatpt.el (thing-at-point-short-url-regexp): Require that
21590 short URLs have at least one dot in them (bug #7614).
21591
21592 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21593 nil, because using a pty is apparently too slow (bug #895).
21594
21595 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
21596
21597 * mail/sendmail.el (sendmail-query-once): New function.
21598 (sendmail-query-once-function): New variable.
21599
21600 2011-06-29 Glenn Morris <rgm@gnu.org>
21601
21602 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21603
21604 * ses.el (top-level): Require cl when compiling.
21605 (ses-set-localvars): Fix error statement.
21606 Call it at compile time to silence a storm of warnings.
21607
21608 2011-06-29 Martin Rudalics <rudalics@gmx.at>
21609
21610 * window.el (normalize-live-buffer): Rename to
21611 window-normalize-buffer.
21612 (normalize-live-frame): Rename to window-normalize-frame.
21613 (normalize-any-window): Rename to window-normalize-any-window.
21614 (normalize-live-window): Rename to window-normalize-live-window.
21615 (make-window-atom): Rename to window-make-atom.
21616 (window-resize-reset): Rename to window--resize-reset.
21617 (window-resize-reset-1): Rename to window--resize-reset-1.
21618 (resize-mini-window): Rename to window--resize-mini-window.
21619 (resize-subwindows-skip-p): Rename to
21620 window--resize-subwindows-skip-p.
21621 (resize-subwindows-normal): Rename to
21622 window--resize-subwindows-normal.
21623 (resize-subwindows): Rename to window--resize-subwindows.
21624 (resize-other-windows): Rename to window--resize-siblings.
21625 (resize-this-window): Rename to window--resize-this-window.
21626 (resize-root-window): Rename to window--resize-root-window.
21627 (resize-root-window-vertically): Rename to
21628 window--resize-root-window-vertically.
21629 (normalize-buffer-to-display): Rename to
21630 window-normalize-buffer-to-display.
21631 (normalize-buffer-to-switch-to): Rename to
21632 window-normalize-buffer-to-switch-to.
21633 Correspondingly update all callers of the functions listed
21634 above.
21635 (display-buffer-alist, display-buffer-normalize-arguments)
21636 (display-buffer-normalize-options, display-buffer)
21637 (display-buffer-alist-set): Use "function" instead of
21638 "fun-with-args".
21639
21640 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
21641
21642 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21643 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
21644 debbugs.gnu.org. Mention acknowledgment email.
21645
21646 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
21647
21648 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21649 buffer multibyteness, since it shouldn't matter.
21650
21651 2011-06-28 Martin Rudalics <rudalics@gmx.at>
21652
21653 * window.el (display-buffer-in-side-window): Handle dedicated
21654 windows as in display-buffer-reuse-window.
21655 (display-buffer-normalize-alist): Use value of override
21656 specifier.
21657 (display-buffer-normalize-specifiers): Use value of
21658 other-window-means-other-frame specifier.
21659 (display-buffer-alist): Rewrite some texts in widgets.
21660 (display-buffer): Spread arguments when calling function
21661 specified by fun-with-args.
21662
21663 2011-06-28 Deniz Dogan <deniz@dogan.se>
21664
21665 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21666 Unnest `let'.
21667
21668 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21669 selectors (Bug#5732).
21670 (css-proprietary-nmstart-re): Use `regexp-opt'.
21671
21672 2011-06-27 Jari Aalto <jari.aalto@cante.net>
21673
21674 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21675 (eshell-ls-date-format): New defcustom.
21676 (eshell-ls-file): Use it.
21677
21678 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21679
21680 * help-fns.el (describe-variable): Fix message for terminal-local vars.
21681
21682 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
21683
21684 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21685 (ange-ftp-make-tmp-name): New arg.
21686 (ange-ftp-file-local-copy): Use it.
21687
21688 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
21689
21690 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21691 no-conversion (Bug#8870).
21692
21693 2011-06-27 Martin Rudalics <rudalics@gmx.at>
21694
21695 * window.el (window-right, window-left, window-child)
21696 (window-child-count, window-last-child)
21697 (window-iso-combination-p, walk-window-tree-1)
21698 (window-atom-check-1, window-tree-1, delete-window)
21699 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21700 new naming conventions - window-vchild, window-hchild,
21701 window-next and window-prev are now called window-top-child,
21702 window-left-child, window-next-sibling and window-prev-sibling
21703 respectively.
21704 (resize-window-reset): Rename to window-resize-reset.
21705 (resize-window-reset-1): Rename to window-resize-reset-1.
21706 (resize-window): Rename to window-resize.
21707 (window-min-height, window-min-width)
21708 (resize-mini-window, resize-this-window, resize-root-window)
21709 (resize-root-window-vertically, adjust-window-trailing-edge)
21710 (enlarge-window, shrink-window, maximize-window)
21711 (minimize-window, delete-window, quit-restore-window)
21712 (split-window, balance-windows, balance-windows-area-adjust)
21713 (balance-windows-area, window-state-put-2)
21714 (display-buffer-even-window-sizes, display-buffer-set-height)
21715 (display-buffer-set-width, set-window-text-height)
21716 (fit-window-to-buffer): Rename all "resize-window" prefixed
21717 calls to use the "window-resize" prefix convention.
21718 (display-buffer-alist): Fix symbol for label specifier.
21719 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21720 corresponding specifier.
21721 Reported by Juanma Barranquero <lekktu@gmail.com>.
21722
21723 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21724
21725 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21726 convention.
21727 (ses-call-printer): Does not pass an empty string to formatter when the
21728 cell is empty to keep from barking printer Calc math-format-value.
21729
21730 2011-06-27 Richard Stallman <rms@gnu.org>
21731
21732 * battery.el (battery-mode-line-limit): New variable.
21733 (battery-update): Handle it.
21734
21735 * mail/rmailmm.el (rmail-mime-process-multipart):
21736 Handle truncated messages.
21737
21738 2011-06-27 Glenn Morris <rgm@gnu.org>
21739
21740 * progmodes/flymake.el (flymake-err-line-patterns):
21741 Allow for column numbers in the ant/javac pattern. (Bug#8866)
21742
21743 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21744
21745 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21746 (ses--clean-!, ses--clean-_): New functions.
21747 (ses-range): Add configurability of readout order, and conversion
21748 to Calc vector.
21749
21750 * ses.el (ses-repair-cell-reference-all): New function.
21751 (ses-cell-symbol): Set macro as safe, so that it can be used in
21752 formulas.
21753
21754 * ses.el: Update cycle detection algorithm.
21755 (ses-localvars): Add ses--Dijkstra-attempt-nb and
21756 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21757 (ses-set-localvars): New function.
21758 (ses-make-cell): Add property-list as a cell element.
21759 (ses-cell-property-get-fun, ses-cell-property-get)
21760 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21761 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21762 New functions.
21763 (ses-cell-property-set, ses-cell-property-pop)
21764 (ses-cell-property-get-handle): New macro.
21765 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21766 New aliases, used for code readability.
21767 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21768 cycle detection.
21769 (ses-self-reference-early-detection): New defcustom.
21770 (ses-formula-references): Robustify against self-referring cells.
21771 (ses-mode): Use ses-set-localvars.
21772 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21773 before lauching the update processing.
21774 (ses-initialize-Dijkstra-attempt): New function.
21775 (ses-recalculate-cell): Update for cycle detection based on
21776 Dijkstra algorithm.
21777
21778 * ses.el: Fix commenting and indenting convention.
21779
21780 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21781
21782 * bs.el (bs-cycle-next): Complete last change.
21783
21784 2011-06-27 Drew Adams <drew.adams@oracle.com>
21785
21786 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21787
21788 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21789
21790 * net/network-stream.el (network-stream-open-starttls):
21791 Don't re-get capabilities unless we've reestablished connection.
21792 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21793
21794 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21795 to binary to possibly avoid line encoding issues on Windows (among
21796 other things).
21797
21798 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21799
21800 * net/network-stream.el (open-network-stream): Return an :error
21801 saying what the problem was, if possible.
21802
21803 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21804 server.
21805
21806 * net/network-stream.el (network-stream-open-starttls): If we
21807 wanted to use STARTTLS, and the server offered it, but we weren't
21808 able to because we had no STARTTLS support, then close the connection.
21809 (open-network-stream): Return an :error element, if present.
21810
21811 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21812
21813 * hl-line.el (hl-line-sticky-flag): Doc fix.
21814 (global-hl-line-sticky-flag): New option (Bug#8323).
21815 (global-hl-line-highlight): Obey it.
21816
21817 * vc/vc.el (vc-revert-show-diff): Default to t.
21818
21819 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
21820
21821 * allout-widgets.el (allout-widgets-post-command-business):
21822 Stop decorating intermediate isearch matches. They're not being
21823 undecorated when an isearch is continued past, and isearch
21824 automatically collapses them. This leads to "widget leaks", where
21825 decorated items accumulate in collapsed areas. Lines with lots of
21826 hidden widgets can slow down cursor travel, substantially.
21827 Too much complicated machinery would be needed to ensure undecoration,
21828 so we're doing without this nicety.
21829
21830 (allout-widgets-tally-string): Don't try to do a hash-table-count
21831 of allout-widgets-tally when it's nil. This eliminates spurious "Error
21832 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21833 *Messages* when allout-widgets-maintain-tally is t.
21834
21835 2011-06-26 Martin Rudalics <rudalics@gmx.at>
21836
21837 * window.el (display-buffer-normalize-argument): Rename to
21838 display-buffer-normalize-arguments. Handle special meaning of
21839 LABEL argument. Respect special-display-function when popping up
21840 a new frame. Fix code searching for a window showing the buffer
21841 on another frame.
21842 (display-buffer-normalize-specifiers):
21843 Call display-buffer-normalize-arguments.
21844 (display-buffer-in-window): Don't undedicate the window if its
21845 buffer remains the same.
21846 Reported by Drew Adams <drew.adams@oracle.com>.
21847 (display-buffer-alist): Add choice for same-window macro
21848 specfier.
21849 (display-buffer): Mention special meaning of LABEL argument in
21850 doc-string. Fix quoting. Don't pop up a new frame even as
21851 fallback.
21852
21853 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
21854
21855 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21856 avoid deleting the current window in some cases (bug#8911).
21857
21858 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
21859
21860 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21861 (Bug#8934)
21862
21863 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21864
21865 * net/network-stream.el (network-stream-open-starttls):
21866 Use built-in TLS support if `gnutls-available-p' is true.
21867 (network-stream-open-tls): Ditto.
21868
21869 2011-06-26 Leo Liu <sdl.web@gmail.com>
21870
21871 * register.el (registerv): New struct.
21872 (registerv-make): New function.
21873 (jump-to-register, describe-register-1, insert-register):
21874 Support the jump-func, print-func and insert-func slot of a registerv
21875 struct. (Bug#8415)
21876
21877 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21878
21879 * vc/vc.el (vc-revert-show-diff): New defcustom.
21880 (vc-diff-internal): New arg specifying diff buffer.
21881 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
21882 reuse an existing *vc-diff* buffer (Bug#8927).
21883
21884 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21885
21886 2011-06-26 Glenn Morris <rgm@gnu.org>
21887
21888 * progmodes/f90.el (f90-critical-indent): New option.
21889 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21890 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21891 (f90-mode): Doc fix.
21892 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21893 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21894 (f90-beginning-of-block, f90-next-block, f90-indent-region)
21895 (f90-match-end): Handle block, critical.
21896
21897 2011-06-25 Glenn Morris <rgm@gnu.org>
21898
21899 * calendar/diary-lib.el (diary-included-files): Doc fix.
21900 (diary-include-files): New function, extracted from
21901 diary-include-other-diary-files and diary-mark-included-diary-files.
21902 (diary-include-other-diary-files, diary-mark-included-diary-files):
21903 Just call diary-include-files.
21904 (diary-mark-entries): Reset diary-included-files on first call.
21905
21906 * calendar/diary-lib.el (diary-mark-entries)
21907 (diary-mark-included-diary-files):
21908 Visit included diary-files in temp buffers.
21909
21910 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21911 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21912 (f90-start-block-re, f90-imenu-generic-expression)
21913 (f90-looking-at-program-block-start, f90-no-block-limit):
21914 Add support for submodules.
21915
21916 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21917 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21918
21919 2011-06-25 Eli Zaretskii <eliz@gnu.org>
21920
21921 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21922 buffer-file-type before setting its value, to avoid disastrous
21923 global effects on decoding files for DOS/Windows systems. (Bug#8780)
21924
21925 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21926
21927 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21928
21929 * ses.el (ses-unload-function):
21930 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21931
21932 * proced.el (proced-unload-function):
21933 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21934
21935 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
21936
21937 * server.el (server-create-window-system-frame): Add parameters arg.
21938 (server-process-filter): Doc fix. Handle frame-parameters.
21939
21940 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21941
21942 Fix bug#8730, bug#8781.
21943
21944 * loadhist.el (unload--set-major-mode): New function.
21945 (unload-feature): Use it.
21946
21947 * progmodes/python.el (python-after-info-look): Add autoload cookie.
21948 (python-unload-function): New function.
21949
21950 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21951
21952 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21953
21954 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
21955
21956 * net/browse-url.el (browse-url-firefox-program): Add icecat to
21957 the candidates list.
21958
21959 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
21960
21961 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21962
21963 2011-06-23 Richard Stallman <rms@gnu.org>
21964
21965 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21966 (rmail-variables): Set next-error-move-function.
21967 (rmail-what-message): Take argument POS.
21968 (rmail-next-error-move): New function.
21969
21970 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
21971
21972 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21973 messages for adjacent non-terminals.
21974
21975 2011-06-23 Richard Stallman <rms@gnu.org>
21976
21977 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21978 (rmail-show-message-1): Preserve buffer modified flag.
21979 (rmail-start-mail): Don't specify use of rmail-mail-return;
21980 that's done by mail-bury now.
21981 (rmail-mail-return): Handle arg NEWBUF.
21982
21983 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
21984
21985 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21986 SIZE is a number.
21987
21988 2011-06-23 Martin Rudalics <rudalics@gmx.at>
21989
21990 * window.el (get-lru-window, get-mru-window)
21991 (get-largest-window): Never return a minibuffer window.
21992 (display-buffer-pop-up-window): Fix a bug that could lead to
21993 reusing the minibuffer window.
21994 (display-buffer): Pass original specifier argument to
21995 display-buffer-function instead of the normalized one.
21996 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21997
21998 2011-06-22 Leo Liu <sdl.web@gmail.com>
21999
22000 * minibuffer.el (completing-read-function)
22001 (completing-read-default): Move from minibuf.c.
22002
22003 2011-06-22 Richard Stallman <rms@gnu.org>
22004
22005 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
22006 to Rmail even if not started by a special Rmail command.
22007
22008 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
22009 Copy the buffer currently showing just one message.
22010
22011 2011-06-22 Roland Winkler <winkler@gnu.org>
22012
22013 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
22014 (bibtex-clean-entry): First delete the old key so that a
22015 customized algorithm for generating the new key does not get
22016 confused by the old key.
22017 (bibtex-url): Obey regexp of first step.
22018 (bibtex-search-entries): Do not use add-to-list with local
22019 list-var.
22020
22021 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
22022
22023 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
22024 stored a user name, then query for the password first, instead of
22025 waiting for SMTP to give an error message and the trying again.
22026
22027 2011-06-22 Lawrence Mitchell <wence@gmx.li>
22028
22029 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
22030 BUFFER in call-process.
22031
22032 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
22033
22034 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
22035 QUIT twice.
22036 (smtpmail-try-auth-methods): Require user name and password from
22037 auth-source.
22038
22039 2011-06-22 Martin Rudalics <rudalics@gmx.at>
22040
22041 * window.el (display-buffer-default-specifiers)
22042 (display-buffer-alist): Remove entries for pop-up-frame-alist.
22043 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
22044 (split-window): Normalize SIDE argument (Bug#8916).
22045
22046 * frame.el (pop-up-frame-alist, pop-up-frame-function)
22047 (special-display-frame-alist, special-display-popup-frame):
22048 Remove duplicate declarations. These are now in window.el.
22049
22050 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
22051
22052 * mail/smtpmail.el (smtpmail-via-smtp):
22053 Set :use-starttls-if-possible so that we always use STARTTLS if the
22054 server supports it. SMTP servers that support STARTTLS commonly
22055 require it.
22056
22057 * net/network-stream.el (network-stream-open-starttls): Support
22058 upgrading to STARTTLS always, even if we don't have built-in support.
22059 (open-network-stream): Add the :always-query-capabilities keyword.
22060
22061 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
22062 upgrades with `open-network-stream', and rely solely on
22063 auth-source for all credentials. Big changes throughout the file,
22064 but in particular:
22065 (smtpmail-auth-credentials): Remove.
22066 (smtpmail-starttls-credentials): Remove.
22067 (smtpmail-via-smtp): Check for servers saying they want AUTH after
22068 MAIL FROM, too.
22069
22070 * net/network-stream.el (network-stream-open-starttls):
22071 Provide support for client certificates both for external and built-in
22072 STARTTLS.
22073 (auth-source): Require.
22074 (open-network-stream): Document the :client-certificate keyword.
22075 (network-stream-certificate): Change cert-cert to cert and
22076 cert-key to key.
22077
22078 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
22079
22080 * net/tramp-cache.el (top): Don't load the persistency file when
22081 "emacs -Q" has been called.
22082
22083 2011-06-21 Tim Harper <timcharper@gmail.com>
22084
22085 * term/ns-win.el (ns-initialize-window-system):
22086 Set application-specific `ApplePressAndHoldEnabled' system
22087 resource to NO as it is not yet supported by the NS port.
22088
22089 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
22090
22091 * misc.el (list-dynamic-libraries--refresh): Compute header here...
22092 (list-dynamic-libraries): ...not here.
22093
22094 2011-06-21 Leo Liu <sdl.web@gmail.com>
22095
22096 * subr.el (sha1): Implement sha1 using secure-hash.
22097
22098 2011-06-21 Martin Rudalics <rudalics@gmx.at>
22099
22100 * window.el (display-buffer-alist): In default value do not
22101 enforce searching a window on any but the selected frame.
22102 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
22103 (display-buffer-select-window): Remove function.
22104 (display-buffer-in-window): When a window on another frame gets
22105 reused, do not select it any more but just raise its frame if
22106 necessary (Bug#8851) and (Bug#8856).
22107 (display-buffer-normalize-options): Handle pop-up-frames related
22108 options more faithfully.
22109 (pop-to-buffer): Don't rely on `display-buffer' selecting the
22110 window if it is on another frame.
22111 (display-buffer-alist, display-buffer-default-specifiers):
22112 Don't make new frame unsplittable by default.
22113 (display-buffer-normalize-argument): Fix doc-string typo and use
22114 'same-frame-other-window instead of 'other-window when associating
22115 with display-buffer-macro-specifiers.
22116
22117 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
22118
22119 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
22120 New functions.
22121 (5x5-mode-map, 5x5-mode-menu): Bind them.
22122 (5x5-draw-grid): Tweak the solver's rendering.
22123
22124 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
22125
22126 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
22127 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
22128
22129 2011-06-21 Drew Adams <drew.adams@oracle.com>
22130
22131 * menu-bar.el: Use function variable instead of switch-to-buffer.
22132 (menu-bar-select-buffer-function): New variable.
22133 (menu-bar-update-buffers): Use it (bug#8876).
22134
22135 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
22136
22137 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
22138 variable's status.
22139
22140 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
22141
22142 * x-dnd.el (x-dnd-version-from-flags)
22143 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
22144 and long as number (Bug#8899).
22145 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
22146
22147 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
22148
22149 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
22150 (completion-try-completion, completion-all-completions): Compute the
22151 metadata argument if it's missing; make it optional (bug#8795).
22152
22153 * wid-edit.el: Use lex-bind and move towards completion-at-point.
22154 (widget-complete): Use new :completion-function property.
22155 (widget-completions-at-point): New function.
22156 (default): Use :completion-function instead of :complete.
22157 (widget-default-completions): Rename from widget-default-complete;
22158 Rewrite.
22159 (widget-string-complete, widget-file-complete, widget-color-complete):
22160 Remove functions.
22161 (file, symbol, function, variable, coding-system, color):
22162 * international/mule-cmds.el (default-input-method, charset)
22163 (language-info-custom-alist):
22164 * cus-edit.el (face): Use new property :completions.
22165
22166 * progmodes/pascal.el (pascal-completions-at-point): New function.
22167 (pascal-mode): Use it.
22168 (pascal-mode-map): Use completion-at-point.
22169 (pascal-toggle-completions): Make obsolete.
22170 (pascal-complete-word, pascal-show-completions):
22171 * progmodes/octave-mod.el (octave-complete-symbol):
22172 Redefine as obsolete alias.
22173 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
22174 Signal absence of completion info for old Octave,
22175 (inferior-octave-complete): Redefine as obsolete alias.
22176 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
22177 (meta-completions-at-point): Rename from meta-complete-symbol and
22178 adapt it for use on completion-at-point-functions.
22179 (meta-common-mode): Use it.
22180 (meta-looking-at-backward, meta-match-buffer): Remove.
22181 (meta-complete-symbol): Redefine as obsolete alias.
22182 (meta-common-mode-map): Use completion-at-point.
22183 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
22184 (makefile-mode-map): Use completion-at-point.
22185 (makefile-completions-at-point): Rename from makefile-complete and
22186 adapt it for use on completion-at-point-functions.
22187 (makefile-mode): Use it.
22188 (makefile-complete): Redefine as obsolete alias.
22189
22190 2011-06-20 Deniz Dogan <deniz@dogan.se>
22191
22192 * net/rcirc.el: Delete trailing whitespaces once and for all.
22193
22194 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
22195
22196 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
22197
22198 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
22199
22200 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
22201
22202 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
22203
22204 2011-06-19 Martin Rudalics <rudalics@gmx.at>
22205
22206 * window.el (display-buffer-other-window-means-other-frame):
22207 Call display-buffer-normalize-alist.
22208 (display-buffer-normalize-specifiers-1): Rename to
22209 display-buffer-normalize-argument. New argument other-frame.
22210 Rewrite.
22211 (display-buffer-normalize-specifiers-2): Rename to
22212 display-buffer-normalize-options.
22213 (display-buffer-normalize-alist-1): New function.
22214 (display-buffer-normalize-specifiers-3): Rename to
22215 display-buffer-normalize-alist.
22216 Call display-buffer-normalize-alist-1.
22217 (display-buffer-normalize-options-inhibit): New variable.
22218 (display-buffer-normalize-specifiers): Rewrite calling
22219 display-buffer-normalize-alist,
22220 display-buffer-normalize-argument, and
22221 display-buffer-normalize-options. Don't call the latter if
22222 display-buffer-normalize-options-inhibit is non-nil.
22223 (frame-auto-delete): New option.
22224 (window-deletable-p): Use frame-auto-delete.
22225 (window-list-no-nils, window-state-ignored-parameters)
22226 (window-state-get-1, window-state-get, window-state-put-list)
22227 (window-state-put-1, window-state-put-2, window-state-put):
22228 New functions.
22229 (display-buffer-normalize-options): Move special-display-p group
22230 after pop-up-frame group (Bug#8851) and (Bug#8856).
22231
22232 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
22233
22234 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
22235 groups (Bug#8776).
22236 (rx-submatch-n): New function.
22237 (rx): Document it.
22238
22239 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
22240 (Bug#8768).
22241
22242 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
22243
22244 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
22245
22246 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
22247 anytime existing face settings are present (Bug#8889).
22248
22249 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
22250 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
22251 Remove unused argument.
22252
22253 2011-06-18 Martin Rudalics <rudalics@gmx.at>
22254
22255 * window.el (display-buffer-default-specifiers):
22256 Remove pop-up-frame. Add pop-up-window-min-height,
22257 pop-up-window-min-width, and another reuse-window specifier
22258 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
22259 (display-buffer-normalize-specifiers-2):
22260 Handle split-height-threshold and split-width-threshold also when
22261 pop-up-windows is unset. Add a reuse-window specifier for the
22262 case popping up a new window fails.
22263 (special-display-popup-frame): Remove double quoting.
22264 (display-buffer-normalize-specifiers-1): Fix thinko.
22265
22266 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
22267
22268 * shell.el (shell-completion-vars): Set pcomplete-termination-string
22269 according to comint-completion-addsuffix.
22270
22271 * pcomplete.el: Convert to lexical binding and fix bug#8819.
22272 (pcomplete-suffix-list): Mark as obsolete.
22273 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
22274 pcomplete-seen in the closure.
22275 (pcomplete-comint-setup): Setup completion-at-point as well.
22276 (pcomplete--entries): New function.
22277 (pcomplete--env-regexp): New var.
22278 (pcomplete-entries): Rewrite to work with partial-completion and
22279 without relying on pcomplete-suffix-list.
22280 (pcomplete-pare-list): Remove, unused.
22281
22282 2011-06-17 Martin Rudalics <rudalics@gmx.at>
22283
22284 * window.el (display-buffer-alist): Set pop-up-window-min-height
22285 and pop-up-window-min-width in default value. Reported by
22286 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
22287 other-window-means-other-frame.
22288 (display-buffer-macro-specifiers): Comment out entry for
22289 other-window specifier.
22290 (display-buffer-other-window-means-other-frame): New function.
22291 (display-buffer-normalize-specifiers-1): New arguments
22292 buffer-name and label. Treat other-window case specially.
22293 (display-buffer-normalize-specifiers-2): Treat other-window case
22294 specially.
22295 (display-buffer-normalize-specifiers-3): New function.
22296 (display-buffer-normalize-specifiers):
22297 Call display-buffer-normalize-specifiers-3.
22298
22299 2011-06-17 Martin Rudalics <rudalics@gmx.at>
22300
22301 * window.el (same-window-p): Fix two typos introduced when
22302 adding with-no-warnings.
22303 (display-buffer-normalize-specifiers-1): Don't check
22304 pop-up-frames for 'unset initialization.
22305 (display-buffer-normalize-specifiers-2): Major rewrite using
22306 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
22307 (pop-up-frames, display-buffer-reuse-frames)
22308 (display-buffer-mark-dedicated): Don't initialize to 'unset.
22309 Suggested by David Engster <deng@randomsample.de>.
22310 (even-window-heights): Initialize to 'unset.
22311 (display-buffer-alist-set): Handle new 'unset initializations.
22312 (display-buffer-macro-specifiers): Don't pop up a new frame in the
22313 other window case.
22314
22315 2011-06-16 Martin Rudalics <rudalics@gmx.at>
22316
22317 * window.el (display-buffer-normalize-specifiers-1):
22318 Respect current value of pop-up-frames for most reasonable values of
22319 second argument of display-buffer (Bug#8865).
22320 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
22321 (switch-to-buffer-other-window-same-frame)
22322 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
22323 Adams (Bug#8875).
22324 (display-buffer): Don't check noninteractive when calling
22325 display-buffer-pop-up-frame.
22326 (display-buffer-pop-up-frame): Never pop up a frame in
22327 noninteractive mode (Bug#8857).
22328 (enlarge-window, shrink-window): Don't report an error when the
22329 window can't be resized as requested (Bug#8862).
22330
22331 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22332
22333 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
22334
22335 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
22336
22337 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
22338
22339 2011-06-15 Alan Mackenzie <acm@muc.de>
22340
22341 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
22342 for declarators, disable knr checking to speed up for normal files.
22343 2: Refactor, replacing a sequence of nested if forms by a cond form.
22344
22345 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
22346
22347 * net/network-stream.el (open-network-stream): Add the keyword
22348 :always-query-capabilities for the case where you want to force a
22349 `plain' network connection, but the protocol still requires the
22350 capabilitiy command (i.e., SMTP and EHLO).
22351
22352 * subr.el (process-live-p): Rename from `process-alive-p' for
22353 consistency with other `-live-p' functions.
22354
22355 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22356
22357 * window.el (same-window-buffer-names, same-window-regexps)
22358 (special-display-frame-alist, special-display-popup-frame)
22359 (special-display-function, special-display-buffer-names)
22360 (special-display-regexps, pop-up-frame-alist)
22361 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
22362 (pop-up-windows, split-window-preferred-function)
22363 (split-height-threshold, split-width-threshold, even-window-heights)
22364 (display-buffer-mark-dedicated): Don't encourage the use of
22365 display-buffer-alist from Elisp code.
22366
22367 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
22368
22369 * progmodes/python.el (python-mode): Derive from prog-mode.
22370 * progmodes/ps-mode.el (ps-mode):
22371 * progmodes/mixal-mode.el (mixal-mode):
22372 * progmodes/cfengine.el (cfengine-mode):
22373 * progmodes/ld-script.el (ld-script-mode): Likewise.
22374
22375 2011-06-15 Martin Rudalics <rudalics@gmx.at>
22376
22377 * window.el (display-buffer-alist): Trim default value to avoid
22378 popping up a new frame (Bug#8857) or reusing an arbitrary window
22379 on another frame.
22380 (display-buffer): Do not fall back on popping up a new frame in
22381 batch mode (Bug#8857).
22382
22383 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
22384
22385 * cus-theme.el (describe-theme-1): Use custom-theme-p.
22386 (custom-theme-summary): New function.
22387 (customize-themes): Use it.
22388
22389 2011-06-13 Glenn Morris <rgm@gnu.org>
22390
22391 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
22392
22393 2011-06-13 Martin Rudalics <rudalics@gmx.at>
22394
22395 * help.el (help-window): Remove variable.
22396 (help-window-point-marker, temp-buffer-max-height)
22397 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
22398 (help-print-return-message): Don't set help-window.
22399 (resize-temp-buffer-window): Rewrite cod eand doc-string.
22400 (help-window-setup-finish): Remove.
22401 (help-window-display-message, help-window-setup)
22402 (with-help-window): Major rewrite based on new
22403 display-buffer-window variable.
22404
22405 * help-mode.el (help-mode-finish): Remove help-window related
22406 code.
22407
22408 * view.el (view-exits-all-viewing-windows): Remove reference to
22409 view-return-to-alist in doc-string.
22410 (view-return-to-alist): Make obsolete.
22411 (view-buffer): Call pop-to-buffer-same-window and remove
22412 undo-window code.
22413 (view-buffer-other-window): Call pop-to-buffer-other-window and
22414 simplify code. Ignore second argument.
22415 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
22416 simplify code. Ignore second argument.
22417 (view-return-to-alist-update): Make obsolete.
22418 (view-mode-enter): Rename second argument to QUIT-RESTORE.
22419 Rewrite using quit-restore window parameters.
22420 (view-mode-exit): Rename second argument to EXIT-ONLY.
22421 Rewrite using quit-restore-window.
22422 (View-exit, View-exit-and-edit, View-leave, View-quit)
22423 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
22424 appropriate arguments.
22425 (view-end-message): Use quit-restore window parameter.
22426
22427 * window.el (display-buffer-function): Rewrite doc-string.
22428 (display-buffer-window, display-buffer-alist): New variables.
22429 (display-buffer-split-specifiers)
22430 (display-buffer-side-specifiers)
22431 (display-buffer-macro-specifiers): New constants.
22432 (display-buffer-even-window-sizes, display-buffer-set-height)
22433 (display-buffer-set-width, display-buffer-select-window)
22434 (display-buffer-in-window, display-buffer-reuse-window)
22435 (display-buffer-split-window-1, display-buffer-split-window)
22436 (display-buffer-split-atom-window, display-buffer-pop-up-window)
22437 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
22438 (display-buffer-in-side-window, normalize-buffer-to-display)
22439 (display-buffer-normalize-specifiers-1)
22440 (display-buffer-normalize-specifiers-2)
22441 (display-buffer-normalize-specifiers, display-buffer-frame):
22442 New functions.
22443 (display-buffer): Major rewrite.
22444 (display-buffer-other-window, display-buffer-other-frame)
22445 (pop-to-buffer, switch-to-buffer-other-window)
22446 (switch-to-buffer-other-frame): Rewrite.
22447 (display-buffer-same-window, display-buffer-same-frame)
22448 (display-buffer-same-frame-other-window)
22449 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22450 (pop-to-buffer-other-window)
22451 (pop-to-buffer-same-frame-other-window)
22452 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
22453 (switch-to-buffer-other-window-same-frame): New functions.
22454 (same-window-p, special-display-p): Rewrite disabling warnings.
22455 Make obsolete.
22456 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22457 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
22458 Make obsolete
22459 (same-window-buffer-names, same-window-regexps)
22460 (special-display-frame-alist, special-display-popup-frame)
22461 (special-display-function, special-display-buffer-names)
22462 (special-display-regexps, pop-up-frame-alist)
22463 (pop-up-frame-function, split-window-preferred-function)
22464 (split-height-threshold, split-width-threshold)
22465 (even-window-heights): Make obsolete.
22466
22467 2011-06-12 Glenn Morris <rgm@gnu.org>
22468
22469 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
22470 Misc simplifications.
22471
22472 2011-06-12 Martin Rudalics <rudalics@gmx.at>
22473
22474 * window.el (window-safely-shrinkable-p): Restore function which
22475 was inadvertently removed in change from 2011-06-11. Declare as
22476 obsolete.
22477
22478 * calendar/calendar.el (calendar-generate-window):
22479 Use window-iso-combined-p instead of combination of one-window-p and
22480 window-safely-shrinkable-p.
22481
22482 2011-06-12 Glenn Morris <rgm@gnu.org>
22483
22484 * progmodes/fortran.el (fortran-mode-syntax-table):
22485 * progmodes/f90.el (f90-mode-syntax-table):
22486 Set % to punctuation. (Bug#8820)
22487 (f90-find-tag-default): Remove, no longer needed.
22488
22489 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
22490
22491 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22492
22493 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
22494
22495 * image.el (image-animated-p): Return animation delay in seconds.
22496 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22497 (image-animate-timeout): Remove DELAY argument. Don't assume
22498 every subimage has the same delay; get it from image-animated-p.
22499 (image-animate): Caller changed.
22500
22501 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
22502
22503 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22504 to ignored backtrace functions.
22505
22506 2011-06-11 Glenn Morris <rgm@gnu.org>
22507
22508 * calendar/appt.el (appt-disp-window-function): Doc fix.
22509 (appt-check): Handle overlapping appointments. (Bug#8337)
22510
22511 2011-06-11 Martin Rudalics <rudalics@gmx.at>
22512
22513 * window.el (window-tree-1, window-tree): New functions, moving
22514 the latter to window.el.
22515 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22516 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22517 (bw-refresh-edges): Remove.
22518 (balance-windows-1, balance-windows-2): New functions.
22519 (balance-windows): Rewrite in terms of window tree functions,
22520 balance-windows-1 and balance-windows-2.
22521 (bw-adjust-window): Remove.
22522 (balance-windows-area-adjust): New function with functionality of
22523 bw-adjust-window but using resize-window.
22524 (set-window-text-height): Rewrite doc-string.
22525 Use normalize-live-window and resize-window.
22526 (enlarge-window-horizontally, shrink-window-horizontally):
22527 Rename argument to DELTA.
22528 (window-buffer-height): New function.
22529 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22530 Rewrite using new window resize routines.
22531 (kill-buffer-and-window, mouse-autoselect-window-select):
22532 Use ignore-errors instead of condition-case.
22533 (quit-window): Call delete-frame instead of delete-windows-on
22534 for the only buffer on frame.
22535
22536 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22537
22538 * loadup.el (top-level): Load window before files for the sake
22539 of replace-buffer-in-windows.
22540
22541 * files.el (read-buffer-to-switch)
22542 (switch-to-buffer-other-window)
22543 (switch-to-buffer-other-frame, display-buffer-other-frame):
22544 Move to window.el.
22545
22546 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22547 (previous-buffer): Move to window.el.
22548
22549 * bindings.el (unbury-buffer): Move to window.el.
22550
22551 * window.el (delete-other-windows-vertically): Move after
22552 definition of delete-other-windows.
22553 (other-window, delete-windows-on, replace-buffer-in-windows):
22554 Move here from window.c.
22555 (record-window-buffer, unrecord-window-buffer)
22556 (set-window-buffer-start-and-point, switch-to-prev-buffer)
22557 (switch-to-next-buffer): New functions.
22558 (get-next-valid-buffer, last-buffer, next-buffer): Move here
22559 from simple.el. Call switch-to-next-buffer.
22560 (previous-buffer): Move here from simple.el.
22561 Call switch-to-prev-buffer.
22562 (bury-buffer): Move here from buffer.c. Switch to previous
22563 buffer when window cannot be deleted.
22564 (unbury-buffer): Move here from bindings.el.
22565 (ctl-x-map): Move binding for other-window from window.c to
22566 here.
22567 (read-buffer-to-switch, switch-to-buffer-other-window)
22568 (switch-to-buffer-other-frame): Move here from files.el.
22569 (normalize-buffer-to-switch-to): New functions.
22570 (switch-to-buffer): Move here from buffer.c.
22571 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22572
22573 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22574
22575 * window.el (window-min-height, window-min-width): Move here
22576 from window.c. Add defcustoms and rewrite doc-strings.
22577 (resize-mini-window, resize-window): New functions.
22578 (adjust-window-trailing-edge, enlarge-window, shrink-window):
22579 Move here from window.c.
22580 (maximize-window, minimize-window): New functions.
22581 (delete-window, delete-other-windows, split-window): Move here
22582 from window.c.
22583 (window-split-min-size): New function.
22584 (split-window-keep-point): Mention split-window-above-each-other
22585 instead of split-window-vertically.
22586 (split-window-above-each-other, split-window-vertically):
22587 Rename split-window-vertically to split-window-above-each-other
22588 and provide defalias for old definition.
22589 (split-window-side-by-side, split-window-horizontally):
22590 Rename split-window-horizontally to split-window-side-by-side
22591 and provide defalias for the old definition.
22592 (ctl-x-map): Move bindings for delete-window,
22593 delete-other-windows and enlarge-window here from window.c.
22594 Replace bindings for split-window-vertically and
22595 split-window-horizontally by bindings for
22596 split-window-above-each-other and split-window-side-by-side.
22597
22598 * cus-start.el (all): Remove entries for window-min-height and
22599 window-min-width. Add entries for window-splits and
22600 window-nest.
22601
22602 2011-06-09 Glenn Morris <rgm@gnu.org>
22603
22604 * calendar/appt.el (appt-mode-line): New function.
22605 (appt-check, appt-disp-window): Use it.
22606
22607 * files.el (hack-one-local-variable-eval-safep):
22608 Allow minor-modes with explicit +/-1 arguments.
22609
22610 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
22611
22612 * term/xterm.el (xterm): Add defgroup.
22613 (xterm-extra-capabilities): Add defcustom to supply known xterm
22614 capabilities, skip querying them, or query them (default).
22615 (terminal-init-xterm): Use it.
22616 (terminal-init-xterm-modify-other-keys): New function to set up
22617 modifyOtherKeys support to simplify `terminal-init-xterm'.
22618
22619 2011-06-09 Martin Rudalics <rudalics@gmx.at>
22620
22621 * window.el (resize-window-reset, resize-window-reset-1)
22622 (resize-subwindows-skip-p, resize-subwindows-normal)
22623 (resize-subwindows, resize-other-windows, resize-this-window)
22624 (resize-root-window, resize-root-window-vertically)
22625 (window-deletable-p, window-or-subwindow-p)
22626 (frame-root-window-p): New functions.
22627
22628 2011-06-09 Glenn Morris <rgm@gnu.org>
22629
22630 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22631 (ange-ftp-get-files): Use it.
22632
22633 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22634
22635 * mail/sendmail.el (mail-recover-1, mail-recover):
22636 * files.el (recover-file, recover-session):
22637 Handle dired-listing-switches not being just a single short option.
22638
22639 2011-06-09 Glenn Morris <rgm@gnu.org>
22640
22641 * calendar/appt.el (appt-display-message, appt-disp-window):
22642 Handle lists of appointments.
22643
22644 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22645
22646 * window.el (one-window-p): Move down in code.
22647 Rewrite doc-string.
22648 (window-current-scroll-bars): Rewrite doc-string.
22649 Normalize live window argument.
22650 (walk-windows, get-window-with-predicate, count-windows):
22651 Rewrite doc-string. Use window-list-1.
22652 (window-in-direction-2, window-in-direction, get-mru-window):
22653 New functions.
22654
22655 2011-06-08 Reuben Thomas <rrt@sc3d.org>
22656
22657 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22658 Doc fix (Bug#8713).
22659
22660 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
22661
22662 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22663
22664 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
22665
22666 * loadhist.el (unload-feature-special-hooks):
22667 Add `comint-output-filter-functions'.
22668
22669 2011-06-08 Ivan Kanis <gnu@kanis.fr>
22670
22671 * calendar/appt.el (appt-check): Move some initializations into the let.
22672
22673 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22674
22675 * window.el (window-height): Defalias to window-total-height.
22676 (window-width): Defalias to window-body-width.
22677
22678 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
22679
22680 * image-mode.el (image-toggle-animation): New command.
22681 (image-mode-map): Bind it to RET.
22682 (image-mode): Update message.
22683 (image-toggle-display-image): Avoid a spurious cache flush.
22684 (image-transform-rotation): Doc fix.
22685 (image-transform-properties): Return quickly in the normal case.
22686 (image-animate-loop): Rename from image-animate-max-time.
22687
22688 * image.el (image-animate-max-time): Move to image-mode.el.
22689 (create-animated-image): Remove unnecessary function.
22690 (image-animate): Rename from image-animate-start. New arg.
22691 (image-animate-stop): Remove; just use image-animate-timer.
22692 (image-animate-timer): Use car-safe.
22693 (image-animate-timeout): Rename argument.
22694
22695 2011-06-07 Martin Rudalics <rudalics@gmx.at>
22696
22697 * window.el (get-lru-window, get-largest-window): Move here from
22698 window.c. Rename first argument to ALL-FRAMES.
22699 Rephrase doc-strings.
22700 (get-buffer-window-list): Rewrite using window-list-1.
22701 Rephrase doc-string.
22702 (window-safe-min-height, window-safe-min-width): New constants.
22703 (window-size-ignore, window-min-size, window-min-size-1)
22704 (window-sizable, window-sizable-p, window-size-fixed-1)
22705 (window-size-fixed-p, window-min-delta-1, window-min-delta)
22706 (window-max-delta-1, window-max-delta, window-resizable)
22707 (window-resizable-p, window-total-height, window-total-width)
22708 (window-body-width): New functions.
22709 (window-full-height-p, window-full-width-p): Rewrite using
22710 window-total-size.
22711 (window-body-height): Rewrite using window-body-size.
22712
22713 2011-06-06 Martin Rudalics <rudalics@gmx.at>
22714
22715 * window.el (window-right, window-left, window-child)
22716 (window-child-count, window-last-child, window-any-p)
22717 (normalize-live-buffer, normalize-live-frame)
22718 (normalize-any-window, normalize-live-window)
22719 (window-iso-combination-p, window-iso-combined-p)
22720 (window-iso-combinations)
22721 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22722 (windows-with-parameter, window-with-parameter)
22723 (window-atom-root, make-window-atom, window-atom-check-1)
22724 (window-atom-check, window-side-check, window-check):
22725 New functions.
22726 (ignore-window-parameters, window-sides, window-sides-vertical)
22727 (window-sides-slots): New variables.
22728 (window-size-fixed): Move down in code. Minor doc-string fix.
22729
22730 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
22731
22732 * comint.el (comint-dynamic-complete-as-filename)
22733 (comint-dynamic-complete-filename): Correctly call
22734 completion-in-region.
22735
22736 2011-06-05 Deniz Dogan <deniz@dogan.se>
22737
22738 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22739 in last change.
22740
22741 2011-06-05 Deniz Dogan <deniz@dogan.se>
22742
22743 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22744 (rcirc): Use it to prompt for encryption.
22745
22746 2011-06-05 Roland Winkler <winkler@gnu.org>
22747
22748 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22749 (bibtex-search-entries): New command bound to C-c C-a.
22750 (bibtex-display-entries): New function.
22751
22752 2011-06-05 Roland Winkler <winkler@gnu.org>
22753
22754 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22755 (bibtex-insert-kill): After yanking insert newline if necessary.
22756 (bibtex-initialize): Call bibtex-string-files-init only once.
22757 (bibtex-mode): Do not call easy-menu-add.
22758 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22759 (bibtex-yank): Set arg properly if nil.
22760
22761 2011-06-05 Roland Winkler <winkler@gnu.org>
22762
22763 * textmodes/bibtex.el (bibtex-search-entry-globally):
22764 New variable.
22765 (bibtex-search-entry): Use it.
22766
22767 2011-06-05 Roland Winkler <winkler@gnu.org>
22768
22769 * textmodes/bibtex.el (bibtex-entry-format): New option
22770 sort-fields.
22771 (bibtex-format-entry, bibtex-reformat): Honor this option.
22772 (bibtex-parse-entry): Return fields in proper order.
22773
22774 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
22775
22776 * doc-view.el (doc-view-remove-if): Move computation of result out
22777 of `dolist' to silence misleading lexical-binding warning.
22778
22779 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
22780
22781 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22782 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22783
22784 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22785
22786 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22787 "SunOS 5.10".
22788
22789 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22790
22791 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22792 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22793 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22794 (tramp-parse-putty):
22795 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22796 (tramp-completion-function-alist-ssh)
22797 (tramp-completion-function-alist-telnet)
22798 (tramp-completion-function-alist-su)
22799 (tramp-completion-function-alist-putty): Set `tramp-autoload'
22800 cookie.
22801
22802 * net/tramp-ftp.el:
22803 * net/tramp-sh.el:
22804 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22805 load "tramp.el" `tramp-set-completion-function'.
22806
22807 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
22808
22809 * shell.el: Require and use pcomplete.
22810 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22811 (shell-completion-vars): Set pcomplete-default-completion-function.
22812
22813 2011-06-04 Deniz Dogan <deniz@dogan.se>
22814
22815 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22816 `memq' (Bug#8799).
22817
22818 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22819
22820 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22821
22822 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
22823
22824 * bs.el (bs--mark-unmark, bs--nth-wrapper):
22825 * mpc.el (mpc-select-extend, mpc-songpointer-context):
22826 * vc/log-view.el (log-view-beginning-of-defun):
22827 * vc/smerge-mode.el (smerge-apply-resolution-patch)
22828 (smerge-refine-forward, smerge-refine-chopup-region):
22829 Silence warning for unused `dotimes' counter variables.
22830
22831 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22832
22833 * net/tramp.el (tramp-with-progress-reporter): Rename from
22834 with-progress-reporter. Use `declare'.
22835 * net/tramp-smb.el:
22836 * net/tramp-sh.el:
22837 * net/tramp-gvfs.el: Update all uses.
22838
22839 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
22840
22841 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22842 buffer isn't killed before making it current.
22843
22844 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22845
22846 Silence various byte-compiler warnings.
22847 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22848 `access-type' and new obsolescence format.
22849 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22850 new format.
22851 (byte-compile-check-variable): New `access-type' argument.
22852 Only warn if the access-type is obsolete.
22853 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22854 (byte-compile-variable-set): Adjust callers.
22855 * help-fns.el (describe-variable): Adjust to new obsolescence format.
22856 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22857 setting it as obsolete.
22858 * simple.el (minibuffer-completing-symbol):
22859 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22860 access as obsolete.
22861 * minibuffer.el (minibuffer-completing-file-name): Don't make it
22862 obsolete yet.
22863 * international/quail.el (quail-mouse-choose-completion): Remove unused
22864 code referring to obsolete var.
22865 (quail-choose-completion-string): Remove.
22866 * server.el (server-clients-with, server-kill-buffer-query-function)
22867 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22868 * proced.el (proced-send-signal):
22869 * emacs-lisp/lisp.el (lisp-complete-symbol):
22870 Replace completion-annotate-function with completion-extra-properties.
22871
22872 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22873
22874 * simple.el (goto-line): Use read-number.
22875 (overriding-map-is-bound): Remove.
22876 (saved-overriding-map): Change default.
22877 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22878 Take the map as argument.
22879 (universal-argument, negative-argument, digit-argument): Use it.
22880 (restore-overriding-map): Adjust.
22881 (do-auto-fill): Use fill-forward-paragraph.
22882 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22883
22884 * minibuffer.el (minibuffer-inactive-mode-map): New var.
22885 (minibuffer-inactive-mode): New major mode.
22886 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22887 the *Messages* buffer" hack.
22888 (mouse-popup-menubar): Don't burp if the event is a normal key.
22889
22890 Miscellaneous tweaks.
22891 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22892 lexical scoping as in subr.el's dolist and dotimes.
22893 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22894 Silence compiler warning.
22895 * thingatpt.el (forward-whitespace): Trivial coding style fix.
22896 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22897 * international/ccl.el (ccl-compile): Trivial simplification.
22898 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22899 * emacs-lisp/testcover.el (testcover-end): Remove spurious
22900 `printflag' argument.
22901 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22902 Purecopy the whole obsolescence data.
22903
22904 2011-06-01 Leo Liu <sdl.web@gmail.com>
22905
22906 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22907 improve doc-string as suggested by Marco Pessotto
22908 <melmothx@gmail.com>.
22909 (rcirc-print): Fix last change.
22910
22911 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22912
22913 * minibuffer.el (complete-with-action): Return nil for the metadata and
22914 boundaries of non-functional tables.
22915 (completion-table-dynamic): Return nil for the metadata.
22916 (completion-table-with-terminator): Add default case, using
22917 complete-with-action.
22918 (completion--metadata): New function.
22919 (completion-all-sorted-completions, minibuffer-completion-help): Use it
22920 to try and avoid pathological performance problems.
22921 (completion--embedded-envvar-table): Return `category' metadata.
22922
22923 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
22924
22925 * subr.el (process-alive-p): New tiny convenience function.
22926
22927 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22928
22929 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22930 content but also its previous major mode.
22931
22932 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
22933
22934 * emacs-lisp/debug.el (debug): Restore the previous content of the
22935 *Backtrace* buffer when we exit with C-M-c.
22936
22937 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22938
22939 * minibuffer.el: Add metadata method to completion tables.
22940 (completion-category-overrides): New defcustom.
22941 (completion-metadata, completion--field-metadata)
22942 (completion-metadata-get, completion--styles)
22943 (completion--cycle-threshold): New functions.
22944 (completion-try-completion, completion-all-completions):
22945 Add `metadata' argument to choose completion-styles.
22946 (completion--do-completion): Use metadata to choose cycling.
22947 (completion-all-sorted-completions): Use metadata for sorting.
22948 Remove :completion-cycle-penalty which is not needed any more.
22949 (completion--try-word-completion): Add `metadata' argument.
22950 (minibuffer-completion-help): Check metadata for annotation function
22951 and sorting.
22952 (completion-file-name-table): Return `category' metadata.
22953 (minibuffer-completing-file-name): Make obsolete.
22954 * simple.el (minibuffer-completing-symbol): Make obsolete.
22955 * icomplete.el (icomplete-completions): Pass new `metadata' param to
22956 completion-try-completion.
22957
22958 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
22959
22960 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22961
22962 2011-05-30 Leo Liu <sdl.web@gmail.com>
22963
22964 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22965 (rcirc-print): Decode all incoming messages (bug#8744).
22966 (rcirc-decode-coding-system): Allow value nil for automatic coding
22967 system detection.
22968
22969 2011-06-01 Glenn Morris <rgm@gnu.org>
22970
22971 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22972
22973 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22974
22975 * image.el (image-animate-max-time): Allow nil and t values.
22976 Default to nil.
22977 (create-animated-image): Doc fix.
22978 (image-animate-start): Remove second arg; just use
22979 image-animate-max-time.
22980 (image-animate-timeout): Doc fix. Args changed.
22981
22982 * image-mode.el (image-toggle-display-image): Ensure that the
22983 image spec passed to the animate timer is the same object as in
22984 the buffer's display property (Bug#6981).
22985 (image-transform-properties): Doc fix.
22986
22987 * image.el (image-animate-max-time): Default to nil.
22988
22989 2011-05-29 Martin Rudalics <rudalics@gmx.at>
22990
22991 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22992 entire buffer list (Bug#8184).
22993
22994 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22995
22996 * image.el (imagemagick-types-inhibit)
22997 (imagemagick-register-types): Doc fix.
22998
22999 2011-05-29 Deniz Dogan <deniz@dogan.se>
23000
23001 * net/rcirc.el (rcirc): Use the user's stored encryption method by
23002 default.
23003
23004 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
23005
23006 * select.el: Don't perform clipboard-manager saving in hooks;
23007 leave the hooks empty.
23008
23009 2011-05-28 Leo Liu <sdl.web@gmail.com>
23010
23011 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
23012 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
23013 (occur-edit-mode): New major mode (Bug#8463).
23014 (occur-after-change-function): New function.
23015 (occur-engine): Give Occur tags a read-only property.
23016
23017 2011-05-28 Kevin Ryde <user42@zip.com.au>
23018
23019 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
23020
23021 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
23022
23023 * bindings.el (help-echo): Make the initial non-indicator dash
23024 empty on graphical terminals (Bug#7295).
23025
23026 * files.el (auto-mode-alist): Move config rule after the
23027 in-stripping one (Bug#8547).
23028
23029 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
23030
23031 * startup.el (normal-splash-screen): Remove gratuitous mode-line
23032 setting (Bug#8740).
23033
23034 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
23035
23036 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
23037 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
23038 (Bug#8539).
23039
23040 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
23041
23042 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
23043
23044 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
23045
23046 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
23047 (hs-hide-block-at-point, hs-find-block-beginning)
23048 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
23049 (Bug#8279).
23050
23051 2011-05-28 Glenn Morris <rgm@gnu.org>
23052
23053 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
23054
23055 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
23056
23057 * help-fns.el (describe-function-1): If the function is a derived
23058 major mode, print the parent mode.
23059
23060 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
23061 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
23062
23063 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
23064
23065 * minibuffer.el (completion--capf-wrapper): Check applicability before
23066 returning non-nil for non-exclusive completion data.
23067 * progmodes/etags.el (tags-completion-at-point-function):
23068 * info-look.el (info-lookup-completions-at-point): Mark as
23069 non-exclusive.
23070 (info-complete): Adjust accordingly.
23071
23072 * info-look.el: Convert to lexical-binding and completion-at-point.
23073 (info-lookup-completions-at-point): New function.
23074 (info-complete): Use it and completion-in-region.
23075
23076 2011-05-28 Drew Adams <drew.adams@oracle.com>
23077
23078 * isearch.el: Let M-e start with point at the first mismatched char.
23079 (isearch-fail-pos): New function.
23080 (isearch-edit-string): Use it.
23081
23082 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
23083
23084 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
23085
23086 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
23087
23088 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
23089 traversal functions for avl-trees.
23090 (avl-tree--stack): New struct.
23091 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
23092 (avl-tree-enter): Add optional `updatefun' arg.
23093 (avl-tree--do-enter): Add optional `updatefun' arg.
23094 Change return value.
23095 (avl-tree-delete): Add optional `test' and `nilflag' args.
23096 (avl-tree--do-delete): Add `test' and `nilflag' args.
23097 Change return value.
23098 (avl-tree-member): Add optional `nilflag'
23099 (avl-tree-member-p): New function.
23100 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
23101 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
23102 (avl-tree-stack-empty-p): New functions.
23103
23104 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
23105 avl-tree--del-balance1 and make it work both ways.
23106 (avl-tree--del-balance2): Remove.
23107 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
23108 make it work both ways.
23109 (avl-tree--enter-balance2): Remove.
23110 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
23111 New macros.
23112 (avl-tree--mapc, avl-tree-map): Add direction argument.
23113
23114 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
23115
23116 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
23117
23118 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
23119
23120 * select.el: Support clipboard managers with built-in function
23121 x-clipboard-manager-save, via delete-frame-functions and
23122 kill-emacs-hook.
23123 (xselect-convert-to-targets): Add MULTIPLE target to list.
23124 (xselect-convert-to-save-targets): New function.
23125
23126 2011-05-27 Kenichi Handa <handa@m17n.org>
23127
23128 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
23129 let-binding rfc2047-encode-encoded-words to nil.
23130
23131 2011-05-27 Glenn Morris <rgm@gnu.org>
23132
23133 * mail/emacsbug.el: Don't require url-util.
23134
23135 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
23136
23137 * files.el (set-auto-mode):
23138 Also respect mode: entries at the end of the file. (Bug#8586)
23139
23140 2011-05-26 Glenn Morris <rgm@gnu.org>
23141
23142 * files.el (hack-local-variables-prop-line, hack-local-variables):
23143 Downcase mode names, as seems to be traditional.
23144 (hack-local-variables, hack-local-variables-apply): Doc fixes.
23145
23146 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
23147 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
23148
23149 2011-05-25 Julien Danjou <julien@danjou.info>
23150
23151 * textmodes/rst.el (rst-define-level-faces): Do not define face
23152 symbol if it is already defined.
23153
23154 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
23155
23156 * play/5x5.el (5x5-new-game, 5x5-randomize):
23157 Reset 5x5-solver-output to nil when a new grid is cast.
23158 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
23159 these debugging traces, as defmacro breaks the compiled code.
23160
23161 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
23162
23163 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
23164
23165 2011-05-24 Leo Liu <sdl.web@gmail.com>
23166
23167 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
23168 (vc-bzr-sha1): Adapt.
23169
23170 * sha1.el: Remove. Function `sha1' is now builtin.
23171
23172 * bindings.el: Provide sha1 feature.
23173
23174 2011-05-24 Kenichi Handa <handa@m17n.org>
23175
23176 * mail/sendmail.el: Require `rfc2047'.
23177 (mail-insert-from-field): Do not perform RFC2047 encoding.
23178 (mail-encode-header): New function.
23179 (sendmail-send-it): Set buffer-file-coding-system of the work
23180 buffer to the return value of select-message-coding-system.
23181 Call mail-encode-header.
23182
23183 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
23184
23185 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
23186
23187 * mail/supercite.el (sc-default-cite-frame):
23188 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
23189
23190 2011-05-24 Glenn Morris <rgm@gnu.org>
23191
23192 * progmodes/python.el (brm-menu): Declare.
23193
23194 * emulation/viper.el (viper-set-hooks): Declare.
23195
23196 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
23197 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
23198 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
23199 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
23200 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
23201 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
23202
23203 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
23204
23205 Add an :exit-function for completion-at-point.
23206
23207 * minibuffer.el (completion--done): New fun.
23208 (completion--do-completion): Use it. New arg `expect-exact'.
23209 (minibuffer-complete, minibuffer-complete-word): Don't output message,
23210 since completion--do-completion does it for us now.
23211 (minibuffer-force-complete): Use completion--done and
23212 completion--replace. Handle sole-completion case with more care.
23213 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
23214 (completion-extra-properties): New var.
23215 (completion-annotate-function): Make obsolete.
23216 (minibuffer-completion-help): Adjust accordingly.
23217 Use completion-list-insert-choice-function.
23218 (completion-at-point, completion-help-at-point):
23219 Bind completion-extra-properties.
23220 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
23221 * simple.el (completion-list-insert-choice-function): New var.
23222 (completion-setup-function): Preserve it.
23223 (choose-completion): Pay attention to it, shuffle the code a bit.
23224 (choose-completion-string): New arg `insert-function'.
23225
23226 * textmodes/bibtex.el: Convert to lexical binding.
23227 (bibtex-mode-map): Use completion-at-point.
23228 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
23229 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
23230 (bibtex-complete): Define as obsolete alias.
23231 (bibtex-complete-internal): Remove.
23232 (bibtex-format-entry): Remove unused sub-group in regexp.
23233 * shell.el (shell--command-completion-data)
23234 (shell-environment-variable-completion):
23235 * pcomplete.el (pcomplete-completions-at-point):
23236 * comint.el (comint--complete-file-name-data): Use :exit-function
23237 instead of completion-table-with-terminator so it also works for
23238 choose-completion.
23239
23240 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
23241
23242 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
23243
23244 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
23245 (bug#8710).
23246
23247 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
23248
23249 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
23250
23251 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
23252 customization variable and implement: If non-nil, auto-fill will
23253 be inhibited while on topic's header line.
23254
23255 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
23256
23257 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
23258 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
23259 always have a solution in grid size = 5 cases.
23260 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
23261 (5x5-solver-output, 5x5-log-buffer): New vars.
23262 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
23263 Make these variables buffer local to achieve 5x5 multi-session-ness.
23264 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
23265 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
23266 (5x5-solve-suggest): New funs.
23267 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
23268 randomize a grid so that we ensure that there is always a solution.
23269 (5x5-make-random-grid): Allow other movement than flipping.
23270
23271 2011-05-23 Kevin Ryde <user42@zip.com.au>
23272
23273 * emacs-lisp/advice.el (ad-read-advised-function):
23274 Use `function-called-at-point' as the default, if it has
23275 advice and passes PREDICATE.
23276
23277 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
23278
23279 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
23280 byte-compile-lambda if it's actually a lambda.
23281
23282 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
23283 Fix function quoting. Use backquote better.
23284
23285 2011-05-22 Yuanle Song <sylecn@gmail.com>
23286
23287 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
23288 matching (Bug#8516).
23289
23290 2011-05-22 Jari Aalto <jari.aalto@cante.net>
23291
23292 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
23293 different face (Bug#8178).
23294
23295 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
23296
23297 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
23298 defface (Bug#8144).
23299
23300 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
23301
23302 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
23303 funcall as well (bug#8712). Warn when performing those conversions.
23304 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
23305
23306 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
23307
23308 2011-05-22 Glenn Morris <rgm@gnu.org>
23309
23310 * files.el (hack-local-variables-prop-line): Small simplifications.
23311 (hack-local-variables, hack-local-variables-prop-line):
23312 If MODE-ONLY, return the mode, rather than just `t'.
23313
23314 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
23315
23316 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
23317
23318 2011-05-21 Glenn Morris <rgm@gnu.org>
23319
23320 * files.el (hack-local-variables-prop-line, hack-local-variables):
23321 If only interested in the mode, don't bother doing the other stuff.
23322
23323 * image-mode.el (image-after-revert-hook):
23324 Redraw all frames on which the image is visible. (Bug#8567)
23325
23326 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
23327
23328 * wid-edit.el (widget-checklist-match-inline):
23329 Fix 2011-04-19 change. (Bug#8649)
23330
23331 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
23332
23333 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
23334 Also allow singlespace after single-letter capitals followed by a dot.
23335
23336 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
23337 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
23338
23339 2011-05-20 Nix <nix@esperi.org.uk>
23340
23341 * files.el (basic-save-buffer-2):
23342 Fix handling of break-hardlink-on-save with non-existent files.
23343
23344 2011-05-19 Deniz Dogan <deniz@dogan.se>
23345
23346 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
23347 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
23348
23349 2011-05-19 Glenn Morris <rgm@gnu.org>
23350
23351 * progmodes/f90.el (f90-type-def-re):
23352 Handle "type, bind(c)". (Bug#8691)
23353
23354 * emacs-lisp/autoload.el (batch-update-autoloads):
23355 Set autoload-excludes by parsing loadup.el rather than Makefiles.
23356
23357 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
23358
23359 * net/tramp.el (tramp-process-actions): Set "first-password-request"
23360 property for the correct connection in case of multihops.
23361
23362 2011-05-18 Glenn Morris <rgm@gnu.org>
23363
23364 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
23365 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
23366
23367 Rationalize calendar handling of day and month abbrev-arrays.
23368 * calendar/calendar.el (calendar-customized-p): New function.
23369 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
23370 (calendar-day-name-array, calendar-month-name-array): Doc fix.
23371 Add :set function.
23372 (calendar-abbrev-length, calendar-day-abbrev-array)
23373 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
23374 (calendar-day-abbrev-array, calendar-month-abbrev-array):
23375 Elements may no longer be nil.
23376 (calendar-day-name, calendar-month-name):
23377 Update for changed nature of abbrev arrays.
23378 * calendar/diary-lib.el (diary-name-pattern):
23379 Update for changed nature of abbrev arrays.
23380 (diary-mark-entries-1): Update calendar-make-alist calls.
23381 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
23382 * calendar/cal-html.el (cal-html-day-abbrev-array):
23383 Simply inherit from calendar-day-abbrev-array.
23384
23385 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
23386
23387 * progmodes/grep.el (grep-mode): Disable default
23388 compilation-directory-matcher setting (bug#8684).
23389
23390 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
23391
23392 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
23393 instead of "head" and "tail". There were problems with SunOS 5.9,
23394 and it performs better.
23395
23396 2011-05-17 Glenn Morris <rgm@gnu.org>
23397
23398 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
23399
23400 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
23401 Replace obsolete function.
23402
23403 * shell.el (pcomplete-parse-arguments-function): Declare.
23404
23405 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
23406 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
23407 (appt-check): Doc fixes.
23408 (appt-disp-window-function, appt-delete-window-function):
23409 Remove needless special case in custom :type.
23410 (appt-display-count): Default to 0, not nil.
23411 (appt-check): Reset appt-display-count to 0, not nil.
23412
23413 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
23414
23415 * progmodes/python.el (python-font-lock-keywords):
23416 Add the Python 3.X keyword "nonlocal" (bug#8639).
23417
23418 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
23419
23420 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
23421
23422 2011-05-16 Kevin Ryde <user42@zip.com.au>
23423
23424 * info-look.el (makefile-automake-mode): New setups, looking in
23425 automake manual, then makefile-mode.
23426 (makefile-mode): Remove automake manual, have it just in
23427 makefile-automake-mode since there's various things different or
23428 not relevant to plain make.
23429 (makefile-mode): Remove "other-modes" non-existent automake-mode,
23430 believe a hypothetical automake-mode would go to makefile-mode,
23431 not the other way around.
23432
23433 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
23434
23435 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
23436 hunk-end tags (Bug#8672).
23437
23438 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
23439 vc-annotate-show-diff-revision-at-line (Bug#8671).
23440
23441 2011-05-14 Glenn Morris <rgm@gnu.org>
23442
23443 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
23444 in the middle of an existing one with multiple authors. (Bug#8645)
23445 (change-log-font-lock-keywords): Also handle multiple author lines
23446 with leading tabs. (Bug#8644)
23447
23448 * calendar/appt.el (appt-check): Rename some local variables.
23449 Some simplification/reordering.
23450
23451 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
23452 (feedmail-sendmail-f-doesnt-sell-me-out)
23453 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23454 (feedmail-debug-sit-for, feedmail-queue-express-hook)
23455 (feedmail-queue-runner-message-sender): Set :version.
23456 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
23457 (bbdb-dwim-net-address, vm-mail): Declare.
23458 (feedmail-binmail-gnulinuxish-template):
23459 Rename from feedmail-binmail-linuxish-template.
23460 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
23461 Use insert-buffer-substring.
23462
23463 2011-05-14 Bill Carpenter <bill@carpenter.org>
23464
23465 * mail/feedmail.el (feedmail-patch-level): Increase.
23466 (feedmail-debug): New custom group.
23467 (feedmail-confirm-outgoing-timeout)
23468 (feedmail-sendmail-f-doesnt-sell-me-out)
23469 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23470 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
23471 (feedmail-sender-line, feedmail-from-line)
23472 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
23473 (feedmail-spray-this-address)
23474 (feedmail-spray-address-fiddle-plex-list)
23475 (feedmail-queue-use-send-time-for-date)
23476 (feedmail-queue-use-send-time-for-message-id)
23477 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
23478 (feedmail-buffer-eating-function):
23479 Doc fixes.
23480 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23481 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23482 (feedmail-message-action-scroll-down): New functions.
23483 (feedmail-queue-directory, feedmail-queue-draft-directory):
23484 Use expand-file-name.
23485 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23486 Remove C-v help entry.
23487 (feedmail-queue-buffer-file-name): New variable.
23488 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23489 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23490 (feedmail-message-action-send-strong, feedmail-message-action-edit)
23491 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23492 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23493 (feedmail-message-action-toggle-spray)
23494 (feedmail-run-the-queue-no-prompts)
23495 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23496 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23497 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23498 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23499 (feedmail-envelope-deducer, feedmail-fiddle-from)
23500 (feedmail-fiddle-sender, feedmail-default-date-generator)
23501 (feedmail-fiddle-date, feedmail-fiddle-message-id)
23502 (feedmail-fiddle-spray-address)
23503 (feedmail-fiddle-list-of-spray-fiddle-plexes)
23504 (feedmail-fiddle-list-of-fiddle-plexes)
23505 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23506 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23507 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23508 Change default. Doc fix.
23509 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23510 (feedmail-binmail-linuxish-template): New constant.
23511 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
23512 Respect feedmail-sendmail-f-doesnt-sell-me-out.
23513 (feedmail-send-it): Add debug call.
23514 Use feedmail-queue-buffer-file-name, and
23515 feedmail-send-it-immediately-wrapper.
23516 (feedmail-message-action-send): Add debug call.
23517 Use feedmail-send-it-immediately-wrapper.
23518 (feedmail-queue-express-to-queue): Add debug call.
23519 Run feedmail-queue-express-hook.
23520 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
23521 (feedmail-message-action-help-blat):
23522 Rename from feedmail-queue-send-edit-prompt-help-first.
23523 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
23524 Check line-endings. Handle errors better.
23525 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23526 Doc fix. Add debug call.
23527 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
23528 Use feedmail-queue-send-edit-prompt-inner.
23529 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23530 (feedmail-queue-send-edit-prompt-inner): New function, extracted
23531 from feedmail-queue-send-edit-prompt.
23532 (feedmail-queue-send-edit-prompt-help)
23533 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23534 (feedmail-tidy-up-slug): Add debug call.
23535 Respect feedmail-queue-slug-suspect-regexp.
23536 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23537 (feedmail-dump-message-to-queue): Add debug call.
23538 Expand queue-directory.
23539 (feedmail-dump-message-to-queue): Change message slightly.
23540 Use feedmail-say-chatter.
23541 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
23542 (feedmail-send-it-immediately-wrapper): New function.
23543 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
23544 Insert empty string rather than newline. Handle full-frame case.
23545 Use catch/throw. Use feedmail-say-chatter.
23546 (feedmail-fiddle-from): Try mail-host-address.
23547 (feedmail-default-message-id-generator): Doc fix.
23548 Bind system-time-locale. Handle missing end.
23549 (feedmail-fiddle-x-mailer): Add debug call.
23550 Handle feedmail-x-mailer-line being nil.
23551 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23552 Add debug call. Use buffer-substring-no-properties.
23553 (feedmail-say-debug, feedmail-say-chatter): New functions.
23554 (feedmail-find-eoh): Give an explicit error.
23555
23556 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
23557
23558 * net/newst-treeview.el (newsticker-treeview-face): Change default
23559 family from helvetica to sans.
23560 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23561 etc/images/newsticker.
23562
23563 * net/newst-reader.el (newsticker-feed-face): Change default
23564 family from helvetica to sans.
23565
23566 * net/newst-plainview.el (newsticker-new-item-face)
23567 (newsticker-old-item-face, newsticker-immortal-item-face)
23568 (newsticker-obsolete-item-face, newsticker-date-face)
23569 (newsticker-statistics-face): Change default family from
23570 helvetica to sans.
23571 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23572 etc/images/newsticker.
23573
23574 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23575 (newsticker--process-auto-mark-filter-match): Tell user about
23576 auto-marking.
23577
23578 2011-05-13 Didier Verna <didier@xemacs.org>
23579
23580 Common Lisp indentation improvements on defmethod and lambda-lists.
23581 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23582 TODO entries.
23583 (lisp-lambda-list-keyword-parameter-indentation)
23584 (lisp-lambda-list-keyword-parameter-alignment)
23585 (lisp-lambda-list-keyword-alignment): New customizable user options.
23586 (lisp-indent-defun-method): Improve docstring.
23587 (extended-loop-p): Fix comment.
23588 (lisp-indent-lambda-list-keywords-regexp): New variable.
23589 (lisp-indent-lambda-list): New function.
23590 (lisp-indent-259): Use it.
23591 (lisp-indent-defmethod): Support for more than one
23592 method qualifier and properly indent methods lambda-lists.
23593 (defgeneric): Provide a missing common-lisp-indent-function property.
23594
23595 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
23596
23597 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23598 bounds for the empty string (bug#8667).
23599
23600 2011-05-13 Glenn Morris <rgm@gnu.org>
23601
23602 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23603
23604 * mail/sendmail.el (sendmail-program): Try executable-find first.
23605 (sendmail-send-it): `sendmail-program' cannot be unbound.
23606
23607 * calendar/appt.el (appt-make-list): Simplify.
23608 (appt-time-msg-list): Doc fix.
23609 (appt-check): Change mode-line message at the time of the appointment.
23610
23611 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
23612
23613 * progmodes/ld-script.el (ld-script-keywords)
23614 (ld-script-builtins): Update keywords list.
23615
23616 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23617
23618 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23619
23620 * shell.el (shell-completion-vars): New function.
23621 (shell-mode):
23622 * simple.el (read-shell-command): Use it.
23623 (blink-matching-open): No need for " [...]" in minibuffer-message.
23624
23625 2011-05-12 Glenn Morris <rgm@gnu.org>
23626
23627 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23628 (appt-check): Simplify.
23629
23630 2011-05-12 Eli Zaretskii <eliz@gnu.org>
23631
23632 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23633 literal "/dev/null".
23634
23635 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23636
23637 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23638 Fix typo.
23639
23640 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
23641
23642 * progmodes/which-func.el (which-function):
23643 Use add-log-current-defun instead of add-log-current-defun-function,
23644 which might not be defined (Bug#8260).
23645
23646 2011-05-12 Glenn Morris <rgm@gnu.org>
23647
23648 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23649 Let byte-compile-initial-macro-environment always take precedence.
23650
23651 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23652
23653 * net/rcirc.el: Add support for SSL/TLS connections.
23654 (rcirc-server-alist): New field `encryption'.
23655 (rcirc): Check `encryption' settings.
23656 (rcirc-connect): New arg `encryption'. Use open-network-stream.
23657 Merge make-local-variable into `set'.
23658 (rcirc--connection-open-p): New function.
23659 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23660 the process is not a network process (e.g. running gnutls-cli).
23661 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23662 Make rcirc-(en|de)code-coding-system local here.
23663 (rcirc-mode): Merge make-local-variable into `set'.
23664 (rcirc-parent-buffer): Make permanent buffer-local.
23665 (rcirc-multiline-minor-mode): Don't do it here.
23666 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23667 there's no server buffer.
23668
23669 2011-05-11 Glenn Morris <rgm@gnu.org>
23670
23671 * newcomment.el (comment-kill): Prefix "unused" local.
23672
23673 * term/w32console.el (get-screen-color): Declare.
23674
23675 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23676 Handle symbol elements of byte-compile-initial-macro-environment.
23677
23678 2011-05-10 Leo Liu <sdl.web@gmail.com>
23679
23680 * bookmark.el (bookmark-bmenu-mode-map):
23681 Bind bookmark-bmenu-search to `/'.
23682
23683 * mail/footnote.el: Convert to utf-8 encoding.
23684 (footnote-unicode-string, footnote-unicode-regexp): New variable.
23685 (Footnote-unicode): New function.
23686 (footnote-style-alist): Add unicode style to the list.
23687 (footnote-style): Doc fix.
23688
23689 2011-05-10 Jim Meyering <meyering@redhat.com>
23690
23691 Fix doubled-word typos.
23692 * international/quail.el (quail-insert-kbd-layout): and and -> and
23693 * kermit.el: and and -> and
23694 * net/ldap.el (ldap-search-internal): to to -> to
23695 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23696 * progmodes/js.el (js-mode): and and -> and
23697 * textmodes/artist.el (artist-move-to-xy): at at -> at
23698 (artist-draw-region-trim-line-endings): if if -> if
23699 And Safetyc -> Safety.
23700 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23701
23702 2011-05-10 Glenn Morris <rgm@gnu.org>
23703 Stefan Monnier <monnier@iro.umontreal.ca>
23704
23705 * files.el (hack-one-local-variable-eval-safep):
23706 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
23707
23708 2011-05-10 Glenn Morris <rgm@gnu.org>
23709
23710 * calendar/diary-lib.el (diary-list-entries-hook)
23711 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23712 (diary-nongregorian-marking-hook, diary-list-entries)
23713 (diary-include-other-diary-files, diary-mark-entries)
23714 (diary-mark-included-diary-files): Doc fixes.
23715
23716 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23717
23718 * misc.el: Require tabulated-list.el during compilation.
23719
23720 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23721
23722 * progmodes/compile.el (compilation-start):
23723 Run compilation-filter-hook for the async case too.
23724 (compilation-filter-hook): Doc fix.
23725
23726 2011-05-09 Deniz Dogan <deniz@dogan.se>
23727
23728 * wdired.el: Remove outdated installation comment. Fix usage
23729 comment.
23730
23731 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23732
23733 * misc.el: Implement new command `list-dynamic-libraries'.
23734 (list-dynamic-libraries--loaded-only-p): New variable.
23735 (list-dynamic-libraries--refresh): New function.
23736 (list-dynamic-libraries): New command.
23737
23738 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23739
23740 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23741 Fix the ant regexp to handle end-line and end-column info from jikes.
23742 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
23743 higher priority to avoid clobbering by gnu.
23744
23745 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23746
23747 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23748 if the face has existing theme settings (Bug#8454).
23749
23750 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
23751
23752 * progmodes/perl-mode.el (perl-imenu-generic-expression):
23753 Only match variables declared via `my' or `our' (Bug#8261).
23754
23755 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23756 special file names `.' and `..' (Bug#8259).
23757
23758 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23759
23760 * progmodes/grep.el (grep-mode-font-lock-keywords):
23761 Remove buffer-changing entries.
23762 (grep-filter): New function.
23763 (grep-mode): Add it to compilation-filter-hook.
23764
23765 * progmodes/compile.el (compilation-filter-hook)
23766 (compilation-filter-start): New defvars.
23767 (compilation-filter): Call compilation-filter-hook prior to
23768 updating the process mark.
23769
23770 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
23771
23772 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23773
23774 2011-05-07 Eli Zaretskii <eliz@gnu.org>
23775
23776 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23777 mailclient-send-it even if window-system is nil. (Bug#8595)
23778
23779 * term/w32console.el (terminal-init-w32console):
23780 Call get-screen-color and use its output to set the frame
23781 background-mode. (Bug#8597)
23782
23783 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23784
23785 Make bytecomp.el understand that defmethod defines funs (bug#8631).
23786 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23787 New functions.
23788 (defgeneric, eieio--defmethod): Use them.
23789 (eieio-defgeneric): Remove.
23790 (defmethod): Call defgeneric in a way visible to the byte-compiler.
23791
23792 2011-05-07 Glenn Morris <rgm@gnu.org>
23793
23794 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23795 Use let rather than let*.
23796 (timeclock-find-discrep): Remove unused local.
23797
23798 * calendar/diary-lib.el (diary-comment-start): Doc fix.
23799
23800 * calendar/appt.el (appt-time-msg-list): Doc fix.
23801
23802 2011-05-06 Noah Friedman <friedman@splode.com>
23803
23804 * apropos.el (apropos-print-doc): Only use
23805 emacs-lisp-docstring-fill-column when it is bound to an integer,
23806 per that variable's documentation.
23807
23808 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23809
23810 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23811 and warnings are not silently discarded (e.g. use -d instead of -P).
23812
23813 2011-05-06 Glenn Morris <rgm@gnu.org>
23814
23815 * calendar/appt.el (appt-message-warning-time): Doc fix.
23816 (appt-warning-time-regexp): New option.
23817 (appt-make-list): Respect appt-message-warning-time.
23818
23819 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23820 New options.
23821 (diary-add-to-list): Strip comments from the displayed string.
23822 (diary-mode): Set comment-start and comment-end.
23823
23824 * vc/diff-mode.el (smerge-refine-subst): Declare.
23825 (diff-refine-hunk): Don't require smerge-mode when compiling.
23826
23827 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
23828
23829 * simple.el (list-processes): Return nil as the docstring says.
23830
23831 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23832
23833 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23834 to "".
23835 (ange-ftp-write-region, ange-ftp-insert-file-contents)
23836 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23837 determining of binary transfer. (Bug#7383)
23838
23839 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23840
23841 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23842 Fix port computation bug. (Bug#8618)
23843
23844 2011-05-05 Glenn Morris <rgm@gnu.org>
23845
23846 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23847
23848 * simple.el (shell-dynamic-complete-functions)
23849 (comint-dynamic-complete-functions): Declare.
23850
23851 * net/network-stream.el (gnutls-negotiate):
23852 * simple.el (tabulated-list-print): Fix declarations.
23853
23854 * progmodes/gud.el (syntax-symbol, syntax-point):
23855 Remove unnecessary and incorrect declarations.
23856
23857 * emacs-lisp/check-declare.el (check-declare-scan):
23858 Handle byte-compile-initial-macro-environment in bytecomp.el.
23859
23860 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23861
23862 Fix earlier half-done eieio-defmethod change (bug#8338).
23863 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23864 Streamline and change calling convention.
23865 (defmethod): Adjust accordingly and simplify.
23866 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23867 new eieio--defmethod.
23868 (slot-boundp): Minor CSE simplification.
23869
23870 2011-05-05 Milan Zamazal <pdm@zamazal.org>
23871
23872 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23873 (glasses-make-readable): Use glasses-separate-capital-groups.
23874
23875 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
23876
23877 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23878 (warning-series): Doc fix.
23879 (display-warning): Don't try to create the buffer if we just found it.
23880
23881 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
23882
23883 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23884 (autoload-find-generated-file): New function.
23885 (generate-file-autoloads): Bind generated-autoload-file to
23886 buffer-file-name.
23887 (update-file-autoloads, update-directory-autoloads):
23888 Use autoload-find-generated-file. If called interactively, prompt for
23889 output file (Bug#7989).
23890 (batch-update-autoloads): Doc fix.
23891
23892 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
23893
23894 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23895
23896 2011-05-04 Glenn Morris <rgm@gnu.org>
23897
23898 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23899 function, so it follows changes in calendar-date-style.
23900 (diary-fancy-date-matcher): New function.
23901 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23902 (diary-fancy-font-lock-fontify-region-function):
23903 Use diary-fancy-date-pattern as a function.
23904
23905 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23906 non-numbers for `year' etc pseudo-variables. (Bug#8583)
23907
23908 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
23909
23910 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23911 instead of positional arguments. Allow :keylist and :crlfiles
23912 arguments.
23913 (open-gnutls-stream): Call it.
23914
23915 * net/network-stream.el (network-stream-open-starttls): Adjust to
23916 call `gnutls-negotiate' with :process and :hostname arguments.
23917
23918 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
23919
23920 * minibuffer.el (completion--message): New function.
23921 (completion--do-completion, minibuffer-complete)
23922 (minibuffer-force-complete, minibuffer-complete-word): Use it.
23923 (completion--do-completion): Don't ignore completion-auto-help when in
23924 icomplete-mode.
23925
23926 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23927 internal encoding (e.g. tibetan zero is not whitespace).
23928 (global-whitespace-mode): Prefer save-current-buffer.
23929 (whitespace-trailing-regexp): Remove useless save-match-data.
23930 (whitespace-empty-at-bob-regexp): Minor simplification.
23931
23932 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
23933
23934 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23935
23936 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
23937
23938 * textmodes/ispell.el (ispell-add-per-file-word-list):
23939 Use `concat' to create string for insertion.
23940
23941 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23942
23943 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23944 Avoid open-line which runs post-self-insert-hook.
23945 (bibtex-fill-entry): Remove unused `end' var.
23946
23947 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
23948
23949 * textmodes/ispell.el (ispell-add-per-file-word-list):
23950 Protect against `nil' value of `comment-start' (Bug#8579).
23951
23952 2011-05-03 Leo Liu <sdl.web@gmail.com>
23953
23954 * isearch.el (isearch-yank-pop): New command.
23955 (isearch-mode-map): Bind it to `M-y'.
23956 (isearch-forward): Mention it.
23957
23958 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23959
23960 * simple.el (minibuffer-complete-shell-command): Remove.
23961 (minibuffer-local-shell-command-map): Use completion-at-point.
23962 (read-shell-command): Setup completion vars here instead.
23963 (read-expression-map): Bind TAB to symbol completion.
23964
23965 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23966 error directly rather via storing it into `results'.
23967
23968 2011-05-02 Leo Liu <sdl.web@gmail.com>
23969
23970 * vc/diff.el: Fix description.
23971
23972 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
23973
23974 * server.el (server-eval-at): New function.
23975
23976 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
23977
23978 * net/network-stream.el (open-network-stream): Take a :nowait
23979 parameter and pass it on to `make-network-process'.
23980 (network-stream-open-plain): Ditto.
23981
23982 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
23983
23984 * faces.el (face-spec-set-match-display): Don't match toolkit
23985 options on terminal frames.
23986
23987 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
23988
23989 * progmodes/pascal.el: Use lexical binding.
23990 (pascal-mode-map): Remove author preferences.
23991
23992 * pcomplete.el (pcomplete-std-complete): Don't abuse
23993 completion-at-point.
23994
23995 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23996
23997 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23998 removing code that has been dead since 1991 or so.
23999
24000 * startup.el (command-line): When warning about "_emacs", use a
24001 delayed warning to allow the user to filter it out.
24002
24003 2011-04-28 Deniz Dogan <deniz@dogan.se>
24004
24005 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
24006 user has not joined.
24007
24008 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
24009
24010 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
24011 aren't any completions at point.
24012
24013 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
24014
24015 * subr.el (display-delayed-warnings): New function.
24016 (delayed-warnings-hook): New variable.
24017
24018 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
24019
24020 * minibuffer.el (completion-at-point, completion-help-at-point):
24021 Don't presume that a given completion-at-point-function will always
24022 use the same calling convention.
24023
24024 * pcomplete.el (pcomplete-completions-at-point):
24025 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
24026 pcomplete-seen is non-nil.
24027 (pcomplete-comint-setup): Also recognize the new comint/shell
24028 completion functions.
24029 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
24030 pcomplete-seen is non-nil.
24031
24032 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
24033
24034 * calendar/icalendar.el (diary-lib): Add require statement.
24035 (icalendar--create-uid): Read out a uid from a text-property on
24036 the first character in the entry. This allows for code to add its
24037 own uid to the entry.
24038 (icalendar--convert-float-to-ical): Add export of
24039 `diary-float'-entries save for those with the optional DAY
24040 argument.
24041
24042 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
24043
24044 * subr.el (shell-quote-argument): Use alternate escaping strategy
24045 when we spot a variable reference in a string.
24046
24047 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
24048
24049 * cus-start.el (all): Define customization for debug-on-event.
24050
24051 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
24052
24053 * subr.el (shell-quote-argument): Escape correctly under Windows.
24054
24055 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
24056
24057 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
24058
24059 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
24060
24061 * net/tramp.el (tramp-process-actions): Add POS argument.
24062 Delete region between POS and (pos).
24063
24064 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
24065 Use `nil' position in `tramp-process-actions' call.
24066 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
24067
24068 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
24069 position in `tramp-process-actions' call.
24070
24071 * net/trampver.el: Update release number.
24072
24073 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
24074
24075 * custom.el (defcustom): Obey lexical-binding.
24076
24077 Fix octave-inf completion problems reported by Alexander Klimov.
24078 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
24079 Inherit from octave-mode-syntax-table.
24080 (inferior-octave-mode): Set info-lookup-mode.
24081 (inferior-octave-completion-at-point): New function.
24082 (inferior-octave-complete): Use it and completion-in-region.
24083 (inferior-octave-dynamic-complete-functions): Use it as well, and use
24084 comint-filename-completion.
24085 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
24086 symbol elements which shouldn't be word elements.
24087 (octave-font-lock-keywords, octave-beginning-of-defun)
24088 (octave-function-header-regexp): Adjust regexps accordingly.
24089 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
24090
24091 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
24092
24093 * net/gnutls.el (gnutls-errorp): Declare before first use.
24094
24095 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
24096
24097 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
24098 verify-error, and verify-hostname-error parameters. Check whether
24099 default trustfile exists before going to use it. Add missing
24100 argument to gnutls-message-maybe call. Return value.
24101 Reported by Claudio Bley <claudio.bley@gmail.com>.
24102 (open-gnutls-stream): Add usage example.
24103
24104 * net/network-stream.el (network-stream-open-starttls): Give host
24105 parameter to `gnutls-negotiate'.
24106 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
24107 * subr.el (shell-quote-argument): Escape correctly under Windows.
24108
24109 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
24110
24111 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
24112 Use correct match group (bug#8438).
24113
24114 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
24115
24116 * emacs-lisp/package.el (package-built-in-p): Fix typo.
24117 (package-menu--generate): New arg specifying packages to show.
24118 (package-menu-refresh, package-menu-execute, list-packages):
24119 Callers changed.
24120 (package-show-package-list): New function, replacing deleted
24121 package--list-packages (renamed because it is non-internal).
24122
24123 * finder.el (finder-list-matches): Use package-show-package-list
24124 instead of deleted package--list-packages.
24125
24126 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
24127 Based on a previous implementation by Juanma Barranquero (Bug#8366).
24128 (vc-annotate-mode-map): Bind it to RET.
24129
24130 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
24131
24132 * progmodes/etags.el (next-file): Don't use set-buffer to change
24133 buffers (Bug#8478).
24134
24135 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
24136
24137 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
24138
24139 * apropos.el (apropos-label-face): Avoid variable-pitch face.
24140 (apropos-accumulator): Doc fix.
24141 (apropos-function, apropos-macro, apropos-command)
24142 (apropos-variable, apropos-face, apropos-group, apropos-widget)
24143 (apropos-plist): Add face property.
24144 (apropos-symbols-internal): Fix indentation.
24145 (apropos-print): Simplify help, and recognize apropos-multi-type.
24146 (apropos-print-doc): Use button-type-get to extract the button's
24147 face property. Fill docstring (Bug#8352).
24148
24149 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
24150
24151 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
24152
24153 * play/mpuz.el (mpuz-silent): Doc fix.
24154 (mpuz-mode-map): Use mapc.
24155 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
24156 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
24157 Fix typos in docstrings.
24158
24159 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
24160 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
24161
24162 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
24163
24164 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
24165
24166 * minibuffer.el (completion--do-completion): Avoid the "Next char
24167 not unique" prompt if icomplete-mode is enabled (Bug#5849).
24168
24169 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
24170 mouse-2 into unread-command-events, it is interpreted correctly.
24171
24172 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
24173 (image-toggle-display): Doc fix.
24174
24175 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
24176
24177 * textmodes/page.el (what-page): Use line-number-at-pos to
24178 calculate line number (Bug#6825).
24179
24180 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
24181
24182 * eshell/esh-mode.el (find-tag-interactive): Declare function.
24183 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
24184 Pass argument NO-DEFAULT to `find-tag-interactive'.
24185
24186 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
24187
24188 Lexical-binding cleanup.
24189
24190 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
24191 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
24192 * progmodes/ada-prj.el (ada-prj-initialize-values)
24193 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
24194 (ada-prj-show-value):
24195 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
24196 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
24197 (antlr-invalidate-context-cache, antlr-options-menu-filter)
24198 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
24199 * progmodes/bug-reference.el (bug-reference-push-button):
24200 * progmodes/fortran.el (fortran-line-length):
24201 * progmodes/glasses.el (glasses-change):
24202 * progmodes/octave-mod.el (octave-fill-paragraph):
24203 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
24204 (python-pdbtrack-grub-for-buffer, python-sentinel):
24205 * progmodes/sql.el (sql-save-connection):
24206 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
24207 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
24208 Mark unused parameters.
24209
24210 * progmodes/compile.el (compilation--flush-directory-cache)
24211 (compilation--flush-parse, compile-internal): Mark unused parameters.
24212 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
24213 (compilation-next-error-function): Remove unused variable `timestamp'.
24214
24215 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
24216 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
24217
24218 * progmodes/dcl-mode.el (dcl-end-of-command):
24219 Remove unused variable `start'.
24220 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
24221 (dcl-option-value-basic, dcl-option-value-offset)
24222 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
24223 Mark unused parameters.
24224 (dcl-save-local-variable): Remove unused variable `val'.
24225 (mode): Declare.
24226
24227 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
24228 Mark unused parameters.
24229 (delphi-ignore-changes): Move before first use.
24230 (delphi-charset-token-at): Remove unused variable `start'.
24231 (delphi-else-start): Remove unused variable `if-count'.
24232 (delphi-comment-block-start, delphi-comment-block-end):
24233 Remove unused variable `kind'.
24234 (delphi-indent-line): Remove unused variable `new-point'.
24235
24236 * progmodes/ebrowse.el (ebrowse-files-list)
24237 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
24238 Mark unused parameters. Don't quote `lambda'.
24239 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
24240 Don't quote `lambda'.
24241 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
24242 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
24243 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
24244 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
24245 Use `ignore-errors'.
24246 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
24247 (ebrowse-view/find-file-and-search-pattern)
24248 (ebrowse-view/find-member-declaration/definition):
24249 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
24250 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
24251 Rename parameter PREFIX-ARG to PREFIX.
24252 (ebrowse-tags-read-name): Remove unused variables `start' and
24253 `member-info'.
24254 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
24255 to `tags-file'.
24256
24257 * progmodes/etags.el (local-find-tag-hook): Declare.
24258 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
24259 Mark unused parameters.
24260
24261 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
24262 (executable-interpret): Mark unused parameter.
24263
24264 * progmodes/flymake.el (flymake-process-sentinel)
24265 (flymake-after-change-function)
24266 (flymake-create-temp-with-folder-structure)
24267 (flymake-get-include-dirs-dot): Mark unused parameters.
24268 (flymake-safe-delete-directory): Remove unused variable `err'.
24269
24270 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
24271 (speedbar-timer-fn, speedbar-line-text)
24272 (speedbar-change-expand-button-char, speedbar-delete-subblock)
24273 (speedbar-center-buffer-smartly): Declare functions.
24274 (gdb-find-watch-expression): Remove unused variable `array'.
24275 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
24276 (gdb-starting): Mark unused parameters.
24277 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
24278 (gdb-table-string): Remove unused variable `res'.
24279 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
24280 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
24281 (gdb-display-buffer): Remove unused variable `cur-size'.
24282
24283 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
24284 allow lexical-binding compilation.
24285 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
24286 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
24287 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
24288 Mark unused parameters.
24289 (gud-gdb-marker-filter): Remove unused variable `match'.
24290 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
24291 lambda expressions and funcall them, instead of using `fset'.
24292
24293 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
24294 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
24295
24296 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
24297 variable `header-beg'; use `let'.
24298
24299 * progmodes/icon.el (indent-icon-exp): Remove unused variables
24300 `restart', `last-sexp' and `at-do'.
24301
24302 * progmodes/js.el (js--debug): Mark unused parameter.
24303 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
24304 (js--splice-into-items): Remove unused variable `item'.
24305 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
24306
24307 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
24308 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
24309 (makefile-complete): Remove unused variable `try'.
24310 (makefile-fill-paragraph, makefile-match-function-end):
24311 Mark unused parameters.
24312
24313 * progmodes/octave-inf.el (inferior-octave-complete):
24314 Remove unused variable `proc'.
24315 (inferior-octave-output-digest): Mark unused parameter.
24316
24317 * progmodes/perl-mode.el (perl-calculate-indent):
24318 Remove unused variable `err'.
24319
24320 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
24321 (prolog-indent-line): Mark unused parameters.
24322 (prolog-indent-line): Remove unused variable `beg'.
24323
24324 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
24325 (reporter-dont-compact-list): Declare.
24326
24327 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
24328 Remove unused variable `char'.
24329 (sh-debug): Mark unused parameter.
24330 (sh-get-indent-info): Remove unused variable `start'.
24331 (sh-calculate-indent): Remove unused variable `var'.
24332
24333 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
24334 (simula-electric-keyword): Remove unused variable `null'.
24335 (simula-search-backward, simula-search-forward): Remove unused
24336 variables `begin' and `end'.
24337
24338 * progmodes/vera-mode.el (vera-guess-basic-syntax):
24339 Remove unused variable `pos'.
24340 (vera-electric-tab, vera-comment-uncomment-region):
24341 Mark unused parameters.
24342 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
24343
24344 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
24345
24346 * emacs-lisp/package.el (package--builtins, package-alist)
24347 (package-load-descriptor, package-built-in-p, package-activate)
24348 (define-package, package-installed-p)
24349 (package-compute-transaction, package-buffer-info)
24350 (package--push): Doc fix. Distinguish more clearly between
24351 version strings and version lists.
24352
24353 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
24354
24355 Lexical-binding cleanup.
24356
24357 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
24358 (5x5-make-mutate-best):
24359 * play/fortune.el (fortune-in-buffer):
24360 * play/gomoku.el (gomoku-init-display):
24361 * play/solitaire.el (solitaire, solitaire-do-check):
24362 * play/tetris.el (tetris-default-update-speed-function):
24363 Mark unused parameters.
24364
24365 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
24366 (bubbles--shift): Remove unused variable `char-org'.
24367 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
24368 (bubbles--show-images): Remove unused variable `char'.
24369
24370 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
24371 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
24372 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
24373 (decipher-analyze-buffer): Use ?\s.
24374 (decipher-make-checkpoint): Remove unused variable `mapping'.
24375
24376 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
24377
24378 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
24379 Remove unused variable `result'; use `let'.
24380
24381 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
24382 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
24383 (gametree-children-shown-p, gametree-compute-reduced-score):
24384 Use `ignore-errors'.
24385
24386 * play/handwrite.el (ps-lpr-switches): Declare.
24387 (handwrite): Remove unused variables `pmin' and `lastp'.
24388
24389 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
24390
24391 * play/landmark.el (landmark-init-display)
24392 (landmark-update-naught-weights): Mark unused parameters.
24393 (landmark-y): Remove unused variable `noise'. Simplify.
24394 (landmark-human-plays): Remove unused variable `score'.
24395
24396 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
24397 (mpuz-try-proposal): Remove unused variable `game'.
24398
24399 * play/zone.el (life-patterns): Declare.
24400
24401 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
24402
24403 * vc/vc.el (ediff-vc-internal): Declare function.
24404
24405 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24406
24407 * shell.el: Use lexical-binding and std completion UI.
24408 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
24409 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
24410 comint-preoutput-filter-functions rather than on
24411 comint-output-filter-functions.
24412 (shell-command-completion, shell--command-completion-data)
24413 (shell-filename-completion, shell-environment-variable-completion)
24414 (shell-c-a-p-replace-by-expanded-directory): New functions.
24415 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
24416 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
24417 (shell-dynamic-complete-environment-variable): Use them.
24418 (shell-dynamic-complete-as-environment-variable)
24419 (shell-dynamic-complete-as-command): Remove.
24420 (shell-match-partial-variable): Match past point.
24421 * comint.el: Clean up use of completion-at-point-functions.
24422 (comint-completion-at-point): New function.
24423 (comint-mode): Use it completion-at-point-functions.
24424 (comint-dynamic-complete): Make it obsolete.
24425 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
24426 (comint-c-a-p-replace-by-expanded-history): New function.
24427 (comint-dynamic-complete-functions)
24428 (comint-replace-by-expanded-history): Use it.
24429 * minibuffer.el (completion-table-with-terminator): Allow dynamic
24430 termination strings. Try harder to avoid second try-completion.
24431 (completion-in-region-mode-map): Disable bindings that don't work yet.
24432
24433 * comint.el: Use lexical-binding. Require CL.
24434 (comint-dynamic-complete-functions): Use comint-filename-completion.
24435 (comint-completion-addsuffix): Tweak custom type.
24436 (comint-filename-completion, comint--common-suffix)
24437 (comint--common-quoted-suffix, comint--table-subvert)
24438 (comint--complete-file-name-data): New functions.
24439 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
24440 (comint-dynamic-list-filename-completions): Use them.
24441 (comint-dynamic-simple-complete): Make obsolete.
24442
24443 * minibuffer.el (completion-in-region-mode):
24444 Keep completion-in-region-mode--predicate global.
24445 (completion-in-region--postch):
24446 Assume completion-in-region-mode--predicate is not null.
24447
24448 * progmodes/flymake.el (flymake-start-syntax-check-process):
24449 Obey `dir'. Simplify.
24450
24451 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
24452 we're in VC after all.
24453
24454 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
24455
24456 * vc/vc.el (vc-diff-build-argument-list-internal)
24457 (vc-version-ediff, vc-ediff): New commands.
24458 (vc-version-diff): Use vc-diff-build-argument-list-internal.
24459
24460 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24461
24462 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
24463 add sanity check.
24464
24465 * obsolete/erc-hecomplete.el: Make obsolete.
24466 * obsolete/: Standardize obsolescence info in the header.
24467
24468 2011-04-20 Glenn Morris <rgm@gnu.org>
24469
24470 * calendar/solar.el (solar-horizontal-coordinates):
24471 Use the longitude argument rather than `calendar-longitude'.
24472 (solar-date-next-longitude): Remove unused locals.
24473
24474 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24475
24476 * whitespace.el: New version 13.2.1.
24477
24478 2011-04-20 felix <EmacsWiki> (tiny change)
24479
24480 * whitespace.el (global-whitespace-mode): Keep highlight when
24481 switching between major modes on a file.
24482
24483 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24484
24485 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24486 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24487 multi-line comments as well.
24488
24489 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
24490
24491 Lexical-binding cleanup.
24492
24493 * arc-mode.el (archive-mode-revert):
24494 * cmuscheme.el (scheme-interactively-start-process):
24495 * custom.el (custom-initialize-delay):
24496 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24497 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24498 * emacs-lock.el (emacs-lock-clear-sentinel):
24499 * ezimage.el (defezimage):
24500 * follow.el (follow-avoid-tail-recenter):
24501 * fringe.el (set-fringe-mode-1):
24502 * generic-x.el (bat-generic-mode-compile):
24503 * help-mode.el (help-info-variable, help-do-xref)
24504 (help-mode-revert-buffer):
24505 * help.el (view-emacs-todo):
24506 * iswitchb.el (iswitchb-completion-help):
24507 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24508 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24509 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24510 * locate.el (locate-update):
24511 * longlines.el (longlines-encode-region)
24512 (longlines-after-change-function):
24513 * outline.el (outline-isearch-open-invisible):
24514 * ps-def.el (declare-function, charset-dimension, char-width)
24515 (encode-char):
24516 * ps-mule.el (ps-mule-plot-string):
24517 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24518 (recentf-edit-list-select, recentf-edit-list-validate)
24519 (recentf-open-files-action):
24520 * rect.el (delete-whitespace-rectangle-line)
24521 (rectangle-number-line-callback):
24522 * register.el (window-configuration-to-register)
24523 (frame-configuration-to-register):
24524 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24525 * select.el (xselect-convert-to-string, xselect-convert-to-length)
24526 (xselect-convert-to-targets, xselect-convert-to-delete)
24527 (xselect-convert-to-filename, xselect-convert-to-charpos)
24528 (xselect-convert-to-lineno, xselect-convert-to-colno)
24529 (xselect-convert-to-os, xselect-convert-to-host)
24530 (xselect-convert-to-user, xselect-convert-to-class)
24531 (xselect-convert-to-name, xselect-convert-to-integer)
24532 (xselect-convert-to-atom, xselect-convert-to-identity):
24533 * subr.el (declare, ignore, process-kill-without-query)
24534 (text-clone-maintain):
24535 * terminal.el (te-get-char, te-tic-sentinel):
24536 * tool-bar.el (tool-bar-make-keymap):
24537 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24538 * type-break.el (type-break-mode, type-break-noninteractive-query):
24539 * view.el (View-back-to-mark):
24540 * wid-browse.el (widget-browse-action, widget-browse-widget)
24541 (widget-browse-widgets, widget-browse-sexp):
24542 * widget.el (define-widget-keywords):
24543 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24544 Mark unused parameters.
24545
24546 * align.el (align-adjust-col-for-rule): Mark unused parameter.
24547 (align-areas): Remove unused variable `look'.
24548 (align-region): Remove unused variables `real-end' and `pos-list'.
24549
24550 * apropos.el (apropos-score-doc): Remove unused variable `i'.
24551
24552 * bindings.el (mode-line-modified, mode-line-remote):
24553 Mark unused parameters.
24554 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24555
24556 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24557 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24558
24559 * comint.el (comint-history-isearch-pop-state)
24560 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24561 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24562 (comint-substitute-in-file-name): Doc fix.
24563
24564 * completion.el (cmpl-statistics-block): Mark unused parameter.
24565 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24566 (save-completions-to-file, load-completions-from-file):
24567 Remove unused local variable `e'.
24568
24569 * composite.el (compose-chars): Remove unused variable `len'.
24570 (lgstring-insert-glyph): Remove unused variable `g'.
24571 (compose-glyph-string): Remove unused variables `ascent',
24572 `descent', `lbearing' and `rbearing'.
24573 (compose-glyph-string-relative): Remove unused variables
24574 `lbearing', `rbearing' and `wadjust'.
24575 (compose-gstring-for-graphic): Remove unused variables `header',
24576 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
24577 (compose-gstring-for-terminal): Remove unused variables `header'
24578 and `nchars'. Use `let', not `let*'.
24579
24580 * cus-edit.el (Custom-set, Custom-save, custom-reset)
24581 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24582 (Custom-buffer-done, custom-buffer-create-internal)
24583 (custom-browse-visibility-action, custom-browse-group-tag-action)
24584 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24585 (widget-magic-mouse-down-action, custom-toggle-parent)
24586 (custom-add-parent-links, custom-toggle-hide-variable)
24587 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24588 (custom-toggle-hide-face, face, hook, custom-group-link-action)
24589 (custom-face-menu-create, custom-variable-menu-create, get)
24590 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24591 (custom-reset-standard-save-and-update): Remove unused variable `value'.
24592 (customize-apropos): Remove unused variable `tests'.
24593 (custom-group-value-create): Remove unused variable `hidden-p'.
24594 (sort-fold-case): Declare.
24595
24596 * cus-theme.el (custom-reset-standard-faces-list)
24597 (custom-reset-standard-variables-list): Declare.
24598 (customize-create-theme, custom-theme-revert, custom-theme-write)
24599 (custom-theme-choose-mode, customize-themes, custom-theme-save):
24600 Mark unused parameters.
24601
24602 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24603
24604 * delim-col.el (delimit-columns-max): Move defvar before first use.
24605
24606 * descr-text.el (describe-char-categories): Don't quote `lambda'.
24607 (describe-char): Don't quote `lambda'. Mark unused parameter.
24608
24609 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24610 (auto-insert): Declare.
24611 (desktop-restore-file-buffer): Rename desktop-* parameters;
24612 mark unused ones.
24613 (desktop-create-buffer): Rename desktop-* parameters and bind them.
24614 (desktop-buffer): Rename desktop-* parameters.
24615
24616 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24617 (dframe-reposition-frame-xemacs, dframe-help-echo)
24618 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24619 Mark unused parameters.
24620
24621 * dired-aux.el (backup-extract-version-start, overwrite-query)
24622 (overwrite-backup-query, rename-regexp-query)
24623 (rename-non-directory-query): Declare.
24624 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24625 (dired-add-entry): Remove unused variable `orig-file-name'.
24626 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24627 Use parameter PRESERVE-TIME instead of accessing dynamic variable
24628 `dired-copy-preserve-time' directly.
24629 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24630 (dired-insert-subdir-newpos): Rename unused variable `pos'.
24631
24632 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24633 (dired-virtual-revert, dired-make-relative-symlink):
24634 Mark unused parameters.
24635 (manual-program): Declare.
24636 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24637 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24638 wrapped in `with-no-warnings' to avoid replacing one warning by another.
24639
24640 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24641
24642 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24643
24644 * echistory.el (electric-history-in-progress, Helper-return-blurb):
24645 Declare.
24646
24647 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24648
24649 * electric.el (Electric-command-loop): Rename parameter
24650 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24651
24652 * expand.el (expand-in-literal): Remove unused variable `here'.
24653
24654 * facemenu.el (facemenu-add-new-color):
24655 Remove unused variable `docstring'.
24656
24657 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24658 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24659 (face-attr-construct): Mark unused parameter. Doc fix.
24660 (read-color): Remove unused variable `hex-string'.
24661
24662 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24663 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24664 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24665 (display-buffer-other-frame): Remove unused variable `old-window'.
24666 (kill-buffer-hook): Declare.
24667 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24668 Mark unused parameters.
24669 (after-find-file): Pass 1 to `auto-save-mode', not t.
24670
24671 * files-x.el (auto-insert): Declare.
24672 (modify-file-local-variable-prop-line): Remove unused variable `val'.
24673
24674 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24675 variable `buf'. Mark unused parameter.
24676 (find-lisp-insert-directory): Mark unused parameter.
24677
24678 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24679 (format-encode-region): Remove unused variables `cur-buf' and `result'.
24680 (format-common-tail): Remove, unused.
24681 (format-deannotate-region): Remove unused variable `loc'.
24682 (format-annotate-region): Remove unused variable `p'.
24683 (format-annotate-single-property-change): Remove unused variables
24684 `default' and `tail'.
24685
24686 * forms.el (read-file-filter): Declare.
24687 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24688
24689 * frame.el (frame-creation-function-alist): Mark unused parameter.
24690 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24691
24692 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24693 Remove unused parameters.
24694 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24695 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24696
24697 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24698 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24699 (hfy-prepare-tag-map): Mark unused parameters.
24700 (htmlfontify-buffer): Use `called-interactively-p'.
24701
24702 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24703 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24704 (ibuffer-do-occur): Mark unused parameters.
24705 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24706 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24707
24708 * ibuffer.el: Don't quote `lambda'.
24709 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24710 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24711 Mark unused parameters.
24712
24713 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24714 (ido-completing-read): Mark unused parameters.
24715 (ido-copy-current-word): Mark unused parameters;
24716 remove unused variable `name'.
24717 (ido-sort-merged-list): Remove unused parameter `dirs'.
24718
24719 * ielm.el (ielm-input-sender): Mark unused parameter.
24720 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24721 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24722 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24723 `ielm-string' as a dynamic variable accessible from the IELM prompt.
24724 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
24725
24726 * image-dired.el (image-dired-display-thumbs): Remove unused
24727 variables `curr-file' and `count'.
24728 (image-dired-remove-tag): Remove unused variable `start'.
24729 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24730 variable `curr-file'
24731 (image-dired-rotate-original): Remove unused variable `temp-file'.
24732 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24733 Remove unused variable `file'.
24734 (image-dired-gallery-generate): Remove unused variable `curr'.
24735 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24736
24737 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24738
24739 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24740
24741 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24742
24743 * isearch.el (minibuffer-history-symbol): Declare.
24744 (isearch-edit-string): Remove unused variable `err'.
24745 (isearch-message-prefix, isearch-message-suffix):
24746 Mark unused parameters.
24747
24748 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24749
24750 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24751
24752 * makesum.el (double-column): Remove unused variable `cnt'.
24753
24754 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24755 (ido-ignore-item-temp-list): Declare.
24756
24757 * mouse-drag.el (mouse-drag-throw): Remove unused variables
24758 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24759 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24760 (mouse-drag-drag): Remove unused variables `mouse-delta' and
24761 `mouse-col-delta'.
24762
24763 * mouse-sel.el (mouse-extend-internal):
24764 Remove unused variable `orig-window-frame'.
24765
24766 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24767 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24768 Move declarations before first use.
24769 (pcomplete-opt): Mark unused parameters; doc fix.
24770
24771 * proced.el (proced-revert): Mark unused parameter.
24772 (proced-send-signal): Remove unused variable `err'.
24773
24774 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24775 Rename parameter PREFIX-ARG to ARG.
24776 (ps-basic-plot-string, ps-basic-plot-whitespace):
24777 Mark unused parameters.
24778
24779 * replace.el (replace-count): Define.
24780 (occur-revert-function): Mark unused parameters.
24781 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24782 (isearch-case-fold-search, isearch-string): Declare.
24783 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24784 bind `case-fold-search'. Remove unused variables `beg' and `end',
24785 and simplify.
24786 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24787 COUNT and bind `replace-count'.
24788 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24789 to COUNT.
24790
24791 * savehist.el (print-readably, print-string-length): Declare.
24792
24793 * shadowfile.el (shadow-expand-cluster-in-file-name):
24794 Remove unused variable `cluster'.
24795 (shadow-copy-file): Remove unused variable `i'.
24796 (shadow-noquery, shadow-clusters, shadow-site-cluster)
24797 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24798 (shadow-define-literal-group, shadow-define-regexp-group)
24799 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24800
24801 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24802 (shell): Use `called-interactively-p'.
24803 (shell-directory-tracker): Remove unused variable `chdir-failure'.
24804
24805 * simple.el (compilation-context-lines, comint-file-name-quote-list)
24806 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24807 (delete-backward-char): Remove unused variable `ocol'.
24808 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24809 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24810 (event-apply-hyper-modifier, event-apply-shift-modifier)
24811 (event-apply-control-modifier, event-apply-meta-modifier):
24812 Mark unused parameters.
24813 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24814 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24815
24816 * speedbar.el (speedbar-ignored-directory-expressions)
24817 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24818 (speedbar-find-file, speedbar-dir-follow)
24819 (speedbar-directory-buttons-follow, speedbar-tag-find)
24820 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24821 (speedbar-buffers-line-directory, speedbar-buffer-click):
24822 Mark unused parameters.
24823 (speedbar-tag-file): Remove unused variable `mode'.
24824 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24825
24826 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24827
24828 * talk.el (talk): Remove unused variable `display'.
24829
24830 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24831 (tar-write-region-annotate): Mark unused parameter.
24832
24833 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24834 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24835 Declare them, wrapped in `with-no-warnings' to avoid replacing one
24836 warning by another.
24837
24838 * time-stamp.el (time-stamp-string-preprocess):
24839 Remove unused variable `require-padding'.
24840
24841 * tree-widget.el (widget-glyph-enable): Declare.
24842 (tree-widget-action): Mark unused parameter.
24843
24844 * w32-fns.el (x-get-selection): Mark unused parameter.
24845 (autoload-make-program, generated-autoload-file): Declare.
24846
24847 * wdired.el (wdired-revert): Mark unused parameters.
24848 (wdired-xcase-word): Remove unused variable `err'.
24849
24850 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24851 (whitespace-help-scroll): Remove unused variable `data-help'.
24852
24853 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24854 (widget-image-insert, widget-after-change, default)
24855 (widget-default-format-handler, widget-default-notify)
24856 (widget-default-prompt-value, widget-info-link-action)
24857 (widget-url-link-action, widget-function-link-action)
24858 (widget-variable-link-action, widget-file-link-action)
24859 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24860 (widget-field-prompt-internal, widget-field-action, widget-field-match)
24861 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24862 (widget-insert-button-action, widget-delete-button-action, visibility)
24863 (widget-documentation-link-action, widget-documentation-string-action)
24864 (widget-const-prompt-value, widget-regexp-match, symbol)
24865 (widget-coding-system-prompt-value)
24866 (widget-key-sequence-value-to-external, sexp)
24867 (widget-sexp-value-to-internal, character, vector, cons)
24868 (widget-choice-prompt-value, widget-boolean-prompt-value)
24869 (widget-color--choose-action): Mark unused parameters.
24870 (widget-item-match-inline, widget-choice-match-inline)
24871 (widget-checklist-match, widget-checklist-match-inline)
24872 (widget-group-match): Rename parameter VALUES to VALS.
24873 (widget-field-value-set): Remove unused variable `size'.
24874 (widget-color-action): Remove unused variables `value' and `start'.
24875
24876 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24877 variable `dir'. Doc fix.
24878 (windmove-find-other-window): Don't pass it.
24879
24880 * window.el (count-windows): Mark unused parameter.
24881 (bw-adjust-window): Remove unused variable `err'.
24882
24883 * woman.el (woman-file-name): Remove unused variable `default'.
24884 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24885 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24886 (global-font-lock-mode): Declare.
24887 (woman-decode-region): Mark unused parameter.
24888 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24889
24890 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24891 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24892 (x-dnd-handle-moz-url): Remove unused variable `title'.
24893 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24894
24895 * xml.el (xml-parse-tag, xml-parse-attlist):
24896 Remove unused variable `pos'.
24897
24898 2011-04-19 Glenn Morris <rgm@gnu.org>
24899
24900 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24901 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24902 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24903 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24904 * calendar/cal-html.el (cal-html-insert-minical):
24905 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24906 (calendar-mark-date-pattern):
24907 Prefix "unused" locals.
24908
24909 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24910 optional argument `style'.
24911
24912 * calendar/appt.el (appt-make-list):
24913 * calendar/cal-china.el (calendar-chinese-date-string):
24914 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24915 (diary-hebrew-yahrzeit):
24916 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24917 * calendar/calendar.el (calendar-generate-window):
24918 * calendar/time-date.el (time-to-days):
24919 Remove unused local variables.
24920
24921 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
24922
24923 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24924 glyphless-char-display table.
24925 (tabulated-list-glyphless-char-display): New var.
24926
24927 2011-04-18 Sam Steingold <sds@gnu.org>
24928
24929 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24930 to acknowledgments.
24931
24932 2011-04-17 Glenn Morris <rgm@gnu.org>
24933
24934 * calendar/diary-lib.el (diary-sexp-entry):
24935 * calendar/holidays.el (holiday-sexp):
24936 Set debug-on-error rather than the removed stack-trace-on-error.
24937
24938 2011-04-16 Glenn Morris <rgm@gnu.org>
24939
24940 * progmodes/f90.el: Use lexical-binding.
24941 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24942
24943 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24944
24945 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24946 (mail-mode): Setup mailalias completion here instead.
24947 * mail/mailalias.el: Use lexical-binding.
24948 (pattern, mailalias-done): Declare dynamic.
24949 (mail-completion-at-point-function): New function, from mail-complete.
24950 (mail-complete): Use it.
24951 (mail-completion-expand): New function.
24952 (mail-get-names): Use it.
24953 (mail-directory, mail-directory-process, mail-directory-stream):
24954 Don't use `pattern' for lexically bound arg.
24955
24956 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24957
24958 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24959 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24960 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24961
24962 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24963 (byte-save-window-excursion, byte-temp-output-buffer-setup)
24964 (byte-interactive-p): Define them again, for use when inlining
24965 old code.
24966
24967 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
24968
24969 * loadup.el: Use `string-to-number', not `string-to-int'.
24970
24971 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24972
24973 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24974 gud-gdb-complete-command.
24975 (gud-gdb-completions): New function, from gud-gdb-complete-command.
24976 (gud-gdb-completion-at-point): New function.
24977 (gud-gdb-completions): Remove.
24978
24979 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
24980
24981 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24982 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
24983 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24984 whether `executable-find' is bound.
24985
24986 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24987
24988 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
24989
24990 * minibuffer.el (completion-in-region-mode-predicate)
24991 (completion-in-region-mode--predicate): New vars.
24992 (completion-in-region, completion-in-region--postch)
24993 (completion-in-region-mode): Use them.
24994 (completion--capf-wrapper): Also return the hook function.
24995 (completion-at-point, completion-help-at-point):
24996 Adjust and provide a predicate.
24997
24998 Preserve arg names for advice of subr and lexical functions (bug#8457).
24999 * help-fns.el (help-function-arglist): Consolidate the subr and
25000 new-byte-code cases. Add argument `preserve-names' to extract names
25001 from the docstring when needed.
25002 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
25003 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
25004 (ad-arglist): Use help-function-arglist's new arg.
25005 (ad-definition-type): Use cond.
25006
25007 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
25008
25009 * autorevert.el (auto-revert-handler):
25010 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
25011 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
25012 Don't quote lambda.
25013
25014 * image-mode.el (image-transform-set-scale):
25015 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
25016
25017 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
25018
25019 * net/network-stream.el (network-stream-open-starttls): Only do
25020 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
25021 Upgrades via gnutls-cli are too slow to be done opportunistically.
25022
25023 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
25024
25025 * dframe.el (dframe-current-frame): Remove spurious quote.
25026
25027 2011-04-12 Glenn Morris <rgm@gnu.org>
25028
25029 * calendar/cal-tex.el (cal-tex-end-document):
25030 Try to automatically use latin1 input if needed.
25031
25032 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
25033 Don't try to cons a mark onto an empty element.
25034
25035 2011-04-11 Leo Liu <sdl.web@gmail.com>
25036
25037 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
25038 buffers.
25039 (ido-kill-buffer-at-head): Support killing virtual buffers.
25040
25041 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
25042
25043 * minibuffer.el (completion-show-inline-help): New var.
25044 (completion--do-completion, minibuffer-complete)
25045 (minibuffer-force-complete, minibuffer-complete-word):
25046 Inhibit minibuffer messages if completion-show-inline-help is nil.
25047
25048 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
25049 to avoid interference from inline help (Bug#5849).
25050
25051 2011-04-10 Leo Liu <sdl.web@gmail.com>
25052
25053 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
25054 Fix typo.
25055
25056 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
25057
25058 * image-mode.el (image-toggle-display-image): Signal an error if
25059 not in Image mode.
25060 (image-transform-mode, image-transform-resize)
25061 (image-transform-set-rotation): Doc fix.
25062 (image-transform-set-resize): Delete.
25063 (image-transform-set-scale, image-transform-fit-to-height)
25064 (image-transform-fit-to-width): Handle image-toggle-display-image
25065 and image-transform-resize directly.
25066
25067 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
25068
25069 * doc-view.el (doc-view-fit-width-to-window)
25070 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
25071 New functions for fitting the shown image to the Emacs window size.
25072 (doc-view-mode-map): Add bindings for the new functions.
25073
25074 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
25075
25076 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
25077 Fix typo in docstring.
25078
25079 2011-04-08 Eli Zaretskii <eliz@gnu.org>
25080
25081 * files.el (file-size-human-readable): Produce one digit after
25082 decimal, like "ls -lh" does.
25083
25084 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
25085 the file size representation.
25086
25087 * simple.el (list-processes): If async subprocesses are not
25088 available, error out with a clear error message.
25089
25090 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
25091
25092 * help.el (help-form-show): New function, to be called from C.
25093 Put help-form output in a buffer named differently than *Help*.
25094
25095 2011-04-08 Eli Zaretskii <eliz@gnu.org>
25096
25097 * files.el (file-size-human-readable): New function.
25098
25099 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
25100 computing the representation inline. Don't require `cl'.
25101
25102 2011-04-08 Glenn Morris <rgm@gnu.org>
25103
25104 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
25105
25106 * net/browse-url.el (browse-url-firefox):
25107 Test system-type, not system-configuration.
25108
25109 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
25110 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
25111 Use log-edit-empty-buffer-p. (Bug#7598)
25112
25113 * net/rlogin.el (rlogin-process-connection-type): Simplify.
25114 (rlogin-mode-map): Initialize in the defvar.
25115 (rlogin): Use ignore-errors.
25116
25117 * replace.el (occur-mode-map): Some fixes for menu items.
25118
25119 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
25120
25121 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
25122
25123 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
25124
25125 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
25126 issuing unused warnings.
25127
25128 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
25129 macro directly.
25130
25131 * simple.el: Lisp reimplement of list-processes. Based on an
25132 earlier reimplementation by Leo Liu, but using tabulated-list.el.
25133 (process-menu-mode): New major mode.
25134 (list-processes--refresh, list-processes):
25135 (process-menu-visit-buffer): New functions.
25136
25137 * files.el (save-buffers-kill-emacs): Don't assume any return
25138 value of list-processes, which is undocumented anyway.
25139
25140 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
25141
25142 * emacs-lisp/tabulated-list.el: New file.
25143
25144 * emacs-lisp/package.el: Use Tabulated List mode.
25145 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
25146 (package-menu-mode): Derive from tabulated-list-mode. Set up the
25147 table format using Tabulated List mode variables.
25148 (package--push): New macro, replacing package-list-maybe-add.
25149 (package-menu--generate): Use package--push. Renamed from
25150 package--generate-package-list.
25151 (package-menu-refresh, list-packages): Use it.
25152 (package-menu--print-info): Rename from package-print-package.
25153 Return insertion data instead of inserting it directly.
25154 (package-menu-describe-package, package-menu-execute):
25155 Use tabulated-list-get-id.
25156 (package-menu-mark-delete, package-menu-mark-install)
25157 (package-menu-mark-unmark, package-menu-backup-unmark)
25158 (package-menu-mark-obsolete-for-deletion):
25159 Use tabulated-list-put-tag.
25160 (package--list-packages, package-menu-revert)
25161 (package-menu-get-package, package-menu-get-version)
25162 (package-menu-sort-by-column): Functions deleted.
25163 (package-menu-package-list, package-menu-sort-key): Vars deleted.
25164 (package-menu--status-predicate, package-menu--version-predicate)
25165 (package-menu--name-predicate)
25166 (package-menu--description-predicate): Handle arguments in the
25167 Tabulated List format.
25168 (package-list-packages-no-fetch): Call list-packages.
25169
25170 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
25171
25172 * files.el (after-find-file-from-revert-buffer): Remove variable.
25173 (after-find-file): Don't bind it.
25174 (revert-buffer-in-progress-p): New variable.
25175 (revert-buffer): Bind it.
25176 Pass nil for `after-find-file-from-revert-buffer'.
25177
25178 * saveplace.el (save-place-find-file-hook): Use new variable
25179 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
25180
25181 2011-04-06 Glenn Morris <rgm@gnu.org>
25182
25183 * Makefile.in (AUTOGEN_VCS): New variable.
25184 (autoloads): Use $AUTOGEN_VCS.
25185
25186 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
25187 * calendar/calendar.el (calendar-mode-map):
25188 Check for toolkit scroll bars. (Bug#8305)
25189
25190 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
25191
25192 * minibuffer.el (completion-in-region--postch)
25193 (completion-in-region-mode): Remove unnecessary messages.
25194
25195 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
25196
25197 * font-lock.el (font-lock-refresh-defaults):
25198 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
25199 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
25200
25201 * info.el (Info-directory-list, Info-read-node-name-2)
25202 (Info-split-parameter-string): Doc fixes.
25203 (Info-virtual-nodes): Reflow docstring.
25204 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
25205 (Info-apropos-toc-nodes, info-finder, Info-get-token)
25206 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
25207 Fix typos in docstrings.
25208 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
25209 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
25210 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
25211 (Info-restore-desktop-buffer): Mark unused parameters.
25212 (Info-directory-find-file, Info-directory-find-node)
25213 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
25214 (Info-virtual-index-find-node, Info-apropos-find-file)
25215 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
25216 Mark unused parameters; fix typos in docstrings.
25217 (Info-virtual-index): Remove unused local variable `nodename'.
25218
25219 2011-04-05 Deniz Dogan <deniz@dogan.se>
25220
25221 * net/rcirc.el: Update my e-mail address.
25222 (rcirc-mode-map): Remove M-o binding.
25223
25224 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
25225
25226 * startup.el (command-line): Save the cursor's theme-face
25227 directly, instead of using face-override-spec.
25228
25229 * custom.el (load-theme): Minor optimization in assigning faces.
25230
25231 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
25232
25233 * help-fns.el (describe-variable): Complete all variables having
25234 documentation, including keywords.
25235 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
25236
25237 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
25238
25239 Convert to lexical-binding.
25240
25241 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
25242 (bs--get-marked-string, bs--get-modified-string)
25243 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
25244 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
25245 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
25246
25247 * ehelp.el (electric-help-execute-extended)
25248 (electric-help-ctrl-x-prefix):
25249 * hexl.el (hexl-revert-buffer-function):
25250 * linum.el (linum-after-change, linum-after-scroll):
25251 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
25252
25253 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
25254
25255 2011-04-04 Daiki Ueno <ueno@unixuser.org>
25256
25257 * epa-dired.el:
25258 * epa-mail.el:
25259 * epa-hook.el:
25260 * epa-file.el:
25261 * epa.el:
25262 * epg.el: Use lexical binding.
25263
25264 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
25265
25266 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
25267
25268 * textmodes/flyspell.el (flyspell-word): Recognize default
25269 dictionary case for flyspell-mark-duplications-exceptions.
25270 Use regexp matching for languages.
25271 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
25272 default dictionary (Bug#7926).
25273
25274 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
25275
25276 * emacs-lisp/package.el (package--with-work-buffer):
25277 Recognize https URLs.
25278
25279 * net/network-stream.el: Move from gnus/proto-stream.el.
25280 Change prefix to network-stream throughout.
25281 (open-protocol-stream): Merge into open-network-stream, leaving
25282 open-protocol-stream as an alias. Handle nil BUFFER args.
25283
25284 * subr.el (open-network-stream): Move to net/network-stream.el.
25285
25286 2011-04-02 Glenn Morris <rgm@gnu.org>
25287
25288 * find-dired.el (find-exec-terminator): New option.
25289 (find-ls-option): Test for -ls support.
25290 (find-ls-subdir-switches): Test for -b in find-ls-option.
25291 (find-dired, find-grep-dired): Doc fixes.
25292 (find-dired): Use find-exec-terminator.
25293
25294 * find-dired.el (find-ls-option, find-ls-subdir-switches)
25295 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
25296 (find-name-arg): Remove purecopy.
25297
25298 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
25299 (grep-compute-defaults): Check for `-exec COMMAND +' support.
25300 Set grep-find-use-xargs, grep-find-command, and grep-find-template
25301 accordingly. Don't add the null-device if not needed.
25302
25303 * files.el (save-some-buffers): Doc fix.
25304
25305 2011-04-02 Eli Zaretskii <eliz@gnu.org>
25306
25307 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
25308
25309 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
25310
25311 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
25312 Use `dolist' rather than `mapcar'.
25313
25314 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
25315
25316 Add lexical binding.
25317
25318 * subr.el (apply-partially): Use new closures rather than CL.
25319 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
25320 (dolist, dotimes): Use slightly different expansion for lexical code.
25321 (functionp): Move to C.
25322 (letrec): New macro.
25323 (with-wrapper-hook): Use it and apply-partially instead of CL.
25324 (eval-after-load): Preserve lexical-binding.
25325 (save-window-excursion, with-output-to-temp-buffer): Turn them
25326 into macros.
25327
25328 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
25329
25330 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
25331 than the arglist.
25332 (help-add-fundoc-usage): Don't add `Not documented'.
25333 (help-function-arglist): Handle closures, subroutines, and new
25334 byte-code-functions.
25335 (help-make-usage): Remove leading underscores.
25336 (describe-function-1): Handle closures.
25337 (describe-variable): Use special-variable-p for completion.
25338
25339 * files.el (lexical-binding): Declare safe.
25340
25341 * emacs-lisp/pcase.el: Don't use destructuring-bind.
25342 (pcase--memoize): Rename from pcase-memoize. Change weakness.
25343 (pcase): Add `let' pattern.
25344 Change memoization so it actually works.
25345 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
25346 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
25347 <let>: New case.
25348
25349 * emacs-lisp/macroexp.el: Use lexical binding.
25350 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
25351 Don't convert ' to #' without checking that it's indeed quoting
25352 a lambda.
25353
25354 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
25355 Use eval-sexp-add-defvars.
25356 (eval-sexp-add-defvars): New fun.
25357
25358 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
25359
25360 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
25361 Don't autoload.
25362 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
25363 than the internal `byte-compile-lambda'.
25364 (defmethod): Don't hide code under quotes.
25365 (eieio-defmethod): New `code' argument.
25366
25367 * emacs-lisp/eieio-comp.el: Remove.
25368
25369 * emacs-lisp/edebug.el (edebug-eval-defun)
25370 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
25371 (edebug-toggle): Avoid `eval'.
25372
25373 * emacs-lisp/disass.el (disassemble-internal): Handle new
25374 `closure' objects.
25375 (disassemble-1): Handle new byte codes.
25376
25377 * emacs-lisp/cl.el (pushnew): Silence warning.
25378
25379 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
25380 (cl-byte-compile-throw): Remove.
25381 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
25382
25383 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
25384 closures.
25385
25386 * emacs-lisp/cconv.el: New file.
25387
25388 * emacs-lisp/bytecomp.el: Use lexical binding instead of
25389 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
25390 (byte-compile-initial-macro-environment):
25391 Handle declare-function here.
25392 (byte-compile--lexical-environment): New var.
25393 (byte-stack-ref, byte-stack-set, byte-discardN)
25394 (byte-discardN-preserve-tos): New lap codes.
25395 (byte-interactive-p): Don't use any more.
25396 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
25397 New macros.
25398 (byte-compile-lapcode): Use them and handle new lap codes.
25399 (byte-compile-obsolete): Remove.
25400 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
25401 (byte-compile-arglist-warn): Check late def of inlinable funs.
25402 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
25403 since they should have been expanded by now.
25404 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
25405 (byte-compile-from-buffer): Remove unused second arg.
25406 (byte-compile-preprocess): New function.
25407 (byte-compile-toplevel-file-form): New function to distinguish
25408 file-form calls from outside from file-form calls from hunk-handlers.
25409 (byte-compile-file-form): Simplify.
25410 (byte-compile-file-form-defsubst): Remove.
25411 (byte-compile-file-form-defmumble): Simplify now that
25412 byte-compile-lambda always returns a byte-code-function.
25413 (byte-compile): Preprocess.
25414 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
25415 Remove, not used any more.
25416 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
25417 (byte-compile-make-args-desc): New funs.
25418 (byte-compile-lambda): Handle lexical functions. Always return
25419 a byte-code-function.
25420 (byte-compile-reserved-constants): New var, to make up room for
25421 closed-over variables.
25422 (byte-compile-constants-vector): Obey it.
25423 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
25424 (byte-compile-macroexpand-declare-function): New function.
25425 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
25426 byte-code-functions.
25427 (byte-compile-form): Check obsolescence here.
25428 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
25429 (byte-compile-variable-ref): Remove.
25430 (byte-compile-dynamic-variable-op): New fun.
25431 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25432 (byte-compile-variable-set): New funs.
25433 (byte-compile-discard): Add 2 args.
25434 (byte-compile-stack-ref, byte-compile-stack-set)
25435 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
25436 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
25437 macroexpand-all instead.
25438 (byte-compile-quote-form): Remove.
25439 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
25440 (byte-compile-bind, byte-compile-unbind): New funs.
25441 (byte-compile-let): Handle let* and lexical binding.
25442 (byte-compile-let*): Remove.
25443 (byte-compile-catch, byte-compile-unwind-protect)
25444 (byte-compile-track-mouse, byte-compile-condition-case):
25445 Handle a new :fun-body form, used for lexical scoping.
25446 (byte-compile-save-window-excursion)
25447 (byte-compile-with-output-to-temp-buffer): Remove.
25448 (byte-compile-defun): Simplify.
25449 (byte-compile-stack-adjustment): New fun.
25450 (byte-compile-out): Use it.
25451 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
25452
25453 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
25454 handler any more.
25455
25456 * emacs-lisp/byte-opt.el: Use lexical binding.
25457 (byte-inline-lapcode): Remove (to bytecomp).
25458 (byte-compile-inline-expand): Pay attention to inlining to/from
25459 lexically bound code.
25460 (byte-compile-unfold-lambda): Don't handle byte-code-functions
25461 any more.
25462 (byte-optimize-form-code-walker): Don't handle save-window-excursion
25463 any more and don't call compiler-macros.
25464 (byte-compile-splice-in-already-compiled-code): Remove.
25465 (byte-code): Don't inline any more.
25466 (disassemble-offset): Receive `bytes' as argument rather than via
25467 dynamic scoping.
25468 (byte-compile-tag-number): Declare before first use.
25469 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
25470 `return' even if make-spliceable.
25471 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
25472 obsolete interactive-p.
25473 (byte-optimize-lapcode): Optimize new lap-codes.
25474 Don't trip up on new form of `byte-constant' lap code.
25475
25476 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
25477
25478 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25479
25480 * custom.el (custom-initialize-default, custom-declare-variable):
25481 Use `defvar'.
25482
25483 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25484 New variables.
25485 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25486 (COMPILE_FIRST): Add macroexp and cconv.
25487 * makefile.w32-in: Mirror changes in Makefile.in.
25488
25489 * vc/cvs-status.el:
25490 * vc/diff-mode.el:
25491 * vc/log-edit.el:
25492 * vc/log-view.el:
25493 * vc/smerge-mode.el:
25494 * textmodes/bibtex-style.el:
25495 * textmodes/css-mode.el:
25496 * startup.el:
25497 * uniquify.el:
25498 * minibuffer.el:
25499 * newcomment.el:
25500 * reveal.el:
25501 * server.el:
25502 * mpc.el:
25503 * emacs-lisp/smie.el:
25504 * doc-view.el:
25505 * dired.el:
25506 * abbrev.el: Use lexical binding.
25507
25508 2011-04-01 Eli Zaretskii <eliz@gnu.org>
25509
25510 * info.el (info-display-manual): New function.
25511
25512 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25513
25514 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25515
25516 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
25517
25518 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25519 an entry for that server in rcirc-authinfo. (Bug#8385)
25520
25521 2011-03-31 Glenn Morris <rgm@gnu.org>
25522
25523 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25524
25525 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25526
25527 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
25528
25529 * progmodes/python.el (python-default-interpreter)
25530 (python-python-command-args, python-jython-command-args)
25531 (python-which-shell, python-which-args, python-which-bufname)
25532 (python-file-queue, python-comint-output-filter-function)
25533 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25534 variables and functions.
25535
25536 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
25537
25538 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25539 (completion-in-region-mode): New minor mode.
25540 (completion-in-region): Use it.
25541 (completion-in-region--data, completion-in-region-mode-map): New vars.
25542 (completion-in-region--postch): New function.
25543 (completion--capf-misbehave-funs, completion--capf-safe-funs):
25544 New vars.
25545 (completion--capf-wrapper): New function.
25546 (completion-at-point): Use it to track well-behavedness of
25547 hook functions.
25548 (completion-help-at-point): New command.
25549
25550 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
25551
25552 * vc/add-log.el (add-change-log-entry): Don't use whitespace
25553 syntax class to search for whitespace on a single line
25554 (Message-ID: <4D938140.4030905@redhat.com>).
25555
25556 2011-03-30 Leo Liu <sdl.web@gmail.com>
25557
25558 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25559 New commands.
25560 (edit-abbrevs-map): Bind them here.
25561 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
25562
25563 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
25564
25565 * allout.el (allout-hide-by-annotation, allout-flag-region):
25566 Reduce possibility of overlay leakage by making them volatile.
25567
25568 * allout-widgets.el (allout-widgets-tally): Define as nil so the
25569 hash is not shared between buffers. Mode initialization is
25570 responsible for giving it a useful starting value.
25571 (allout-item-span): Reduce possibility of overlay leakage by
25572 making them volatile.
25573 (allout-widgets-count-buttons-in-region): Add diagnostic function
25574 for tracking down button overlay leaks.
25575
25576 2011-03-29 Leo Liu <sdl.web@gmail.com>
25577
25578 * ido.el (ido-read-internal): Use the default history var
25579 minibuffer-history if no HISTORY is specified.
25580
25581 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
25582
25583 * net/imap.el (imap-shell-open, imap-process-connection-type):
25584 Use imap-process-connection-type for 'shell' streams as well as
25585 Kerberos, SSL, other subprocesses.
25586
25587 2011-03-28 Leo Liu <sdl.web@gmail.com>
25588
25589 * abbrev.el (abbrev-table-empty-p): New function.
25590 (prepare-abbrev-list-buffer): Place empty abbrev tables after
25591 nonempty ones. (Bug#5937)
25592
25593 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
25594
25595 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25596
25597 2011-03-27 Leo Liu <sdl.web@gmail.com>
25598
25599 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25600 for foreground and background colors.
25601 (ansi-color-make-color-map): Adapt.
25602
25603 2011-03-25 Leo Liu <sdl.web@gmail.com>
25604
25605 * midnight.el (midnight-time-float): Remove. Note it calculates
25606 the microsecond component incorrectly and seconds-to-time does the
25607 same job.
25608 Remove redundant (require 'timer).
25609
25610 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25611 (ido-completions): Remove unused arguments. (Bug#8329)
25612
25613 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25614
25615 * minibuffer.el (completion--flush-all-sorted-completions):
25616 Remove itself from hook.
25617 (completion-at-point): Let the functions perform the completion
25618 immediately and return nil or t.
25619 * comint.el (comint-dynamic-complete-functions): Now identical to
25620 completion-at-point-functions.
25621 (comint-dynamic-list-input-ring): Remove unused var `index'.
25622 (comint--match-partial-filename, comint--unquote&expand-filename):
25623 New funs, split from comint-match-partial-filename.
25624 (comint-dynamic-complete): Use completion-at-point.
25625 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25626
25627 2011-03-24 Drew Adams <drew.adams@oracle.com>
25628
25629 * thingatpt.el: Support `defun'.
25630
25631 2011-03-23 Leo Liu <sdl.web@gmail.com>
25632
25633 * abbrevlist.el: Move to obsolete/abbrevlist.el.
25634
25635 * help-mode.el (help-mode-finish): Tweak regexp.
25636
25637 2011-03-23 Glenn Morris <rgm@gnu.org>
25638
25639 * eshell/esh-opt.el (eshell-eval-using-options):
25640 Do not bind unused local variable `eshell-option-stub'.
25641
25642 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25643
25644 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25645
25646 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25647 keymap variable in `with-no-warnings' to avoid a warning when the
25648 keymap has been already `defconst'ed.
25649
25650 2011-03-22 Leo Liu <sdl.web@gmail.com>
25651
25652 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25653 encode all chars in abbrevs; otherwise use emacs-mule or
25654 utf-8-emacs. (Bug#8308)
25655
25656 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25657
25658 * simple.el (backward-delete-char-untabify):
25659 Avoid warning about using `delete-backward-char'.
25660
25661 * image.el (image-type-file-name-regexps): Make it variable.
25662 `imagemagick-register-types' modifies it, and the user may want
25663 to add new extensions for known image types.
25664 (imagemagick-register-types): Throw error if not using ImageMagick.
25665
25666 2011-03-22 Leo Liu <sdl.web@gmail.com>
25667
25668 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25669 located before rcirc-prompt-end-marker.
25670 (rcirc-complete): Error if point is not after rcirc prompt.
25671 Handle the case when table is nil.
25672 (rcirc-user-authenticated): Define to fix compiler warning.
25673
25674 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
25675
25676 * custom.el (custom--inhibit-theme-enable): Make it affect only
25677 custom-theme-set-variables and custom-theme-set-faces.
25678 (provide-theme): Ignore custom--inhibit-theme-enable.
25679 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25680 (custom-enabling-themes): Delete variable.
25681 (enable-theme): Accept only loaded themes as arguments.
25682 Ignore the special custom-enabled-themes variable.
25683 (custom-enabled-themes): Forbid themes from setting this.
25684 Eliminate use of custom-enabling-themes.
25685 (custom-push-theme): Quote "changed" custom var entry.
25686
25687 2011-03-21 Leo Liu <sdl.web@gmail.com>
25688
25689 * ido.el (ido-read-internal): Add ido-selected to history instead
25690 of user input.
25691
25692 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
25693
25694 * subr.el (deferred-action-list, deferred-action-function):
25695 Mark obsolete.
25696
25697 2011-03-21 Leo Liu <sdl.web@gmail.com>
25698
25699 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25700 change on 2011-02-13 (bug#8309).
25701
25702 * minibuffer.el (read-file-name-function): Change default value.
25703 (read-file-name--defaults): Rename from read-file-name-defaults.
25704 (read-file-name-default): Rename from read-file-name.
25705 (read-file-name): Call read-file-name-function.
25706
25707 2011-03-21 Glenn Morris <rgm@gnu.org>
25708
25709 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25710 Doc fixes.
25711
25712 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
25713
25714 * cus-theme.el: Add missing provide statement.
25715 (customize-create-theme): Extract theme value correctly.
25716 (custom-theme-visit-theme): Autoload.
25717 (customize-create-theme): Prompt before inserting default faces.
25718
25719 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
25720
25721 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25722 units and musical notes.
25723
25724 2011-03-20 Leo Liu <sdl.web@gmail.com>
25725
25726 * ido.el (ido-read-internal): Use completing-read-default.
25727 (ido-completing-read): Fix compatibility with completing-read.
25728
25729 2011-03-20 Christian Ohler <ohler@gnu.org>
25730
25731 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25732 (ert-delete-all-tests): Use `called-interactively-p' rather than
25733 `interactive-p'.
25734 (ert--make-xrefs-region): Respect END.
25735
25736 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25737
25738 * dired-aux.el (dired-create-directory): Signal an error if the
25739 directory already exists (Bug#8246).
25740
25741 * facemenu.el (list-colors-display): Call list-faces-display
25742 inside with-help-window.
25743 (list-colors-print): Use display property to align the final
25744 column, instead of checking window-width.
25745
25746 2011-03-19 Eli Zaretskii <eliz@gnu.org>
25747
25748 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25749 windows-nt systems.
25750 (emerge-protect-metachars): Quote correctly for ms-dos and
25751 windows-nt systems.
25752
25753 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
25754
25755 * info.el (info-initialize): Replace all uses of `:' with
25756 path-separator for compatibility with non-Unix systems.
25757 Cache quoting of path-separator. (Bug#8258)
25758
25759 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
25760
25761 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25762 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25763 (mouse-avoidance-mode): Fix typos in docstrings.
25764
25765 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25766
25767 * startup.el (package-subdirectory-regexp): Move from package.el.
25768 Omit \\` and \\', and let callers add them.
25769
25770 * emacs-lisp/package.el (package-strip-version)
25771 (package-load-all-descriptors): Add \\` and \\' to
25772 package-subdirectory-regexp before using it.
25773 (package-untar-buffer): New arg DIR; ensure that file untars only
25774 into this expected directory. Remove superfluous delete-region.
25775 (package-unpack): Caller changed.
25776 (package-tar-file-info): Use package-subdirectory-regexp.
25777
25778 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
25779
25780 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25781 diff-mode-shared-map (bug#8284).
25782 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25783
25784 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
25785
25786 * calendar/time-date.el (format-seconds): Use assoc instead of
25787 assoc-string, since assoc-string doesn't exist in XEmacs.
25788
25789 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
25790
25791 * custom.el (custom-known-themes): Reflow docstring.
25792 (custom-theme-load-path): Fix typo in docstring.
25793 (load-theme): Fix typo in error message.
25794 (custom-available-themes, custom-variable-theme-value):
25795 Use `let', not `let*'.
25796
25797 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
25798
25799 * calc/README: Mention inclusion of musical notes.
25800
25801 * calc/calc-units.el (calc-lu-quant): Rename from
25802 `calc-logunits-quantity'.
25803 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25804 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25805 (calc-db): Rename from `calc-dblevel'.
25806 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25807 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25808 (calc-np): Rename from `calc-nplevel'.
25809 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25810 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25811 (calc-lu-plus): Rename from `calc-logunits-add'.
25812 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25813 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25814 (calc-lu-minus): Rename from `calc-logunits-sub'.
25815 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25816 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25817 (calc-lu-times): Rename from `calc-logunits-mul'.
25818 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25819 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25820 (calc-lu-divide): Rename from `calc-logunits-div'.
25821 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25822 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25823
25824 * calc/calc-ext.el (calc-init-extensions): Update the names of the
25825 functions being autoloaded.
25826
25827 * calc/calc.el (calc-lu-power-reference): Rename from
25828 `calc-logunits-power-reference'.
25829 (calc-lu-field-reference): Rename from
25830 `calc-logunits-field-reference'.
25831
25832 * calc/calc-help.el (calc-l-prefix-help):
25833 Mention musical note functions.
25834
25835 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
25836
25837 * minibuffer.el (completion-all-sorted-completions):
25838 Use :completion-cycle-penalty text property if present.
25839
25840 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
25841
25842 * allout.el (allout-yank-processing): Adjust for new rebulleting
25843 regime so bullet being yanked is used without prompting the user
25844 for a choice.
25845
25846 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25847
25848 * startup.el (command-line): Warn the user that _emacs is deprecated.
25849
25850 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25851
25852 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25853 (delphi-verbose, delphi-comment-face, delphi-string-face)
25854 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25855 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25856 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25857 (delphi-new-comment-line, delphi-font-lock-defaults)
25858 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25859 Fix typos in docstrings.
25860
25861 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
25862
25863 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25864 Invert the roles of character and string values for INSTEAD, so a
25865 string is used for the more common case of a defaulting prompt.
25866
25867 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25868
25869 * progmodes/ruby-mode.el (ruby-backward-sexp):
25870 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25871 * play/gamegrid.el (gamegrid-make-face):
25872 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25873 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25874 * notifications.el (notifications-notify):
25875 * net/xesam.el (xesam-search-engines):
25876 * net/quickurl.el (quickurl-list-insert):
25877 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25878
25879 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
25880
25881 * startup.el (command-line): Update package subdirectory regexp.
25882
25883 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25884
25885 * allout.el (allout-abbreviate-flattened-numbering)
25886 (allout-mode-deactivate-hook): Fix up obsolescence "date".
25887
25888 * subr.el (read-char-choice): Only show the cursor after the prompt,
25889 not after the answer.
25890
25891 2011-03-15 Kevin Ryde <user42@zip.com.au>
25892
25893 * help-fns.el (variable-at-point): Skip leading quotes, if any
25894 (bug#8253).
25895
25896 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25897
25898 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25899 warning message.
25900
25901 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
25902
25903 * shell.el (shell): When called interactively, offer to change the
25904 shell file name on remote hosts.
25905
25906 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
25907
25908 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25909 integration for LDAP parameters. The host, base, user or binddn,
25910 and secret tokens can be specified in a netrc file, for instance.
25911 This is optional because an `auth-source' parameter must be
25912 specified in the search attributes.
25913
25914 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
25915
25916 * help.el (describe-mode): Link to the mode's definition (bug#8185).
25917
25918 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25919
25920 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25921 into declaration. Remove redundant and harmful binding.
25922
25923 2011-03-12 Eli Zaretskii <eliz@gnu.org>
25924
25925 * files.el (file-ownership-preserved-p): Pass `integer' as an
25926 explicit 2nd argument to `file-attributes'. If the file's owner
25927 is the Administrators group on Windows, and the current user is
25928 Administrator, consider that a match.
25929
25930 * server.el (server-ensure-safe-dir): Consider server directory
25931 safe on MS-Windows if its owner is the Administrators group while
25932 the current Emacs user is Administrator. Use `=' to compare
25933 numerical UIDs, since they could be integers or floats.
25934
25935 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
25936
25937 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25938
25939 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
25940
25941 Sync with Tramp 2.2.1.
25942
25943 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25944
25945 * net/trampver.el: Update release number.
25946
25947 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25948
25949 * progmodes/compile.el (compilation--previous-directory): Fix up
25950 various nil/dead-marker mismatches (bug#8014).
25951 (compilation-directory-properties, compilation-error-properties):
25952 Don't call it at a position past the one we're about to change.
25953
25954 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25955 Disable obsolescence warnings in the file that declares it.
25956
25957 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
25958
25959 * allout-widgets.el (allout-widgets-tally):
25960 Initialize allout-widgets-tally as a hash table rather than nil to
25961 prevent mode-line redisplay warnings. Also, clarify the module
25962 description and fix a comment typo.
25963
25964 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
25965
25966 * help-fns.el (describe-variable): Don't complete keywords.
25967 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25968
25969 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
25970
25971 * emacs-lisp/package.el (package-version-join): Impose a standard
25972 string representation for pre/alpha/beta version lists.
25973 (package-unpack-single): Standardize the directory name by passing
25974 it through package-version-join.
25975 (package-strip-rcs-id): Accept any version string that does not
25976 signal an error in version-to-list.
25977
25978 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
25979
25980 * simple.el (delete-trailing-whitespace): Return nil for the
25981 benefit of `write-file-functions'.
25982
25983 2011-03-10 Glenn Morris <rgm@gnu.org>
25984
25985 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25986
25987 * vc/vc-git.el (vc-git-program): New option.
25988 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25989 (vc-git--call): Use it.
25990
25991 * eshell/esh-util.el (eshell-condition-case): Doc fix.
25992
25993 * cus-edit.el (Custom-newline): If no button at point, look
25994 for a subgroup button at start-of-line. (Bug#2298)
25995
25996 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25997
25998 2011-03-10 Julien Danjou <julien@danjou.info>
25999
26000 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
26001 `cursor-type' is nil.
26002
26003 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
26004
26005 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
26006
26007 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
26008
26009 * allout.el: Change so yank of distinctive-bullet items
26010 preserves the existing header prefix, rebulleting it if necessary,
26011 rather than replacing it. This is necessary for proper operation
26012 of cooperative addons like allout-widgets.
26013 (allout-make-topic-prefix, allout-rebullet-heading):
26014 Change SOLICIT arg to INSTEAD, and interpret additionally a string
26015 value as alternate bullet to be used, instead of prompting the user
26016 for a bullet character.
26017
26018 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
26019
26020 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
26021 Do not use `tramp-file-name-port', because this returns also
26022 `tramp-default-port'.
26023
26024 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
26025
26026 * net/rcirc.el (rcirc-handler-001): Remove useless
26027 with-rcirc-process-buffer.
26028 (rcirc-check-auth-status): Swap arguments to string-match.
26029
26030 2011-03-09 Glenn Morris <rgm@gnu.org>
26031
26032 * shell.el (shell-mode):
26033 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
26034
26035 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
26036 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
26037
26038 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
26039
26040 * emacs-lisp/package.el (package-refresh-contents)
26041 (package-menu-execute): Use condition-case-no-debug.
26042
26043 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
26044
26045 * simple.el (shell-command-to-string): Use `process-file'.
26046
26047 * emacs-lisp/package.el (package-tar-file-info): Handle also
26048 remote files.
26049
26050 * emacs-lisp/package-x.el (package-upload-buffer-internal):
26051 Use `equal' for upload base check.
26052
26053 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
26054
26055 * textmodes/texinfo.el (texinfo-environments):
26056 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
26057
26058 2011-03-08 Glenn Morris <rgm@gnu.org>
26059
26060 * cus-start.el (cursor-in-non-selected-windows):
26061 Fix :set quoting oddness. (Bug#8192)
26062
26063 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
26064 in some setf expressions. (Bug#2159)
26065
26066 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
26067
26068 * custom.el (custom-available-themes): Return themes in
26069 alphabetical order.
26070
26071 See ChangeLog.15 for earlier changes.
26072
26073 ;; Local Variables:
26074 ;; coding: utf-8
26075 ;; End:
26076
26077 Copyright (C) 2011-2013 Free Software Foundation, Inc.
26078
26079 This file is part of GNU Emacs.
26080
26081 GNU Emacs is free software: you can redistribute it and/or modify
26082 it under the terms of the GNU General Public License as published by
26083 the Free Software Foundation, either version 3 of the License, or
26084 (at your option) any later version.
26085
26086 GNU Emacs is distributed in the hope that it will be useful,
26087 but WITHOUT ANY WARRANTY; without even the implied warranty of
26088 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26089 GNU General Public License for more details.
26090
26091 You should have received a copy of the GNU General Public License
26092 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.