a2be1055f4668b86b7a34fed77c2f73bb034041e
[bpt/emacs.git] / lisp / ChangeLog
1 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
2
3 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
4 declaration.
5
6 2013-04-07 Leo Liu <sdl.web@gmail.com>
7
8 * pcmpl-x.el: New file.
9
10 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
11
12 Do not set x-display-name until X connection is established.
13 This is needed to prevent from weird situation described at
14 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
15 * frame.el (make-frame): Set x-display-name after call to
16 window system initialization function, not before.
17 * term/x-win.el (x-initialize-window-system): Add optional
18 display argument and use it.
19 * term/w32-win.el (w32-initialize-window-system):
20 * term/ns-win.el (ns-initialize-window-system):
21 * term/pc-win.el (msdos-initialize-window-system):
22 Add compatible optional display argument.
23
24 2013-04-06 Eli Zaretskii <eliz@gnu.org>
25
26 * files.el (normal-backup-enable-predicate): On MS-Windows and
27 MS-DOS compare truenames of temporary-file-directory and of the
28 file, so that 8+3 aliases (usually found in $TEMP on Windows)
29 don't fail comparison by compare-strings. Also, compare file
30 names case-insensitively on MS-Windows and MS-DOS.
31
32 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
33
34 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
35 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
36
37 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
38
39 * whitespace.el (whitespace-color-on, whitespace-color-off):
40 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
41
42 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
43
44 * ispell.el (ispell-set-spellchecker-params):
45 Really set `ispell-args' for all equivs.
46
47 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
48
49 * ido.el (ido-completions): Use extra elements of ido-decorations
50 (bug#14143).
51 (ido-decorations): Update docstring.
52
53 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
54
55 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
56 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
57 nil during initialization, in order not to miss changes since the
58 file was opened. (Bug#14140)
59
60 2013-04-05 Leo Liu <sdl.web@gmail.com>
61
62 * kmacro.el (kmacro-call-macro): Fix bug#14135.
63
64 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
65
66 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
67
68 2013-04-04 Glenn Morris <rgm@gnu.org>
69
70 * electric.el (electric-pair-inhibit-predicate): Add :version.
71
72 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
73
74 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
75 when a package is required several times (bug#14082).
76
77 2013-04-04 Roland Winkler <winkler@gnu.org>
78
79 * faces.el (read-face-name): Behave as promised by the docstring.
80 Assume that arg default is a list of faces.
81 (describe-face): Call read-face-name with list of default faces.
82
83 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
84
85 * bookmark.el: Fix deletion of bookmarks (bug#13972).
86 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
87 (bookmark-bmenu-execute-deletions): Only skip first line if it's
88 the header.
89 (bookmark-exit-hook-internal): Save even if list is empty.
90
91 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
92
93 * emacs-lisp/package.el (package-pinned-packages): New var.
94 (package--add-to-archive-contents): Obey it (bug#14118).
95
96 2013-04-03 Alan Mackenzie <acm@muc.de>
97
98 Handle `parse-partial-sexp' landing inside a comment opener
99 (Bug#13244). Also adapt to the new values of element 7 of a parse
100 state.
101
102 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
103 parameter `not-in-delimiter'. Handle being inside comment opener.
104 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
105 character in case we're typing a '*' after a '/'.
106 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
107 instead by passing the parameter to c-state-pp-to-literal.
108
109 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
110 for elt. 7 of a parse state.
111
112 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
113
114 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
115 * international/latin1-disp.el, international/mule-util.el:
116 * language/cyril-util.el, language/european.el, language/ind-util.el:
117 * language/lao-util.el, language/thai.el, language/tibet-util.el:
118 * language/tibetan.el, language/viet-util.el:
119 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
120
121 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
122
123 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
124 (electric-pair-post-self-insert-function): Use it.
125 (electric-pair-default-inhibit): New function, extracted from
126 electric-pair-post-self-insert-function.
127
128 2013-03-31 Roland Winkler <winkler@gnu.org>
129
130 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
131
132 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
133
134 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
135
136 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
137
138 Un-indent after "pass" and "return" statements (Bug#13888)
139 * progmodes/python.el (python-indent-block-enders): New var.
140 (python-indent-calculate-indentation): Use it.
141
142 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
143
144 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
145 defun. Defining it as defalias could introduce too eager
146 byte-compiler optimization. (Bug#14030)
147
148 2013-03-30 Chong Yidong <cyd@gnu.org>
149
150 * iswitchb.el (iswitchb-read-buffer): Fix typo.
151
152 2013-03-30 Leo Liu <sdl.web@gmail.com>
153
154 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
155 (kmacro-execute-from-register): Pass the keyboard macro to
156 kmacro-call-macro or repeating won't work correctly.
157
158 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
159
160 * progmodes/subword.el: Back to using `forward-symbol'.
161
162 * subr.el (forward-whitespace, forward-symbol)
163 (forward-same-syntax): Move from thingatpt.el.
164
165 2013-03-29 Leo Liu <sdl.web@gmail.com>
166
167 * kmacro.el (kmacro-to-register): New command.
168 (kmacro-execute-from-register): New function.
169 (kmacro-keymap): Bind to 'x'. (Bug#14071)
170
171 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
172
173 * mpc.el: Use defvar-local and setq-local.
174 (mpc--proc-connect): Connection failures are not bugs.
175 (mpc-mode-map): `follow-link' only applies to the buffer's content.
176 (mpc-volume-map): Bind to the up-events.
177
178 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
179
180 * progmodes/subword.el (superword-mode): Use `forward-sexp'
181 instead of `forward-symbol'.
182
183 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
184
185 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
186 (edebug--recursive-edit): Use it.
187 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
188 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
189
190 2013-03-28 Leo Liu <sdl.web@gmail.com>
191
192 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
193
194 2013-03-27 Eli Zaretskii <eliz@gnu.org>
195
196 * facemenu.el (list-colors-callback): New defvar.
197 (list-colors-redisplay): New function.
198 (list-colors-display): Install list-colors-redisplay as the
199 revert-buffer-function. (Bug#14063)
200
201 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
202
203 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
204 and suffixes don't overlap (bug#14061).
205
206 * case-table.el: Use lexical-binding.
207 (case-table-get-table): New function.
208 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
209
210 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
211
212 * progmodes/subword.el: Add `superword-mode' to do word motion
213 over symbol_words (parallels and leverages `subword-mode' which
214 does word motion inside MixedCaseWords).
215
216 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
217
218 * eshell/em-unix.el: Move su and sudo to...
219 * eshell/em-tramp.el: ...Eshell tramp module
220
221 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
222
223 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
224 Change return value to be a sexp. Delay `get-buffer' to after
225 restoring the desktop (bug#13951).
226
227 2013-03-26 Leo Liu <sdl.web@gmail.com>
228
229 * register.el: Move semantic tag handling back to
230 cedet/semantic/senator.el. (Bug#14052)
231
232 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
233
234 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
235 into the prompt either (bug#13963).
236
237 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
238
239 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
240 part of "(error-foo)".
241
242 2013-03-24 Juri Linkov <juri@jurta.org>
243
244 * replace.el (list-matching-lines-prefix-face): New defcustom.
245 (occur-1): Pass `list-matching-lines-prefix-face' to the function
246 `occur-engine' if `face-differs-from-default-p' returns t.
247 (occur-engine): Add `,' inside backquote construct to evaluate
248 `prefix-face'. Propertize the prefix with the `prefix-face' face.
249 Pass `prefix-face' to the functions `occur-context-lines' and
250 `occur-engine-add-prefix'.
251 (occur-engine-add-prefix, occur-context-lines): Add optional arg
252 `prefix-face' and propertize the prefix with `prefix-face'.
253 (Bug#14017)
254
255 2013-03-24 Leo Liu <sdl.web@gmail.com>
256
257 * nxml/rng-valid.el (rng-validate-while-idle)
258 (rng-validate-quick-while-idle): Guard against deleted buffer.
259 (Bug#13999)
260
261 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
262 is the last entry in kill-buffer-hook.
263
264 * files.el (kill-buffer-hook): Doc fix.
265
266 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
267
268 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
269 Make it safe-local.
270
271 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
272
273 2013-03-23 Leo Liu <sdl.web@gmail.com>
274
275 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
276 Remove.
277
278 * nxml/rng-valid.el (rng-validate-mode)
279 (rng-after-change-function, rng-do-some-validation):
280 * nxml/rng-maint.el (rng-validate-buffer):
281 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
282 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
283 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
284 (nxml-extend-after-change-region): Use with-silent-modifications.
285
286 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
287 timer-idle-list.
288
289 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
290 (rng-next-error-1, rng-previous-error-1): Do not let-bind
291 timer-idle-list. (Bug#13999)
292
293 2013-03-23 Juri Linkov <juri@jurta.org>
294
295 * info.el (info-index-match): New face.
296 (Info-index, Info-apropos-matches): Add a nested subgroup to the
297 main pattern and add text properties with the new face to matches
298 in index entries relative to the beginning of the index entry.
299 (Bug#14015)
300
301 2013-03-21 Eric Ludlam <zappo@gnu.org>
302
303 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
304 Inhibit read only while inserting objects.
305
306 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
307
308 * progmodes/cfengine.el: Update docs to mention
309 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
310 symbol motion. Remove "_" from the word syntax.
311
312 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
313
314 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
315 syntax for both `cfengine2-mode' and `cfengine3-mode'.
316
317 2013-03-20 Juri Linkov <juri@jurta.org>
318
319 * info.el (Info-next-reference-or-link)
320 (Info-prev-reference-or-link): New functions.
321 (Info-next-reference, Info-prev-reference): Use them.
322 (Info-try-follow-nearest-node): Handle footnote navigation.
323 (Info-fontify-node): Fontify footnotes. (Bug#13989)
324
325 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
326
327 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
328 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
329
330 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
331
332 Suppress unnecessary non-ASCII chatter during build process.
333 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
334 (batch-skkdic-convert): Suppress most of the chatter.
335 It's not needed so much now that machines are faster,
336 and its non-ASCII component was confusing; see Dmitry Gutov in
337 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
338
339 2013-03-20 Leo Liu <sdl.web@gmail.com>
340
341 * ido.el (ido-chop): Fix bug#10994.
342
343 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
344
345 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
346 Remove vars.
347 (whitespace-color-on, whitespace-color-off):
348 Use `font-lock-fontify-buffer' (Bug#13817).
349
350 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
351
352 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
353 remapping in mode-line.
354 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
355
356 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
357
358 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
359 value for `whitespace-line' face (Bug#13875).
360 (whitespace-font-lock-keywords): Change description.
361 (whitespace-color-on): Don't save `font-lock-keywords' value, save
362 the constructed keywords instead.
363 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
364
365 2013-03-19 Leo Liu <sdl.web@gmail.com>
366
367 * progmodes/compile.el (compilation-display-error): New command.
368 (compilation-mode-map, compilation-minor-mode-map): Bind it to
369 C-o. (Bug#13992)
370
371 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
372
373 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
374
375 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
376
377 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
378
379 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
380
381 * net/tramp-compat.el (tramp-compat-user-error): New defun.
382
383 * net/tramp-adb.el (tramp-adb-handle-shell-command):
384 * net/tramp-gvfs.el (top):
385 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
386 (tramp-handle-shell-command): Use it.
387 (tramp-dissect-file-name): Raise an error when hostname is a
388 method name, and neither method nor user is specified.
389
390 * net/trampver.el: Update release number.
391
392 2013-03-18 Leo Liu <sdl.web@gmail.com>
393
394 Make sure eldoc can be turned off properly.
395 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
396 eldoc-mode.
397 (eldoc-display-message-p): Revert last change.
398 (eldoc-display-message-no-interference-p)
399 (eldoc-print-current-symbol-info): Tweak.
400
401 2013-03-18 Tassilo Horn <tsdh@gnu.org>
402
403 * doc-view.el (doc-view-new-window-function): Check the new window
404 overlay's display property instead the char property of the
405 buffer's first char. Use `with-selected-window' instead of
406 `save-window-excursion' with `select-window'.
407 (doc-view-document->bitmap): Check the current doc-view overlay's
408 display property instead the char property of the buffer's first char.
409
410 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
411
412 Automate the build of ja-dic.el (Bug#13984).
413 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
414 from the input, rather than assume that it's been done for us by the
415 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
416 the current date into a ja-dic.el comment, as that complicates
417 regression testing.
418
419 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
420
421 * whitespace.el: Fix double evaluation.
422 (whitespace-space, whitespace-hspace, whitespace-tab)
423 (whitespace-newline, whitespace-trailing, whitespace-line)
424 (whitespace-space-before-tab, whitespace-indentation)
425 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
426 obsolete defvars.
427 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
428 (whitespace-color-on): Use a single font-lock-add-keywords call.
429 Fix double-evaluation of face variables.
430
431 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
432
433 * net/tramp-adb.el (tramp-adb-parse-device-names):
434 Use `start-process' instead of `call-process'. Otherwise, the
435 function might be blocked under MS Windows. (Bug#13299)
436
437 2013-03-17 Leo Liu <sdl.web@gmail.com>
438
439 Extend eldoc to display info in the mode-line. (Bug#13978)
440 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
441 (eldoc-mode-line-string): New variable.
442 (eldoc-minibuffer-message): New function.
443 (eldoc-message-function): New variable.
444 (eldoc-message): Use it.
445 (eldoc-display-message-p)
446 (eldoc-display-message-no-interference-p):
447 Support eldoc-post-insert-mode.
448
449 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
450 (eval-expression): Run it.
451
452 2013-03-17 Roland Winkler <winkler@gnu.org>
453
454 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
455 strings in the list of return values.
456
457 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
458
459 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
460 radix before checking for HMS forms.
461
462 2013-03-16 Leo Liu <sdl.web@gmail.com>
463
464 * progmodes/scheme.el: Add indentation and font-locking for λ.
465 (Bug#13975)
466
467 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
468
469 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
470 token before point (bug#13942).
471
472 2013-03-16 Leo Liu <sdl.web@gmail.com>
473
474 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
475
476 2013-03-16 Eli Zaretskii <eliz@gnu.org>
477
478 * startup.el (command-line-normalize-file-name): Fix handling of
479 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
480 <xfq.free@gmail.com> in
481 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
482
483 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
484
485 Sync with Tramp 2.2.7.
486
487 * net/trampver.el: Update release number.
488
489 2013-03-14 Tassilo Horn <tsdh@gnu.org>
490
491 * doc-view.el Fix bug#13887.
492 (doc-view-insert-image): Don't modify overlay associated to
493 non-live windows, and implement horizontal centering of image in
494 case it's smaller than the window.
495 (doc-view-new-window-function): Force redisplay of new windows on
496 doc-view buffers.
497
498 2013-03-13 Karl Fogel <kfogel@red-bean.com>
499
500 * saveplace.el (save-place-alist-to-file): Don't sort
501 `save-place-alist', just pretty-print it (bug#13882).
502
503 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
504
505 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
506 whether `default-file-name-coding-system' is bound. It isn't in
507 XEmacs.
508
509 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
510
511 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
512 backquotes for `obsolete' (bug#13929).
513
514 * international/mule.el (find-auto-coding): Include file name in
515 obsolescence warning (bug#13922).
516
517 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
518
519 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
520 for CFEngine 3-specific indentation.
521 (cfengine3-indent-line): Use it. Fix up category regex.
522 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
523
524 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
525
526 * type-break.el (type-break-file-name):
527 * textmodes/remember.el (remember-data-file):
528 * strokes.el (strokes-file):
529 * shadowfile.el (shadow-initialize):
530 * saveplace.el (save-place-file):
531 * ps-bdf.el (bdf-cache-file):
532 * progmodes/idlwave.el (idlwave-config-directory):
533 * net/quickurl.el (quickurl-url-file):
534 * international/kkc.el (kkc-init-file-name):
535 * ido.el (ido-save-directory-list-file):
536 * emulation/viper.el (viper-custom-file-name):
537 * emulation/vip.el (vip-startup-file):
538 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
539 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
540
541 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
542
543 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
544 * language/thai-word.el: Switch to UTF-8.
545
546 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
547
548 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
549
550 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
551
552 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
553 Use with-current-buffer and don't move point.
554 (net-utils-run-simple): Remove useless code.
555 (net-utils-remove-ctl-m): Remove unused custom.
556
557 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
558
559 * international/characters.el (glyphless-set-char-table-range): New fun.
560 (update-glyphless-char-display): Use it (bug#13744).
561
562 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
563
564 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
565 namespaces in the syntax, indent closer for hanging brace
566 correctly, allow single-quote delimited 'strings', and make
567 `cfengine3-mode' the default.
568
569 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
570
571 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
572 Use lexical-binding. Fix up docstring according to conventions.
573 (gdbmi-debug-mode): New var.
574 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
575 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
576 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
577 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
578 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
579 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
580 (gdbmi-bnf-incomplete-record-result): New functions.
581 (gdb-car<): Remove function.
582 (gdbmi-record-list): Remove variable.
583 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
584 (gdbmi-bnf-result-state-configs): New const.
585 (gud-gdbmi-marker-filter): Rewrite.
586 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
587 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
588 Add `token' argument.
589 (gdb-done, gdb-error): New functions.
590 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
591
592 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * term/xterm.el (xterm--report-background-handler): Don't burp
595 upon timeout.
596 (xterm--version-handler): Extract from terminal-init-xterm.
597 (xterm--query): Don't mishandle timeout. Remove debugging messages.
598 Allow multiple handlers.
599 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
600
601 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
602 (xterm--report-background-handler, xterm--query): New functions.
603 (terminal-init-xterm): Use them.
604
605 2013-03-11 Michael R. Mauger <michael@mauger.com>
606
607 * progmodes/sql.el Version 3.2
608 Please note that my address changed to <michael@mauger.com>;
609 the <mmaug@yahoo.com> address remains active.
610 (sql-connection-alist): Updates documentation to fix bug#13715.
611 (sql-connect): Handle missing `sql-connection-alist' correctly.
612 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
613 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
614 property.
615 (sql-default-value): New function.
616 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
617 values were not used.
618 (sql-rename-buffer): Make sure alternate buffer name has no text
619 properties.
620 (sql-input-sender, sql-execute-feature): Fetch variable with
621 `buffer-local-value' rather than `with-current-buffer'.
622 (sql-*): Use #' function syntax consistently.
623 (sql-*): Use message/error/user-error consistently.
624
625 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
626
627 * xt-mouse.el (xterm-mouse-event-read): Remove.
628 (xterm-mouse--read-event-sequence-1000)
629 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
630
631 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
632
633 * term/xterm.el (xterm-function-map): Support format used with
634 formatOtherKeys=1 (bug#13839).
635
636 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
637 (with-no-warnings): Use `declare'.
638
639 * whitespace.el (whitespace-enable-predicate): New variable.
640 (whitespace-enable-predicate): Use it.
641
642 * comint.el (comint-send-input, comint-snapshot-last-prompt)
643 (comint-output-filter, comint-update-fence):
644 Use with-silent-modifications.
645
646 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
647
648 * replace.el (occur-read-regexp-defaults-function): New var.
649 (occur-read-regexp-defaults): New defun.
650 (occur-read-primary-args): Propagate above change (bug#13892).
651
652 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
653
654 * mouse.el (mouse-drag-track): Remove left-over debugging code.
655
656 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
657
658 Major rewrite due to changed D-Bus interface of GVFS 1.14.
659
660 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
661 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
662 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
663 New defconst.
664 (tramp-gvfs-file-name-handler-alist) [directory-files]
665 [directory-files-and-attributes, file-exists-p, file-modes]:
666 Use Tramp default handler.
667 [file-acl, file-selinux-context, process-file, set-file-acl]:
668 [set-file-modes, set-file-selinux-context, shell-command]:
669 [start-file-process]: Remove handler.
670 [verify-visited-file-modtime]: New handler.
671 (tramp-gvfs-dbus-string-to-byte-array)
672 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
673 calls of `dbus-string-to-byte-array' and
674 `tramp-gvfs-dbus-byte-array-to-string'.
675 (tramp-gvfs-handle-copy-file)
676 (tramp-gvfs-handle-delete-directory)
677 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
678 (tramp-gvfs-handle-file-directory-p)
679 (tramp-gvfs-handle-file-executable-p)
680 (tramp-gvfs-handle-file-name-all-completions)
681 (tramp-gvfs-handle-file-readable-p)
682 (tramp-gvfs-handle-file-writable-p)
683 (tramp-gvfs-handle-insert-directory)
684 (tramp-gvfs-handle-insert-file-contents)
685 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
686 (tramp-gvfs-handle-set-visited-file-modtime)
687 (tramp-gvfs-handle-write-region): Rewrite.
688 (tramp-gvfs-handle-file-acl)
689 (tramp-gvfs-handle-file-selinux-context)
690 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
691 (tramp-gvfs-handle-set-file-modes)
692 (tramp-gvfs-handle-set-file-selinux-context)
693 (tramp-gvfs-handle-shell-command)
694 (tramp-gvfs-handle-start-file-process)
695 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
696 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
697 over the symlinks. Fix user handling.
698 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
699 of the D-Bus signals.
700 (tramp-gvfs-connection-mounted-p): Handle different names of the
701 D-Bus methods.
702 (tramp-gvfs-mount-spec-entry): New defun.
703 (tramp-gvfs-mount-spec): Use it.
704 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
705 there is a share name. Handle different names of the D-Bus
706 signals and methods. Set connection properties needed for
707 `tramp-check-cached-permissions'.
708 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
709 Return t or nil.
710
711 * net/tramp.el (tramp-backtrace): Move up.
712 (tramp-error): Dump a backtrace into the debug buffer when
713 `tramp-verbose > 9.
714 (tramp-file-mode-type-map, tramp-file-mode-from-int)
715 (tramp-file-mode-permissions, tramp-get-local-uid)
716 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
717 tramp-sh.el.
718
719 * net/tramp-sh.el (tramp-file-mode-type-map)
720 (tramp-check-cached-permissions, tramp-file-mode-from-int)
721 (tramp-file-mode-permissions, tramp-get-local-uid)
722 (tramp-get-local-gid): Move to tramp.el.
723
724 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
725
726 Separate mouse-1-click-follows-link from mouse-drag-region.
727 * mouse.el (mouse--down-1-maybe-follows-link): New function.
728 (key-translation-map): Use it to implement mouse-1-click-follows-link.
729 (mouse-drag-line, mouse-drag-track):
730 Remove mouse-1-click-follows-link code.
731 (mouse--remap-link-click-p): Remove.
732
733 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
734
735 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
736 (hi-lock-read-regexp-defaults): New defun.
737 (hi-lock-line-face-buffer, hi-lock-face-buffer)
738 (hi-lock-face-phrase-buffer): Propagate above change.
739 Update docstring (bug#13892).
740
741 * subr.el (find-tag-default-as-regexp): New defun.
742 * replace.el (read-regexp): Propagate above change.
743
744 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
745
746 * calc/calc-units.el (calc-convert-units): Fix the way that default
747 new units are stored.
748
749 2013-03-07 Matthias Meulien <orontee@gmail.com>
750
751 * bookmark.el: Define a face to highlight bookmark names in
752 bookmark menu buffers, where the default is a bold face similarly
753 to buffer names in buffer menu buffers.
754 (bookmark-menu-bookmark): New face to highlight bookmark names.
755 (bookmark-insert-location): Remove duplicated text property to
756 conform to buffer list (see `list-buffers').
757 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
758 `bookmark-menu-bookmark' to bookmark names.
759
760 2013-03-07 Matthias Meulien <orontee@gmail.com>
761 Karl Fogel <kfogel@red-bean.com>
762
763 * bookmark.el: Display the bookmark list header similarly to the
764 buffer list header (see `list-buffers'), where the default is now
765 an immovable/immutable header line.
766 (bookmark-bmenu-use-header-line): New variable.
767 (bookmark-bmenu-inline-header-height): New name for
768 `bookmark-bmenu-header-height', to avoid confusion with the code
769 for the new immovable header. All references changed.
770 (bookmark-bmenu-set-header): New function.
771 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
772 Conditionalize header construction accordingly.
773 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
774 the inline header height.
775 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
776 Conditionalize the skipping of the inline header height.
777
778 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
779
780 * progmodes/js.el (js--multi-line-declaration-indentation):
781 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
782
783 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
784
785 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
786 Only propertize regexp when not inside a string (Bug#13885).
787
788 2013-03-06 Alan Mackenzie <acm@muc.de>
789
790 Correct the position of point in some line-up functions.
791 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
792 (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
793 point at column 0 rather than at a random place in the line.
794
795 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
796
797 * net/tramp-compat.el (tramp-compat-delete-directory):
798 Implement TRASH argument.
799
800 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
801
802 Keep pre-existing highlighting in completion candidates (Bug#13250).
803 * minibuffer.el (completions-first-difference): State that the
804 face is "added" in the docstring.
805 (completions-common-part): Same. And don't inherit from default.
806 (completion-hilit-commonality): Prepend 'completions-common-part
807 and 'completion-first-difference faces to the 'face property,
808 instead of replacing the value(s).
809 (completion--insert-strings): Same with 'completions-annotations face.
810 (completion-hilit-commonality): Use 'face instead of
811 'font-lock-face, because it gets priority if the completion
812 strings already have 'face set.
813
814 2013-03-04 Alan Mackenzie <acm@muc.de>
815
816 Replace `last-command-event' by `last-command-char' in XEmacs.
817 * progmodes/cc-defs.el (c-last-command-char): New macro.
818 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
819 (c-semi&comma-no-newlines-before-nonblanks)
820 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
821 in place of `last-command-event'.
822 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
823 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
824 (c-electric-paren, c-electric-continued-statement): Use the new
825 macro in place of `last-command-event'.
826
827 2013-03-04 Glenn Morris <rgm@gnu.org>
828
829 * files.el (inhibit-local-variables-regexps):
830 Add .diff and .patch. (Bug#13862)
831
832 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
833
834 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
835 whether the "su" command is available on the device.
836
837 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
838
839 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
840 (tramp-adb-handle-process-file): Remove superfluous setting.
841 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
842 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
843 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
844
845 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
846
847 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
848 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
849 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
850 Use dict-key rather than dict-name for the error message.
851
852 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
853
854 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
855 when reverting (bug#13831).
856
857 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
858
859 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
860 Always expand affix-file before storing to protect against changed
861 `default-directory'.
862 (ispell-print-if-debug): Make sure message is printed at the end
863 of the debug buffer.
864
865 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
866
867 * net/tramp.el (tramp-obsolete-methods): New defconst.
868 (tramp-warned-obsolete-methods): New defvar.
869 (tramp-find-method): Check for obsolete methods. Map them to a
870 replacement method if appropriate.
871
872 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
873 Remove methods.
874 (top): Remove completion functions for "scp1", "scp2", "ssh1",
875 "ssh2" and "plink1".
876
877 2013-02-28 Dale Sedivec <dale@codefu.org>
878
879 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
880 Return valid syntax-table property value when converting
881 quotes within text from string syntax to punctuation syntax (bug#13844).
882
883 2013-02-28 Juri Linkov <juri@jurta.org>
884
885 * dired-aux.el (dired-diff): If file at point is a backup file,
886 use its original as the default value, and reverse the order
887 of arguments to the `diff' call. Doc fix. (Bug#13772)
888
889 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
890
891 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
892 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
893
894 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
895
896 Initial support for hunspell dictionaries auto-detection (Bug#13639)
897
898 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
899 Ask hunspell about available and default dictionaries.
900 (ispell-parse-hunspell-affix-file): Extract relevant info from
901 hunspell affix file.
902 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
903 `ispell-dictionary-alist' entry for given dictionary after info
904 provided by `ispell-parse-hunspell-affix-file'.
905 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
906 of parsed hunspell dicts and associated affix files.
907 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
908 of parsed hunspell dicts and associated parameters.
909 (ispell-set-spellchecker-params):
910 Call `ispell-find-hunspell-dictionaries' if hunspell and not
911 previously done.
912 (ispell-start-process):
913 Call `ispell-hunspell-fill-dictionary-entry' for current
914 dictionary if it is not initialized.
915
916 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
917
918 * imenu.el: Comment nitpicks.
919
920 2013-02-28 Sam Steingold <sds@gnu.org>
921
922 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
923 See <http://stackoverflow.com/questions/14720205>.
924
925 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
926
927 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
928 (net-utils-mode): Use it.
929 (net-utils--revert-cmd): New var.
930 (net-utils-run-simple): Set it, and remove bogus interactive spec.
931 (traceroute): Use net-utils-run-simple.
932
933 2013-02-28 Glenn Morris <rgm@gnu.org>
934
935 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
936
937 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
940 (doc-view-fallback-mode): Remove overlays here.
941 (doc-view-toggle-display): Instead of here. Don't throw away
942 image-mode-winprops-alist.
943 (doc-view-goto-page): Don't mess with hscroll.
944
945 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
946
947 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
948 &optional (bug#13819).
949
950 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
951
952 * net/tramp-adb.el (tramp-adb-parse-device-names)
953 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
954
955 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
956
957 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
958 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
959 defined. POSIX environments fall back to the "C" locale then and
960 emit a warning, which shall be suppressed.
961
962 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
965 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
966
967 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
968
969 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
970
971 2013-02-25 Juri Linkov <juri@jurta.org>
972
973 * replace.el (read-regexp): Let-bind `default' to the first
974 element of `defaults' if it's a list, otherwise it should be
975 a string or nil. Let-bind `suggestions' to `defaults' if it's
976 a list, otherwise make a list with the string value. Doc fix.
977 (Bug#13805)
978
979 2013-02-25 Eli Zaretskii <eliz@gnu.org>
980
981 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
982 that match "\`\.#", to avoid compiling lock files, even if they
983 are readable (as they are on MS-Windows).
984
985 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
986
987 * files.el (basic-save-buffer): Remove redundant directory-creation.
988
989 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
990
991 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
992 Add option to force `pi' to remain symbolic.
993 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
994 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
995 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
996 derivatives, when necessary.
997
998 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
999
1000 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
1001 (ps-mode-octal-region): Use string-make-unibyte.
1002
1003 2013-02-23 Glenn Morris <rgm@gnu.org>
1004
1005 * emulation/viper-cmd.el (viper-submit-report):
1006 * progmodes/ps-mode.el (ps-mode-maintainer-address):
1007 * progmodes/vera-mode.el (vera-mode-help-address):
1008 * textmodes/artist.el (artist-maintainer-address):
1009 * textmodes/reftex.el (reftex-report-bug):
1010 * vc/ediff-util.el (ediff-submit-report):
1011 Add bug-gnu-emacs to bug report address.
1012
1013 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
1014 Remove bug report entries.
1015 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
1016
1017 * emacs-lisp/bytecomp.el (byte-compile-level): New.
1018 (byte-compile-file, byte-compile-from-buffer):
1019 Use separate input/output buffers for each level of recursive
1020 byte-compile-file calls. (Bug#13787)
1021
1022 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
1023
1024 * net/tramp.el (tramp-methods): Fix docstring.
1025 (tramp-ssh-controlmaster-options): Rename it from
1026 `tramp-ssh-controlmaster-template'. Return a string.
1027 (tramp-default-method): Adapt check for
1028 `tramp-ssh-controlmaster-options'.
1029
1030 * net/tramp-sh.el (tramp-methods):
1031 Replace `tramp-ssh-controlmaster-template' by "%c".
1032 (tramp-do-copy-or-rename-file-out-of-band)
1033 (tramp-maybe-open-connection): Use it in format spec. Ensure,
1034 that it is applied for the first hop only.
1035
1036 2013-02-22 Juri Linkov <juri@jurta.org>
1037
1038 * isearch.el (isearch-lazy-highlight-new-loop):
1039 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
1040 to `isearch-other-end' if it is not nil. (Bug#13402)
1041
1042 * replace.el (replace-highlight): Let-bind `isearch-other-end'
1043 to `match-beg'.
1044
1045 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1046 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
1047 and `isearch-error' to nil.
1048
1049 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
1050
1051 * progmodes/python.el (python-info-current-defun):
1052 Enhance match-data cluttering prevention.
1053
1054 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
1055
1056 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
1057
1058 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1059 Handle multibyte file names.
1060
1061 2013-02-22 Glenn Morris <rgm@gnu.org>
1062
1063 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
1064 (sgml-transformation-function): Give it a :set function.
1065 (sgml-tag): Doc fix.
1066
1067 * cmuscheme.el (scheme-buffer):
1068 * progmodes/inf-lisp.el (inferior-lisp-buffer):
1069 * progmodes/tcl.el (inferior-tcl-buffer):
1070 * textmodes/tex-mode.el (tex-command): Doc fixes.
1071
1072 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
1073
1074 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
1075
1076 2013-02-21 Bastien Guerry <bzg@gnu.org>
1077
1078 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
1079
1080 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1081
1082 * progmodes/python.el (python-info-current-defun):
1083 Enhance match-data cluttering prevention.
1084
1085 2013-02-21 Glenn Morris <rgm@gnu.org>
1086
1087 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
1088 loaded while outline-regexp is let bound. (Bug#9584)
1089
1090 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
1091
1092 * progmodes/python.el (python-info-current-defun): Fix failed
1093 defun name retrieval because of unwanted match-data cluttering.
1094
1095 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
1096
1097 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
1098 defconst. Apply independent check for ControlPersist.
1099
1100 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
1101 temporarily, via "env".
1102
1103 2013-02-21 Glenn Morris <rgm@gnu.org>
1104
1105 * info.el (Info-enable-edit): Remove.
1106 (Info-edit): Disable it rather than using Info-enable.
1107 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
1108 (Info-cease-edit): Make editing of Info files obsolete.
1109
1110 * informat.el (Info-tagify):
1111 Handle buffers not visiting files. (Bug#13763)
1112
1113 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
1114
1115 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
1116
1117 2013-02-21 Glenn Morris <rgm@gnu.org>
1118
1119 * files.el (basic-save-buffer): Move check for existing parent
1120 directory after hooks. (Bug#13773)
1121
1122 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
1123
1124 * simple.el (command-execute): Move from C. Add obsolete check.
1125 (extended-command-history): Move from C.
1126
1127 2013-02-20 Ulrich Müller <ulm@gentoo.org>
1128
1129 * jka-cmpr-hook.el (jka-compr-compression-info-list)
1130 (jka-compr-mode-alist-additions): Handle .txz suffix for
1131 XZ-compressed tar archives (bug#13770).
1132
1133 2013-02-20 Bastien Guerry <bzg@gnu.org>
1134
1135 * outline.el (outline-regexp, outline-heading-end-regexp):
1136 Make variables, not options (bug#13731).
1137
1138 2013-02-20 Glenn Morris <rgm@gnu.org>
1139
1140 * image.el (image-current-frame): Change from variable to function.
1141 (image-show-frame): Rename from image-nth-frame. Update callers.
1142 * image-mode.el (image-multi-frame): New variable.
1143 (image-mode-map, image-mode, image-goto-frame):
1144 Use image-multi-frame rather than image-current-frame.
1145 (image-mode, image-goto-frame): Use image-current-frame as
1146 function rather than as variable.
1147
1148 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
1149 * emacs-lisp/cl-macs.el (cl--make-type-test)
1150 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
1151
1152 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1153
1154 * net/tramp-cache.el (tramp-get-hash-table): New defun.
1155 (tramp-get-file-property, tramp-set-file-property)
1156 (tramp-get-connection-property, tramp-set-connection-property): Use it.
1157 (tramp-flush-file-property, tramp-flush-directory-property):
1158 Rename argument to KEY.
1159 (tramp-flush-connection-property): Simplify a little bit.
1160 (tramp-connection-property-p): New defun.
1161 (top): Reapply saved values only if there isn't a corresponding
1162 entry in `tramp-connection-properties'.
1163
1164 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
1165
1166 * progmodes/python.el (python-indent-context):
1167 Fix python-info-line-ends-backslash-p call.
1168 (python-info-line-ends-backslash-p)
1169 (python-info-beginning-of-backslash): Respect line-number argument.
1170 (python-info-current-line-comment-p):
1171 Fix behavior when not at beginning-of-line.
1172 (python-util-position): Remove function.
1173 (python-util-goto-line): New function.
1174
1175 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
1176
1177 * eshell/em-unix.el (eshell/su): Require tramp.
1178 (eshell/sudo): Require tramp. Remove now unnecessary check.
1179
1180 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1181 `tramp-current-connection' in order to avoid an error when several
1182 commands are invoked in a short time in eshell and friends.
1183
1184 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
1185
1186 Cleanup some of EIEIO's namespace.
1187 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1188 Use it to define all the class-* and object-* field accessors (renamed
1189 to eieio--class-* and eieio--object-*). Update all uses.
1190 (eieio--class-num-slots, eieio--object-num-slots): Rename from
1191 class-num-slots and object-num-slots.
1192 (eieio--check-type): New macro.
1193 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1194 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1195 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1196 (object-assoc-list-safe): Use it.
1197 (eieio-defclass): Tighten regexp.
1198 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
1199 Remove unreachable code.
1200 (object-class-fast): Declare obsolete.
1201 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1202 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1203 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1204 Rename from class-name, object-name, object-set-name-string,
1205 object-class, object-class-name, class-parents, class-children,
1206 class-precedence-list, class-parent; with obsolete alias.
1207 (class-of, class-direct-superclasses, class-direct-subclasses):
1208 Declare obsolete.
1209 (eieio-defmethod): Use `memq'; remove unreachable code.
1210 * emacs-lisp/eieio-base.el (eieio-persistent-read):
1211 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1212 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1213
1214
1215 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz>
1216
1217 * eshell/em-cmpl.el: Correct "context-related help" keybinding in
1218 commentary.
1219
1220 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
1221
1222 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1223 Use font-lock-keyword-face for macros and special forms (bug#8345).
1224
1225 2013-02-17 Didier Verna <didier@didierverna.net>
1226
1227 * net/network-stream.el (network-stream-open-starttls):
1228 Check that response to the starttls-command is non-nil. (Bug#13706)
1229
1230 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1231
1232 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1233 Don't assume all identifier chars have syntax word.
1234 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1235 Remove bar-not-symbol. Adjust callers.
1236 (lisp-mode-variables): Don't set a font-lock-syntax-table.
1237
1238 2013-02-17 Leo Liu <sdl.web@gmail.com>
1239
1240 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1241
1242 2013-02-17 Glenn Morris <rgm@gnu.org>
1243
1244 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1245
1246 * image-mode.el (image-mode-map): Add image-dired menu entry.
1247
1248 * image-dired.el (tumme): Make this alias obsolete.
1249
1250 2013-02-16 Glenn Morris <rgm@gnu.org>
1251
1252 * image.el (image-animated-types): Remove.
1253 (image-multi-frame-p): Rename from image-animated-p, and generalize.
1254 (image-animated-p): Make obsolete alias.
1255 (image-animate, image-nth-frame, image-animate-timeout):
1256 Use image-multi-frame-p.
1257 (image-animate-timeout): If no delay, use image-default-frame-delay.
1258 * image-mode.el (image-mode, image-toggle-animation):
1259 Use image-multi-frame-p. (Bug#763, bug#10739)
1260 (image-mode): Adjust startup message for a multi-frame image.
1261
1262 * image-mode.el (image-mode-map): Give it a menu.
1263
1264 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
1265
1266 * net/tramp-cache.el (tramp-connection-properties): New customer
1267 option.
1268 (tramp-get-connection-property): Use it.
1269
1270 * net/tramp-compat.el (top): Require 'trampver.
1271
1272 * net/tramp-sh.el (tramp-remote-process-environment):
1273 Set tramp-autoload cookie.
1274
1275 2013-02-16 Kevin Ryde <user42@zip.com.au>
1276
1277 * info-look.el (info-lookup-select-mode): If major-mode has no
1278 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1279
1280 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
1281
1282 * replace.el (read-regexp): Tighten the regexp that matches tag.
1283 When tag is retrieved with `find-tag-default', use regexp that
1284 matches tag at point. Also update docstring (Bug#13687).
1285
1286 2013-02-16 Eli Zaretskii <eliz@gnu.org>
1287
1288 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1289 add watch for the file, not its parent directory, since w32notify
1290 sets up the watch for the directory internally. (Bug#13725)
1291
1292 2013-02-16 Glenn Morris <rgm@gnu.org>
1293
1294 * image.el (image-default-frame-delay): New variable.
1295 (image-animated-p): Use image-default-frame-delay.
1296 (image-minimum-frame-delay): New constant.
1297 (image-animate-timeout): Use image-minimum-frame-delay.
1298
1299 * image.el (image-nth-frame): New, split from image-animate-timeout.
1300 (image-animate-timeout): Use image-nth-frame.
1301 * image-mode.el (image-goto-frame, image-next-frame)
1302 (image-previous-frame): New commands.
1303 (image-mode-map): Add new frame commands.
1304
1305 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
1306
1307 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1308 If col-desc already has help-echo, use it. (Bug#13563)
1309
1310 2013-02-16 Glenn Morris <rgm@gnu.org>
1311
1312 * image.el (image-current-frame): New variable.
1313 (image-animate-timeout): Set image-current-frame.
1314 * image-mode.el (image-mode): For animated images,
1315 display a frame counter via mode-line-process.
1316
1317 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1318
1319 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1320
1321 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1322
1323 2013-02-15 Alan Mackenzie <acm@muc.de>
1324
1325 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1326 global minor mode has been enabled, call the minor mode function
1327 for a new buffer once only, after the major mode hook, whilst
1328 allowing that hook explicitly to disable the minor mode.
1329 (MODE-disable-in-buffer): New (generated) function.
1330 (disable-MODE): New (generated) buffer local variable.
1331
1332 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
1333
1334 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1335 `iswitchb-next-match' and `iswitchb-prev-match' resply.
1336 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1337 `ido-next-match' and `ido-prev-match' resply.
1338 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1339 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1340 `icomplete-backward-completions' (Bug#13708).
1341
1342 2013-02-15 Glenn Morris <rgm@gnu.org>
1343
1344 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1345
1346 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
1347
1348 * net/goto-addr.el (goto-address-fontify): Add start and end args.
1349 (goto-address-fontify-region): Use them instead of narrowing, so
1350 syntax-ppss has access to the whole buffer.
1351
1352 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1353
1354 * progmodes/python.el: Explain how to restore "cc-mode"-like
1355 forward-sexp movement in header documentation (Bug#13642).
1356 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1357 comments and strings (GH bug 114).
1358
1359 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
1360
1361 * progmodes/python.el (python-info-current-defun): Fix current
1362 defun detection (Bug#13618).
1363
1364 2013-02-15 Chong Yidong <cyd@gnu.org>
1365
1366 * xml.el (xml-parse-string): Fix typo in handling of bad character
1367 references.
1368
1369 2013-02-15 Glenn Morris <rgm@gnu.org>
1370
1371 * play/fortune.el (fortune-compile): Simplify and fix previous change.
1372
1373 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
1374
1375 * net/tramp.el (tramp-debug-message):
1376 Add `tramp-condition-case-unless-debug'.
1377 (tramp-debug-on-error): New defvar.
1378 (tramp-condition-case-unless-debug): New defun.
1379 (tramp-file-name-handler): Use it.
1380
1381 2013-02-14 Juri Linkov <juri@jurta.org>
1382
1383 * info.el (Info-isearch-filter): Treat non-nil values of
1384 `search-invisible' including its default value `open'
1385 like the value `t' to match hidden text. (Bug#13402)
1386
1387 2013-02-14 Glenn Morris <rgm@gnu.org>
1388
1389 * help-fns.el (find-lisp-object-file-name): Give special treatment
1390 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
1391
1392 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
1393
1394 * net/quickurl.el (quickurl-save-urls):
1395 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
1396
1397 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
1398
1399 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1400 depth for unfinished percent literal. Not using it in the caller.
1401 (ruby-move-to-block): Jump over multiline literals of all types,
1402 ignoring code-looking contents inside them.
1403 (ruby-add-log-current-method): Improve performance at the expense
1404 of accuracy. `ruby-block-contains-point' is relatively slow, so
1405 only use it for method and singleton class blocks.
1406
1407 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1408
1409 Use ControlMaster where applicable. (Bug#13677)
1410
1411 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1412 replacing `tramp-detect-ssh-controlmaster'.
1413 (tramp-default-method): Use it.
1414
1415 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1416 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1417 arguments.
1418 [scpc, rsyncc]: Remove methods.
1419 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1420 and "ssh2_old".
1421 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
1422 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1423
1424 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1425
1426 * emacs-lisp/package.el (package--initialized): Move before first use.
1427
1428 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
1429
1430 * icomplete.el (icomplete-hide-common-prefix): New user option.
1431 (icomplete-first-match): New face.
1432 (icomplete-completions): Correct handling of "complete but not
1433 unique" (Bug#12638).
1434
1435 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
1436
1437 * descr-text.el (describe-char): Display the script (bug#13698).
1438
1439 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1440
1441 * tmm.el: Use lexical-binding and current-active-maps.
1442 (tmm-menubar): Use map-keymap and pcase.
1443 (tmm--completion-table): New function.
1444 (tmm-prompt): Use it to fix the menu order.
1445 (tmm-get-keybind): Use current-active-maps.
1446
1447 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
1448
1449 Add dired-hide-details-mode. (Bug#6799)
1450
1451 * locate.el (locate-mode): Set parent mode property to dired-mode.
1452
1453 * find-dired.el (find-dired): Call dired-insert-set-properties on
1454 initial information line. Set process mark on end of buffer.
1455 (find-dired-sentinel):
1456 Call dired-insert-set-properties on summary.
1457
1458 * dired.el (dired-hide-details-hide-symlink-targets)
1459 (dired-hide-details-hide-information-lines): New options.
1460 (dired-insert-directory):
1461 Set properties after final treatment of output.
1462 (dired-insert-set-properties):
1463 Set dired-hide-details-* properties.
1464 (dired-mode-map): Bind dired-hide-details-mode.
1465 (dired-mode): Set buffer-invisibility-spec to a list.
1466 (dired-next-line): Skip hidden lines.
1467 (dired-previous-line): Use dired-next-line.
1468 (dired-hide-details-mode): New minor mode.
1469 (dired-hide-details-update-invisibility-spec): New function.
1470
1471 2013-02-13 Glenn Morris <rgm@gnu.org>
1472
1473 * play/yow.el: Move to obsolete/. (Bug#9384)
1474
1475 2013-02-13 Juri Linkov <juri@jurta.org>
1476
1477 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1478 to select `ediff-control-frame' and set input focus correctly on Xfce.
1479 (Bug#12218)
1480
1481 2013-02-13 Juri Linkov <juri@jurta.org>
1482
1483 * image-mode.el (image-mode-map):
1484 * doc-view.el (doc-view-mode-map):
1485 * vc/ediff-util.el (ediff-setup-keymap):
1486 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1487
1488 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
1489
1490 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1491 performance. Instead of recalculating indentation fully for each
1492 line, sum up indentation depth based only on visited lines.
1493 (ruby-parse-partial): Increase the depth after "do" even when END
1494 is right after it.
1495 (ruby-parse-partial): When END is in the middle of a percent
1496 literal, increase the depth if the delimiter chars belong to the
1497 paren syntax class.
1498
1499 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
1500
1501 * play/fortune.el (fortune-compile): Also make the compiled file
1502 if it does not exist at all, not just if it is old. (Bug#5338)
1503
1504 2013-02-13 Glenn Morris <rgm@gnu.org>
1505
1506 * emacs-lisp/package.el (package-menu-execute): Doc fix.
1507
1508 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
1509
1510 * lisp/emacs-lisp/package.el (package-menu-execute):
1511 Add optional noquery argument. (Bug#13625)
1512
1513 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
1514
1515 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1516 if DIR exists and PARENTS is non-nil.
1517
1518 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
1519
1520 * progmodes/js.el (js--multi-line-declaration-indentation):
1521 Silence byte-compiler warning.
1522
1523 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
1524
1525 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1526
1527 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1528 only if it doesn't exist.
1529
1530 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1531 Set process marker.
1532
1533 2013-02-12 Tassilo Horn <tsdh@gnu.org>
1534
1535 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1536 UserInstallation when calling soffice to work around LibreOffice
1537 bug 37531.
1538
1539 2013-02-12 Glenn Morris <rgm@gnu.org>
1540
1541 * files.el (basic-save-buffer):
1542 Offer to create a non-existing directory. (Bug#3016)
1543
1544 * calc/calc-graph.el (calc-graph-show-dumb):
1545 * calendar/calendar.el (calendar-mode-map):
1546 * cus-edit.el (custom-mode-map):
1547 * ehelp.el (electric-help-map):
1548 * emulation/vip.el (vip-mode-map):
1549 * epa.el (epa-key-list-mode-map):
1550 * info.el (Info-mode-map):
1551 * mail/rmail.el (rmail-mode-map):
1552 * mail/rmailsum.el (rmail-summary-mode-map):
1553 * man.el (Man-mode-map):
1554 * net/newst-plainview.el (newsticker-mode-map):
1555 * progmodes/cpp.el (cpp-edit-mode-map):
1556 * progmodes/grep.el (grep-mode-map):
1557 * progmodes/idlw-help.el (idlwave-help-mode-map):
1558 * simple.el (special-mode-map):
1559 * startup.el (splash-screen-keymap):
1560 * view.el (view-mode-map):
1561 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
1562
1563 2013-02-11 Elias Pipping <pipping@lavabit.com>
1564
1565 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1566 (bug#13679).
1567
1568 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1569
1570 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1571
1572 2013-02-11 Glenn Morris <rgm@gnu.org>
1573
1574 * vc/diff.el (diff-use-labels): New variable.
1575 (diff-no-select): Use --label rather than -L, and first
1576 check that it is supported. (Bug#11067)
1577
1578 * files.el (enable-dir-local-variables): New variable.
1579 (hack-dir-local-variables): Respect enable-dir-local-variables.
1580 * tutorial.el (help-with-tutorial):
1581 Ignore directory-local variables. (Bug#11127)
1582
1583 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1584 (vc-svn-global-switches): ... to here. (Bug#13513)
1585
1586 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
1587
1588 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1589 Handle "foo (bar, default: xxx): " prompts.
1590
1591 2013-02-10 Chong Yidong <cyd@gnu.org>
1592
1593 * files.el (basic-save-buffer-1): Do not set
1594 buffer-file-coding-system-explicit (Bug#4533).
1595
1596 * mail/emacsbug.el (report-emacs-bug): Change binding of
1597 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1598
1599 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
1600
1601 * calc/calc.el (calc-allow-units-as-numbers): New variable.
1602 * calc/calc-units.el (calc-convert-units): Use new variable.
1603
1604 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1605
1606 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1607
1608 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1609 buffer-file-type.
1610
1611 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1612 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1613 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1614 coding-system-for-write instead.
1615
1616 * jka-compr.el (jka-compr-write-region): Don't bind
1617 buffer-file-type.
1618
1619 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1620 buffer-file-type.
1621
1622 * files.el (file-name-buffer-file-type-alist): Remove defvar.
1623 (insert-file-contents-literally): Remove reference to
1624 file-name-buffer-file-type-alist.
1625
1626 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1627 make-obsolete.
1628 (find-buffer-file-type-match, find-buffer-file-type): Remove.
1629 (find-buffer-file-type-coding-system): Remove references to
1630 find-buffer-file-type-match, find-buffer-file-type, and
1631 buffer-file-type.
1632 Don't put find-buffer-file-type-coding-system into
1633 file-coding-system-alist.
1634 (find-file-binary, find-file-text): Bind coding-system-for-read
1635 instead of file-name-buffer-file-type-alist.
1636
1637 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
1638
1639 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1640 converter (Bug#13622).
1641 (doc-view-unoconv-program): Make obsolete alias.
1642 (doc-view-odf->pdf-converter-program): New variable.
1643 (doc-view-odf->pdf-converter-function): New variable.
1644 (doc-view-mode-p): Use it.
1645 (doc-view-odf->pdf-converter-unoconv):
1646 Rename from `doc-view-odf->pdf-converter-unoconv'.
1647 (doc-view-odf->pdf-converter-soffice): New function.
1648 (doc-view-convert-current-doc):
1649 Use `doc-view-odf->pdf-converter-function'.
1650
1651 2013-02-09 Chong Yidong <cyd@gnu.org>
1652
1653 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1654 view-echo-area-messages (Bug#13340).
1655
1656 * help.el (view-echo-area-messages): Use display-buffer.
1657
1658 * dired-x.el (dired-do-run-mail): Prompt for confirmation
1659 (Bug#13561).
1660
1661 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1662
1663 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1664 Eval body right away, now that we do eager macroexpansion (bug#13605).
1665
1666 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1667 (fundamental-mode): Use run-mode-hooks.
1668
1669 * eshell/esh-proc.el (eshell/kill): Fix last change.
1670 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1671
1672 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
1673
1674 * eshell/esh-proc.el (eshell/kill): Rewrite.
1675
1676 * eshell/em-ls.el (show-almost-all): Declare.
1677 (eshell-do-ls): Add support for -A argument.
1678
1679 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
1680
1681 * icomplete.el (icomplete-forward-completions)
1682 (icomplete-backward-completions): Handle corner case (bug#13602).
1683
1684 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
1685
1686 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1687 be nil. Handle this. (Bug#13636)
1688
1689 2013-02-07 Richard Stallman <rms@gnu.org>
1690
1691 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
1692 `save-buffer-coding-system'.
1693
1694 2013-02-07 Alan Mackenzie <acm@muc.de>
1695
1696 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
1697 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
1698 (c-parse-state-get-strategy): Don't return 'BOD any more.
1699 (c-append-lower-brace-pair-to-state-cache):
1700 Extra parameter HERE instead of narrowing.
1701 Widen to top of buffer before searching backwards for a brace pair.
1702 (c-state-push-any-brace-pair): Add HERE parameter to function call.
1703 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
1704 Narrow to parameter HERE, in place of being called narrowed.
1705 (c-remove-stale-state-cache): Extra parameter HERE in place of
1706 narrowing. Check there's an open brace in the cache before
1707 searching for its match.
1708 (c-invalidate-state-cache-1): Add HERE parameter to function call.
1709 (c-parse-state-1): Don't narrow here for 'forward strategy,
1710 instead passing extra parameter HERE to several functions.
1711 Remove 'BOD strategy.
1712
1713 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
1714
1715 * emacs-lisp/package.el (describe-package-1): Tell what archive is
1716 used to install the package.
1717
1718 2013-02-06 Glenn Morris <rgm@gnu.org>
1719
1720 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
1721 if we can't get user input. (Bug#6567)
1722
1723 * startup.el (command-line): If simple.el is missing,
1724 test and warn about for some possible causes.
1725
1726 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1727
1728 * cus-start.el (all): Add ns-use-native-fullscreen.
1729
1730 2013-02-05 Glenn Morris <rgm@gnu.org>
1731
1732 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
1733
1734 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1735 Fix directory creation in fallback case.
1736
1737 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1738
1739 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
1740 (vc-update-change-log): Use dolist.
1741
1742 2013-02-04 Chong Yidong <cyd@gnu.org>
1743
1744 * thingatpt.el: Rewrite the URL detection routines, absorbing some
1745 code from ffap.el.
1746 (thing-at-point-beginning-of-url-regexp): New var.
1747 (thing-at-point-uri-schemes): Update list of URI schemes.
1748 (thing-at-point-url-regexp): Variable deleted.
1749 (thing-at-point-markedup-url-regexp): Disallow newlines.
1750 (thing-at-point-newsgroup-regexp)
1751 (thing-at-point-newsgroup-heads)
1752 (thing-at-point-default-mail-uri-scheme): New variables.
1753 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
1754 method to find the possible bounds of the URI at point.
1755 New optional argument to find ill-formed URIs.
1756 (thing-at-point-url-at-point): Rewrite. New arguments for finding
1757 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
1758 the scheme-adding heuristics from ffap-url-at-point.
1759 (thing-at-point--bounds-of-well-formed-url): New function.
1760 Do parens matching to decide whether to include parens in the URI
1761 (Bug#9153).
1762
1763 * ffap.el: Require thingatpt.
1764 (ffap-url-at-point): Delegate URI detection to thing-at-point.
1765 All URI-valid characters are now recognized (Bug#5673).
1766 (ffap-string-at-point): Use use-region-p.
1767 (ffap-url-regexp): Extra character is handled by thing-at-point.
1768 (ffap-string-at-point-mode-alist): Allow parentheses.
1769 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
1770 Convert to aliases; code moved to thingatpt.el.
1771 (ffap-gnus-hook): Use setq-local.
1772
1773 2013-02-04 Glenn Morris <rgm@gnu.org>
1774
1775 * emacs-lisp/ert.el (ert--explain-format-atom):
1776 Don't try to print non-characters as characters. (Bug#13543)
1777
1778 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
1779
1780 * net/tramp.el (tramp-debug-message): Extend function exclude list.
1781 (tramp-backtrace): New defun.
1782 (tramp-handle-insert-file-contents): Use `visit' when inserting
1783 the local copy.
1784
1785 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
1786 Use `remote-file-name-inhibit-cache'.
1787
1788 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
1789
1790 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
1791 (bug#13614).
1792
1793 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
1794 current-load-list (bug#13366).
1795
1796 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
1797
1798 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1799 Identify g++ template instantiation trace. (Bug#12287)
1800 (compilation-mode-hook, compilation-start-hook)
1801 (compilation-window-height): Simplify docstrings. (Bug#13379)
1802
1803 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1804
1805 * mouse.el (mouse-drag-track): Always deactivate the mark before
1806 running the final event's command since that command is in charge of
1807 activating the mark if needed (bug#13523).
1808
1809 2013-02-02 Juri Linkov <juri@jurta.org>
1810
1811 * replace.el (perform-replace): Move let-bindings of isearch-*
1812 variables deeper to the loop that searches for the next match.
1813 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
1814 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
1815 (Bug#13579)
1816
1817 * isearch.el (isearch-search-fun-default): Check for null
1818 first element of isearch-cmds as a precaution when it's used
1819 with inactive isearch.
1820
1821 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
1822
1823 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
1824 error when buffer in question is narrowed so position 1 is out of
1825 visible part.
1826
1827 2013-02-02 Glenn Morris <rgm@gnu.org>
1828
1829 * textmodes/remember.el (remember-clipboard): Doc fix.
1830
1831 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1832
1833 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
1834 properties (bug#13179).
1835
1836 2013-02-02 Juri Linkov <juri@jurta.org>
1837
1838 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
1839 instead of hard-coded default face `match'. (Bug#9438)
1840
1841 2012-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
1842
1843 * vc/vc-arch.el (vc-arch-registered):
1844 * vc/vc-bzr.el (vc-bzr-registered):
1845 * vc/vc-cvs.el (vc-cvs-registered):
1846 * vc/vc-git.el (vc-git-registered):
1847 * vc/vc-hg.el (vc-hg-registered):
1848 * vc/vc-mtn.el (vc-mtn-registered):
1849 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
1850 (Bug#13139)
1851
1852 * info.el (Info-next-reference, Info-prev-reference): Add numeric
1853 prefix argument. (Bug#11656)
1854
1855 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
1856
1857 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
1858
1859 2013-02-01 Glenn Morris <rgm@gnu.org>
1860
1861 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
1862 if the backend is known not to support it.
1863
1864 * imenu.el (imenu-default-create-index-function):
1865 Tweak infinite loop test to check for forward motion as well as none.
1866
1867 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
1868
1869 * net/soap-client.el (soap-invoke): Encode the string for
1870 `url-request-data' as UTF-8.
1871 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
1872
1873 2013-02-01 Glenn Morris <rgm@gnu.org>
1874
1875 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
1876
1877 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
1878
1879 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
1880
1881 * net/tramp.el (tramp-tramp-file-p): Comment check for
1882 `string-as-unibyte'. The function does not exist on XEmacs, and
1883 likely we need another approach.
1884
1885 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
1886 `tramp-gw-*' variables are bound.
1887
1888 2013-01-31 Glenn Morris <rgm@gnu.org>
1889
1890 * files.el (basic-save-buffer-2): Choose coding system for
1891 writing the file before backing it up, to reduce delay between
1892 backing up and writing the new version. (Bug#13522)
1893
1894 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
1895
1896 * simple.el (cycle-spacing): New command.
1897 (just-one-space): Use it.
1898
1899 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
1900
1901 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
1902 (opascal-newline-always-indents): Remove custom.
1903 (opascal-tab, opascal-newline): Remove commands.
1904 (opascal-new-comment-line): Insert "\n" instead of calling newline.
1905 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
1906 (opascal-save-match-data): Remove, use save-match-data instead.
1907 (opascal-save-state): Use with-silent-modifications.
1908
1909 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
1910 (bug#13585).
1911
1912 2013-01-30 Juri Linkov <juri@jurta.org>
1913
1914 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1915 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
1916 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
1917
1918 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1919
1920 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
1921 column if we're just deleting the backslashes.
1922 (makefile-fill-paragraph): Use eolp.
1923
1924 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1925
1926 * autorevert.el (auto-revert-use-notify): Fix docstring.
1927
1928 2013-01-30 Leo Liu <sdl.web@gmail.com>
1929
1930 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
1931
1932 2013-01-30 Glenn Morris <rgm@gnu.org>
1933
1934 * mouse.el (mouse-drag-line): Avoid pushing same event onto
1935 unread-command-events twice in some cases. This tries to implement
1936 the 2012-07-26 changes in a different way. (Bug#13560)
1937
1938 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1939
1940 * progmodes/python.el
1941 (python-pdbtrack-comint-output-filter-function): Enhancements on
1942 stacktrace detection. (thanks @gnovak)
1943
1944 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1945
1946 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
1947 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
1948 Use defvar-local.
1949 (jit-lock-register): Use setq-local.
1950
1951 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
1952
1953 * calc-units.el (math-default-units-table): Remove initial value.
1954 (calc-convert-units): Treat expressions where all the units cancel as
1955 if they didn't have units.
1956
1957 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
1958
1959 * net/tramp.el (tramp-process-connection-type): Fix docstring.
1960 (tramp-completion-reread-directory-timeout): Fix type.
1961 (tramp-connection-min-time-diff): New defcustom.
1962
1963 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
1964
1965 2013-01-30 Glenn Morris <rgm@gnu.org>
1966
1967 * imenu.el (imenu-default-create-index-function):
1968 Put back a version of the infinite loop test removed 2013-01-23.
1969
1970 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
1971
1972 * progmodes/python.el (python-shell-parse-command):
1973 Find python-shell-interpreter with modified environment.
1974
1975 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
1978
1979 2013-01-29 Alan Mackenzie <acm@muc.de>
1980
1981 Amend to fontify /regexp/s in actions correctly.
1982 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
1983 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
1984 are no longer included.
1985 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
1986 What used to be these variables without "-line" in the name.
1987 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
1988 (c-awk-non-arith-op-bra-re): Now also matches {.
1989 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
1990 "return", and "case".
1991 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
1992 by /.
1993 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
1994 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
1995
1996 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
1997
1998 * autorevert.el (auto-revert-use-notify):
1999 Use `custom-initialize-default' for initialization. (Bug#13583)
2000
2001 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
2002
2003 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2004 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
2005 in `tramp-file-name-handler'.
2006 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
2007 compatibility.
2008 (tramp-compute-multi-hops): Check, whether
2009 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
2010
2011 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
2014 (bug#13297).
2015
2016 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
2017
2018 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
2019 checks made superfluous by the \_< operator.
2020 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
2021 temporarily) broken indentation.
2022 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2023 Highlight nested constants, too. \_< broke that.
2024
2025 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
2026
2027 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
2028 instead of "\\b".
2029
2030 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
2031
2032 * autorevert.el (auto-revert-handler): Notifications which result
2033 from a saved file shall not be taken into account. (Bug#13557)
2034
2035 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
2036
2037 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
2038 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
2039 (lisp-mode): Pass t for it. (Bug#13556)
2040
2041 2013-01-25 Alan Mackenzie <acm@muc.de>
2042
2043 AWK Mode: Fix indentation bug at top level. Bug #12274.
2044
2045 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
2046 just before CASE 5D.
2047
2048 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
2049
2050 * net/socks.el (socks-nslookup-host): Use string-to-number.
2051
2052 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
2053
2054 * autorevert.el (auto-revert-remote-files)
2055 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
2056 (auto-revert-notify-enabled, auto-revert-use-notify)
2057 (auto-revert-notify-watch-descriptor-hash-list)
2058 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
2059 (auto-revert-notify-event-descriptor)
2060 (auto-revert-notify-event-action)
2061 (auto-revert-notify-event-file-name): Doc fix.
2062 (global-auto-revert-mode): Reorder checks.
2063 (auto-revert-notify-rm-watch): Respect changed values of
2064 `auto-revert-notify-watch-descriptor-hash-list'.
2065 (auto-revert-notify-add-watch): Check for
2066 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
2067 `inotify-add-watch'. Watch `default-directory' instead of
2068 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
2069 has a changed meaning now. (Bug#13540)
2070 (auto-revert-notify-handler): Change implementation wrt events
2071 returning from a directory.
2072 (auto-revert-handler): Reorder implementation for checks of remote
2073 files.
2074 (auto-revert-buffers): Fix parentheses error.
2075
2076 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
2077
2078 * progmodes/python.el: Enhancements to header documentation about
2079 skeletons. (Bug#5716)
2080
2081 * imenu.el (imenu-default-create-index-function): Remove useless
2082 infinite loop check. (Bug#13438)
2083
2084 2013-01-25 Alan Mackenzie <acm@muc.de>
2085
2086 Fix a bug in the state cache mechanism. Refactor this a bit.
2087
2088 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
2089 `cache-pos' element from the return value.
2090 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
2091 buffer to enable proper searching from beyond HERE. Amend the
2092 test for detecting the sought brace pair. Amend the value written
2093 to the "brace desert cache" when the brace isn't found.
2094 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
2095 and several other variables analogously.
2096 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
2097 parameter to a locally calculated variable.
2098 (c-parse-state-1): Change the calling conventions to the two
2099 defuns involving `cache-pos'.
2100
2101 2013-01-25 Chong Yidong <cyd@gnu.org>
2102
2103 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
2104
2105 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
2106
2107 * paren.el (show-paren-function): Make sure to set 'priority and
2108 'face only if the overlay does exist.
2109
2110 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
2111
2112 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
2113
2114 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
2115 basic attributes.
2116 (tramp-sh-handle-set-file-acl): Improve error checking.
2117
2118 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2119
2120 * doc-view.el (doc-view-display): Force mode line update until all
2121 document is converted. Suggested by Stefan Monnier (Bug#13164).
2122
2123 2013-01-23 Bastien Guerry <bzg@gnu.org>
2124
2125 * paren.el (show-paren-function): Make sure an overlay exists
2126 before trying to delete it. Also use `pos' as a position only
2127 when it is an integer.
2128
2129 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
2130
2131 * play/gametree.el (gametree-break-line-here): Use point-marker.
2132
2133 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
2134
2135 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
2136 Mark descriptive parts with `display' property.
2137
2138 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2139
2140 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
2141 New variable to map standard dict names to hunspell ones.
2142 (ispell-set-spellchecker-params): Make sure specific dict names
2143 are used for standard dicts with hunspell.
2144
2145 2013-01-21 Tassilo Horn <tsdh@gnu.org>
2146
2147 * textmodes/reftex-cite.el (reftex-format-citation): Add format
2148 chars for note (%N) and url (%U).
2149 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
2150
2151 2013-01-21 Juri Linkov <juri@jurta.org>
2152
2153 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
2154 in addition to existing separate binding `meta f10' in `global-map'.
2155 (Bug#13484)
2156
2157 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
2158
2159 Improve XEmacs compatibility.
2160
2161 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
2162
2163 * net/tramp-adb.el (top): Require `time-date'.
2164 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
2165 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
2166 Use `tramp-file-name-handler'.
2167 (tramp-adb-maybe-open-connection):
2168 Use `tramp-compat-set-process-query-on-exit-flag'.
2169
2170 * net/tramp-sh.el (tramp-sh-handle-file-acl):
2171 Use `tramp-compat-funcall'.
2172
2173 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2174 `tramp-compat-funcall'.
2175
2176 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
2177
2178 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2179 reimplementation using "adb shell command ..." instead of running
2180 remote shell interactively.
2181
2182 2013-01-20 Glenn Morris <rgm@gnu.org>
2183
2184 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2185 Add native profiler menu entries.
2186
2187 * profiler.el (profiler-running-p): New function.
2188 (profiler-cpu-profile): Use profiler-running-p.
2189 (profiler-report-mode-map): Add some more menu entries.
2190
2191 2013-01-19 Glenn Morris <rgm@gnu.org>
2192
2193 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2194 fixes 2012-12-07 change. (Bug#13499)
2195
2196 2013-01-19 Leo Liu <sdl.web@gmail.com>
2197
2198 * dired.el (dired-get-marked-files): Prune erroneous values due to
2199 last change. (Bug#13152)
2200
2201 2013-01-19 Glenn Morris <rgm@gnu.org>
2202
2203 * progmodes/etags.el (tags-table-check-computed-list):
2204 Preserve point in tags buffer. (Bug#13412)
2205
2206 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2207
2208 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
2209 Chong Yidong <cyd@gnu.org>
2210
2211 * image-mode.el (image-next-file, image-previous-file):
2212 New commands (Bug#8453).
2213 (image-mode-map): Bind them to n and p.
2214 (image-mode--images-in-directory): New helper function.
2215
2216 2013-01-19 Chong Yidong <cyd@gnu.org>
2217
2218 * image-mode.el (image-mode-fit-frame): Add a frame argument.
2219 Suggested by Drew Adams (Bug#7730). Handle window decorations;
2220 save and restore the old window configuration.
2221
2222 2013-01-18 Leo Liu <sdl.web@gmail.com>
2223
2224 * progmodes/js.el: Tweak autoload cookie for alias.
2225
2226 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2227
2228 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2229 buffer local, again. This was lost with the fix on 2013-01-12.
2230
2231 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
2232
2233 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2234 order to support several eshell buffers in parallel.
2235
2236 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
2237
2238 * autorevert.el (auto-revert-use-notify): In the :set function, do
2239 not modify `kill-buffer-hook'.
2240 (auto-revert-notify-rm-watch):
2241 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2242 (auto-revert-notify-add-watch): Do not call
2243 `auto-revert-notify-rm-watch', but add it to a buffer local
2244 `kill-buffer-hook'.
2245
2246 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
2247
2248 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2249 call to `eval' rather than a backquoted lambda.
2250
2251 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2252
2253 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2254 to return an explicit nil.
2255 (advice--remove-function): Change accordingly.
2256
2257 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2258 the use of nadvice.el.
2259
2260 * progmodes/which-func.el (which-function): Silence imenu errors
2261 (bug#13433).
2262
2263 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2264
2265 * progmodes/sql.el: (sql-imenu-generic-expression):
2266 (sql-mode-font-lock-object-name): Match schema qualified names.
2267 (sql-connect): Use string keys.
2268 (sql-product-interactive): Wait for interpreter prompt.
2269 (sql-comint-oracle): Set process coding based on NLS_LANG.
2270
2271 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
2272
2273 * progmodes/sql.el (sql-output-to-send): Remove, unused.
2274 (sql-interactive-remove-continuation-prompt):
2275 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2276
2277 2013-01-14 Leo Liu <sdl.web@gmail.com>
2278
2279 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2280 (Bug#13420)
2281
2282 2013-01-14 Glenn Morris <rgm@gnu.org>
2283
2284 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2285 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
2286
2287 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
2288
2289 * progmodes/python.el (python-nav-end-of-statement):
2290 Fix cornercase when handling multiline strings.
2291
2292 2013-01-13 Richard Stallman <rms@gnu.org>
2293
2294 * mail/sendmail.el (mail-position-on-field): Add doc string.
2295
2296 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2297 Get current message boundaries and pass them to
2298 message-forward-make-body-mime. Minor style changes.
2299
2300 2013-01-13 Eli Zaretskii <eliz@gnu.org>
2301
2302 * cus-start.el (all): Avoid warnings about
2303 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2304
2305 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2306
2307 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2308
2309 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2310
2311 * jit-lock.el (jit-lock-debug-mode): New minor mode.
2312 (jit-lock--debug-fontifying): New var.
2313 (jit-lock--debug-fontify): New function.
2314 * subr.el (condition-case-unless-debug): Don't prevent catching the
2315 error, just let the debbugger run.
2316 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2317 timer code and don't drop errors silently.
2318
2319 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
2320
2321 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2322 `permanent-local' property.
2323 (auto-revert-notify-handler): Use `file-equal-p'.
2324
2325 2013-01-12 Eli Zaretskii <eliz@gnu.org>
2326
2327 * autorevert.el (auto-revert-notify-handler): Fix filtering of
2328 file notification by ACTION. For filtering by file name, compare
2329 only the non-directory part of the file name.
2330
2331 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
2332
2333 * autorevert.el: Use cl-lib instead of cl.
2334
2335 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2336 (vc-bzr-checkin): Use it.
2337 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2338 will preserve match-data.
2339
2340 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
2341
2342 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2343 (js--declaration-keyword-re): New var.
2344 (js--multi-line-declaration-indentation): New function.
2345 (js--proper-indentation): Use it.
2346
2347 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2348
2349 * calc/calc.el (calc-highlight-selections-with-faces)
2350 (calc-dispatch):
2351 * comint.el (comint-history-isearch-message):
2352 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2353 * ffap.el (ffap-string-at-point-region, ffap-next)
2354 (ffap-string-at-point, ffap-string-around)
2355 (ffap-copy-string-as-kill, ffap-highlight-overlay)
2356 (ffap-literally):
2357 * font-lock.el (font-lock-keywords-alist)
2358 (font-lock-removed-keywords-alist):
2359 * help-mode.el (help-xref-symbol-regexp):
2360 * info.el (Info-find-emacs-command-nodes):
2361 * international/mule.el (add-to-coding-system-list):
2362 * isearch.el (isearch-message-function, isearch-fail-pos):
2363 * misearch.el (multi-isearch-next-buffer-function):
2364 * newcomment.el (comment-box):
2365 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2366 (pr-setting-database):
2367 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2368 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2369 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2370 (pike-font-lock-keywords-3):
2371 * progmodes/compile.el (compile):
2372 * progmodes/etags.el (tags-table-files)
2373 (tags-table-files-function, tags-included-tables-function):
2374 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2375 (gdb-restore-windows):
2376 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2377 (ps-n-up-filling-database):
2378 * server.el (server-buffer, server-log):
2379 * simple.el (newline, delete-backward-char, delete-forward-char)
2380 (minibuffer-history-isearch-message, kill-line, track-eol)
2381 (temporary-goal-column):
2382 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2383 (flyspell-default-deplacement-commands):
2384 * textmodes/ispell.el (ispell-accept-output):
2385 * textmodes/sgml-mode.el (html-tag-help):
2386 * vc/compare-w.el (compare-ignore-whitespace)
2387 (compare-ignore-case, compare-windows-dehighlight):
2388 * vc/diff.el (diff):
2389 * whitespace.el (whitespace-point)
2390 (whitespace-font-lock-refontify, whitespace-bob-marker)
2391 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2392
2393 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
2394
2395 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2396 (auto-revert-notify-rm-watch): Ignore errors.
2397 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
2398 inotify, and '(size last-write-time) for w32notify.
2399 Set buffer-local `auto-revert-use-notify' to nil when adding a file
2400 watch fails - this is a fallback to the file modification check.
2401 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2402 (auto-revert-notify-event-action)
2403 (auto-revert-notify-event-file-name): New defuns.
2404 (auto-revert-notify-handler): Use them. Implement first
2405 plausibility checks.
2406 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2407
2408 2013-01-11 Julien Danjou <julien@danjou.info>
2409
2410 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2411 max are almost equal. Also return the correct value for V which is
2412 already between 0 and 1.
2413
2414 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2415
2416 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2417
2418 2013-01-11 Eli Zaretskii <eliz@gnu.org>
2419
2420 * autorevert.el (auto-revert-notify-rm-watch)
2421 (auto-revert-notify-add-watch): Fix typos in w32notify function
2422 names.
2423
2424 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2425
2426 * autorevert.el (auto-revert-notify-enabled): Move up.
2427 (auto-revert-use-notify): New defcustom.
2428 (auto-revert-mode, global-auto-revert-mode)
2429 (auto-revert-notify-add-watch, auto-revert-handler)
2430 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2431 `auto-revert-notify-enabled'.
2432
2433 2013-01-10 Elias Pipping <pipping@exherbo.org>
2434
2435 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2436 * doc-view.el (doc-view-document->bitmap):
2437 Use doc-view-single-page-converter-function instead of
2438 single-page-converter arg; adjust callers.
2439
2440 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
2441
2442 * progmodes/which-func.el (which-function): Understand Semantic's use
2443 of overlays in imenu--index-alist.
2444
2445 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
2446
2447 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
2448 (Man-man-k-use-anchor): New var.
2449 (Man-parse-man-k): New function.
2450 (Man-completion-table): Use it.
2451 (man): Flush the completion cache between uses.
2452
2453 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
2454
2455 * autorevert.el: Add file watch support.
2456 (auto-revert-notify-enabled): New defconst.
2457 (auto-revert-notify-watch-descriptor-hash-list)
2458 (auto-revert-notify-watch-descriptor)
2459 (auto-revert-notify-modified-p): New defvars.
2460 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2461 (auto-revert-notify-handler): New defuns.
2462 (auto-revert-mode, global-auto-revert-mode): Remove file watches
2463 when mode is disabled.
2464 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2465 (auto-revert-buffers): Add file watches for active buffers.
2466
2467 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2468
2469 * cus-start.el (toplevel): Only allow float values for
2470 scroll-up-aggressively and scroll-down-aggressively.
2471 Allow any number for line-spacing.
2472
2473 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2474
2475 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2476 (doc-view-pdf->png-converter-function): Use mupdf if available.
2477 (doc-view-djvu->png-converter-function)
2478 (doc-view-ps->png-converter-function): Remove.
2479 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2480 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2481 (doc-view-already-converted-p): Adjust accordingly.
2482 (doc-view-mode-p): Simplify.
2483 (doc-view-enlarge): Use setq-local.
2484 (doc-view-pdf->png-converter-ghostscript)
2485 (doc-view-djvu->png-converter-ddjvu)
2486 (doc-view-pdf->png-converter-mupdf): Rework to call
2487 doc-view-start-process directly.
2488 (doc-view-pdf/ps->png): Simplify accordingly.
2489 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2490 (doc-view-document->bitmap): Rename from doc-view-document->png.
2491 (doc-view-convert-current-doc): Merge pdf and djvu cases.
2492 (doc-view-set-slice-from-bounding-box): Fix completion table.
2493 (doc-view-mode): Use add-hook for after-revert-hook.
2494
2495 2013-01-10 Glenn Morris <rgm@gnu.org>
2496
2497 * emacs-lisp/authors.el (authors-ignored-files)
2498 (authors-valid-file-names, authors-renamed-files-alist):
2499 Add some more entries.
2500
2501 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2502
2503 * image-mode.el (image-mode-winprops): Don't throw away the fallback
2504 `t' pseudo-window entry.
2505
2506 2013-01-10 Alan Mackenzie <acm@muc.de>
2507
2508 Fix bugs in the c-parse-state mechanism. Reuse some markers
2509 instead of continually generating new ones.
2510
2511 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2512 (c-state-old-cpp-end-marker): New variables.
2513 (c-append-lower-brace-pair-to-state-cache): Start a backward
2514 search for "}" definitively outside CPP constructs.
2515 (c-remove-stale-state-cache): Inform the caller of a need to
2516 search back for a brace pair in certain circumstances.
2517 (c-state-maybe-marker): New macro.
2518 (c-parse-state): Reuse markers when appropriate.
2519
2520 2013-01-10 Glenn Morris <rgm@gnu.org>
2521
2522 * simple.el (execute-extended-command): Doc fix.
2523 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
2524
2525 2013-01-10 Chong Yidong <cyd@gnu.org>
2526
2527 * faces.el (read-face-name): Doc fix.
2528
2529 2013-01-10 Roland Winkler <winkler@gnu.org>
2530
2531 * emacs-lisp/crm.el: Allow any regexp for separators.
2532 (crm-default-separator): All spaces around the default comma separator.
2533 (crm--completion-command): New macro.
2534 (crm-completion-help, crm-complete, crm-complete-word): Use it.
2535 (crm-complete-and-exit): Handle non-single-char separators.
2536
2537 2013-01-09 Elias Pipping <pipping@lavabit.com>
2538
2539 * doc-view.el: Add support for DjVu (bug#13164).
2540 (doc-view-djvu->png-converter-function): New config var.
2541 (doc-view-single-page-converter-function, doc-view--image-type)
2542 (doc-view--image-file-extension): New vars.
2543 (doc-view-mode): Initialize them.
2544 (doc-view-goto-page): Use them.
2545 (doc-view-mode-p): Add support for ddjvu.
2546 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2547 (doc-view-set-up-single-converter): New funs.
2548 (doc-view-pdf/ps->png): Extend for djvu.
2549 (doc-view-document->png): Rename from doc-view-pdf->png.
2550 (doc-view-convert-current-doc): Handle djvu.
2551 (doc-view-insert-image, doc-view-display)
2552 (doc-view-already-converted-p): Don't hardcode png.
2553 (doc-view-set-doc-type): Recognize djvu docs.
2554
2555 2013-01-09 Elias Pipping <pipping@lavabit.com>
2556
2557 * doc-view.el: Add support for mupdf converter (bug#13164).
2558 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2559 (doc-view-ps->png-converter-function): New config vars.
2560 (doc-view-pdf->png-converter-ghostscript)
2561 (doc-view-ps->png-converter-ghostscript)
2562 (doc-view-pdf->png-converter-mupdf): New functions.
2563 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2564
2565 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
2566
2567 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2568 first in session cache: When `tramp-own-remote-path' is in
2569 `tramp-remote-path', the remote path is only set in the session
2570 cache.
2571
2572 2013-01-09 Glenn Morris <rgm@gnu.org>
2573
2574 * emacs-lisp/trace.el (trace-function-foreground)
2575 (trace-function-background): Doc fix.
2576
2577 2013-01-09 Juri Linkov <juri@jurta.org>
2578
2579 * international/mule-cmds.el (read-char-by-name): Move let-binding
2580 of completion-ignore-case around completing-read to fix regression
2581 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2582 `string-match-p' using the nil value of `case-fold-search' and
2583 `completion-ignore-case' in `completion-pcm--all-completions'.
2584 (Bug#12615).
2585
2586 2013-01-09 Glenn Morris <rgm@gnu.org>
2587
2588 * progmodes/compile.el (compilation-parse-errors):
2589 Fix typo. (Bug#13369)
2590
2591 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
2592
2593 * comint.el (comint-send-input): Check size of buffer before
2594 waiting for process output, in case already accepted. (Bug#13290)
2595
2596 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
2597
2598 Spelling fixes.
2599 * net/tramp-adb.el (tramp-adb-get-toolbox):
2600 Fix misspelling of 'unknown'.
2601
2602 2013-01-08 Juri Linkov <juri@jurta.org>
2603
2604 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2605 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2606 Use underline style wave on terminals that support it. (Bug#13000)
2607
2608 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2609
2610 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2611 the predicate returns nil.
2612
2613 * simple.el: Use lexical-binding.
2614 (primitive-undo): Use pcase.
2615 (minibuffer-history-isearch-push-state): Use a closure.
2616
2617 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2618
2619 * simple.el (primitive-undo): Move from undo.c.
2620
2621 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2622
2623 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2624 (cvs-mode-remove-handled): Use it (bug#13380).
2625
2626 * emacs-lisp/nadvice.el (advice--tweak): New function.
2627 (advice--remove-function, advice--subst-main): Use it.
2628
2629 * emacs-lisp/advice.el: Update commentary.
2630
2631 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
2632
2633 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2634 Remove spurious entry.
2635
2636 2013-01-08 Glenn Morris <rgm@gnu.org>
2637
2638 * net/tramp.el (tramp-default-host-alist): Add :version.
2639
2640 2013-01-08 Juri Linkov <juri@jurta.org>
2641
2642 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2643 single completion. (Bug#12456)
2644 (info--manual-names): Expand node completions into an explicit list
2645 before appending it to another list. Filter out internal buffers
2646 with the leading space in the buffer name. (Bug#10771)
2647
2648 2013-01-08 Juri Linkov <juri@jurta.org>
2649
2650 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2651 that defaults to the Top node.
2652 (Info-goto-node, Info-read-node-name): Doc fix to mention that
2653 the short format (FILENAME) goes to the Top node.
2654 (Info-build-node-completions): Rename arg `file' to `filename'.
2655 (Bug#13365)
2656
2657 2013-01-07 Bastien Guerry <bzg@gnu.org>
2658
2659 * menu-bar.el (menu-bar-search-documentation-menu):
2660 Use `apropos-user-option' and fix the help message.
2661
2662 2013-01-07 Bastien Guerry <bzg@gnu.org>
2663
2664 * apropos.el (apropos-do-all): Update docstring.
2665 (apropos-user-option-button): New face.
2666 (apropos-user-option): Rename from `apropos-variable' and update
2667 docstring.
2668 (apropos-variable): Rewrite, now show all variables by default.
2669 (apropos-print): Mention "User option" instead of "Variable" when
2670 printing doc for user options. (Bug#13276)
2671
2672 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
2673
2674 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2675 Handle filename correctly, when parsing "source -> target" symlink
2676 output.
2677 (tramp-adb-handle-set-file-times): New defun.
2678
2679 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
2680
2681 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2682 advice list when the interactive-spec of ad-Advice-* changes.
2683
2684 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
2685
2686 * wid-edit.el (widget-default-get): Work for inlined elements.
2687 (Bug#12670)
2688
2689 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
2690
2691 * net/tramp.el (tramp-default-host-alist): New defcustom.
2692 (tramp-find-host): Use it.
2693 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
2694 `eshell-directory-change-hook'.
2695
2696 * net/tramp-adb.el (top): Add adb specific entry in
2697 `tramp-default-host-alist'.
2698 (tramp-adb-file-name-host): Remove function.
2699 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2700 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
2701
2702 * net/tramp-sh.el: Move eshell integration code to tramp.el.
2703
2704 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
2705
2706 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
2707
2708 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
2709
2710 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
2711 consist of more than one digit.
2712 (tramp-adb-file-name-handler-alist):
2713 Use `tramp-handle-file-exists-p' consistently.
2714 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
2715 (tramp-adb-handle-file-exists-p): Remove function.
2716 (tramp-adb-file-name-host): New defun.
2717 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2718 Use it.
2719 (tramp-adb-maybe-open-connection): Set "remote-path" property.
2720
2721 2013-01-06 Chong Yidong <cyd@gnu.org>
2722
2723 * vc/vc.el (vc-next-action): Detect buffer modifications
2724 conflicting with locking VCS operation (Bug#11490).
2725
2726 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
2727
2728 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
2729
2730 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2731 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
2732
2733 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
2734
2735 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
2736 parsing of ls output using regular expression (handle filenames
2737 with spaces). Use virtual device number.
2738 (tramp-do-parse-file-attributes-with-ls): New defun (Code
2739 cleanup).
2740
2741 2013-01-04 Daiki Ueno <ueno@gnu.org>
2742
2743 * epg.el: Silence byte-compiler warnings.
2744 (epg--start): Use delete-char instead of delete-backward-char.
2745 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
2746
2747 2013-01-04 Daiki Ueno <ueno@gnu.org>
2748
2749 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
2750 Suggested by Eli Zaretskii <eliz@gnu.org>.
2751
2752 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
2753
2754 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
2755 non-negative integers. Otherwise, the default values are used.
2756 (tramp-convert-file-attributes): Convert uid and gid to integers.
2757
2758 2013-01-04 Glenn Morris <rgm@gnu.org>
2759
2760 * term.el (term-handle-colors-array): Ensure face attributes
2761 are fully specified, not nil. (Bug#13337)
2762
2763 * term.el (term-default-fg-color, term-default-bg-color):
2764 Fix custom type.
2765
2766 * progmodes/etags.el (tags-compression-info-list): Doc fix.
2767 (tag-find-file-of-tag-noselect): Check auto-compression-mode
2768 rather than 'jka-compr being loaded. (Bug#13338)
2769
2770 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
2771
2772 * icomplete.el (icomplete-completions):
2773 Honor icomplete-prospects-height once more following
2774 2012-11-29 changes. (Bug#13224)
2775
2776 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2777
2778 * subr.el (internal--called-interactively-p--get-frame): Find aliases
2779 of called-interactively-p as well (bug#13237).
2780
2781 * view.el (view--enable, view--disable): Rename from view-mode-enable
2782 and view-mode-disable and assume it's called from view-mode.
2783 (view-mode-enable, view-mode-disable): Redefine as obsolete
2784 compatibility layer above view-mode.
2785 (view-mode-enter): Call `view-mode'.
2786
2787 * files.el (after-find-file): Call `view-mode'.
2788
2789 * doc-view.el (doc-view-scale-internally): New var.
2790 (doc-view-enlarge, doc-view-insert-image): Obey it.
2791
2792 2013-01-03 Daiki Ueno <ueno@gnu.org>
2793
2794 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
2795 exist. (Bug#13344)
2796
2797 2013-01-03 Glenn Morris <rgm@gnu.org>
2798
2799 * mail/rmail.el (rmail-set-header-1): Ignore case.
2800 Handle multi-line headers. (Bug#13330)
2801
2802 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
2803 Handle paragraph starting at beginning of buffer.
2804
2805 * subr.el (eval-after-load): Don't purecopy the form, so that it
2806 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
2807
2808 * emacs-lisp/byte-run.el (defun): Place cl declarations
2809 after any interactive spec. (Bug#13265)
2810
2811 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2812
2813 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
2814 defun. Don't check for DECL if DOCSTRING isn't a string.
2815 (defun): Likewise.
2816
2817 2013-01-02 Glenn Morris <rgm@gnu.org>
2818
2819 * eshell/em-cmpl.el (eshell-pcomplete):
2820 More thoroughly imitate pcomplete. (Bug#13293)
2821
2822 * files.el (parse-colon-path): Doc fix. (Bug#12351)
2823 Return nil for empty path elements. (Bug#13296)
2824
2825 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
2826
2827 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
2828 order to improve efficiency (Based on Daniel Colascione's
2829 <dancol@dancol.org> patch). (Bug#13182)
2830
2831 2013-01-02 Glenn Morris <rgm@gnu.org>
2832
2833 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
2834
2835 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
2836
2837 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
2838 neither DOCSTRING nor DECL was given. (Bug#13316)
2839
2840 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
2841
2842 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
2843 `error' call.
2844 (tramp-do-copy-or-rename-file): Ignore errors when calling
2845 `set-file-extended-attributes'.
2846
2847 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2848 Add handler for `file-acl'.
2849 (tramp-smb-handle-file-acl): New defun.
2850
2851 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
2852
2853 * calc/README: Mention ISO 8601 week-numbering dates.
2854
2855 2013-01-01 Martin Rudalics <rudalics@gmx.at>
2856
2857 * view.el (view-mode-enable): New argument run-view-mode-hook.
2858 Run view-mode-hook only when it's non-nil (Bug#13315).
2859 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
2860 argument t.
2861
2862 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
2863
2864 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
2865 (No device connected, invalid device name). (Bug #13299)
2866
2867 2012-12-31 Martin Rudalics <rudalics@gmx.at>
2868
2869 * window.el (window-resizable--p): Rename to window-resizable-p.
2870 (window-resize-no-error): New function.
2871
2872 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
2873 broken in fix from 2012-12-28.
2874
2875 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
2876
2877 * subr.el (special-form-p): Don't signal errors on undef aliases.
2878
2879 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
2880
2881 * calc/calc-forms.el (math-parse-date): Try using
2882 `math-parse-iso-date' when it looks like it might be needed.
2883 Allow times of 24:00.
2884 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
2885 of 24:00.
2886
2887 2012-12-30 Glenn Morris <rgm@gnu.org>
2888
2889 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
2890 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
2891 (rmail-summary-displayed, rmail-summary): Declare.
2892 (mairix-rmail-display): Just require rmail.
2893
2894 2012-12-30 Chong Yidong <cyd@gnu.org>
2895
2896 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
2897 check for the tarball contents.
2898
2899 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
2900
2901 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
2902 tarfile content listings (Bug#13136).
2903
2904 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
2905
2906 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2907 Insert the undecoded text of the message being forwarded. (Bug#9521)
2908
2909 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
2910
2911 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
2912 integers, if they are real numbers. (Bug#13282)
2913
2914 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
2915 Return `t' on success.
2916
2917 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2918 Add handler for `set-file-selinux-context'.
2919
2920 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
2921
2922 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
2923 (tramp-sh-handle-set-file-acl): Return `t' on success.
2924
2925 2012-12-29 Eli Zaretskii <eliz@gnu.org>
2926
2927 * files.el (backup-buffer-copy, basic-save-buffer-2):
2928 If set-file-extended-attributes fails, fall back on set-file-modes
2929 instead of signaling an error. (Bug#13298)
2930 (basic-save-buffer): Likewise.
2931
2932 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2933
2934 * progmodes/python.el: Support other commands triggering
2935 python-indent-line so indentation cycling continues to work.
2936 (python-indent-trigger-commands): New defcustom.
2937 (python-indent-line): Use it.
2938
2939 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2940
2941 * progmodes/python.el (python-shell-send-region): Add blank lines
2942 for non sent code so backtraces remain correct.
2943
2944 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
2945
2946 * progmodes/python.el: Remove cl dependency.
2947 (python-syntax-count-quotes): Replace incf call.
2948 (python-fill-string): Replace setf call.
2949
2950 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
2951
2952 * info.el (info-other-window): New arg, for consistency with info.
2953
2954 2012-12-28 Martin Rudalics <rudalics@gmx.at>
2955
2956 * mail/rmail.el (rmail-maybe-display-summary):
2957 Rewrite (Bug#13066).
2958
2959 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
2960
2961 * epg.el (epg--start): Modify process-environment locally.
2962
2963 2012-12-28 Daiki Ueno <ueno@gnu.org>
2964
2965 * epg.el: Support pinentry-curses.
2966 Suggested by Werner Koch in
2967 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
2968 (epg-agent-file, epg-agent-mtime): New variable.
2969 (epg--start): Record the modified time of gpg-agent socket file,
2970 to restore Emacs frame after pinentry-curses termination.
2971 (epg-wait-for-completion): Restore Emacs frame here.
2972
2973 2012-12-27 Juri Linkov <juri@jurta.org>
2974
2975 * info.el (Info-file-completions): New variable.
2976 (Info-read-node-name-1): Complete node names in the Info file
2977 when a file name is given. Call `Info-build-node-completions'
2978 with a file name.
2979 (Info-build-node-completions): Add new arg `file'. When it is
2980 non-nil, visit it in a temporary buffer and cache its completions in
2981 `Info-current-file-completions'. Move most of the function body to
2982 `Info-build-node-completions-1'.
2983 (Info-build-node-completions-1): New function with the body from
2984 `Info-build-node-completions'. (Bug#12456)
2985
2986 2012-12-27 Juri Linkov <juri@jurta.org>
2987
2988 * frame.el (frame-maximization-style): Remove user option.
2989 (cycle-frame-maximized): Remove function.
2990 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
2991 (toggle-frame-fullscreen): New command bound to <f11> instead of
2992 `toggle-frame-maximized'.
2993 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
2994
2995 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
2996
2997 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
2998
2999 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3000 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3001 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3002 for `file-accessible-directory-p'. (Bug#13275)
3003
3004 2012-12-27 Sam Steingold <sds@gnu.org>
3005
3006 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
3007 continuations, see <http://stackoverflow.com/questions/3582436>.
3008
3009 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
3010
3011 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
3012 "module" and "def" to have indentation before them.
3013 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
3014
3015 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
3016
3017 2012-12-27 Alan Mackenzie <acm@muc.de>
3018
3019 Speed up fontification where there's large brace blocks.
3020 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
3021 to a call of c-beginning-of-decl-1.
3022
3023 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
3024
3025 * comint.el (comint-adjust-window-point): New function.
3026 (comint-postoutput-scroll-to-bottom):
3027 Call comint-adjust-window-point (Bug#13248).
3028
3029 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
3030
3031 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
3032 Rakefile regexp.
3033 (auto-mode-alist): Associate .gemspec files with ruby-mode
3034 (https://bugs.ruby-lang.org/issues/5453).
3035
3036 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
3037
3038 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
3039 Suppress coloring, if possible (required for BusyBox based systems like
3040 CyanogenMod).
3041 (tramp-adb-handle-file-attributes)
3042 (tramp-adb-handle-insert-directory)
3043 (tramp-adb-handle-file-name-all-completions): Use it.
3044 (tramp-adb-get-toolbox): New defun. Check for remote shell
3045 implementation (BusyBox or Toolbox).
3046
3047 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
3048
3049 * startup.el (initial-buffer-choice): Allow function as value
3050 (Bug#13251).
3051 (command-line-1): Handle case where initial-buffer-choice
3052 specifies a function.
3053 * server.el (server-execute): Handle case where
3054 initial-buffer-choice specifies a function.
3055
3056 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
3057
3058 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
3059 its own function.
3060 (smtpmail-try-auth-methods): Forget the user name/password if the
3061 login is unsuccessful (bug#12424).
3062
3063 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
3064
3065 * notifications.el (notifications-notify): Protect body with
3066 `with-demoted-errors'.
3067
3068 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
3069 Check properties of remote device. Restart connection, if there is a
3070 change.
3071
3072 2012-12-21 Chong Yidong <cyd@gnu.org>
3073
3074 * sort.el (sort-subr): Doc fix (Bug#13056).
3075
3076 2012-12-21 Bastien Guerry <bzg@gnu.org>
3077
3078 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
3079
3080 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
3081
3082 * simple.el (process-file): Overwrite stderr file, if exists.
3083
3084 2012-12-21 Daiki Ueno <ueno@gnu.org>
3085
3086 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
3087 (epg-error): Set `error-message' property.
3088
3089 2012-12-21 Chong Yidong <cyd@gnu.org>
3090
3091 * international/mule-cmds.el (read-char-by-name): Signal an error
3092 if the user does not supply a valid character (Bug#13177).
3093
3094 * simple.el (transpose-subr-1): Preserve marker positions by
3095 changing the insertion sequence (Bug#13122).
3096
3097 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3098
3099 * simple.el (kill-region): Deactivate mark even for empty regions
3100 (Bug#13169).
3101
3102 2012-12-21 Chong Yidong <cyd@gnu.org>
3103
3104 * help-fns.el (describe-variable): Make sure we get the right
3105 buffer name (Bug#13105). Suggested by Kelly Dean.
3106
3107 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
3108
3109 * comint.el (comint-redirect-previous-input-string): New variable.
3110 (comint-redirect-setup, comint-redirect-cleanup)
3111 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
3112 (comint-redirect-preoutput-filter): Fix verbose message.
3113
3114 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
3115
3116 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
3117 is too long for Tramp. See discussion in
3118 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
3119
3120 * progmodes/compile.el (compilation-start): Remove line escape
3121 template.
3122
3123 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
3124
3125 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
3126 Adjust comment.
3127
3128 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
3129
3130 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
3131 following non-comment text (bug#13207).
3132 (lm-header-multiline): Continuation lines need to be indented more than
3133 the first line.
3134 (lm-homepage): New function.
3135 (lm-with-file): Don't be confused if narrowing is in effect.
3136
3137 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
3138
3139 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
3140 very beginning of a hunk (e.g. killing the first line).
3141
3142 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
3143
3144 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
3145 and text properties from returned ACL string.
3146 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
3147 for "setfacl" command.
3148
3149 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
3150
3151 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
3152 `tramp-cleanup-this-connection', when the process has died.
3153 (Bug#13151)
3154
3155 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3156
3157 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
3158
3159 2012-12-17 Kevin Ryde <user42@zip.com.au>
3160
3161 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
3162
3163 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
3164
3165 Add support for preserving ACL entries of files.
3166
3167 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
3168 `set-file-acl' handlers.
3169
3170 * net/tramp-adb.el (tramp-adb-handle-copy-file):
3171 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3172
3173 * net/tramp-compat.el (tramp-compat-copy-file):
3174 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3175
3176 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3177 Add `file-acl' and `set-file-acl' handlers.
3178 (tramp-gvfs-handle-copy-file):
3179 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3180 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3181 New defuns.
3182
3183 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3184 Add `file-acl' and `set-file-acl' handlers.
3185 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3186 (tramp-sh-handle-set-file-acl): New defuns.
3187 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3188 Handle PRESERVE-EXTENDED-ATTRIBUTES.
3189
3190 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3191 Add `file-acl' and `set-file-acl' handlers.
3192 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3193
3194 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3195
3196 * help-macro.el (make-help-screen): Instead of switch-to-buffer
3197 use pop-to-buffer with NORECORD argument t. As buffer name, use
3198 *Metahelp* with a leading space (Bug#13190).
3199
3200 2012-12-16 Romain Francoise <romain@orebokech.com>
3201
3202 * files.el (file-extended-attributes)
3203 (set-file-extended-attributes): New functions.
3204 (backup-buffer): Use them to handle both SELinux context and ACL
3205 entries.
3206 (backup-buffer-copy): Work with an alist of extended attributes,
3207 rather than an SELinux context.
3208 (basic-save-buffer-2): Ditto.
3209
3210 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
3211
3212 * battery.el (battery-bsd-apm): New function.
3213
3214 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
3215
3216 * calc/calc.el (calc-standard-date-formats): Adjust one of the
3217 standard date formats.
3218
3219 2012-12-15 Juri Linkov <juri@jurta.org>
3220
3221 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3222 `isearch-insert-char-by-name'.
3223 (with-isearch-suspended): New defmacro with body mostly from
3224 `isearch-edit-string' except the part that sets
3225 `isearch-new-string' and `isearch-new-message'.
3226 (isearch-edit-string): Use new macro `with-isearch-suspended' with
3227 body that sets `isearch-new-string' and `isearch-new-message'.
3228 (isearch-insert-char-by-name): New command.
3229 * international/mule-cmds.el (read-char-by-name): Let-bind
3230 `enable-recursive-minibuffers' to t.
3231 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3232
3233 2012-12-15 Juri Linkov <juri@jurta.org>
3234
3235 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3236 (Bug#13175)
3237
3238 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
3239
3240 * dired-x.el (dired-guess-shell-command): Put colon at the end of
3241 the prompt. (Bug#13045)
3242
3243 2012-12-14 Glenn Morris <rgm@gnu.org>
3244
3245 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3246 Try to include filename in non-bytecomp warning. (Bug#13132)
3247
3248 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
3249
3250 Fix permissions bugs with setgid directories etc. (Bug#13125)
3251 * files.el (backup-buffer): Don't rely on 9th output of
3252 file-attributes, as it's now a placeholder. Instead, use the new
3253 optional arg of file-ownership-preserved-p.
3254 (file-ownership-preserved-p): New optional arg GROUP.
3255 Fix mishandling of setuid directories that would cause this
3256 function to return t when it should have returned nil.
3257 Document what happens if the file does not exist, and when
3258 it's not known whether the ownership will be preserved.
3259 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3260 Likewise.
3261 (tramp-get-local-gid): Use group-gid for integer, as that's
3262 faster and more reliable.
3263
3264 2012-12-14 Julien Danjou <julien@danjou.info>
3265
3266 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3267 Update keywords list, data type and PL/pgSQL.
3268
3269 2012-12-14 Dave Abrahams <dave@boostpro.com>
3270
3271 * vc/ediff-util.el (ediff-buffer-type): New function.
3272 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3273 rather than taking it as as argument.
3274 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3275
3276 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
3277
3278 * json.el: Add pretty-print option (bug#12634).
3279 (json-encoding-separator, json-encoding-default-indentation)
3280 (json--encoding-current-indentation, json-encoding-pretty-print)
3281 (json-encoding-lisp-style-closings): New vars.
3282 (json--with-indentation): New macro.
3283 (json-encode-hash-table, json-encode-alist, json-encode-plist)
3284 (json-encode-array): Use it to obey json-encoding-pretty-print.
3285 (json-pretty-print-buffer, json-pretty-print): New commands.
3286
3287 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
3288
3289 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3290 Extract `ruby-syntax-propertize-expansions'.
3291 (ruby-syntax-propertize-expansions): Only change syntax on
3292 certain string delimiters, to punctuation. This way the common
3293 functions like forward-word and thing-at-point still work.
3294 (ruby-match-expression-expansion): Improve readability.
3295 (ruby-block-contains-point): New function.
3296 (ruby-add-log-current-method): Handle several edge cases.
3297
3298 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3299
3300 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3301 unload-feature finishes even when aborting an ongoing edebug session.
3302 Also, do not worry about edebug-mode, unload-feature takes care of it.
3303
3304 2012-12-13 Andreas Schwab <schwab@suse.de>
3305
3306 * net/tls.el (tls-program): Update customize type.
3307
3308 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
3309
3310 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3311 (edebug-setup-hook, cl-read-load-hooks): Use it.
3312 (edebug-unload-function): New function. (Bug#13163)
3313
3314 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
3315
3316 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3317 Otherwise, there could be errors in autoloading. (Bug#13151)
3318
3319 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
3320
3321 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3322 sequences.
3323
3324 2012-12-13 Alan Mackenzie <acm@muc.de>
3325
3326 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
3327 * progmodes/cc-engine.el (c-backward-comments): Add code to work
3328 around `forward-comment' not recognizing ^M as whitespace.
3329
3330 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
3331
3332 * progmodes/python.el (python-skeleton-class)
3333 (python-skeleton-def): Do not add space after defun name.
3334
3335 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3336
3337 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3338 (cl--symbol-function): Remove (now that funbound is like nil).
3339
3340 2012-12-12 Glenn Morris <rgm@gnu.org>
3341
3342 * button.el (button--area-button-p): Fix typo.
3343
3344 2012-12-12 Sam Steingold <sds@gnu.org>
3345
3346 * frame.el (frame-maximization-style): New user option.
3347 (toggle-frame-maximized): Toggle frame maximization according to
3348 `frame-maximization-style', bound to <f11>.
3349 (cycle-frame-maximized): Cycle between all maximization styles and
3350 non-maximized frame, bound to shift-<f11>.
3351
3352 2012-12-12 David Cadé <codename68@gmail.com>
3353
3354 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3355
3356 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
3357
3358 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3359 (eieio-override-prin1): Don't quote kewords and booleans.
3360 (object-write) <eieio-default-superclass>: Don't put closing parens
3361 on new line, avoid needless empty lines, align values that are objects
3362 with the slot keyword (instead of beginning on the same line).
3363 (eieio-list-prin1): Align value with slot keyword; increase
3364 eieio-print-depth before printing members of the list.
3365
3366 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3367
3368 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3369 a display text-property.
3370 (report-emacs-bug-hook): Don't bother deleting it any more.
3371
3372 * hilit-chg.el (highlight-save-buffer-state): Delete.
3373 Use with-silent-modifications instead.
3374 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3375
3376 * button.el: Handle buttons in display text-properties.
3377 (button--area-button-p, button--area-button-string):
3378 Use (STRING . STRING-POS) representation instead of just STRING.
3379
3380 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3381
3382 * makefile.w32-in (compile4-SH): Fix a typo that caused term
3383 subdirectory be skipped.
3384
3385 2012-12-11 Glenn Morris <rgm@gnu.org>
3386
3387 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3388
3389 * progmodes/f90.el (f90-line-continued, f90-indent-region):
3390 Treat preprocessor lines embedded in continuations like comments.
3391 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
3392
3393 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
3394
3395 * calc/calc.el (calc-standard-date-formats): Add more date
3396 formats.
3397 * calc/calc-forms.el (math-parse-iso-date): New function.
3398 (math-parse-date): Use `math-parse-iso-date' when appropriate.
3399 (math-parse-iso-date-validate): Add extra error checking.
3400 (calc-date-notation): Add ability to access new date formats.
3401
3402 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3403
3404 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3405 font-lock as well as when there's no text-property.
3406
3407 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
3408
3409 * hi-lock.el: Refine the choice of default face.
3410 (hi-lock-keyword->face): New function. Use it wherever we used
3411 cadadadr instead.
3412 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3413 (hi-lock--last-face): Remove var.
3414 (hi-lock--unused-faces): New var to replace it.
3415 (hi-lock-read-face-name): Use/maintain it.
3416 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
3417 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3418 if it has another face.
3419
3420 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3421
3422 * subr.el (w32notify-handle-event): New function.
3423 (inotify-handle-event): Doc fix.
3424
3425 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3426
3427 * subr.el (inotify-event-p, inotify-handle-event): New functions.
3428
3429 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
3430
3431 * simple.el (just-one-space): Doc fix.
3432
3433 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3434
3435 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3436
3437 2012-12-10 Le Wang <l26wang@gmail.com>
3438
3439 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3440 narrowed buffer (bug#12361).
3441
3442 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
3443
3444 * vc/vc-hooks.el (vc-state): Doc fix.
3445
3446 2012-12-10 Glenn Morris <rgm@gnu.org>
3447
3448 * mail/rmail.el (rmail-maybe-display-summary):
3449 Preserve buffer, in case select-window changes it. (Bug#13066)
3450
3451 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3452
3453 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3454 cl-load-hook where they belong.
3455
3456 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
3457
3458 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3459
3460 2012-12-09 Eli Zaretskii <eliz@gnu.org>
3461
3462 Parallelize byte compilation on MS-Windows.
3463 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3464 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3465 (WINS_BASIC): Define as concatenation of the above.
3466 (compile): Subdivide into 4 separate and independent jobs that can
3467 be run in parallel.
3468 (compile0-CMD, compile0-SH): New targets for compiling
3469 COMPILE_FIRST files, which are prerequisites for the rest of the
3470 byte-compilation.
3471 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3472 New targets for parallel compilation with cmd.exe.
3473 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3474 compiling under a Unixy shell.
3475
3476 2012-12-09 Chong Yidong <cyd@gnu.org>
3477
3478 * simple.el (set-mark-default-inactive): Delete this
3479 accidentally-introduced option.
3480 (set-mark-command, exchange-point-and-mark): Remove calls.
3481
3482 2012-12-09 Glenn Morris <rgm@gnu.org>
3483
3484 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3485 Respect a defcustom's :set function, if appropriate. (Bug#109)
3486 (eval-defun): Doc fix.
3487
3488 2012-12-08 Juri Linkov <juri@jurta.org>
3489
3490 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3491 (Info-fontify-node, Info-bookmark-make-record): Remove the
3492 file extension from Info-current-file (Bug#13016).
3493
3494 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3495
3496 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3497 point, still provide some default.
3498 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3499 names, since we don't use it right now. Actually return the list.
3500 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3501
3502 2012-12-07 Chong Yidong <cyd@gnu.org>
3503
3504 * novice.el (disabled-command-function): Remove a spurious help
3505 xref (Bug#13043). Suggested by Kelly Dean.
3506
3507 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3508 syntax is specified (Bug#13025).
3509
3510 * info.el (Info-set-mode-line): Remove the file extension from
3511 Info-current-file if there is one (Bug#13016).
3512
3513 2012-12-07 Glenn Morris <rgm@gnu.org>
3514
3515 * mail/rmail.el (rmail-mime-decoded): New permanent local.
3516 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3517 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3518 and rmail-mime-decoded. (Bug#9841)
3519
3520 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
3521 (batch-unrmail, unrmail): Doc fixes.
3522 (unrmail): Respect unrmail-mbox-format.
3523 * mail/rmail.el (rmail-mbox-format): New option.
3524 (rmail-show-message-1): Respect rmail-mbox-format.
3525
3526 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
3527
3528 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3529
3530 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3531
3532 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
3533 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3534 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3535 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3536 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3537 (cl-progv): Don't rely on dynamic scoping to find the body.
3538 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3539 (cl--proclaims-deferred): Rename from the "cl-" prefix.
3540 (cl-declaim): Use backquotes.
3541 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3542 Use "cl--" prefix for the object's tag.
3543
3544 * ses.el: Use advice-add/remove.
3545 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3546 (copy-region-as-kill, yank): Use advice-add.
3547 (ses-unload-function): Use advice-remove.
3548
3549 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
3550
3551 * button.el: Make them work in header-lines (bug#12817).
3552 (button-map): Add bindings for header-line and mode-line use.
3553 (button-get, button-put, button-label): `button' may now be a string.
3554 (button-activate): Don't make it a defsubst.
3555 (button--area-button-p, button--area-button-string): New functions.
3556 (make-text-button): Fix the return value when `beg' was a string.
3557 (push-button): Handle the mode-line case.
3558
3559 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3560
3561 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3562 (sql-signum): Remove. Use `cl-signum' instead.
3563 (sql-read-passwd): Remove; use read-passwd instread.
3564 (sql-get-login-ext): Use read-string.
3565 (sql-get-login): Use dolist and pcase.
3566 (sql--completion-table): Rename from sql-try-completion.
3567 Use complete-with-action.
3568 (sql-mode): Don't change abbrev-all-caps globally.
3569 (sql-connect): Don't rely on dynamic scoping for `new-name'.
3570 (sql-postgres-completion-object): Initialize vars in their `let'.
3571 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3572 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3573 (sql-comint-interbase): Use a single append, without setq.
3574 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3575
3576 * hi-lock.el: Rework the default face and the serialize regexp code.
3577 (hi-lock--auto-select-face-defaults): Remove.
3578 (hi-lock-string-serialize-serial): Remove.
3579 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3580 make weak.
3581 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3582 equal string.
3583 (hi-lock-set-pattern): Adjust accordingly.
3584 (hi-lock--regexps-at-point): Simplify accordingly.
3585 (hi-lock--auto-select-face-defaults): Remove.
3586 (hi-lock--last-face): New var to replace it.
3587 (hi-lock-read-face-name): Rewrite (bug#11095).
3588 (hi-lock-unface-buffer): Arrange for the face to be the next default.
3589
3590 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
3591
3592 * net/tramp.el (tramp-replace-environment-variables):
3593 Hide compiler warning.
3594 (tramp-file-name-for-operation): Remove `executable-find',
3595 `start-process', `call-process' and `call-process-region'.
3596
3597 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3598
3599 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3600 compatibility.
3601
3602 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3603
3604 2012-12-06 Chong Yidong <cyd@gnu.org>
3605
3606 * ffap.el (ffap-replace-file-component): Fix typo.
3607
3608 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3609
3610 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3611 fix open-paren-like token test (bug#12785).
3612
3613 2012-12-06 Glenn Morris <rgm@gnu.org>
3614
3615 * mail/rmailsum.el (rmail-new-summary): Tweak for
3616 rmail-maybe-display-summary changing buffer. (Bug#13066)
3617
3618 2012-12-06 Juri Linkov <juri@jurta.org>
3619
3620 * info.el (Info-fontify-node): Don't hide the last newline.
3621 (Bug#12272)
3622
3623 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
3624
3625 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3626 so as to enable message-read-from-minibuffer to expand mail aliases.
3627
3628 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
3629
3630 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3631 the `intangible' property.
3632 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3633
3634 2012-12-05 Deniz Dogan <deniz@dogan.se>
3635
3636 * net/rcirc.el (rcirc-urls): Update documentation.
3637 (rcirc-condition-filter): New function.
3638 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3639 and exclude consecutive duplicate URLs (Bug#6082).
3640
3641 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
3642
3643 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3644 Check return code of copy command.
3645
3646 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3647 Use group `tramp'. Add version.
3648
3649 2012-12-05 Chong Yidong <cyd@gnu.org>
3650
3651 * ffap.el (ffap-url-regexp): Don't require matching at front of
3652 string (Bug#4952).
3653 (ffap-url-p): If only a substring matches, return that.
3654 (ffap-url-at-point): Use the return value of ffap-url-p.
3655 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3656 (find-file-at-point, dired-at-point, dired-at-point-prompter)
3657 (ffap-guess-file-name-at-point): Likewise.
3658 (ffap-replace-file-component): Fix typo.
3659
3660 * info.el (info-display-manual): Add existing Info buffers, whose
3661 files may not be in Info-directory-list, to the completion.
3662 (info--manual-names): New helper function.
3663
3664 2012-12-05 Glenn Morris <rgm@gnu.org>
3665
3666 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3667 New functions, for detecting and resolving conflicts. (Bug#10709)
3668
3669 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
3670
3671 * hi-lock.el (hi-lock-auto-select-face): New user variable.
3672 (hi-lock-auto-select-face-defaults): New buffer local variable.
3673 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3674 (hi-lock-unface-buffer): Prompt user with useful defaults.
3675 With prefix arg, unhighlight all hi-lock patterns in buffer.
3676
3677 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3678
3679 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3680
3681 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
3682
3683 * Makefile.in (TRAMP_SRC):
3684 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3685
3686 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
3687
3688 * net/tramp-adb.el: New package.
3689
3690 2012-12-04 Chong Yidong <cyd@gnu.org>
3691
3692 * terminal.el: Move to obsolete/.
3693
3694 * longlines.el: Move to obsolete/.
3695
3696 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
3697 Remove code referring to longlines mode.
3698
3699 2012-12-03 Juri Linkov <juri@jurta.org>
3700
3701 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
3702
3703 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3704
3705 * textmodes/ispell.el (ispell-init-process)
3706 (ispell-start-process, ispell-internal-change-dictionary):
3707 Make sure personal dictionary name is expanded after initial
3708 `default-directory' value. Use expanded strings for
3709 keep/restart checks and for value (Bug#13019).
3710
3711 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3712
3713 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
3714
3715 2012-12-03 Leo Liu <sdl.web@gmail.com>
3716
3717 * files.el (dir-locals-read-from-file): Check file non-empty
3718 before reading. (Bug#13038)
3719
3720 2012-12-03 Glenn Morris <rgm@gnu.org>
3721
3722 * jka-cmpr-hook.el (jka-compr-get-compression-info):
3723 Remove any version extension before checking filename. (Bug#13006)
3724 (jka-compr-compression-info-list): Belated :version bump.
3725
3726 2012-12-03 Chong Yidong <cyd@gnu.org>
3727
3728 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
3729
3730 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
3731 (buffer-menu): Doc fix (Bug#12294).
3732
3733 2012-12-03 Roland Winkler <winkler@gnu.org>
3734
3735 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
3736 of diary-show-all-entries in the diary buffer (Bug#12994).
3737
3738 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
3739
3740 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
3741 "<STDIN>". This is binary safe.
3742
3743 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
3744
3745 * calc/calc-forms.el (math-absolute-from-iso-dt)
3746 (math-date-to-iso-dt, math-parse-iso-date-validate)
3747 (math-iso-dt-to-date): New functions.
3748 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
3749 (math-fd-isoweekday): New variables.
3750 (calc-date-notation, math-parse-standard-date, math-format-date)
3751 (math-format-date-part): Add support for more formatting codes.
3752
3753 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
3754
3755 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
3756 current buffer's file name when called interactively (Bug#12488).
3757
3758 2012-12-02 Juri Linkov <juri@jurta.org>
3759
3760 * info.el (info-display-manual): Don't clobber an existing Info
3761 buffer (Bug#10770). Add completion (Bug#10771).
3762
3763 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
3764
3765 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
3766 before using it for comparison (Bug#5297).
3767
3768 2012-12-01 Jari Aalto <jari.aalto@cante.net>
3769
3770 * textmodes/css-mode.el (css-current-defun-name): New function.
3771 (css-mode): Use it.
3772
3773 * textmodes/sgml-mode.el (html-current-defun-name): New function.
3774 (html-mode): Use it.
3775
3776 2012-12-01 Chong Yidong <cyd@gnu.org>
3777
3778 Modularize add-log-current-defun (Bug#2224).
3779 Suggested by Jari Aalto.
3780
3781 * vc/add-log.el (add-log-current-defun-function): Doc fix.
3782 (add-log-current-defun): Move mode-specific code to other files.
3783 (add-log-lisp-like-modes, add-log-c-like-modes)
3784 (add-log-tex-like-modes): Variables deleted.
3785
3786 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
3787 (lisp-mode-variables): Use it.
3788
3789 * progmodes/cc-mode.el (c-common-init):
3790 * progmodes/cperl-mode.el (cperl-mode): Set a value for
3791 add-log-current-defun-function.
3792
3793 * progmodes/m4-mode.el (m4-current-defun-name): New function.
3794 (m4-mode): Use it.
3795
3796 * progmodes/perl-mode.el (perl-current-defun-name): New.
3797 (perl-mode): Use it.
3798
3799 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3800 Use lisp-current-defun-name.
3801
3802 * textmodes/tex-mode.el (tex-current-defun-name): New.
3803 (tex-common-initialization): Use it.
3804
3805 * textmodes/texinfo.el (texinfo-current-defun-name): New.
3806 (texinfo-mode): Use it.
3807
3808 2012-12-01 Chong Yidong <cyd@gnu.org>
3809
3810 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
3811 * progmodes/autoconf.el (autoconf-mode):
3812 * progmodes/js.el (js-mode):
3813 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
3814 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
3815 * progmodes/perl-mode.el (perl-mode):
3816 * progmodes/sh-script.el (sh-mode, sh-set-shell):
3817 * textmodes/css-mode.el (css-mode):
3818 * textmodes/sgml-mode.el (html-mode, sgml-mode)
3819 (sgml-tags-invisible, sgml-guess-indent):
3820 * textmodes/tex-mode.el (tex-common-initialization)
3821 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
3822 (doctex-mode, plain-tex-mode, latex-mode):
3823 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
3824
3825 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
3826
3827 * vc/vc-hg.el (vc-hg-next-revision):
3828 Ensure use of default "tip" output format. (Bug#6968)
3829
3830 2012-12-01 Kim F. Storm <storm@cua.dk>
3831
3832 * startup.el (fancy-startup-tail): Add a clickable link
3833 (Bug#2176).
3834
3835 2012-12-01 Chong Yidong <cyd@gnu.org>
3836
3837 * startup.el (fancy-startup-tail): Improve the message about
3838 auto-save files (Bug#2176).
3839
3840 * files.el (recover-session): Improve the descriptive message, and
3841 use substitute-command-keys.
3842
3843 2012-12-01 Glenn Morris <rgm@gnu.org>
3844
3845 * ido.el (ido-file-internal):
3846 Handle other-window, other-frame for dired. (Bug#13036)
3847
3848 2012-11-30 Glenn Morris <rgm@gnu.org>
3849
3850 * icomplete.el (icomplete-separator): Fix :version.
3851
3852 2012-11-30 Chong Yidong <cyd@gnu.org>
3853
3854 * shell.el (shell): For C-u M-x shell, use an inactive shell
3855 buffer as the default (Bug#1975).
3856 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
3857 (shell-mode): Use them to reapply ansi colorization if Shell mode
3858 is re-enabled.
3859
3860 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
3861
3862 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
3863
3864 2012-11-30 Samuel Bronson <naesten@gmail.com>
3865
3866 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
3867 flag to xargs, for compatibility with BSD xargs (Bug#11703).
3868
3869 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
3870
3871 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
3872 by move-to-column (Bug#3234).
3873
3874 2012-11-30 Chong Yidong <cyd@gnu.org>
3875
3876 * longlines.el (longlines-wrap-line, longlines-encode-region):
3877 Preserve text properties (Bug#1425).
3878
3879 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
3880
3881 * vc/vc.el (vc-register): Allow registering a file which is
3882 already registered with a different backend (Bug#10589).
3883
3884 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
3885 Stefan Monnier <monnier@iro.umontreal.ca>
3886
3887 * icomplete.el: Change separator; add ido-style commands.
3888 (icomplete-show-key-bindings): Remove custom var.
3889 (icomplete-get-keys): Remove function.
3890 (icomplete-forward-completions, icomplete-backward-completions):
3891 New commands.
3892 (icomplete-minibuffer-map): New var.
3893 (icomplete-minibuffer-setup): Use it.
3894 (icomplete-exhibit): Don't delay if the list of completions is known.
3895 (icomplete-separator): New custom.
3896 (icomplete-completions): Use it.
3897 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
3898 (minibuffer-force-complete-and-exit): New command.
3899 (minibuffer--complete-and-exit): New function extracted from
3900 minibuffer-complete-and-exit.
3901 (minibuffer-complete-and-exit): Use it.
3902
3903 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
3904 error message when the file doesn't exist (bug#12974).
3905
3906 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
3907
3908 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
3909
3910 2012-11-29 Glenn Morris <rgm@gnu.org>
3911
3912 * files.el (hack-dir-local-variables): Warn if try to set
3913 coding via dir-locals, since it doesn't work. (Bug#7169)
3914
3915 Add desktop support for restoring vc-dir buffers. (Bug#10606)
3916 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
3917 Set buffer-local value of desktop-save-buffer.
3918 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
3919 New functions.
3920 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
3921 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
3922
3923 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
3924 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
3925 Doc fix.
3926 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
3927 Doc fixes.
3928
3929 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
3930
3931 * calc/calc-forms.el (calc-date-notation): Fix regexp
3932 used to find time codes. Fix symbol for seconds.
3933
3934 2012-11-27 Glenn Morris <rgm@gnu.org>
3935
3936 * emacs-lisp/derived.el (derived-mode-make-docstring):
3937 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
3938
3939 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3940
3941 * textmodes/table.el (table-insert): Don't use `symbol-name' on
3942 lexically scoped variables (bug#13005).
3943
3944 2012-11-27 Glenn Morris <rgm@gnu.org>
3945
3946 * vc/vc-hooks.el (vc-mistrust-permissions):
3947 Default to t, to avoid data-loss. (Bug#11490)
3948
3949 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
3950
3951 * progmodes/python.el (python-indent-guess-indent-offset):
3952 If indentation is guessed make python-indent-offset buffer-local.
3953
3954 Fix Imenu regression.
3955 * progmodes/python.el (python-nav-beginning-of-defun):
3956 Fix forward movement when statement(s) separates point from defun.
3957 (python-imenu-prev-index-position): New function.
3958
3959 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3960
3961 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
3962
3963 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3964 Don't set buffer-file-type. Return nil. (Bug#12989)
3965
3966 2012-11-27 Glenn Morris <rgm@gnu.org>
3967
3968 * hippie-exp.el (hippie-expand-try-functions-list):
3969 Re-autoload it. (Bug#12982)
3970
3971 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3972
3973 * descr-text.el (describe-char-padded-string):
3974 Call internal-char-font only on GUI frames. (Bug#11964)
3975
3976 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
3977
3978 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
3979 and obsoletion message.
3980
3981 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
3984 the constructs to keep outside of the `cl-block' (bug#12977).
3985
3986 2012-11-27 Chong Yidong <cyd@gnu.org>
3987
3988 * mouse.el (mouse-drag-line): Even if the line is not draggable,
3989 keep reading until we get the up-event anyway, in order to process
3990 the up-event for mouse-1-click-follows-link (Bug#12971).
3991
3992 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
3993
3994 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
3995 base function is not yet defined (bug#12965).
3996 (ad-activate-advised-definition): Use ad-compile-function.
3997 (ad-activate): Use cond.
3998
3999 2012-11-25 Leo Liu <sdl.web@gmail.com>
4000
4001 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
4002 (Bug#12979)
4003
4004 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4005
4006 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
4007 reftex-section-info-function in order to be compatible with
4008 Texinfo integration.
4009
4010 * textmodes/reftex.el (reftex-section-pre-regexp)
4011 (reftex-section-post-regexp, reftex-section-info-function):
4012 New variable.
4013 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
4014 reftex-section-post-regexp, and reftex-section-info-function in order
4015 to be compatible with Texinfo integration.
4016
4017 * textmodes/reftex-toc.el (reftex-toc-promote-action):
4018 use reftex-section-pre-regexp variable in order to be compatible with
4019 Texinfo integration.
4020
4021 2012-11-25 Chong Yidong <cyd@gnu.org>
4022
4023 * faces.el: Make face-spec-set more analogous to setq.
4024 (face-spec-set): Change the third arg to specify whether this
4025 function is being called via defface, customize, or a third party.
4026 Set the appropriate symbol properties. Clear the override spec if
4027 setting via Custom. Initialize face if necessary. (Bug#4988)
4028 (face-spec-recalc): Allow theme faces to completely replace the
4029 defface spec, in the same way as custom faces (Bug#8454).
4030
4031 * cus-face.el (custom-declare-face): Move face initialization to
4032 face-spec-set.
4033 (custom-theme-set-faces): Don't initialize the face name here, as
4034 that is now done in face-spec-set.
4035
4036 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
4037 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
4038 Simplify by using the new arg to face-spec-set.
4039
4040 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
4041 reset face-override-spec too, and use custom-declare-face.
4042
4043 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
4044
4045 * term/ns-win.el (ns-initialize-window-system): Move creation of
4046 fontsets here (Bug#11964).
4047
4048 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
4049
4050 * ses.el (ses-rename-cell): Correct bug on mode-line update after
4051 cell renaming.
4052
4053 2012-11-24 Chong Yidong <cyd@gnu.org>
4054
4055 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
4056 obsolete.
4057
4058 * custom.el (custom-theme-set-variables): Use a topological sort
4059 for ordering by custom dependencies (Bug#12952).
4060 (custom--sort-vars, custom--sort-vars-1): New functions.
4061
4062 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4063
4064 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
4065 lexical-binding (bug#12938).
4066
4067 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
4068
4069 * image-mode.el (image-transform-check-size): Use assertions only
4070 for images of type imagemagick.
4071
4072 Otherwise no error, image-transform-fit-to-{width,height} is
4073 silently ignored, as before. Doc fix.
4074
4075 2012-11-24 Chong Yidong <cyd@gnu.org>
4076
4077 * faces.el (color-defined-p): Doc fix (Bug#12853).
4078
4079 2012-11-24 Juri Linkov <juri@jurta.org>
4080
4081 * dired.el (dired-mark): Add optional arg `interactive'.
4082 Check for `use-region-p' if `interactive' is non-nil.
4083 (dired-unmark, dired-flag-file-deletion): Add optional arg
4084 `interactive'. Call `dired-mark' with the arg `interactive'.
4085 (Bug#10624)
4086
4087 * wdired.el: Revert 2012-10-17 change partly and replace it with
4088 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
4089 (wdired-finish-edit): Add marks for new file names to
4090 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
4091 after `revert-buffer'.
4092 (wdired-do-renames): Remove calls to `dired-remove-file',
4093 `dired-add-file', `dired-add-entry'. (Bug#11795)
4094
4095 2012-11-24 Alan Mackenzie <acm@muc.de>
4096
4097 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
4098
4099 Fix bugs in the state cache. Enhance a debugging mechanism.
4100 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
4101 "brace at column zero" strategy for C++.
4102 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
4103 (c-parse-state-point): New variable.
4104 (c-record-parse-state-state): Record old parse state with
4105 `copy-tree'. Record previous value of point.
4106 (c-debug-parse-state-double-cons): New debugging function.
4107 (c-debug-parse-state): Call the above new function.
4108 (c-toggle-parse-state-debug): Output a confirmatory message.
4109
4110 * progmodes/cc-mode.el (c-before-change, c-after-change):
4111 Call c-invalidate-state-cache from `c-before-change' instead of
4112 `c-after-change'.
4113
4114 2012-11-23 Chong Yidong <cyd@gnu.org>
4115
4116 * find-cmd.el (find-constituents): Add executable, ipath,
4117 readable, samefile, writable, daystart, regextype (Bug#12856).
4118
4119 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
4120
4121 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
4122
4123 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
4124
4125 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
4126 definition. This fixes a bootstrap failure.
4127 (calc-gregorian-switch): In menu, put dates before regions.
4128 This is easier to follow, lines up better in the menu, and lets us
4129 coalesce regions that switch at the same time. Give country
4130 names, not "Vatican", as that's better for non-expert users.
4131 Use names that are stable between the date of switch and now, e.g.,
4132 Bohemia and Moravia (which existed then and now) and not
4133 Czechoslovakia (which didn't exist then and doesn't exist now).
4134 What is now the U.S. mostly did not switch at the same time as
4135 Britain, so omit the U.S. Correct spelling of "Britain".
4136 Catholic Switzerland was too much of a mess, so omit it.
4137
4138 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
4139
4140 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
4141 after the variable is changed.
4142
4143 2012-11-21 Daniel Colascione <dancol@dancol.org>
4144
4145 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
4146 in SQL declarations for font-lock.
4147 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
4148
4149 2012-11-21 Glenn Morris <rgm@gnu.org>
4150
4151 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
4152 (face-italic-p): Add optional argument "inherit".
4153
4154 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
4155 Remove -p suffix from names, for consistency with other set-face-*.
4156 (set-face-inverse-video): Fix interactive spec.
4157 * play/gamegrid.el (gamegrid-make-mono-tty-face):
4158 * textmodes/table.el (table--update-cell-face):
4159 Use set-face-inverse-video rather than now obsolete alias.
4160
4161 2012-11-21 Eli Zaretskii <eliz@gnu.org>
4162
4163 * simple.el (line-move): Don't call line-move-partial if
4164 scroll-conservatively is in effect. (Bug#12927)
4165
4166 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4167
4168 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
4169 Fallback on completion-at-point rather than
4170 pcomplete-expand-and-complete, and only if pcomplete actually failed.
4171 (eshell-cmpl-initialize): Setup completion-at-point.
4172
4173 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4174
4175 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4176
4177 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
4178
4179 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4180 are remote, check out-of-band property for both.
4181
4182 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4183
4184 * window.el (switch-to-buffer): Re-add the warning that was lost in the
4185 code rewrite.
4186
4187 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
4188
4189 More minor time fixes.
4190 * calendar/time-date.el: Commentary fix.
4191 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4192 too much other code depends on (0 0) time stamps.
4193 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4194 Add a couple of FIXME comments.
4195
4196 Minor cleanup for times as lists of four integers.
4197 * files.el (dir-locals-directory-cache):
4198 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4199 Doc fixes.
4200 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4201 * ps-bdf.el (bdf-file-newer-than-time):
4202 Process four-integers time stamps, not two. Doc fixes.
4203
4204 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4205
4206 * uniquify.el (uniquify-managed): Use defvar-local.
4207 (rename-buffer, create-file-buffer): Advise with advice-add.
4208 (uniquify-unload-function): Unadvise accordingly.
4209
4210 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4211 (trace-buffer): Don't purecopy.
4212 (trace-entry-message, trace-exit-message): Add `context' arg.
4213 (trace--timer): New var.
4214 (trace-make-advice): Adjust for use in nadvice.
4215 Add `context' argument. Delay `display-buffer' via a timer.
4216 (trace-function-internal): Use advice-add.
4217 (trace--read-args): New function.
4218 (trace-function-foreground, trace-function-background): Use it.
4219 (trace-function): Rename to trace-function-foreground and redefine as
4220 an alias to that new name.
4221 (untrace-function, untrace-all): Adjust to the use of nadvice.
4222
4223 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4224
4225 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4226
4227 * subr.el (called-interactively-p-functions): New var.
4228 (internal--called-interactively-p--get-frame): New macro.
4229 (called-interactively-p, interactive-p): Rewrite in Lisp.
4230 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4231 (called-interactively-p-functions): Use it.
4232 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4233 (called-interactively-p-functions): Use it.
4234 * allout.el (allout-called-interactively-p): Don't assume
4235 called-interactively-p is a subr.
4236
4237 2012-11-20 Glenn Morris <rgm@gnu.org>
4238
4239 * profiler.el (profiler-report-mode-map): Add a menu.
4240 No need to bind `q' because we derive from special-mode.
4241 (profiler-report-find-entry): Handle calls from the menu-bar.
4242
4243 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
4244
4245 * emacs-lisp/byte-run.el (defun-declarations-alist):
4246 Allow a compiler-macro to be a lambda expression.
4247
4248 * progmodes/python.el: Use cl-lib. Move var declarations outside of
4249 eval-when-compile.
4250 (python-syntax-context): Add compiler-macro.
4251 (python-font-lock-keywords): Simplify with De Morgan.
4252
4253 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4254
4255 * files.el (load-file): Require match in minibuffer selection, as was
4256 the case in Emacs-20 before we changed the spec to allow .elc files
4257 (bug#12935).
4258
4259 * json.el: Don't require cl since we don't use it.
4260 * color.el: Don't require cl.
4261 (color-complement): `caddr' -> `nth 2'.
4262
4263 * calendar/time-date.el (time-to-seconds): De-obsolete.
4264
4265 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
4266
4267 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
4268 year numbers.
4269 (math-date-to-julian-dt): Adjust the initial approximation for the
4270 year to deal with the new definition of the DATE.
4271
4272 2012-11-19 Daniel Colascione <dancol@dancol.org>
4273
4274 * term/w32-win.el (cygwin-convert-path-from-windows):
4275 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4276
4277 2012-11-18 Chong Yidong <cyd@gnu.org>
4278
4279 * filecache.el (file-cache--read-list): New function.
4280 (file-cache-add-directory-list, file-cache-add-file-list)
4281 (file-cache-delete-file-list, file-cache-delete-directory-list):
4282 Use it to read a list of files or directories (Bug#12846).
4283 (file-cache-add-file, file-cache-add-directory)
4284 (file-cache-delete-file-list, file-cache-delete-file-regexp)
4285 (file-cache-delete-directory): Print an message.
4286
4287 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
4288
4289 * calc/calc-forms.el (math-date-to-dt): Use integer date when
4290 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4291
4292 2012-11-18 Glenn Morris <rgm@gnu.org>
4293
4294 * image.el (insert-image, insert-sliced-image): Doc fix.
4295
4296 2012-11-18 Chong Yidong <cyd@gnu.org>
4297
4298 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4299 (Bug#12810).
4300
4301 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
4302
4303 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4304 response when the target file is in a subdirectory (Bug#12757).
4305
4306 2012-11-18 Chong Yidong <cyd@gnu.org>
4307
4308 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4309
4310 2012-11-18 Glenn Morris <rgm@gnu.org>
4311
4312 * emacs-lisp/cl-lib.el (face-underline-p):
4313 Use set-face-underline rather than the alias set-face-underline-p.
4314
4315 * window.el (with-temp-buffer-window): Doc fix.
4316 * subr.el (with-output-to-temp-buffer):
4317 Add doc xref to with-temp-buffer-window.
4318
4319 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
4320
4321 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4322 * calc/calc.el (math-format-date-cache): Declare.
4323
4324 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4325
4326 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4327 It also uses January 1, 1 AD as its day number 1.
4328 * calc/calc-forms.el (math-julian-date-beginning)
4329 (math-julian-date-beginning-int): Implement this.
4330
4331 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
4332
4333 * descr-text.el (quail-find-key):
4334 * dired.el (desktop-file-name):
4335 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4336 * generic-x.el (comint-mode, comint-exec):
4337 * image-dired.el (widget-forward):
4338 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4339 (speedbar-change-expand-button-char)
4340 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4341 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4342 * printing.el (easy-menu-add-item, easy-menu-remove-item)
4343 (widget-field-action, widget-value-set):
4344 * speedbar.el (imenu--make-index-alist):
4345 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4346 (ring-length, ring-insert):
4347 * vcursor.el (compare-windows-skip-whitespace):
4348 * woman.el (dired-get-filename):
4349 Declare functions.
4350
4351 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4352
4353 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4354
4355 * calc/calc.el (calc-gregorian-switch): New variable.
4356
4357 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4358 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4359 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4360 (math-leap-year-p): Add option to distinguish between Julian
4361 and Gregorian calendars.
4362 (math-day-number): Use `math-day-in-year' to do the computations.
4363 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4364 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4365 to do the computations.
4366 (math-date-to-dt): Use `math-date-to-julian-dt' and
4367 `math-date-to-gregorian-dt' to do the computations.
4368 (calcFunc-weekday, math-format-date-part): Use the new version of
4369 the DATE to determine the weekday.
4370 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4371 when necessary.
4372
4373 2012-11-17 Eli Zaretskii <eliz@gnu.org>
4374
4375 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4376 Cygwin; otherwise use 'file:'. (Bug#12914)
4377 (cygwin-convert-path-from-windows): Declare, to avoid
4378 byte-compiler warnings.
4379
4380 2012-11-17 Andreas Politz <politza@fh-trier.de>
4381
4382 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4383 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4384 prefix and negative numeric prefix args (Bug#12795).
4385
4386 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
4387
4388 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4389 Don't signal an error with a score that is too low to add to the
4390 list of top scores. (Bug#12779)
4391
4392 2012-11-17 Chong Yidong <cyd@gnu.org>
4393
4394 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4395
4396 * filecache.el (file-cache-add-file): Handle relative file name in
4397 the argument (Bug#12694).
4398
4399 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
4400
4401 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4402
4403 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4404
4405 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4406
4407 * emacs-lisp/cl-lib.el: Set more meaningful version number.
4408
4409 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4410
4411 * window.el (enlarge-window, shrink-window): Don't mention return
4412 value in doc-string (Bug#12896).
4413 (window--display-buffer): Don't resize frames - it won't work
4414 with all window managers and defeat pop-up-frame-alist.
4415 (display-buffer-alist): In doc-string explain that CONDITION can
4416 be a function and which arguments are passed to it (Bug#12854).
4417 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
4418 expressions (Bug#12854).
4419 (display-buffer): Pass ACTION argument to
4420 display-buffer-assq-regexp.
4421
4422 2012-11-16 Glenn Morris <rgm@gnu.org>
4423
4424 * window.el (fit-frame-to-buffer-bottom-margin)
4425 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4426
4427 * faces.el (face-underline-p): Use face-attribute-specified-or.
4428
4429 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
4430
4431 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4432
4433 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4436
4437 2012-11-16 Glenn Morris <rgm@gnu.org>
4438
4439 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
4440 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4441
4442 * faces.el (face-underline-p): Doc fix. Handle :underline being
4443 things other than `t' (a string, a list).
4444 (face-inverse-video-p): Doc fix.
4445 (set-face-underline): Rename it back from set-face-underline-p.
4446 Doc fix. Allow interactive input of values other than t.
4447 (read-face-attribute): Apply formatting to :underline,
4448 since like :box and :stipple it can take list values.
4449
4450 * term.el (ansi-term): Don't let C-x escape-char binding
4451 clobber the more standard C-c binding. (Bug#12842)
4452
4453 * subr.el (set-temporary-overlay-map): Doc fix.
4454
4455 2012-11-16 Martin Rudalics <rudalics@gmx.at>
4456
4457 * window.el (record-window-buffer)
4458 (display-buffer-record-window): When copying the markers to
4459 window-point preserve window-point-insertion-type. (Bug#12588)
4460
4461 2012-11-16 Glenn Morris <rgm@gnu.org>
4462
4463 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4464 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4465 Use new names for hooks rather than obsolete aliases.
4466
4467 2012-11-15 Daniel Colascione <dancol@dancol.org>
4468
4469 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4470 prefix instead of "file:" so that when FILE-NAME begins with "//",
4471 as it does when the target file is on a network share, url-handler
4472 isn't confused.
4473
4474 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4475
4476 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4477 a preactivated advice from an old advice.el; they're not compatible!
4478
4479 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
4480
4481 * emacs-lisp/nadvice.el (advice--make-interactive-form):
4482 Fix string-spec case.
4483
4484 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4485
4486 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4487
4488 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4489 (advice--buffer-local-function-sample): New var.
4490 (advice--set-buffer-local, advice--buffer-local): New functions.
4491 (add-function, remove-function): Use them.
4492
4493 2012-11-15 Drew Adams <drew.adams@oracle.com>
4494
4495 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4496
4497 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
4498
4499 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4500 potential binding of print-gensym to t, and prettify (back)quotes in
4501 case they appear in args's default values (bug#12884).
4502
4503 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4504
4505 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4506 (advice-eval-interactive-spec): New function.
4507 (advice--make-interactive-form): Support around advice (bug#12844).
4508
4509 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
4510
4511 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4512 more strict. Add docstring.
4513 (ruby-expression-expansion-re): Extract from
4514 `ruby-match-expression-expansion'.
4515 (ruby-syntax-propertize-function): After everything else, search
4516 for expansions in string literals, mark their insides as
4517 whitespace syntax and save match data for font-lock.
4518 (ruby-font-lock-keywords): Use the 2nd group from expression
4519 expansion matches.
4520 (ruby-match-expression-expansion): Use the match data saved to the
4521 text property in ruby-syntax-propertize-function.
4522
4523 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4524
4525 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4526 (bug#12879).
4527
4528 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4529
4530 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4531 start/end keyword a bit harder. Works with different values of N.
4532 Add more comments.
4533 (ruby-end-of-block): Update accordingly.
4534
4535 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4536
4537 * woman.el (woman-file-name): Don't mess with unread-command-events
4538 (bug#12861).
4539
4540 * emacs-lisp/advice.el: Layer on top of nadvice.el.
4541 Remove out of date self-require hack.
4542 (ad-do-advised-functions): Use simple `dolist'.
4543 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4544 (ad-advice-definition): Redefine as functions.
4545 (ad-advice-classes): Move before first use.
4546 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4547 (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4548 (ad--defalias-fset): Remove functions.
4549 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4550 (ad-get-orig-definition): Rewrite.
4551 (ad-make-advised-definition-docstring): Change base docstring.
4552 (ad-real-orig-definition): Rewrite.
4553 (ad-map-arglists): Change name of called function.
4554 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4555 (ad-make-advised-definition): Simplify.
4556 (ad-assemble-advised-definition): Tweak for new calling context.
4557 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4558 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
4559 function and call ad-activate if needed.
4560 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4561 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4562 (ad-compile-function): Compile ad-Advice-*.
4563 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4564 (ad-start-advice, ad-stop-advice): Remove.
4565
4566 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4567
4568 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4569 period before class method names, not after. Remove handling of
4570 one impossible case. Add comments.
4571
4572 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4573
4574 * emacs-lisp/advice.el: Remove support for freezing.
4575 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4576 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4577 Remove support for `freeze'.
4578
4579 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4580 override the default.
4581 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4582 cl--dotimes/dolist.
4583 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4584 `cl' is loaded.
4585
4586 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4587 from add-advice.
4588 (advice--strip-macro): New function.
4589 (advice--defalias-fset): Use them to handle macros.
4590 (advice-add): Use them.
4591 (advice-member-p): Correctly handle macros.
4592
4593 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4594
4595 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4596 Never font-lock the beginning of singleton class as heredoc.
4597
4598 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
4599
4600 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4601
4602 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
4603
4604 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4605 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
4606 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4607
4608 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
4609
4610 Fix end-of-defun misbehavior.
4611 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4612 python-beginning-of-defun-function. Handle nested defuns
4613 correctly.
4614 (python-nav-end-of-defun): Rename from
4615 python-end-of-defun-function. Ensure forward movement.
4616 (python-info-current-defun): Reimplement to work as intended
4617 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
4618 parent defuns as soon as possible.
4619
4620 2012-11-13 Glenn Morris <rgm@gnu.org>
4621
4622 * progmodes/flymake.el (flymake-error-bitmap)
4623 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4624 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4625
4626 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
4627
4628 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4629 backward, always stop at indentation. Reverts the change from
4630 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4631
4632 2012-11-13 Glenn Morris <rgm@gnu.org>
4633
4634 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4635 Add ibuffer-filter-by-derived-mode.
4636
4637 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4638 the same name shadowing each other.
4639
4640 * window.el (with-temp-buffer-window): Doc tweak.
4641
4642 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4643
4644 * help.el (temp-buffer-max-height):
4645 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4646 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4647
4648 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
4649
4650 * emacs-lisp/nadvice.el: New package.
4651 * subr.el (special-form-p): New function.
4652 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4653 (elp-all-instrumented-list): Remove var.
4654 (elp-not-profilable): Remove elp-wrapper.
4655 (elp-profilable-p): Use autoloadp and special-form-p.
4656 (elp--advice-name): New const.
4657 (elp-instrument-function): Use advice-add.
4658 (elp--instrumented-p): New predicate.
4659 (elp-restore-function): Use advice-remove.
4660 (elp-restore-all, elp-reset-all): Use mapatoms.
4661 (elp-set-master): Use elp--instrumented-p.
4662 (elp--make-wrapper): Rename from elp-wrapper, return a function
4663 suitable for advice-add. Use cl-inf.
4664 (elp-results): Use mapatoms+elp--instrumented-p.
4665 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4666 (debug-function-list): Remove var.
4667 (debug): Rename arg, and then let-bind it explicitly inside.
4668 (debugger-setup-buffer): Rename arg.
4669 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4670 (debugger-frame-number): Adjust to new debug-on-entry setup.
4671 (debug--implement-debug-on-entry): Rename from
4672 implement-debug-on-entry, add argument.
4673 (debugger-special-form-p): Remove, use special-form-p instead.
4674 (debug-on-entry): Use advice-add.
4675 (debug--function-list): New function.
4676 (cancel-debug-on-entry): Use it, along with advice-remove.
4677 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4678 (debugger-list-functions): Use debug--function-list instead of
4679 debug-function-list.
4680 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4681 (ad-special-form-p): Remove, use special-form-p instead.
4682 (ad-set-advice-info): Use add-function and remove-function.
4683 (ad--defalias-fset): Adjust accordingly.
4684
4685 2012-11-10 Glenn Morris <rgm@gnu.org>
4686
4687 * mail/emacsbug.el (report-emacs-bug-tracker-url)
4688 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4689 (report-emacs-bug-create-existing-bugs-buffer)
4690 (report-emacs-bug-parse-query-results)
4691 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
4692
4693 * term.el (term-default-fg-color, term-default-bg-color):
4694 Make obsolete, rather than just saying "deprecated" in the doc.
4695
4696 * term.el (term): Rename from `term-face'.
4697 (term-current-face, ansi-term-color-vector)
4698 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
4699 Update all users.
4700
4701 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
4702
4703 * server.el (server-create-window-system-frame): Handle Nextstep
4704 specially (Bug#12780).
4705
4706 2012-11-10 Glenn Morris <rgm@gnu.org>
4707
4708 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4709 Unautoload, and make obsolete. (Bug#7449)
4710
4711 2012-11-10 Chong Yidong <cyd@gnu.org>
4712
4713 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
4714 rename from diff-remove-trailing-whitespace (Bug#12831).
4715
4716 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4717
4718 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
4719 miscompilation of trace.el.
4720
4721 2012-11-10 Glenn Morris <rgm@gnu.org>
4722
4723 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
4724
4725 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4726
4727 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
4728 (bug#12812).
4729
4730 2012-11-10 Chong Yidong <cyd@gnu.org>
4731
4732 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
4733 a defcustom with an appropriate :set function.
4734 (minibuffer-default--in-prompt-regexps): New function.
4735
4736 2012-11-10 Glenn Morris <rgm@gnu.org>
4737
4738 * emacs-lisp/cl.el (define-setf-expander, defsetf)
4739 (define-modify-macro): Doc fixes.
4740
4741 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
4742 (gv-define-simple-setter): Update doc of `fix-return'.
4743
4744 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
4745
4746 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
4747 twice when `fix-return' is set (bug#12813).
4748
4749 * emacs-lisp/cl.el (defsetf): Pass the third arg to
4750 gv-define-simple-setter (bug#12812).
4751
4752 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4753 (bug#12756).
4754
4755 2012-11-10 Glenn Morris <rgm@gnu.org>
4756
4757 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
4758
4759 * emacs-lisp/cl-extra.el (cl-prettyexpand):
4760 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
4761 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
4762 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
4763
4764 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
4765
4766 2012-11-10 Leo Liu <sdl.web@gmail.com>
4767
4768 * ido.el (ido-set-matches-1): Improve flex matching performance by
4769 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
4770
4771 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4772
4773 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
4774 (ad--defalias-fset): New function.
4775 (ad-safe-fset): Remove.
4776 (ad-make-freeze-definition): Use cl-letf*.
4777
4778 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4779
4780 * subr.el (dolist): Don't bind VAR in RESULT.
4781
4782 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
4783 (fset, documentation): Don't save real def since we don't advise.
4784 (ad-do-advised-functions): Remove problematic `result-form'.
4785 (ad-safe-fset): `ad-real-fset' => `fset'.
4786 (ad-read-advised-function): Don't assume that ad-do-advised-functions
4787 uses CL's dolist internally.
4788 (ad-arglist): Remove unused arg `name'.
4789 (ad-docstring, ad-make-advised-docstring):
4790 `ad-real-documentation' => `documentation'.
4791 (warning-suppress-types): Declare.
4792 (ad-set-arguments): Simple CSE.
4793 (ad-recover-normality): Sanity check.
4794
4795 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
4796 (funcall '(lambda ..) ..) into ((lambda ..) ..).
4797
4798 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
4799
4800 * ses.el: symbol to coordinate mapping is made by symbol property
4801 `ses-cell'. This means that the same mapping is done for all SES
4802 sheets. That is good enough for cells with standard A1 names, but
4803 not for named cell. So a hash map is added for the latter.
4804 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
4805 (ses-sym-rowcol): Use hashmap for named cell.
4806 (ses-is-cell-sym-p): New defun.
4807 (ses-decode-cell-symbol): New defun.
4808 (ses-create-cell-variable): Add cell to hashmap when name is not
4809 A1-like.
4810 (ses-rename-cell): Check that cell new name is not already in
4811 spreadsheet with the use of ses-is-cell-sym-p
4812 (ses-rename-cell): Use hash map for named cells, but accept also
4813 renaming back to A1-like.
4814
4815 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4816
4817 * emacs-lisp/advice.el: Use new dynamic docstrings.
4818 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4819 Use dynamic-docstring-function instead of ad-advice-info.
4820 (ad--make-advised-docstring): New function extracted from
4821 ad-make-advised-docstring.
4822 (ad-make-advised-docstring): Use it.
4823 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
4824 from sql-help.
4825 (sql-help): Use it with dynamic-docstring-function.
4826
4827 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
4828
4829 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4830
4831 * files.el (hack-one-local-variable--obsolete): New function.
4832 (hack-one-local-variable): Use it for obsolete settings.
4833
4834 * subr.el (locate-user-emacs-file): If both old and new name exist, use
4835 the new name.
4836
4837 * progmodes/js.el (js--filling-paragraph): New var.
4838 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
4839 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
4840 less sneaky.
4841
4842 2012-11-08 Julien Danjou <julien@danjou.info>
4843
4844 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
4845 `auto-mode-alist' (Bug#12835).
4846
4847 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4848
4849 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
4850 (perl--prettify-symbols-alist): New const.
4851 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
4852 New functions.
4853 (perl-font-lock-keywords-2): Use them.
4854 (perl-electric-noindent-p): New function.
4855 (perl-mode): Use it to set up electric-indent-mode.
4856 (perl-electric-terminator, perl-indent-command): Mark obsolete.
4857 (perl-mode-map): Remove bindings for them.
4858 (perl-imenu-generic-expression, perl-outline-level):
4859 Match functions&packages in column>0.
4860
4861 * env.el (env--substitute-vars-regexp): New const.
4862 (substitute-env-vars): Use it. Add `only-defined' arg.
4863 * net/tramp.el (tramp-replace-environment-variables): Use it.
4864
4865 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4866 Byte-compile *before* eval in eval-and-compile.
4867 (byte-compile-log-warning): Remove redundant inhibit-read-only.
4868 (byte-compile-file-form-autoload): Don't hide actual definition.
4869 (byte-compile-maybe-guarded): Accept `functionp' as well.
4870
4871 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
4872
4873 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
4874
4875 * notifications.el (notifications-get-server-information-method):
4876 New defconst.
4877 (notifications-get-capabilities): Fix docstring.
4878 (notifications-get-server-information): New defun.
4879
4880 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4881
4882 * textmodes/ispell.el (ispell-region): Standard re-indent for better
4883 readability.
4884
4885 * textmodes/ispell.el: Experimental support for support debugging.
4886 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
4887 buffer for ispell.
4888 (ispell-print-if-debug): New function to print stuff to
4889 `ispell-debug-buffer' if debugging is enabled.
4890 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
4891 show some debugging info.
4892 (ispell-buffer-with-debug): New function that creates a debugging
4893 buffer and calls `ispell-buffer' with debugging enabled.
4894
4895 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
4896 comment in autoconf mode. (Bug#12768)
4897
4898 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4899
4900 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
4901 frame-first-window, frame-root-window, frame-selected-window,
4902 minibuffer-selected-window, minibuffer-window,
4903 window-absolute-pixel-edges, window-at, window-body-height,
4904 window-body-width, window-display-table, window-combination-limit,
4905 window-frame, window-fringes, window-inside-absolute-pixel-edges,
4906 window-inside-edges, window-inside-pixel-edges, window-left-child,
4907 window-left-column, window-margins, window-next-buffers,
4908 window-next-sibling, window-new-normal, window-new-total,
4909 window-normal-size, window-parameter, window-parameters, window-parent,
4910 window-pixel-edges, window-point, window-prev-buffers,
4911 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
4912 window-start, window-text-height, window-top-child, window-top-line,
4913 window-total-height, window-total-width and window-use-time to the list
4914 of functions without side-effects.
4915 (toplevel): Add window-valid-p to the list of error-free functions
4916 without side-effects.
4917
4918 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4919
4920 * textmodes/ispell.el (ispell-program-name):
4921 Update spellchecker parameters when customized.
4922
4923 2012-11-04 Glenn Morris <rgm@gnu.org>
4924
4925 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
4926
4927 2012-11-04 Chong Yidong <cyd@gnu.org>
4928
4929 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
4930 same-window-* variables.
4931
4932 2012-11-04 Juri Linkov <juri@jurta.org>
4933
4934 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
4935 (isearch-describe-key, isearch-describe-mode): Use a display
4936 action instead of binding same-window-* variables (Bug#10040).
4937
4938 2012-11-03 Glenn Morris <rgm@gnu.org>
4939
4940 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
4941 Rename handler properties back from cl-- to cl-. (Bug#12788)
4942
4943 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
4944
4945 2012-11-03 Eli Zaretskii <eliz@gnu.org>
4946
4947 * term/pc-win.el: Don't load term/internal from here.
4948
4949 * loadup.el: Load term/internal from here.
4950
4951 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
4952
4953 * progmodes/python.el (inferior-python-mode): Fix hang in
4954 jit-lock (Bug#12645).
4955
4956 2012-11-03 Martin Rudalics <rudalics@gmx.at>
4957
4958 * window.el (switch-to-visible-buffer)
4959 (switch-to-buffer-preserve-window-point): Fix doc-strings.
4960
4961 2012-11-03 Glenn Morris <rgm@gnu.org>
4962
4963 * emacs-lisp/cl-lib.el (cl--random-time):
4964 Rename from cl-random-time. (Bug#12773)
4965 (cl--gensym-counter, cl--random-state): Update callers.
4966 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
4967
4968 2012-11-03 Chong Yidong <cyd@gnu.org>
4969
4970 * cus-start.el: Make cursor-type customizable (Bug#11633).
4971
4972 2012-11-02 Glenn Morris <rgm@gnu.org>
4973
4974 * filecache.el: No need to load find-lisp when compiling.
4975 (find-lisp-find-files): Autoload it.
4976 (file-cache-add-directory-recursively): Don't require find-lisp.
4977
4978 * image.el (image-type-from-file-name): Trivial simplification.
4979
4980 * emacs-lisp/bytecomp.el (byte-compile-eval):
4981 Decouple "noruntime" and "cl-functions" warnings.
4982
4983 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
4984
4985 * play/gomoku.el (gomoku-display-statistics): Update mode line
4986 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
4987
4988 2012-10-31 Martin Rudalics <rudalics@gmx.at>
4989
4990 * window.el (quit-restore-window): If the window has been
4991 created on an existing frame and ended up as the sole window on
4992 that frame, do not delete it (Bug#12764).
4993
4994 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
4995
4996 * progmodes/sh-script.el (sh--inside-noncommand-expression):
4997 Rename from sh--inside-arithmetic-expression, handle more cases
4998 (bug#11263).
4999
5000 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
5001 (sh-font-lock-open-heredoc): Use it (bug#12770).
5002
5003 2012-10-30 Glenn Morris <rgm@gnu.org>
5004
5005 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
5006
5007 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
5008
5009 2012-10-29 Chong Yidong <cyd@gnu.org>
5010
5011 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
5012 function key is stored in a keyboard macro (Bug#4894).
5013
5014 * thingatpt.el (number-at-point): Apply a thing-at-point property.
5015
5016 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5017
5018 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
5019 header comments".
5020 (diff-unified->context, diff-context->unified)
5021 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
5022
5023 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
5024
5025 * files.el (find-alternate-file): Only ask one question (bug#12487).
5026
5027 2012-10-29 Chong Yidong <cyd@gnu.org>
5028
5029 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
5030 Suggested by Dan Nicolaescu (Bug#6326).
5031
5032 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
5033
5034 * startup.el (fancy-about-screen): Don't message (Bug#12680).
5035
5036 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
5037
5038 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
5039
5040 * face-remap.el (face-remap-add-relative): Handle the case where a
5041 face-remapping-alist entry is a cons cell (Bug#12762).
5042
5043 2012-10-29 Kevin Ryde <user42@zip.com.au>
5044
5045 * woman.el (woman-parse-numeric-value): Handle picas correctly
5046 (Bug#12639).
5047
5048 2012-10-29 Glenn Morris <rgm@gnu.org>
5049
5050 * emacs-lisp/cl.el (defsetf): Doc fix.
5051
5052 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5053
5054 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
5055 syntax to the matching opener, if any (bug#12547).
5056 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
5057 matching open as a "case-(".
5058 (sh-smie-rc-grammar): Add a corresponding rule for it.
5059
5060 2012-10-28 Daniel Hackney <dan@haxney.org>
5061
5062 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
5063 "PKGNAME-autoloads.el" in case we created it.
5064
5065 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5066
5067 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
5068 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
5069 (completion--twq-all): Disable too-strict assertions.
5070
5071 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
5072
5073 2012-10-27 Eli Zaretskii <eliz@gnu.org>
5074
5075 * profiler.el (profiler-report-make-entry-part): Fix help-echo
5076 text to match the real keybindings.
5077
5078 2012-10-27 Juri Linkov <juri@jurta.org>
5079
5080 * wdired.el (wdired-keep-marker-rename): New defcustom.
5081 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
5082 (Bug#11795)
5083
5084 * dired.el (dired-keep-marker-rename): Add reference to
5085 `wdired-keep-marker-rename' in the docstring.
5086 Add default character value ?R to display initially in
5087 Customization UI instead of ?@.
5088
5089 2012-10-27 Martin Rudalics <rudalics@gmx.at>
5090
5091 * window.el (display-buffer): In doc-string describe
5092 window-height and window-width alist entries.
5093
5094 * time.el (display-time-world): Restore fit-window-to-buffer
5095 behavior.
5096
5097 2012-10-27 Chong Yidong <cyd@gnu.org>
5098
5099 * subr.el (insert-buffer-substring-as-yank): Doc fix.
5100
5101 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
5102
5103 * minibuffer.el (completion-category-overrides): New completion
5104 category `bookmark' (bug#11131).
5105
5106 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5107
5108 * emacs-lisp/advice.el (ad-assemble-advised-definition):
5109 Silence bogus compiler warnings for ad-do-it.
5110
5111 * bookmark.el (bookmark-completing-read): Set the completion category
5112 to `bookmark' (bug#11131).
5113
5114 2012-10-26 Bastien <bzg@altern.org>
5115 Stefan Monnier <monnier@iro.umontreal.ca>
5116
5117 * face-remap.el: Use lexical-binding.
5118 (text-scale-adjust): Improve docstring. Use itself for the temporary
5119 overlay-map bindings, so as to repeat the "Use..." message each time.
5120
5121 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5122
5123 * emacs-lisp/macroexp.el (macroexp--expand-all):
5124 Obey byte-compile-warning-enabled-p (bug#12486).
5125
5126 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
5127 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
5128
5129 2012-10-26 Martin Rudalics <rudalics@gmx.at>
5130
5131 * mouse.el (mouse-drag-line): Move last form into preceding when
5132 clause (Bug#12731).
5133
5134 * help.el (resize-temp-buffer-window): Fix doc-string.
5135
5136 2012-10-25 David Engster <deng@randomsample.de>
5137
5138 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
5139 Remove. This feature is already integrated in imenu.
5140
5141 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
5142 always loaded. Require `speedbar' unconditionally.
5143
5144 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5145
5146 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
5147
5148 * minibuffer.el (minibuffer-force-complete): Fix thinko.
5149
5150 * net/ldap.el (ldap-search-internal): The official ldif format starts
5151 with a "version: 1" header (bug#12724).
5152
5153 * emacs-lisp/package.el (package-installed-p): Warn if not ready
5154 (bug#12721).
5155
5156 2012-10-25 Glenn Morris <rgm@gnu.org>
5157
5158 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
5159
5160 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5161
5162 * minibuffer.el (minibuffer-force-complete): Use one more marker
5163 for the temporary-overlay-map command (bug#12619).
5164
5165 2012-10-24 Chong Yidong <cyd@gnu.org>
5166
5167 * time.el (display-time-world-mode): Derive from special-mode.
5168 (display-time-world): Use display-buffer (Bug#12708).
5169 (display-time-world-mode-map): Variable deleted.
5170 (display-time-world-display): Wrap the final delete-char inside
5171 inhibit-read-only.
5172
5173 2012-10-24 Chong Yidong <cyd@gnu.org>
5174
5175 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5176 Doc fix.
5177
5178 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5179
5180 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5181
5182 * minibuffer.el (completion--all-sorted-completions-location): New var.
5183 (completion--cache-all-sorted-completions)
5184 (completion--flush-all-sorted-completions): Use it.
5185 (completion-in-region, completion-in-region--postch)
5186 (completion-at-point, completion-help-at-point): Use markers in
5187 completion-in-region--data (bug#12619).
5188
5189 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5190
5191 * progmodes/compile.el (compilation-start): Try to handle common
5192 quoting of `cd' argument (bug#12640).
5193
5194 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5195 (bug#12671).
5196
5197 2012-10-23 Glenn Morris <rgm@gnu.org>
5198
5199 * progmodes/gud.el (gud-menu-map):
5200 Check gdb-active-process is bound. (Bug#12358)
5201
5202 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5203
5204 * repeat.el (repeat): Set real-this-command (bug#12232).
5205
5206 * htmlfontify.el (hfy-post-html-hook):
5207 * filesets.el (filesets-cache-fill-content-hook):
5208 * arc-mode.el (archive-extract-hook):
5209 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5210 * net/rcirc.el (rcirc-sentinel-functions)
5211 (rcirc-receive-message-functions, rcirc-activity-functions)
5212 (rcirc-print-functions):
5213 * net/dbus.el (dbus-event-error-functions):
5214 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5215 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5216 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5217 * term/sun.el (sun-raw-prefix-hooks):
5218 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5219
5220 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
5221
5222 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5223 Set `tramp-chunksize' to 1. This improves the performance.
5224 (tramp-smb-wait-for-output): Add timeout to
5225 `tramp-accept-process-output' calls.
5226
5227 2012-10-23 Chong Yidong <cyd@gnu.org>
5228
5229 * faces.el (font-list-limit): Define as an obsolete variable.
5230
5231 * startup.el (command-line):
5232 * cus-start.el: Don't refer to font-list-limit.
5233
5234 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5235
5236 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5237
5238 * subr.el (internal-temp-output-buffer-show): Rename from
5239 temp-output-buffer-show, since previously compiled files expect this name.
5240
5241 2012-10-23 Glenn Morris <rgm@gnu.org>
5242
5243 * image.el (image-type-from-file-name): If multiple types match,
5244 return the first one that is supported. (Bug#9045)
5245
5246 2012-10-22 Glenn Morris <rgm@gnu.org>
5247
5248 * image.el (imagemagick-enabled-types): Doc fix.
5249
5250 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
5251
5252 * progmodes/which-func.el (which-func-current): The hash-table may have
5253 an explicit nil (bug#12338).
5254
5255 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5256
5257 * electric.el (electric-pair-delete-selection-self-insert-function):
5258 Rename to electric-pair-will-use-region, return a boolean.
5259 (electric-pair-mode): Adjust accordingly. Don't require delsel.
5260
5261 * delsel.el (delete-selection-helper): Use a function instead of a hook.
5262 (delete-selection-pre-hook): Use use-region-p.
5263 (delete-selection-self-insert-function): Remove.
5264 (self-insert-command): Obey self-insert-uses-region-functions.
5265 (self-insert-iso): Revert to previous setting, since we don't actually
5266 know what that command does.
5267 (delete-selection-self-insert-hooks): Remove.
5268
5269 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
5270
5271 * delsel.el (delete-selection-helper): New function, extracted from
5272 delete-selection-pre-hook.
5273 (delete-selection-pre-hook): Use it.
5274 (delete-selection-self-insert-function): New function.
5275 (delete-selection-self-insert-hooks): New hook.
5276 (self-insert-command, self-insert-iso): Use it.
5277 * electric.el (electric-pair-syntax): New function, extracted from
5278 electric-pair-post-self-insert-function.
5279 (electric-pair-post-self-insert-function): Use it.
5280 (electric-pair-delete-selection-self-insert-function): New function.
5281 (electric-pair-mode): Require delsel and setup
5282 delete-selection-self-insert-hooks (bug#11520).
5283
5284 2012-10-20 Chong Yidong <cyd@gnu.org>
5285
5286 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5287 no changes to show (Bug#12586).
5288
5289 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5290 list explicitly (Bug#12571).
5291
5292 2012-10-20 Arne Jørgensen <arne@arnested.dk>
5293
5294 * progmodes/flymake.el (flymake-create-temp-inplace):
5295 Use file-truename.
5296
5297 2012-10-20 Eli Zaretskii <eliz@gnu.org>
5298
5299 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
5300
5301 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
5302
5303 * calc/calc-units.el (math-extract-units): Properly extract powers
5304 of units.
5305
5306 2012-10-20 Daniel Colascione <dancol@dancol.org>
5307
5308 * frame.el (make-frame): Set x-display-name as we used to in order
5309 to unbreak creating an X11 frame from an Emacs daemon started
5310 without a display.
5311
5312 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5313
5314 * minibuffer.el (minibuffer-force-complete): Make the next completion use
5315 the same completion-field (bug#12221).
5316
5317 2012-10-19 Martin Rudalics <rudalics@gmx.at>
5318
5319 * emacs-lisp/debug.el (debug): Record height of debugger window
5320 also when debugger will be back (Bug#8789).
5321
5322 2012-10-18 Chong Yidong <cyd@gnu.org>
5323
5324 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5325 Convert to defcustom.
5326 (gdb-get-source-file): Don't bind pop-up-windows.
5327
5328 * progmodes/gud.el (gud-display-line): Don't specially re-use
5329 other frames for the gdb-mi case (Bug#12648).
5330
5331 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5332
5333 * emacs-lisp/advice.el: Clean up commentary a bit.
5334 (ad-do-advised-functions, ad-with-originals): Use `declare'.
5335 (byte-code-function-p): Never redefine.
5336
5337 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5338
5339 2012-10-18 Glenn Morris <rgm@gnu.org>
5340
5341 * dired.el (dired-sort-toggle): Some ls implementations only allow
5342 a single option string. (Bug#12666)
5343
5344 * minibuffer.el (completion-cycle-threshold): Doc fix.
5345
5346 2012-10-17 Kenichi Handa <handa@gnu.org>
5347
5348 * international/mule.el (set-keyboard-coding-system):
5349 Recover input meta mode when the new coding system doesn not use 8-bit.
5350 Supply TERMINAL arg to set-input-meta-mode.
5351
5352 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
5353
5354 * wdired.el (wdired-old-marks): New variable.
5355 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5356 (wdired-do-renames): Move point with renamed file and don't lose
5357 mark status (Bug#11795).
5358
5359 2012-10-16 Juri Linkov <juri@jurta.org>
5360
5361 * replace.el (query-replace-help): Mention multi-buffer replacement
5362 keys in the Help message. (Bug#12655)
5363
5364 2012-10-15 Chong Yidong <cyd@gnu.org>
5365
5366 * emacs-lisp/byte-run.el (defsubst): Doc fix.
5367
5368 2012-10-14 Eli Zaretskii <eliz@gnu.org>
5369
5370 * window.el (display-buffer): Doc fix.
5371
5372 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5373 Adjust the msft regexp to the output of Studio 2010, and move msft
5374 before edg-1. See the discussion on emacs-devel,
5375 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5376 for the details.
5377
5378 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5379
5380 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5381 (oset): Move uses of object-class-fast macro after its definition.
5382
5383 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5384
5385 2012-10-13 Chong Yidong <cyd@gnu.org>
5386
5387 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5388 enabled, re-enable it (Bug#11963).
5389
5390 2012-10-13 Martin Rudalics <rudalics@gmx.at>
5391
5392 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5393 non-nil, restore window configuration (Bug#12623).
5394
5395 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5396
5397 * help-fns.el (describe-variable, describe-function-1):
5398 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5399
5400 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5401
5402 2012-10-12 Glenn Morris <rgm@gnu.org>
5403
5404 * mail/rmailsum.el (rmail-header-summary):
5405 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
5406
5407 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
5408
5409 * progmodes/python.el (python-mode-map):
5410 Replace subtitute-key-definition with proper command remapping.
5411 (python-nav--up-list): Fix behavior for blocks on the same level.
5412
5413 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5414
5415 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5416
5417 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5418 changes to the format of load-history.
5419
5420 * international/mule-cmds.el (read-char-by-name): Move let-binding of
5421 completion-ignore-case in case that var is buffer-local (bug#12615).
5422
5423 2012-10-11 Kenichi Handa <handa@gnu.org>
5424
5425 * international/eucjp-ms.el: Re-generated.
5426
5427 2012-10-10 Kenichi Handa <handa@gnu.org>
5428
5429 * select.el (xselect--encode-string): If a coding is specified for
5430 selection, and that is compatible with COMPOUND_TEXT, use it.
5431
5432 2012-10-10 Martin Rudalics <rudalics@gmx.at>
5433
5434 * window.el (switch-to-buffer-preserve-window-point): New option.
5435 (switch-to-buffer):
5436 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5437
5438 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5439
5440 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5441 Don't document nil as a useful value (bug#12583).
5442
5443 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
5444
5445 * net/tramp.el (tramp-debug-message):
5446 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5447 (with-tramp-progress-reporter): Rename from
5448 `tramp-with-progress-reporter'.
5449 (with-tramp-file-property, with-tramp-connection-property):
5450 Move from tramp-cache.el, rename from `with-file-property' and
5451 `with-connection-property', respectively.
5452
5453 * net/tramp-cache.el: Remove `with-file-property' and
5454 `with-connection-property'.
5455
5456 * net/tramp.el:
5457 * net/tramp-gvfs.el:
5458 * net/tramp-sh.el:
5459 * net/tramp-smb.el: Adapt callees.
5460
5461 * net/trampver.el: Update release number.
5462
5463 2012-10-09 Glenn Morris <rgm@gnu.org>
5464
5465 * w32-fns.el (set-message-beep):
5466 * term/w32-win.el (set-message-beep): Update declarations.
5467
5468 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5469
5470 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5471 (mode-line-widen, mode-line-input-method-map)
5472 (mode-line-coding-system-map, mode-line-remote)
5473 (mode-line-unbury-buffer, mode-line-bury-buffer)
5474 (mode-line-next-buffer, mode-line-previous-buffer):
5475 Replace save-selected-window+select-window => with-selected-window.
5476
5477 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5478 * progmodes/cc-vars.el (bq-process): Remove, unused.
5479
5480 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5481
5482 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
5483
5484 Implemented `backward-up-list'-like navigation.
5485 * progmodes/python.el (python-nav-up-list)
5486 (python-nav-backward-up-list): New functions.
5487 (python-mode-map): Define substitute key for backward-up-list to
5488 python-nav-backward-up-list.
5489
5490 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5491
5492 * progmodes/python.el (python-fill-paragraph): Rename from
5493 python-fill-paragraph-function. Fixed fill-paragraph for
5494 decorators (Bug#12605).
5495
5496 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5497
5498 * progmodes/python.el (python-shell-output-filter): Handle extra
5499 carriage return in OSX (Bug#12409).
5500
5501 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5502
5503 Fix shell handling of unbalanced quotes and parens in output.
5504 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5505 (python-syntax-propertize-function): Use it.
5506 (python-shell-output-syntax-table): New var.
5507 (inferior-python-mode): Prevent unbalanced parens/quotes from
5508 previous output mess with current input context.
5509
5510 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
5511
5512 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5513 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5514
5515 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
5516
5517 * ffap.el (ffap-replace-file-component): Support Tramp file name
5518 syntax, not only ange-ftp's one.
5519
5520 2012-10-08 Glenn Morris <rgm@gnu.org>
5521
5522 * cus-start.el (message-log-max): Set :version.
5523
5524 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5525
5526 2012-10-08 Martin Rudalics <rudalics@gmx.at>
5527
5528 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5529 the minibuffer window (Bug#10851).
5530
5531 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
5532
5533 Enhancements on forward-sexp movement.
5534 * progmodes/python.el (python-nav-beginning-of-statement)
5535 (python-nav-end-of-statement): Return point-marker.
5536 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5537 (python-info-current-symbol)
5538 (python-info-statement-starts-block-p): Rename from
5539 python-info-beginning-of-block-p.
5540 (python-info-statement-ends-block-p): Rename from
5541 python-info-end-of-block-p.
5542 (python-info-beginning-of-statement-p)
5543 (python-info-end-of-statement-p)
5544 (python-info-beginning-of-block-p, python-info-end-of-block-p):
5545 New functions.
5546
5547 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5548
5549 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5550 frame-selected-windows.
5551
5552 2012-10-08 Daniel Colascione <dancol@dancol.org>
5553
5554 * battery.el (battery-status-function): Check for
5555 w32-battery-status itself, not system-time windows-nt.
5556
5557 * frame.el: Require cl-lib.
5558 (display-format-alist): New variable mapping frame types to
5559 functions that initialize them.
5560 (window-system-for-display): New function: interprets
5561 display-format-alist.
5562 (make-frame-on-display): Remove existing display-selection logic
5563 and just forward to make-frame, which will now DTRT.
5564 (make-frame): Restructure to use window-system-for-display to
5565 figure out how to create a frame on a given display.
5566 (display-mouse-p): Look for frame-type w32, not a particular
5567 system-type.
5568
5569 * loadup.el: Load w32 lisp code when we have the w32 feature.
5570
5571 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5572 system-type windows-nt.
5573
5574 * server.el (server-create-window-system-frame): Look for window
5575 type.
5576 (server-proces-filter): Only force a window system when windows-nt
5577 _and_ w32. Explain why.
5578
5579 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5580 of window systems we configure for the mode.
5581
5582 * startup.el (command-line): Mark window system is initialized
5583 after we've done it.
5584
5585 * common-win.el (x-select-text): Look for w32, not windows-nt.
5586
5587 * ns-win.el: Require cl-lib. Add ourselves to
5588 display-format-alist.
5589 (ns-initialize-window-system): Assert we're not initialized twice.
5590
5591 * w32-win.el: Enable lexical binding; require cl-lib; add
5592 ourselves to display-format-alist.
5593 (w32-handle-dropped-file): Convert incoming dropped files from
5594 Windows paths to Cygwin ones before passing them on to the rest of
5595 Emacs.
5596 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
5597 (w32-initialize-window-system): Assert we're not initialized twice.
5598
5599 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5600 (x-initialize-window-system): Assert we're not initialized twice.
5601
5602 * w32-common-fns.el: New File.
5603 (w32-version, w32-using-nt, w32-get-clipboard-data)
5604 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5605 (w32-charset-info-alist, x-last-selected, text)
5606 (x-get-selection-value, x-selection-value): Move here.
5607
5608 * w32-fns.el: Require w32-common-fns.
5609 (w32-version, w32-using-nt, w32-get-clipboard-data)
5610 (w32-set-clipboard-data, x-set-selection, x-get-selection)
5611 (w32-charset-info-alist, x-last-selected, text)
5612 (x-get-selection-value, x-selection-value): Move to
5613 w32-common-fns.
5614
5615 * w32-vars.el:
5616 (w32-allow-system-shell, w32-system-shells): Define only in
5617 non-cygwin case.
5618
5619 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5620
5621 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5622 (read-passwd): Remove a few more potential sources of leaks.
5623
5624 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5625
5626 * progmodes/python.el (inferior-python-mode)
5627 (python-shell-make-comint): Fix initialization of local
5628 variables copied from parent buffer.
5629
5630 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5631
5632 * term/ns-win.el (ns-read-file-name): Update declaration to match
5633 nsfns.m.
5634 (ns-respond-to-change-font): Change fontsize separately so we are sure
5635 it is set when font is acted upon.
5636
5637 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5638
5639 Enhancements to indentation.
5640 * progmodes/python.el (python-indent-context): Give priority to
5641 inside-string context. Make comments indentation markers.
5642 (python-indent-region): Do not mess with strings, unless it's the
5643 enclosing set of quotes.
5644
5645 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5646
5647 * window.el (internal--before-save-selected-window)
5648 (internal--after-save-selected-window): New functions extracted from
5649 save-selected-window. Make sure we return the `alist' we construct.
5650 (save-selected-window): Use them.
5651
5652 * textmodes/tex-mode.el (tex-recenter-output-buffer):
5653 Use with-selected-window.
5654
5655 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5656 forms that define macros (bug#12593).
5657
5658 2012-10-07 Kenichi Handa <handa@gnu.org>
5659
5660 * international/mule-conf.el (compound-text-with-extensions):
5661 Add :mime-charset property as x-ctext.
5662
5663 2012-10-07 Stefan Merten <smerten@oekonux.de>
5664
5665 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5666 (rst-indent-literal-normal, rst-indent-literal-minimized)
5667 (rst-indent-comment): Correct :version tag.
5668 (rst-official-cvs-rev): Correct version string.
5669
5670 2012-10-07 Glenn Morris <rgm@gnu.org>
5671
5672 * mail/rmailmm.el (rmail-mime-process-multipart):
5673 Do not confuse a multipart message with an epilogue
5674 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
5675
5676 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
5677
5678 Fix shell output retrieval and comint-prompt-regexp init.
5679 * progmodes/python.el (inferior-python-mode):
5680 (python-shell-make-comint): Fix initialization of
5681 comint-prompt-regexp from copied file local variables.
5682 (python-shell-fetched-lines): Remove var.
5683 (python-shell-output-filter-in-progress): Rename from
5684 python-shell-fetch-lines-in-progress.
5685 (python-shell-output-filter-buffer): Rename from
5686 python-shell-fetch-lines-string.
5687 (python-shell-fetch-lines-filter): Delete function.
5688 (python-shell-output-filter): New function.
5689 (python-shell-send-string-no-output): Use them.
5690
5691 2012-10-07 Glenn Morris <rgm@gnu.org>
5692
5693 * hi-lock.el (hi-lock-process-phrase):
5694 Try to make it less fragile. (Bug#7161)
5695
5696 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
5697
5698 2012-10-06 Glenn Morris <rgm@gnu.org>
5699
5700 * ehelp.el (electric-help-mode): Use help-mode rather than
5701 non-existent mode `help'.
5702 (electric-help-map): Use button-buffer-map. (Bug#10917)
5703
5704 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
5705 (reftex-create-bibtex-footer): Fix custom types.
5706
5707 * progmodes/sh-script.el (sh-indent-after-continuation):
5708 Add explicit :group.
5709
5710 * textmodes/rst.el (rst-preferred-decorations)
5711 (rst-shift-basic-offset): Clarify obsolescence versions.
5712
5713 * profiler.el (profiler): Add missing group :version tag.
5714 * avoid.el (mouse-avoidance-banish-position):
5715 * proced.el (proced-renice-command):
5716 * calc/calc.el (calc-ensure-consistent-units):
5717 * calendar/icalendar.el (icalendar-import-format-uid):
5718 * net/tramp.el (tramp-save-ad-hoc-proxies):
5719 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5720 * progmodes/flymake.el (flymake-error-bitmap)
5721 (flymake-warning-bitmap, flymake-fringe-indicator-position):
5722 * progmodes/sh-script.el (sh-indent-after-continuation):
5723 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
5724 (verilog-before-save-font-hook, verilog-after-save-font-hook):
5725 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
5726 (vhdl-array-index-record-field-in-sensitivity-list)
5727 (vhdl-indent-comment-like-next-code-line):
5728 * textmodes/reftex-vars.el (reftex-ref-style-alist)
5729 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
5730 (reftex-cite-key-separator, reftex-create-bibtex-header)
5731 (reftex-create-bibtex-footer):
5732 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5733 (rst-indent-literal-normal, rst-indent-literal-minimized)
5734 (rst-indent-comment): Add missing custom :version tags.
5735
5736 * calendar/timeclock.el (timeclock-modeline-display):
5737 Add missing obsolete alias for renamed user option.
5738
5739 * strokes.el (strokes-modeline-string):
5740 * emulation/crisp.el (crisp-mode-modeline-string):
5741 * eshell/esh-mode.el (eshell-status-in-modeline):
5742 Aliases to defcustoms must come before the defcustom.
5743
5744 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
5745 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5746 (cal-tex-cursor-week-monday): Doc fixes.
5747 (cal-tex-cursor-week2-summary): Doc fix.
5748 Rename from cal-tex-cursor-week-at-a-glance.
5749
5750 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
5751 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
5752
5753 * calendar/calendar.el (calendar-mode-map):
5754 Add cal-tex-cursor-week2-summary.
5755
5756 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
5757
5758 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
5759
5760 * subr.el (read-passwd-map): New var.
5761 (read-passwd): Use `read-string' again.
5762 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
5763
5764 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
5765
5766 * register.el (append-to-register, prepend-to-register):
5767 Deactivate mark, as does `copy-to-register' (bug#12389).
5768
5769 2012-10-06 Chong Yidong <cyd@gnu.org>
5770
5771 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
5772
5773 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
5774
5775 * international/characters.el: Fix simple mistake ((car chars) ->
5776 elt), delete duplicated code.
5777
5778 2012-10-06 Glenn Morris <rgm@gnu.org>
5779
5780 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
5781
5782 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
5783
5784 * color.el (color-hsl-to-rgb): Fix incorrect results for
5785 small and large hue values. (Bug#12559)
5786
5787 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
5788
5789 Enhancements to docstring formatting when filling paragraphs.
5790 * progmodes/python.el (python-fill-docstring-style): Rename from
5791 python-fill-string-style. Added new style.
5792 (python-fill-string): Use new style. Better checks for
5793 docstrings.
5794
5795 2012-10-05 Glenn Morris <rgm@gnu.org>
5796
5797 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
5798
5799 * color.el (color-name-to-rgb, color-rgb-to-hex)
5800 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
5801 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
5802 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5803 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
5804
5805 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
5806
5807 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
5808
5809 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
5810 to get the correct size across symlinks.
5811
5812 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
5813
5814 2012-10-04 Juri Linkov <juri@jurta.org>
5815
5816 * replace.el (query-replace-interactive): Declare obsolete.
5817 (query-replace-read-from): Add the last incremental search string
5818 to the list of default values accessible via M-n.
5819 (map-query-replace-regexp): Use `read-regexp'.
5820 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5821 (map-query-replace-regexp, replace-string, replace-regexp):
5822 Fix docstrings to replace mentions of `query-replace-interactive'
5823 with alternatives. (Bug#12526)
5824
5825 2012-10-04 Juri Linkov <juri@jurta.org>
5826
5827 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
5828 (dired-pop-to-buffer): Declare obsolete.
5829 (dired-mark-pop-up): Doc fix.
5830
5831 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
5832
5833 Allow user to set docstring style for fill-paragraph.
5834 * progmodes/python.el
5835 (python-fill-comment-function, python-fill-string-function)
5836 (python-fill-decorator-function, python-fill-paren-function):
5837 Remove :safe for defcustoms.
5838 (python-fill-string-style): New defcustom
5839 (python-fill-paragraph-function): Enhance context detection.
5840 (python-fill-string): Honor python-fill-string-style settings.
5841
5842 2012-10-04 Martin Rudalics <rudalics@gmx.at>
5843
5844 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
5845 after setting its buffer (Bug#10805).
5846
5847 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
5848
5849 Fix cornercase for string syntax.
5850 * progmodes/python.el (python-syntax-propertize-function):
5851 Simplify and enhance the regexp for unescaped quotes. Now it also
5852 matches quotes in weird situations like the single quote in
5853 "something\"'".
5854 (python-syntax-stringify): Simplify num-quotes detecting code.
5855
5856 2012-10-03 Glenn Morris <rgm@gnu.org>
5857
5858 * help-macro.el (three-step-help):
5859 Revert 2012-09-29 change. (Bug#12567)
5860
5861 2012-10-03 Martin Rudalics <rudalics@gmx.at>
5862
5863 * menu-bar.el (kill-this-buffer): Don't do anything when
5864 `menu-frame' is not alive or visible (Bug#8184).
5865
5866 * emacs-lisp/debug.el (debug): When quitting the debugger window
5867 restore current buffer (Bug#12502).
5868
5869 2012-10-02 Chong Yidong <cyd@gnu.org>
5870
5871 * progmodes/hideif.el (hif-lookup, hif-defined):
5872 Handle semantic-c-takeover-hideif.
5873
5874 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5875
5876 Change sampling interval units from ms to ns.
5877 * profiler.el (profiler-sampling-interval): Change units
5878 from ms to ns, multiplying the default by 1000000 so that
5879 it remains 1 ms.
5880 (profiler-report-cpu-line-format): Give enough room for
5881 the maximum counters on 64-bit hosts.
5882 (profiler-report-render-calltree-1): Call them "CPU samples",
5883 not "Time (ms)", since they are not milliseconds now (and
5884 never really were).
5885
5886 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
5887
5888 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
5889 Fix querying BBDB for entries without a last name (Bug#11580).
5890
5891 2012-10-02 Chong Yidong <cyd@gnu.org>
5892
5893 * emacs-lisp/eieio.el: Restore Version header.
5894
5895 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5896
5897 * vc/diff-mode.el (diff--auto-refine-data): New var.
5898 (diff-hunk): Use it to delay refinement.
5899 (diff-mode): Remove overlays when we turn off font-lock.
5900
5901 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
5902 (table-initialize-table-fixed-width-mode)
5903 (table-set-table-fixed-width-mode): Remove functions.
5904 (table-command-list): Move initialization into declaration.
5905 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
5906 (table-with-cache-buffer): Use `declare'.
5907 (table-span-cell): Simplify via CSE.
5908 (table-fixed-width-mode): Use define-minor-mode.
5909 (table-call-interactively, table-funcall, table-apply): Remove.
5910 (table-function): New function, to replace them.
5911
5912 * bookmark.el (bookmark-search-pattern): Remove var.
5913 (bookmark-read-search-input): Remove function.
5914 (bookmark-bmenu-search): Reimplement using a minibuffer.
5915
5916 * faces.el (modeline): Remove obsolete face name.
5917
5918 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
5919 and give a non-nil default value.
5920 (add-change-log-entry): Simplify accordingly.
5921
5922 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
5923
5924 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
5925 (vc-git-log-edit-toggle-amend): New function.
5926 (vc-git-log-edit-toggle-signoff): New function.
5927 (vc-git-log-edit-mode): New major mode.
5928 (vc-git-log-edit-mode-map): Keymap for it.
5929 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
5930
5931 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
5932 header names.
5933 (log-edit-toggle-header): New function.
5934 (log-edit-extract-headers): Accept function values in HEADERS alist.
5935
5936 2012-10-01 David Engster <deng@randomsample.de>
5937
5938 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
5939 from symbol property and change message to be more consistent with
5940 Emacs proper.
5941 (eieio-describe-generic): Add filename for each implementation.
5942 Fix indices for generic and normal methods.
5943 (eieio-method-def, eieio-class-def): New buttons.
5944 (eieio-help-find-method-definition)
5945 (eieio-help-find-class-definition): New functions.
5946 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
5947 class, constructor and method definitions.
5948
5949 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
5950 information in symbol property.
5951 (scoped-class): Remove.
5952 (eieio-slot-name-index, call-next-method): Check if it is bound.
5953
5954 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
5955
5956 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
5957 (eieio-custom-mode): New major mode.
5958 (eieio-customize-object): Use it.
5959
5960 2012-10-01 Eric Ludlam <zappo@gnu.org>
5961
5962 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
5963 specifying the expected class, and whether subclassing is allowed.
5964 (eieio-persistent-convert-list-to-object):
5965 (eieio-persistent-validate/fix-slot-value)
5966 (eieio-persistent-slot-type-is-class-p): New functions.
5967 (eieio-named::slot-missing): Doc fix.
5968
5969 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
5970 Stop using unused publd variable.
5971
5972 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
5973 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
5974 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
5975 (eieio-speedbar-handle-click): Do not specify a class for the
5976 method. Fixes method invocation order problems with EDE.
5977
5978 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5979
5980 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
5981 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
5982
5983 2012-10-01 Karl Fogel <kfogel@red-bean.com>
5984
5985 * bookmark.el (bookmark-version-control): Give tags in the
5986 :type choices (Bug#12309), and improve doc string.
5987 (bookmark-write-file): Bind `print-circle' to `t' to allow
5988 circular custom bookmark types. (Bug#12503)
5989
5990 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5991
5992 Revert the FOLLOW-SYMLINKS change for file-attributes.
5993 * files.el (remote-file-name-inhibit-cache, after-find-file):
5994 * time.el (display-time-file-nonempty-p): Undo last change.
5995
5996 * profiler.el (profiler-sampling-interval): Change default back to 1.
5997 See Stefan Monnier in
5998 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
5999
6000 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
6001
6002 Shell output catching a la gud-gdb.
6003 * progmodes/python.el (python-shell-fetch-lines-in-progress)
6004 (python-shell-fetch-lines-string, python-shell-fetched-lines):
6005 New Vars.
6006 (python-shell-fetch-lines-filter): New function.
6007 (python-shell-send-string-no-output): Use them.
6008
6009 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
6010
6011 * profiler.el (profiler-sampling-interval): Rename from
6012 profiler-sample-interval.
6013 (profiler-sampling-interval): Default to 10.
6014 (profiler-find-profile): New command (was profiler-find-log).
6015 (profiler-find-profile-other-window): New command.
6016 (profiler-find-profile-other-frame): New command.
6017 (profiler-profile): Introduce API-level data structure.
6018
6019 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6020
6021 file-attributes has a new optional arg FOLLOW-SYMLINKS.
6022 * files.el (remote-file-name-inhibit-cache):
6023 * time.el (display-time-file-nonempty-p): Use it.
6024 * files.el (after-find-file): Don't chase links before calling
6025 file-exists-p, as file-exists-p already does the right thing.
6026
6027 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
6028
6029 Merge from standalone RefTeX repository.
6030
6031 The following ChangeLog entries are shortened versions of the
6032 original ones with file paths adapted. A not so strongly edited
6033 version of the original ChangeLog can be found in the commit log.
6034
6035 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
6036 (reftex-arg-cite): Use `reftex-cite-key-separator'.
6037 Correctly handle new value type returned by `reftex-citation'.
6038
6039 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
6040 that entries with whitespace at various places are found.
6041 Doc fix. Include entries that are cross-referenced from cited entries.
6042 Include @String definitions in the resulting bib file. Add header
6043 and footer defined in `reftex-create-bibtex-header' and
6044 `reftex-create-bibtex-footer'.
6045 (reftex-do-citation): Make it possible again to insert
6046 non-existent entries. Save match data when asking for optional
6047 arguments. Return all keys, not just the first one.
6048 (reftex-all-used-citation-keys): Fix regexp to correctly extract
6049 all citations in the same line.
6050 (reftex-parse-bibtex-entry): Accept additional optional argument
6051 `raw' and keep quotes or braces if it is non-nil. Match fields
6052 containing hyphens besides word constituents.
6053 (reftex-get-string-refs): New function.
6054 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
6055 and ask if it should be reread in case it did.
6056 (reftex-pop-to-bibtex-entry)
6057 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
6058 entries with spaces or tabs in front of arguments.
6059 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6060 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
6061 Match entries containing numbers and symbol constituents.
6062 (reftex-do-citation, reftex-figure-out-cite-format):
6063 Use `reftex-cite-key-separator'.
6064
6065 * textmodes/reftex-dcr.el: Move provide statement to end of file.
6066 (reftex-mouse-view-crossref): Explain why point is set.
6067
6068 * textmodes/reftex-global.el: Whitespace changes.
6069
6070 * textmodes/reftex-index.el: Move provide statement to end of
6071 file.
6072 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
6073 (reftex-index-visit-phrases-buffer): Set marker when visiting
6074 buffer. This allows for returning from the phrases file to the
6075 file one was just editing instead of the file where the last
6076 phrases was added from.
6077 (reftex-index-phrases-syntax-table): New variable. Give ?\"
6078 punctuation syntax as it usually is not used as string quote in
6079 TeX-related modes and may occur unmatched. The change also
6080 prevents fontification of quoted content.
6081 (reftex-index-phrases-mode): Use it.
6082
6083 * textmodes/reftex-parse.el (reftex-parse-from-file):
6084 Move backward one char if a `\' was matched after a section macro.
6085 (reftex-parse-from-file): Use beginning of match instead of end as
6086 bound.
6087
6088 * textmodes/reftex-ref.el: Adapt creation of
6089 `reftex-<package>-<macro>' functions to new structure of
6090 `reftex-ref-style-alist'.
6091 (reftex-reference): Use `reftex-ref-style-list' function.
6092 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
6093 reference macro if `reftex-ref-macro-prompt' is non-nil.
6094 (reftex-reference): Pass refstyle to `reftex-format-special'.
6095 Determine reference macro by looking at
6096 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
6097 Use only one special format function.
6098 (reftex-varioref-vref, reftex-fancyref-fref)
6099 (reftex-fancyref-Fref): Remove definitions. The functions are now
6100 generated from `reftex-ref-style-alist'.
6101 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
6102 Remove.
6103 (reftex-format-special): New function.
6104
6105 * textmodes/reftex-sel.el
6106 (reftex-select-cycle-ref-style-internal): Adapt to new structure
6107 of `reftex-ref-style-alist'. Remove code for testing macro type.
6108 (reftex-select-toggle-varioref)
6109 (reftex-select-toggle-fancyref): Remove.
6110 (reftex-select-cycle-ref-style-internal)
6111 (reftex-select-cycle-ref-style-forward)
6112 (reftex-select-cycle-ref-style-backward): New functions.
6113 (reftex-select-label-map): Use `v' and `V' for general cycling
6114 through reference styles. Add `p' for switching between number
6115 and page reference types.
6116
6117 * textmodes/reftex-toc.el (reftex-re-enlarge):
6118 Call `enlarge-window' only if there is something to do because in Emacs
6119 the horizontal version throws an error even if the parameter is 0.
6120
6121 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
6122 (reftex-plug-into-AUCTeX): Doc fix.
6123 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
6124 string. Adapt to new name.
6125 (reftex-ref-style-alist): Change structure so that it is not
6126 possible to use multiple different package names within a style.
6127 Remove the symbols for symbols for macro type distinction.
6128 Add characters for macro selection.
6129 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
6130 (reftex-create-bibtex-footer): New variables.
6131 (reftex-format-ref-function): Mention third argument of special
6132 format function.
6133 (reftex-ref-style-alist, reftex-ref-style-default-list):
6134 New variables.
6135 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
6136 to new implementation. Mark as obsolete. Add compatibility code
6137 for honoring the variable values in case they are set.
6138 (reftex-cite-format-builtin, reftex-bibliography-commands):
6139 Add support for ConTeXt.
6140 (reftex-format-ref-function, reftex-format-cite-function):
6141 Fix custom type.
6142 (reftex-cite-key-separator): New variable.
6143
6144 * textmodes/reftex.el (reftex-syntax-table-for-bib)
6145 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
6146 `reftex-syntax-table' because parens have to retain their paren
6147 syntax in order for parsing of BibTeX entries like @book(...) to
6148 work.
6149 (reftex-in-comment): Do not error out if `comment-start-skip' is
6150 not set. Deal correctly with escaped comment characters.
6151 (reftex-tie-multifile-symbols): Add doc string.
6152 Initialize `reftex-ref-style-list'.
6153 (reftex-untie-multifile-symbols): Add doc string.
6154 (reftex-add-index-macros): Doc fix.
6155 (reftex-ref-style-activate, reftex-ref-style-toggle)
6156 (reftex-ref-style-list): New functions.
6157 (reftex-mode-menu): Use them. Adapt to new structure of
6158 `reftex-ref-style-alist'.
6159 (reftex-select-with-char): Kill the RefTeX Select buffer when
6160 done.
6161 (reftex-remove-if): New function.
6162 (reftex-erase-all-selection-and-index-buffers)
6163 (reftex-mode-menu): Reference styles are now computed from
6164 `reftex-ref-style-alist'. Fix typo.
6165 (reftex-report-bug): New function.
6166 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
6167 algorithms with O(n log n). Introduce optional argument SORT (not
6168 yet used).
6169
6170 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
6171
6172 Enhancements for triple-quote string syntax.
6173 * progmodes/python.el (python-syntax-propertize-function):
6174 Match both quote cases in one regexp.
6175 (python-syntax-stringify): Handle matches properly.
6176
6177 2012-09-30 Juri Linkov <juri@jurta.org>
6178
6179 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6180 to nil around the call to `insert' to prevent
6181 directory time modification by lock_file. (Bug#2295)
6182 * tar-mode.el (tar-summarize-buffer): Idem.
6183
6184 2012-09-30 Juri Linkov <juri@jurta.org>
6185
6186 * facemenu.el (list-colors-sort): Add option "Luminance".
6187 (list-colors-sort-key): Implement it.
6188
6189 * vc/diff-mode.el (diff-refine-removed):
6190 * vc/ediff-init.el (ediff-fine-diff-A):
6191 * vc/smerge-mode.el (smerge-refined-removed):
6192 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
6193
6194 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
6195
6196 * term/ns-win.el (x-file-dialog): New function.
6197
6198 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
6199
6200 * ido.el (ido-max-directory-size): Default to nil; the current
6201 default is small for POSIX systems, and impractical on Windows 7
6202 now that lstat returns directory sizes for NTFS.
6203
6204 2012-09-30 Martin Rudalics <rudalics@gmx.at>
6205
6206 In buffer display functions handle window-height/window-width
6207 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
6208 * window.el (window--display-buffer): New argument ALIST.
6209 Obey window-height and window-width alist entries.
6210 (window--try-to-split-window): New argument ALIST.
6211 Bind window-combination-limit to t when the window's size shall be
6212 changed and window-combination-limit equals `window-size'.
6213 (display-buffer-in-atom-window)
6214 (display-buffer-in-major-side-window)
6215 (display-buffer-in-side-window, display-buffer-same-window)
6216 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6217 (display-buffer-pop-up-window, display-buffer-below-selected)
6218 (display-buffer-at-bottom, display-buffer-in-previous-window)
6219 (display-buffer-use-some-window): Adjust all callers of
6220 window--display-buffer and window--try-to-split-window.
6221 (fit-frame-to-buffer): New option.
6222 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6223 is non-nil.
6224 (display-buffer-in-major-side-window): Evaluate window-height /
6225 window-width alist entries.
6226
6227 * help.el (temp-buffer-resize-frames)
6228 (temp-buffer-resize-regexps): Remove options.
6229 (temp-buffer-resize-mode): Adjust doc-string.
6230 (resize-temp-buffer-window): Don't consult
6231 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
6232 temp-buffer-resize-frames.
6233
6234 * dired.el (dired-mark-pop-up):
6235 Call display-buffer-below-selected with a fit-window-to-buffer alist
6236 entry.
6237
6238 2012-09-30 Chong Yidong <cyd@gnu.org>
6239
6240 * server.el (server-host): Document the security implications.
6241 (server-auth-key): Doc fix.
6242
6243 * startup.el (initial-buffer-choice): Doc fix.
6244
6245 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6246
6247 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6248 restriction change.
6249
6250 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6251
6252 * help-fns.el (help-fns--obsolete): Fix last change.
6253
6254 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6255
6256 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6257 (minor-mode-map-alist): Remove redundant code.
6258
6259 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6260 visited in a buffer.
6261 (cvs-insert-visited-file): New function.
6262 (find-file-hook): Use it.
6263
6264 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6265
6266 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6267 chose face.
6268 (log-edit-empty-buffer-p): Don't require a space after a header.
6269
6270 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6271
6272 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6273
6274 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6275 a proper minor-mode.
6276
6277 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6278
6279 2012-09-29 Glenn Morris <rgm@gnu.org>
6280
6281 * winner.el (winner-mode): Remove variable (let define-minor-mode
6282 handle it).
6283 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6284 Doc fixes.
6285 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6286 (winner-mode): Use define-minor-mode.
6287
6288 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6289 the full definition in loaddefs, rather than duplicating it.
6290
6291 * help-macro.el (three-step-help): No need to autoload defcustom.
6292
6293 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6294 (inferior-lisp-program, inferior-lisp-load-command)
6295 (inferior-lisp-prompt, inferior-lisp-mode-hook):
6296 No need to autoload defcustoms.
6297
6298 * hippie-exp.el (hippie-expand-try-functions-list)
6299 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6300 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6301 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6302 (hippie-expand-only-buffers): No need to autoload defcustoms.
6303 * progmodes/vhdl-mode.el (vhdl-line-expand):
6304 Explicitly load hippie-exp, so it does not get autoloaded
6305 while hippie-expand-try-functions-list is let-bound.
6306
6307 2012-09-28 Glenn Morris <rgm@gnu.org>
6308
6309 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6310
6311 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6312 Only "cl.el" counts as cl these days.
6313
6314 2012-09-28 Juri Linkov <juri@jurta.org>
6315
6316 Display archive errors in the echo area instead of inserting
6317 to the file buffer.
6318
6319 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6320 to STDERR-TEST that can be a regexp matching a successful output.
6321 Create a temporary file and redirect stderr to it. Search for
6322 STDERR-TEST in the stderr output and display it in the echo area
6323 if no match is found.
6324 (archive-extract-by-file): New function like
6325 `archive-extract-by-stdout' but extracting archives to files
6326 and looking for successful matches in stdout. Function body is
6327 mostly copied from `archive-rar-extract'.
6328 (archive-rar-extract): Use `archive-extract-by-file'.
6329 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
6330
6331 2012-09-28 Leo Liu <sdl.web@gmail.com>
6332
6333 * pcomplete.el (pcomplete-show-completions):
6334 Use minibuffer-message to make pcomplete usable in minibuffer.
6335
6336 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6337
6338 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6339
6340 * type-break.el: Use lexical-binding.
6341 (type-break-mode): Use define-minor-mode.
6342
6343 * emacs-lisp/pcase.el (pcase--mark-used): New.
6344 (pcase--u1): Use it (bug#12512).
6345
6346 * custom.el (load-theme): Set buffer-file-name so the load is recorded
6347 in load-history with the right file name.
6348
6349 2012-09-28 Tassilo Horn <tsdh@gnu.org>
6350
6351 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6352 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6353 (doc-view-get-bounding-box): Make bounding box slicing work for
6354 ODF and DVI documents.
6355
6356 2012-09-28 Glenn Morris <rgm@gnu.org>
6357
6358 * type-break.el (type-break-mode, type-break-interval)
6359 (type-break-good-rest-interval, type-break-keystroke-threshold):
6360 No need to autoload.
6361 (type-break-good-rest-interval, type-break-keystroke-threshold):
6362 Add :set-after.
6363
6364 2012-09-28 Chong Yidong <cyd@gnu.org>
6365
6366 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6367 Add :version tag.
6368
6369 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6370
6371 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6372
6373 2012-09-27 Glenn Morris <rgm@gnu.org>
6374
6375 * faces.el (x-display-name): Declare (for without-x builds).
6376
6377 * linum.el (linum-format): Don't autoload it. Improve :type.
6378
6379 * progmodes/tcl.el: Don't require outline when compiling.
6380 (outline-regexp, outline-level): Declare.
6381 * textmodes/sgml-mode.el: Don't require outline when compiling.
6382 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6383
6384 * term.el (term-ansi-reset):
6385 Try setting term-ansi-face-already-done to nil. (Bug#11785)
6386
6387 * vc/vc.el (vc-next-action): Only gripe about committing read-only
6388 files for RCS and SCCS. (Bug#9781)
6389
6390 2012-09-27 Chong Yidong <cyd@gnu.org>
6391
6392 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6393 change; value should be t.
6394
6395 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6396
6397 * image-mode.el: Use lexical-binding.
6398 (image-mode-winprops): Use t to stand for the window of
6399 a buffer that's not displayed.
6400 * doc-view.el (doc-view-new-window-function): Handle the new
6401 t in winprops.
6402 (doc-view-enlarge): Make it a real nop if the size is not changed.
6403 (doc-view-display): Handle the case where the buffer is not (yet?)
6404 displayed in any window.
6405 (doc-view-saved-settings): New var.
6406 (doc-view-mode): Use it.
6407 (doc-view-fallback-mode): Set it.
6408
6409 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6410 Set lexical-binding.
6411 (minibuffer-eldef-shorten-default): New var.
6412 (minibuffer-default-in-prompt-regexps): Use it for new default.
6413 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6414
6415 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6416
6417 * international/uni-bidi.el:
6418 * international/uni-category.el:
6419 * international/uni-name.el:
6420 * international/uni-numeric.el: Regenerate.
6421
6422 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6423 Stefan Monnier <monnier@iro.umontreal.ca>
6424
6425 * profiler.el: New file.
6426
6427 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
6428
6429 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6430 (testcover-reinstrument): Simplify with CSE.
6431
6432 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6433
6434 * window.el (temp-buffer-window-setup): Fix typo in docstring.
6435
6436 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
6437
6438 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6439 (verilog-auto-input, verilog-auto-insert-lisp)
6440 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6441 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6442 (verilog-auto-unused, verilog-auto-wire)
6443 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6444 newline. Reported by Andrew Jones.
6445 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6446 Reported by Brad Dobbie.
6447 (verilog-batch-delete-trailing-whitespace):
6448 Create verilog-batch-delete-trailing-whitespace.
6449 Reported by Brad Dobbie.
6450 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6451 parameters from another module. Reported by Dan Katz.
6452 (verilog-auto, verilog-auto-assign-modport)
6453 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6454 AUTOINOUTMODPORT for UVM interface module shell generation.
6455 Reported by Brad Dobbie.
6456 (verilog-auto-inst-interfaced-ports): Make default nil, as more
6457 standard behavior.
6458 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6459 Reported by Matt Martin.
6460
6461 2012-09-25 Martin Rudalics <rudalics@gmx.at>
6462
6463 * window.el (window--resize-child-windows): When resizing child
6464 windows proportionally, process them in reverse order to
6465 preserve the "when splitting a window the new one gets the odd
6466 line" behavior.
6467 (window--resize-root-window-vertically): When resizing the
6468 minibuffer window try to affect only windows at the bottom of the
6469 frame. (Bug#12419)
6470
6471 2012-09-25 Chong Yidong <cyd@gnu.org>
6472
6473 * subr.el (declare): Doc fix.
6474
6475 * help-fns.el (help-fns--obsolete): Handle macros properly.
6476
6477 2012-09-25 Chong Yidong <cyd@gnu.org>
6478
6479 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6480 this function obsolete.
6481
6482 * calendar/cal-x.el (calendar-two-frame-setup)
6483 (calendar-only-one-frame-setup, calendar-one-frame-setup):
6484 * calendar/calendar.el (american-calendar, european-calendar)
6485 (calendar-for-loop):
6486 * comint.el (comint-dynamic-simple-complete)
6487 (comint-dynamic-complete-as-filename, comint-unquote-filename):
6488 * desktop.el (desktop-load-default):
6489 * dired-x.el (dired-omit-here-always)
6490 (dired-hack-local-variables, dired-default-directory):
6491 * emacs-lisp/derived.el (derived-mode-class):
6492 * emacs-lisp/timer.el (timer-set-time-with-usecs):
6493 * emacs-lock.el (toggle-emacs-lock):
6494 * epa.el (epa-display-verify-result):
6495 * epg.el (epg-sign-keys, epg-start-sign-keys)
6496 (epg-passphrase-callback-function):
6497 * eshell/esh-util.el (eshell-for):
6498 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6499 (eshell-add-to-window-buffer-names):
6500 * files.el (locate-file-completion):
6501 * imenu.el (imenu-example--create-c-index)
6502 (imenu-example--create-lisp-index)
6503 (imenu-example--lisp-extract-index-name)
6504 (imenu-example--name-and-position):
6505 * international/mule-cmds.el (princ-list):
6506 * international/mule-diag.el (decode-codepage-char):
6507 * international/mule-util.el (detect-coding-with-priority):
6508 * iswitchb.el (iswitchb-read-buffer):
6509 * mail/mailalias.el (mail-complete):
6510 * mail/sendmail.el (mail-sent-via):
6511 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6512 (mouse-major-mode-menu):
6513 * password-cache.el (password-read-and-add):
6514 * pcomplete.el (pcomplete-parse-comint-arguments):
6515 * progmodes/sh-script.el (sh-maybe-here-document):
6516 * replace.el (query-replace-regexp-eval):
6517 * savehist.el (savehist-load):
6518 * simple.el (choose-completion-delete-max-match):
6519 * term.el (term-dynamic-simple-complete):
6520 * vc/ediff-init.el (ediff-check-version):
6521 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6522 * vc/vc.el (vc-diff-switches-list):
6523 * view.el (view-return-to-alist-update): Likewise.
6524
6525 * subr.el (eval-next-after-load, makehash, insert-string)
6526 (assoc-ignore-representation, assoc-ignore-case): Use declare to
6527 mark obsolete.
6528 (mode-line-inverse-video): Variable deleted.
6529
6530 * international/mule-util.el (string-to-sequence): Remove.
6531
6532 * calendar/calendar.el (calendar-version):
6533 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6534 (icalendar-convert-diary-to-ical):
6535 * cus-edit.el (custom-mode):
6536 * ansi-color.el (ansi-color-unfontify-region):
6537 * international/latin1-disp.el (latin1-char-displayable-p):
6538 * progmodes/cwarn.el (turn-on-cwarn-mode):
6539 * progmodes/which-func.el (which-func-update-1):
6540 Use define-obsolete-function-alias.
6541
6542 * net/newst-backend.el (newsticker-cache-filename):
6543 * net/newst-treeview.el (newsticker-groups-filename):
6544 Fix incorrect obsolescence declaration.
6545
6546 * allout.el (allout-passphrase-hint-string): Likewise.
6547 (allout-init): Use a declare form to mark obsolete.
6548
6549 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6550 this applies to functions.
6551
6552 * iswitchb.el (iswitchb-read-buffer): Move code of
6553 iswitchb-define-mode-map here, and delete that obsolete function.
6554
6555 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6556 font-lock-reference-face.
6557
6558 2012-09-25 Glenn Morris <rgm@gnu.org>
6559
6560 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6561 Doc fixes.
6562
6563 * eshell/em-term.el (eshell-term-name):
6564 Default to term-term-name. (Bug#12485)
6565
6566 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6567
6568 * progmodes/python.el (python-shell-send-buffer): Better handling
6569 of "if __name__ == '__main__':" conditionals when sending the buffer.
6570
6571 2012-09-24 Glenn Morris <rgm@gnu.org>
6572
6573 * eshell/esh-cmd.el (eshell-find-alias-function):
6574 Tighten up file-name regexp. (Bug#12499)
6575
6576 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
6577
6578 Enhancements for triple-quote string syntax.
6579 * progmodes/python.el (python-quote-syntax): Remove.
6580 (python-syntax-propertize-function): New value.
6581 (python-syntax-count-quotes, python-syntax-stringify):
6582 New functions.
6583
6584 2012-09-24 Chong Yidong <cyd@gnu.org>
6585
6586 * mail/supercite.el (sc-version): Remove obsolete function.
6587 (sc-describe): Don't mark as obsolete, since it is bound.
6588 (sc-submit-bug-report): Remove.
6589
6590 * vc/log-edit.el (cvs-changelog-full-paragraphs)
6591 (cvs-commit-buffer-require-final-newline): Remove.
6592 (log-edit-require-final-newline)
6593 (log-edit-changelog-full-paragraphs): Default to t.
6594
6595 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6596 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6597 * vc/vc.el (vc-checkout-carefully): Likewise.
6598
6599 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6600 (emerge-version): Remove.
6601
6602 * progmodes/compile.el (compile-internal): Remove.
6603 (compilation-parse-errors-function): Fix typo.
6604
6605 * international/mule.el (set-char-table-default): Remove.
6606 (set-coding-priority, make-coding-system, generic-char-p)
6607 (charset-list, charset-bytes, charset-id): Use declare to mark
6608 functions as obsolete.
6609
6610 * vc/pcvs-defs.el (cvs-buffer-name-alist)
6611 (cvs-invert-ignore-marks): Remove references to obsolete vars.
6612 * vc/vc-hooks.el (vc-default-registered): Don't use
6613 vc-master-templates.
6614
6615 * font-lock.el (font-lock-reference-face):
6616 Use define-obsolete-variable-alias.
6617
6618 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6619 * calendar/calendar.el (calendar-font-lock-keywords):
6620 * calendar/diary-lib.el (diary-font-lock-keywords)
6621 (diary-fancy-font-lock-keywords):
6622 * textmodes/reftex-sel.el (reftex-insert-docstruct):
6623 * textmodes/reftex-index.el (reftex-insert-index):
6624 * textmodes/reftex-cite.el (reftex-format-bib-entry):
6625 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6626 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6627 * progmodes/prolog.el (prolog-font-lock-keywords):
6628 * progmodes/idlwave.el (idlwave-idl-keywords):
6629 * progmodes/ada-mode.el (ada-font-lock-keywords):
6630 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6631
6632 2012-09-24 Glenn Morris <rgm@gnu.org>
6633
6634 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6635
6636 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
6637
6638 * progmodes/python.el (python-indent-line): More consistent cursor
6639 movement behavior.
6640
6641 2012-09-23 Stefan Merten <smerten@oekonux.de>
6642
6643 * textmodes/rst.el: Fix compiler warning.
6644
6645 2012-09-23 Roland Winkler <winkler@gnu.org>
6646
6647 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6648 Transcribe also LaTeX hyphenation.
6649 (bibtex-reformat): Bug fix. Do not quote twice the elements of
6650 bibtex-reformat-previous-options.
6651
6652 2012-09-23 Roland Winkler <winkler@gnu.org>
6653
6654 * proced.el (proced-renice-command): New variable.
6655 (proced-marked-processes): New function.
6656 (proced-with-processes-buffer): New macro.
6657 (proced-send-signal): Use them.
6658 (proced-renice): New command bound to r.
6659
6660 2012-09-23 Roland Winkler <winkler@gnu.org>
6661
6662 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6663 ibuffer-saved-filter-groups has one element, shortcut the call of
6664 completing-read. (Bug#12331)
6665
6666 2012-09-23 Chong Yidong <cyd@gnu.org>
6667
6668 * bindings.el (mode-line-toggle-read-only):
6669 * bs.el (bs-toggle-readonly):
6670 * buff-menu.el (Buffer-menu-toggle-read-only):
6671 * dired.el (dired-toggle-read-only):
6672 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6673
6674 2012-09-23 Chong Yidong <cyd@gnu.org>
6675
6676 * image.el (image-type-available-p): Adapt to init-image-library
6677 argument changes.
6678
6679 2012-09-22 Juri Linkov <juri@jurta.org>
6680
6681 * dired.el (dired-mode-map): Add [remap read-only-mode] for
6682 `dired-toggle-read-only'. (Bug#12462)
6683
6684 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6685
6686 * subr.el (temp-output-buffer-show): New function.
6687 (with-output-to-temp-buffer): Call temp-output-buffer-show
6688 instead of internal-temp-output-buffer-show.
6689
6690 2012-09-22 Chong Yidong <cyd@gnu.org>
6691
6692 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
6693 (Bug#12462).
6694
6695 * repeat.el (repeat): Doc fix (Bug#12348).
6696
6697 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
6698 (Bug#10909).
6699
6700 * simple.el (shell-command-on-region): Doc fix.
6701 (read-only-mode): Doc fix.
6702
6703 2012-09-22 Eli Zaretskii <eliz@gnu.org>
6704
6705 * emacs-lisp/timer.el (run-with-idle-timer)
6706 (timer-activate-when-idle): Warn against reinvoking an idle timer
6707 from within its own timer action. (Bug#12447)
6708
6709 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6710
6711 * cus-start.el (window-combination-limit): Add new optional
6712 values.
6713 * window.el (temp-buffer-window-show)
6714 (window--try-to-split-window): Handle new values of
6715 window-combination-limit (Bug#1806).
6716 (split-window): Test window-combination-limit for t instead of
6717 non-nil.
6718 (display-buffer-at-bottom): New buffer display action function.
6719 * help.el (temp-buffer-resize-regexps): New option.
6720 (temp-buffer-resize-mode): Rewrite doc-string.
6721 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
6722 Don't resize reused window. Suggested by Glenn Morris.
6723
6724 2012-09-22 Stefan Merten <smerten@oekonux.de>
6725
6726 * textmodes/rst.el: Revamp section title faces.
6727 (rst-official-version)
6728 (rst-package-emacs-version-alist): Sync with official version
6729 V1.4.0.
6730 (rst-faces-defaults, rst-set-level-default)
6731 (rst-level-face-max, rst-level-face-base-color)
6732 (rst-level-face-base-light, rst-level-face-format-light)
6733 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
6734 (rst-adornment-faces-alist): Match new setup.
6735 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
6736 (rst-level-5, rst-level-6): New faces.
6737
6738 2012-09-22 Chong Yidong <cyd@gnu.org>
6739
6740 * simple.el (undo): Handle indirect buffers (Bug#8207).
6741
6742 2012-09-21 Leo Liu <sdl.web@gmail.com>
6743
6744 IDO: Disable match re-ordering for buffer switching.
6745 * ido.el (ido-buffer-disable-smart-matches): New variable.
6746 (ido-set-matches-1): Use it. (Bug#2042)
6747
6748 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
6749
6750 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6751 Fix 2011-05-17 change. (Bug#12418)
6752
6753 2012-09-21 Leo Liu <sdl.web@gmail.com>
6754
6755 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
6756
6757 2012-09-21 Glenn Morris <rgm@gnu.org>
6758
6759 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
6760 Be more robust about locating simple.el.
6761
6762 2012-09-21 Glenn Morris <rgm@gnu.org>
6763
6764 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
6765
6766 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
6767
6768 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
6769
6770 2012-09-20 Juri Linkov <juri@jurta.org>
6771
6772 * replace.el (query-replace-read-from): Use `read-regexp' instead
6773 of `read-from-minibuffer' when `regexp-flag' is non-nil.
6774 (occur-read-primary-args): Use `read-regexp' instead of
6775 `read-string'.
6776 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
6777 `read-from-minibuffer'.
6778 * isearch.el (isearch-occur): Use `read-regexp' instead of
6779 `read-string'.
6780 * dired.el (dired-read-regexp): Use `read-regexp' instead of
6781 `read-from-minibuffer'.
6782 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
6783 of `read-string'. (Bug#7567)
6784
6785 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
6786 and allow accepting a list of strings prepended to a list of
6787 standard default values. Doc fix. (Bug#12321)
6788
6789 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
6790
6791 * replace.el (read-regexp): Don't add ": " when PROMPT already
6792 ends with a colon and space. (Bug#12321)
6793
6794 2012-09-20 Tassilo Horn <tsdh@gnu.org>
6795
6796 * doc-view.el (doc-view-display): Better fix for the cl-assertion
6797 error.
6798
6799 2012-09-20 Stefan Merten <smerten@oekonux.de>
6800
6801 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
6802 Fixes feature request bug#11711.
6803 (rst-mode): Create `imenu-create-index-function'.
6804 (rst-get-stripped-line): Delete after refactoring.
6805 (rst-section-tree, rst-section-tree-rec)
6806 (rst-section-tree-point): Refactor and document properly.
6807 (rst-imenu-find-adornments-for-position)
6808 (rst-imenu-convert-cell, rst-imenu-create-index):
6809 New function.
6810
6811 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6812
6813 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
6814 (macroexp--expand-all): Use it.
6815 (macroexp--funcall-and-return): Remove by folding it into its sole
6816 caller (macroexp--warn-and-return).
6817 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
6818 Use macroexp--obsolete-warning.
6819
6820 * calc/calc.el: Fix last change by removing the whole chunk, since it
6821 was only needed back when Calc was not bundled.
6822
6823 2012-09-20 Martin Rudalics <rudalics@gmx.at>
6824
6825 * emacs-lisp/debug.el (debug): Restore assignment to
6826 debugger-old-buffer removed on 2012-09-08.
6827
6828 2012-09-20 Juri Linkov <juri@jurta.org>
6829
6830 * dired-aux.el (dired-diff): Remove (require 'diff) since
6831 `diff-latest-backup-file' is now autoloaded.
6832
6833 2012-09-20 Chong Yidong <cyd@gnu.org>
6834
6835 * vc/diff.el (diff-latest-backup-file): Autoload.
6836
6837 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6838
6839 * calc/calc.el: Remove redundant autoload shape check.
6840 (sel-mode): Don't defvar.
6841 (calc-get-stack-element): Add `sel-mode' arg instead.
6842 (calc-top, calc-top-list): Pass it this additional argument.
6843 * calc/calc-store.el (calc-store-map):
6844 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
6845 (calc-map-equation, calc-outer-product, calc-inner-product):
6846 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
6847
6848 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
6849
6850 2012-09-19 Juri Linkov <juri@jurta.org>
6851
6852 * dired-aux.el (dired-diff): Add (require 'diff) because
6853 `diff-latest-backup-file' is not autoloaded.
6854 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
6855 of `dired-get-filename' to t to not report error when there is
6856 no default file on the current line.
6857
6858 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6859
6860 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
6861 macroexp--eval-if-compile.
6862 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
6863 (macroexp--expand-all): Use them (bug#12371).
6864
6865 * doc-view.el (doc-view-guess-paper-size)
6866 (doc-view-scale-bounding-box): Fix unbound `caddr'.
6867
6868 2012-09-19 Tassilo Horn <tsdh@gnu.org>
6869
6870 New feature: set optimal slice from BoundingBox information.
6871 * doc-view.el (doc-view-mode-map): Add keybinding.
6872 (doc-view-menu): Add menu entry.
6873 (doc-view-set-slice): Adapt docstring.
6874 (doc-view-get-bounding-box, doc-view-guess-paper-size)
6875 (doc-view-scale-bounding-box)
6876 (doc-view-set-slice-from-bounding-box): New functions.
6877 (doc-view-paper-sizes): New defvar.
6878
6879 2012-09-19 Glenn Morris <rgm@gnu.org>
6880
6881 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
6882 (byte-compile-log-warning): Autoload. (Bug#12371)
6883
6884 * calendar/calendar.el (calendar-american-month-header)
6885 (calendar-european-month-header, calendar-iso-month-header)
6886 (calendar-month-header): New options.
6887 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
6888 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
6889
6890 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6891
6892 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
6893
6894 2012-09-18 Juri Linkov <juri@jurta.org>
6895
6896 * dired-aux.el (dired-diff): Restore original functionality of
6897 getting the default value, but keep new feature of using the
6898 latest existing backup file (`diff-latest-backup-file').
6899
6900 2012-09-18 Juri Linkov <juri@jurta.org>
6901
6902 * dired.el (dired-mark): If the region is active in Transient Mark
6903 mode, mark all files in the active region. Doc fix.
6904 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
6905 Doc fix. (Bug#10624)
6906
6907 2012-09-18 Juri Linkov <juri@jurta.org>
6908
6909 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
6910 attributes for M-n are pulled from the file at point.
6911 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
6912 Suggested by Drew Adams. (Bug#10624)
6913
6914 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
6915
6916 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
6917 whitespace after "end".
6918 (ruby-do-end-to-brace): Collapse block to one line if it fits
6919 within fill-column.
6920
6921 2012-09-18 Martin Rudalics <rudalics@gmx.at>
6922
6923 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
6924 value.
6925 (debug): Don't remove debugger window when debugger is expected
6926 to be back.
6927
6928 2012-09-18 Chong Yidong <cyd@gnu.org>
6929
6930 * custom.el (defface): Doc fix.
6931
6932 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
6933
6934 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
6935
6936 * progmodes/compile.el (compilation-start): Use compilation-always-kill
6937 to initialize query-on-exit; then test that instead (bug#12288).
6938
6939 2012-09-17 Stefan Merten <smerten@oekonux.de>
6940
6941 * textmodes/rst.el: Add support for `testcover'.
6942 (rst-defcustom-testcover, rst-testcover-add-compose)
6943 (rst-testcover-add-1value): New functions.
6944 (rst-portable-mark-active-p): Replace by `use-region-p'.
6945 (rst-update-section, rst-classify-adornment)
6946 (rst-find-title-line): Mark `1value' forms.
6947 (rst-classify-adornment): Remove superfluous form.
6948 (rst-update-section, rst-get-adornments-around)
6949 (rst-adornment-complete-p, rst-get-next-adornment)
6950 (rst-adjust, rst-promote-region)
6951 (rst-display-adornments-hierarchy, rst-straighten-adornments)
6952 (rst-find-pfx-in-region, rst-section-tree-rec)
6953 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
6954 (rst-toc-node, rst-toc, rst-forward-section)
6955 (rst-iterate-leftmost-paragraphs)
6956 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
6957 (rst-bullet-list-region)
6958 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
6959 (rst-compile-find-conf, rst-compile)
6960 (rst-repeat-last-character): Fix style.
6961
6962 2012-09-17 Chong Yidong <cyd@gnu.org>
6963
6964 * comint.el (comint--complete-file-name-data): Don't add a space
6965 if the status is `sole'; that adds a gratuitous space in the
6966 completion-cycling case (Bug#12092).
6967
6968 * pcomplete.el (pcomplete-completions-at-point): Likewise.
6969
6970 2012-09-17 Richard Stallman <rms@gnu.org>
6971
6972 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
6973 only in the mime-shown mode, not in raw mode.
6974 (rmail-mime): Toggle off mime by displaying the message without
6975 mime processing. (Bug#12305)
6976
6977 * mail/rmail.el (rmail-retry-failure):
6978 Turn off mime processing first. (Bug#12037)
6979
6980 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
6981
6982 2012-09-17 Chong Yidong <cyd@gnu.org>
6983
6984 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
6985 (shell-dynamic-complete-functions): Convert to defcustom.
6986 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
6987
6988 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
6989 * comint.el (comint-prompt-read-only):
6990 * custom.el (defcustom):
6991 * hi-lock.el (hi-lock-mode):
6992 * ibuffer.el (ibuffer-formats):
6993 * ielm.el (ielm-prompt-read-only):
6994 * novice.el (disable-command):
6995 * saveplace.el (toggle-save-place):
6996 * speedbar.el (speedbar-supported-extension-expressions):
6997 * startup.el (auto-save-list-file-prefix, init-file-user)
6998 (after-init-hook, inhibit-startup-echo-area-message):
6999 * strokes.el (strokes-help):
7000 * time-stamp.el (time-stamp):
7001 * calendar/calendar.el (calendar, diary-file):
7002 * calendar/diary-lib.el (diary-mail-entries, diary)
7003 (diary-list-entries-hook):
7004 * calendar/holidays.el (holidays, calendar-holidays):
7005 * calendar/lunar.el (lunar-phases):
7006 * calendar/solar.el (sunrise-sunset):
7007 * emulation/edt.el (edt-load-keys):
7008 * emulation/viper.el (viper-mode):
7009 * eshell/em-alias.el (eshell-command-aliases-list):
7010 * eshell/esh-util.el (eshell-convert-numeric-arguments):
7011 * international/ogonek.el (ogonek-information):
7012 * net/tramp-cmds.el (tramp-bug):
7013 * net/quickurl.el (quickurl-reread-hook-postfix):
7014 * play/decipher.el (decipher-font-lock-keywords):
7015 * progmodes/cc-styles.el (c-set-style):
7016 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
7017 * progmodes/inf-lisp.el (inferior-lisp-prompt):
7018 * progmodes/octave-mod.el (octave-mode):
7019 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
7020 * progmodes/verilog-mode.el (verilog-read-defines):
7021 * textmodes/two-column.el (2C-mode): Likewise.
7022
7023 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
7024
7025 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
7026 that holds many addresses.
7027
7028 2012-09-16 Chong Yidong <cyd@gnu.org>
7029
7030 * align.el (align-areas): Call the indication function with
7031 positions instead of markers for arguments (Bug#12343).
7032
7033 * files.el (parse-colon-path): Use split-string (Bug#12351).
7034
7035 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7036 (display-buffer-function): Mark as obsolete.
7037
7038 * progmodes/compile.el (compilation-parse-errors): Accept list
7039 values similar to font-lock-keywords (Bug#12136).
7040 Suggested by Oleksandr Manzyuk.
7041 (compilation-error-regexp-alist): Doc fix.
7042
7043 2012-09-15 Glenn Morris <rgm@gnu.org>
7044
7045 * version.el (emacs-bzr-version-bzr): New function.
7046 (emacs-bzr-get-version): Add optional EXTERNAL argument.
7047
7048 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
7049 checkouts, check the parent dirstate matches the branch.
7050 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
7051 empty string.
7052
7053 * version.el (emacs-bzr-version): Doc fix.
7054 (emacs-bzr-version-dirstate): New function.
7055 (emacs-bzr-get-version): For lightweight checkouts, if the parent
7056 is local try and check that it matches the branch. If not, just
7057 use dirstate information. (Bug#12441)
7058
7059 2012-09-14 Juri Linkov <juri@jurta.org>
7060
7061 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
7062 (Bug#12399)
7063
7064 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7065
7066 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
7067
7068 * emacs-lisp/edebug.el: Miscellaneous cleanup.
7069 Remove obsolete byte-compiler hack that tried to silence some warnings.
7070 (edebug-submit-bug-report): Remove.
7071 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
7072 Remove aliases, use the un-prefixed name instead.
7073 (edebug-pop-to-buffer): Consider other frames.
7074 (edebug-original-read):: Make it more obvious that it's always defined.
7075 (edebug--make-form-data-entry, edebug--form-data-name)
7076 (edebug--form-data-begin, edebug--form-data-end): Rename from the
7077 single-dashed name, and implement with cl-defstruct.
7078 (edebug-set-form-data-entry): Use the standard accessors.
7079 (edebug-make-top-form-data-entry): Use push.
7080 (edebug-no-match): Drop useless `funcall'.
7081 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
7082 to functions.
7083 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
7084 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
7085 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
7086 (easy-menu-define, with-custom-print): Remove redundant specs.
7087 (edebug-outside-overriding-local-map)
7088 (edebug-outside-overriding-terminal-local-map): Remove, unused.
7089 (edebug--display): Bind unread-command-events directly to nil rather
7090 than binding it to unread-command-events and later setting it to nil.
7091 (edebug--display): Kill edebug-eval-buffer here...
7092 (edebug--recursive-edit): ...rather than here.
7093 Bind standard-output and standard-input.
7094 (edebug-eval): Check cl-macroexpand-all is fboundp.
7095 (edebug-temp-display-freq-count): Fix last change.
7096
7097 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
7098 * subr.el (noreturn, 1value): Add `debug' spec.
7099 * emacs-lisp/advice.el: Require cl-lib.
7100 (ad-copy-tree): Remove, use copy-tree instead.
7101 (ad-dolist): Remove use dolist or cl-dolist instead.
7102 (ad-do-return): Remove, use cl-return instead.
7103 (defadvice): Add `debug' spec.
7104
7105 2012-09-13 Juri Linkov <juri@jurta.org>
7106
7107 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
7108 (Bug#12399)
7109
7110 2012-09-13 Glenn Morris <rgm@gnu.org>
7111
7112 * calc/calc.el (math-compose-expr):
7113 * calc/calc-ext.el (math-compose-expr):
7114 * progmodes/cc-defs.el (cl-macroexpand-all):
7115 * progmodes/cc-langs.el (delete-duplicates, mapcan)
7116 (cl-macroexpand-all): Update declarations.
7117
7118 * vc/vc.el: No need to require ediff.
7119 (ediff-load-version-control): Declare.
7120 (ediff-vc-internal): Fix declaration.
7121 (vc-version-ediff): Require ediff.
7122
7123 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7124
7125 Use a more backwards-compatible timer format (Bug#12430).
7126 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
7127 being right after USECS, as that better supports old code that
7128 inadvisedly looked directly at the timer vector.
7129
7130 2012-09-13 Kenichi Handa <handa@gnu.org>
7131
7132 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7133 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
7134 `coding-priority' property of these language environment.
7135
7136 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7137
7138 Fix glitches caused by addition of psec to timers (Bug#12430).
7139 * image.el (image-animate-timer):
7140 * time.el (display-time-world-timer):
7141 Use timer--function and timer--args rather than raw access to
7142 timer vector.
7143
7144 2012-09-13 Glenn Morris <rgm@gnu.org>
7145
7146 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7147 If not compiling a file, try using load-file-name.
7148
7149 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
7150
7151 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
7152 Fix last change.
7153 (edebug-update-eval-list): Use `push'.
7154
7155 * emacs-lisp/edebug.el: Use lexical-binding.
7156 Remove the "edebug-" prefix from non-dynamically-scoped variables.
7157 Mark unused args with underscore.
7158 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
7159 (edebug-form-data): Use defvar-local.
7160 (edebug-make-before-and-after-form, edebug-make-after-form):
7161 Use backquote.
7162 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
7163 Not dynamically scoped any more.
7164 (edebug--enter-trace): Add arguments `function' and `args'.
7165 Rename from edebug-enter-trace.
7166 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
7167 (edebug--update-coverage): Add `after-index' and `value' args.
7168 Rename from edebug-update-coverage.
7169 (edebug-slow-after): Call it accordingly.
7170 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
7171 edebug-recursive-edit.
7172 (edebug--display): Call it accordingly. Add args `value',
7173 `offset-index', and `arg-mode'. Rename from edebug-display.
7174 (edebug-debugger, edebug): Call it accordingly.
7175 (edebug-eval-display-list): Use dolist.
7176
7177 2012-09-12 Juri Linkov <juri@jurta.org>
7178
7179 * info.el (Info-search): Don't check for isearch-mode and
7180 isearch-regexp before let-binding search-spaces-regexp to
7181 Info-search-whitespace-regexp.
7182 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7183 search-whitespace-regexp if isearch-lax-whitespace or
7184 isearch-regexp-lax-whitespace is non-nil.
7185 (Info-mode): Don't set local variable search-whitespace-regexp.
7186 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7187
7188 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7189
7190 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7191 (debugger-env-macro): Remove support for unread-command-char.
7192
7193 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7194 the temporary map re-appearing on emulation-mode-map-alists.
7195
7196 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7197 since 22.1.
7198
7199 * ehelp.el (with-electric-help): Accept functions in
7200 electric-help-form-to-execute.
7201 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7202 And replace unread-command-char -> unread-command-events.
7203
7204 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
7205
7206 Sync with Tramp 2.2.6.
7207
7208 * net/tramp.el (tramp-accept-process-output): Don't use
7209 JUST-THIS-ONE in the XEmacs case.
7210
7211 * net/trampver.el: Update release number.
7212
7213 2012-09-12 Martin Rudalics <rudalics@gmx.at>
7214
7215 * emacs-lisp/debug.el (debugger-previous-window-height):
7216 New variable.
7217 (debug): When debugger-jumping-flag is non-nil try to restore
7218 height of debugger window. (Bug#8789)
7219
7220 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7221
7222 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7223 overriding-local-map and pre/post-command-hook here.
7224 (edebug-recursive-edit): Do it here instead (bug#12345).
7225 (edebug-outside-unread-command-char): Remove all uses of
7226 unread-command-char.
7227
7228 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7229 inhibit-debugger is bound instead.
7230
7231 2012-09-11 Bastien Guerry <bzg@gnu.org>
7232
7233 * subr.el (set-temporary-overlay-map): Add a docstring.
7234 (Bug#12346)
7235
7236 2012-09-11 Bastien Guerry <bzg@gnu.org>
7237
7238 * minibuffer.el (completion-table-subvert): Fix docstring.
7239 (Bug#12347)
7240
7241 2012-09-11 Bastien Guerry <bzg@gnu.org>
7242
7243 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
7244
7245 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
7246
7247 * progmodes/sql.el: Version 3.1
7248 (sql-db2-escape-newlines): New variable.
7249 (sql-escape-newlines-filter): Use it.
7250
7251 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
7252
7253 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7254
7255 2012-09-10 Dan Nicolaescu <dann@gnu.org>
7256
7257 * vc/diff-mode.el (diff-mode-menu):
7258 Bind diff-remove-trailing-whitespace.
7259
7260 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7261
7262 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7263 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7264 (emacs-lisp-byte-code-mode): New functions.
7265 (eval-sexp-add-defvars): Don't skip defvars in column >0.
7266 (eval-defun-2): Remove bogus interactive spec.
7267 (lisp-indent-line): Remove redundant whole-exp code, now done in
7268 indent-according-to-mode.
7269 (save-match-data): Remove redundant indent data.
7270
7271 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7272 Use `declare'.
7273
7274 2012-09-09 Juri Linkov <juri@jurta.org>
7275
7276 * replace.el (replace-regexp-lax-whitespace): New defcustom.
7277 (replace-lax-whitespace, query-replace-regexp)
7278 (query-replace-regexp-eval, replace-regexp): Doc fix.
7279 (perform-replace, replace-highlight): Let-bind
7280 isearch-lax-whitespace to replace-lax-whitespace and
7281 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7282
7283 * isearch.el (isearch-query-replace): Let-bind
7284 replace-lax-whitespace to isearch-lax-whitespace and
7285 replace-regexp-lax-whitespace to
7286 isearch-regexp-lax-whitespace. (Bug#10885)
7287
7288 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7289
7290 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7291
7292 2012-09-09 Alan Mackenzie <acm@muc.de>
7293
7294 * progmodes/cc-engine.el (c-state-cache-init):
7295 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7296 (c-record-parse-state-state):
7297 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7298
7299 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
7300
7301 * register.el (register-separator): Rename from
7302 separator-register. All uses changed. Doc fix.
7303 (register): Fix version.
7304
7305 2012-09-09 Chong Yidong <cyd@gnu.org>
7306
7307 * replace.el (query-replace-map): Bind four new symbols for
7308 requesting window scrolling.
7309
7310 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7311 query-replace-map (Bug#8948).
7312
7313 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7314
7315 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7316 since they are now in query-replace-map.
7317
7318 * window.el (scroll-other-window-down): Make the arg optional.
7319
7320 2012-09-09 Chong Yidong <cyd@gnu.org>
7321
7322 * files.el (hack-local-variables-confirm): Use quit-window to kill
7323 the *Local Variables* buffer.
7324
7325 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7326
7327 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7328 not just expect to be at its beginning. Adjust callees.
7329 Succeed when do-end block has no space before the pipe character.
7330 (ruby-brace-to-do-end): When the original block is one-liner,
7331 convert to multiline. Reindent the result.
7332
7333 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
7334
7335 * register.el (register): New group.
7336 (separator-register): New user option.
7337 (increment-register): Route it to `append-to-register', if
7338 register contains text. Implication is that `C-x r +' can now be
7339 used for appending to a text register (bug#12217).
7340 (append-to-register, prepend-to-register): Add separator based on
7341 `separator-register'.
7342
7343 2012-09-08 Alan Mackenzie <acm@muc.de>
7344
7345 AWK Mode: make auto-newline work when there's "==" in the pattern.
7346 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7347 correctly.
7348 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7349 Test more rigorously for "=" token.
7350
7351 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
7352
7353 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7354 Only fail when reached LIMIT.
7355
7356 2012-09-08 Chong Yidong <cyd@gnu.org>
7357
7358 * dired.el (dired-mode-map): Don't bind M-=.
7359
7360 * dired-aux.el (dired-diff): Use backup file as default.
7361
7362 2012-09-08 Drew Adams <drew.adams@oracle.com>
7363
7364 * subr.el (add-to-history): Fix delete usage (Bug#12314).
7365
7366 2012-09-08 Chong Yidong <cyd@gnu.org>
7367
7368 * subr.el (syntax-after, syntax-class): Doc fix.
7369
7370 2012-09-08 Martin Rudalics <rudalics@gmx.at>
7371
7372 * window.el (display-buffer-in-previous-window): New buffer
7373 display action function.
7374
7375 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7376 (debugger-previous-window): New variable.
7377 (debug): Rewrite using display-buffer-in-previous-window,
7378 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
7379
7380 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7381
7382 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
7383
7384 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
7385
7386 * progmodes/python.el (python-shell-send-string):
7387 When default-directory is remote, create temp file on remote
7388 filesystem.
7389 (python-shell-send-file): When file is remote, pass local view of
7390 file paths to remote Python interpreter. (Bug#12340)
7391
7392 2012-09-07 Chong Yidong <cyd@gnu.org>
7393
7394 * window.el (switch-to-buffer): Doc fix (Bug#12181).
7395
7396 * files.el (after-find-file): Don't fail on a read-only buffer if
7397 require-final-newline is `visit' or `visit-save' (Bug#11156).
7398
7399 * subr.el (read-char-choice): Allow quitting via ESC ESC.
7400
7401 * userlock.el (ask-user-about-supersession-threat):
7402 Use read-char-choice (Bug#12093).
7403
7404 2012-09-07 Chong Yidong <cyd@gnu.org>
7405
7406 * subr.el (buffer-narrowed-p): New function.
7407
7408 * ses.el (ses-widen):
7409 * simple.el (count-words--buffer-message):
7410 * net/browse-url.el (browse-url-of-buffer): Use it.
7411
7412 * simple.el (count-words-region): Don't signal an error if there
7413 is a non-nil prefix arg and the mark is not set.
7414
7415 * help.el (describe-key-briefly): Allow the message to be seen
7416 when invoked from the minibuffer (Bug#7014).
7417
7418 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7419
7420 * progmodes/ruby-mode.el (ruby-end-of-defun)
7421 (ruby-beginning-of-defun): Simplify, allow indentation before
7422 block beginning and end keywords.
7423 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7424 (ruby-end-of-defun): Expect that the point is at the beginning of
7425 the defun.
7426
7427 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7428
7429 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7430 (bug#12367).
7431 (cl--make-usage-args): Strip _ from argument names.
7432
7433 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7434
7435 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7436 obsolete alias speedbar-key-map.
7437 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7438 (vhdl-index-menu-init): Don't use obsolete variable
7439 font-lock-maximum-size.
7440
7441 2012-09-06 Chong Yidong <cyd@gnu.org>
7442
7443 * frame.el (window-system-version): Mark as obsolete.
7444
7445 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7446 of obsolete variable speedbar-key-map.
7447
7448 2012-09-06 Juri Linkov <juri@jurta.org>
7449
7450 * replace.el (replace-lax-whitespace): New defcustom.
7451 (query-replace, query-replace-regexp, query-replace-regexp-eval)
7452 (replace-string, replace-regexp): Mention it in docstrings.
7453 (perform-replace, replace-highlight): Let-bind
7454 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7455 to the values of replace-lax-whitespace and regexp-flag.
7456 Don't let-bind search-whitespace-regexp. (Bug#10885)
7457
7458 * isearch.el (isearch-query-replace): Let-bind
7459 replace-lax-whitespace instead of let-binding
7460 replace-search-function and replace-re-search-function.
7461 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7462 and isearch-regexp-lax-whitespace to lazy-highlight variables.
7463 (isearch-toggle-symbol): Set isearch-regexp to nil
7464 in isearch-word mode (like in isearch-toggle-word).
7465
7466 2012-09-06 Juri Linkov <juri@jurta.org>
7467
7468 * replace.el (replace-search-function)
7469 (replace-re-search-function): Set default values to nil.
7470 (perform-replace): Let-bind isearch-related variables based on
7471 replace-related values, call `isearch-search-fun' and let-bind
7472 the result to `search-function'. Remove code that sets
7473 `search-function' and `search-string' separately for
7474 `delimited-flag'.
7475 (replace-highlight): Add new argument `delimited-flag' and
7476 rename other arguments to the names used in `perform-replace'.
7477 Let-bind `isearch-word' to the argument `delimited-flag'.
7478 (Bug#10885, bug#10887)
7479
7480 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
7481
7482 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7483 ruby-beginning-of-indent, simplify, allow all keywords to have
7484 indentation before them.
7485 (ruby-beginning-of-indent): Adjust for above. Search until the
7486 found point is not inside a string or comment.
7487 (ruby-font-lock-keywords): Allow symbols to start with "@"
7488 character, give them higher priority than variables.
7489 (ruby-syntax-propertize-function)
7490 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7491 matchers. Expression expansions are not comments when inside a
7492 string, and there comment syntax status is irrelevant.
7493 (ruby-match-expression-expansion): New function. Check that
7494 expression expansion is inside a string, and it's not escaped.
7495 (ruby-font-lock-keywords): Use it.
7496
7497 2012-09-05 Martin Rudalics <rudalics@gmx.at>
7498
7499 * help.el (temp-buffer-max-height): New default value.
7500 (temp-buffer-resize-frames): New option.
7501 (resize-temp-buffer-window): Optionally resize frame.
7502
7503 * window.el (fit-frame-to-buffer-bottom-margin): New option.
7504 (fit-frame-to-buffer): New function.
7505
7506 2012-09-05 Glenn Morris <rgm@gnu.org>
7507
7508 * emulation/cua-rect.el (cua--init-rectangles):
7509 * textmodes/picture.el (picture-mode-map):
7510 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7511 like forward-char and backward-char. (Bug#12317)
7512
7513 2012-09-05 Leo Liu <sdl.web@gmail.com>
7514
7515 * progmodes/flymake.el (flymake-warning-re): New variable.
7516 (flymake-parse-line): Use it.
7517
7518 2012-09-05 Glenn Morris <rgm@gnu.org>
7519
7520 * calendar/holidays.el (holiday-christian-holidays):
7521 Rename an entry. (Bug#12289)
7522
7523 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7524
7525 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7526 (bug#12222).
7527
7528 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7529
7530 * loadup.el: Load macroexp. Remove hack.
7531 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7532 (macroexp--expand-all): Use it to get better warnings.
7533 (macroexp--backtrace, macroexp--trim-backtrace-frame)
7534 (internal-macroexpand-for-load): New functions.
7535 (macroexp--pending-eager-loads): New var.
7536 (emacs-startup-hook): New hack to replace one in loadup.el.
7537 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7538 (cl--compiler-macro-cXXr): Move to top, before they can be used.
7539 (cl-psetf): Simplify.
7540 (cl-defstruct): Add indent rule.
7541
7542 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7543
7544 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7545 over `user-mail-address' for the SMTP MAIL FROM envelope.
7546 (smtpmail-via-smtp): Ditto.
7547
7548 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
7549
7550 * progmodes/ruby-mode.el: Clean up keybindings.
7551 (ruby-mode-map): Don't bind ruby-electric-brace,
7552 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7553 backward-kill-word, reindent-then-newline-and-indent.
7554 (ruby-mark-defun): Remove.
7555 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
7556 (ruby-mode): Set local beginning-of-defun-function and
7557 end-of-defun-function values.
7558
7559 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7560
7561 * window.el (temp-buffer-window-setup-hook)
7562 (temp-buffer-window-show-hook): New hooks.
7563 (temp-buffer-window-setup, temp-buffer-window-show)
7564 (with-temp-buffer-window): New functions.
7565 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7566 (special-display-popup-frame): Make sure the window used shows BUFFER.
7567
7568 * help.el (temp-buffer-resize-mode): Fix doc-string.
7569 (resize-temp-buffer-window): New optional argument WINDOW.
7570
7571 * files.el (recover-file, save-buffers-kill-emacs):
7572 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7573
7574 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
7575
7576 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7577 remote definition of `default-directory', ensure we can connect.
7578
7579 2012-09-02 Juri Linkov <juri@jurta.org>
7580
7581 Toggle whitespace matching mode with M-s SPC.
7582 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7583
7584 * isearch.el (search-whitespace-regexp): Doc fix.
7585 Remove cons cell customization.
7586 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7587 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7588 New variables.
7589 (isearch-forward, isearch-forward-regexp): Doc fix.
7590 (isearch-toggle-lax-whitespace): New command.
7591 (search-forward-lax-whitespace, search-backward-lax-whitespace)
7592 (re-search-forward-lax-whitespace)
7593 (re-search-backward-lax-whitespace): New functions.
7594 (isearch-whitespace-regexp): Remove function.
7595 (isearch-query-replace): Let-bind replace-search-function and
7596 replace-re-search-function.
7597 (isearch-occur): Let-bind search-spaces-regexp according to the
7598 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7599 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7600 condition for C-q SPC.
7601 (isearch-search-fun-default): Use new functions mentioned above.
7602 (isearch-search-forward, isearch-search-backward): Remove functions.
7603 (isearch-search): Don't let-bind search-spaces-regexp.
7604 (isearch-lazy-highlight-space-regexp): Remove variable.
7605 (isearch-lazy-highlight-lax-whitespace)
7606 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7607 (isearch-lazy-highlight-new-loop): Use them.
7608 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7609
7610 2012-09-02 Chong Yidong <cyd@gnu.org>
7611
7612 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7613
7614 2012-09-02 Glenn Morris <rgm@gnu.org>
7615
7616 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
7617
7618 2012-09-01 Glenn Morris <rgm@gnu.org>
7619
7620 * term.el: Tidy up menu definitions.
7621 (term-mode-map): Use easymenu for In/Out, Complete menus.
7622 (term-pager-break-map): Initialize in the defvar.
7623 (term-terminal-menu, term-signals-menu): Define with easymenu.
7624 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
7625 (term-pager-menu): New, extracted from term-process-pager.
7626 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7627 (term-update-mode-line): Propertize line/char and page items.
7628 (term-process-pager): Move keymap initialization elsewhere.
7629
7630 2012-09-01 Martin Rudalics <rudalics@gmx.at>
7631
7632 * window.el (switch-to-prev-buffer): Handle additional values of
7633 BURY-OR-KILL argument. Don't switch in minibuffer window.
7634 (switch-to-next-buffer): Don't switch in minibuffer window.
7635 (quit-restore-window): New function based on quit-window.
7636 Handle additional values of former KILL argument.
7637 (quit-window): Call quit-restore-window with appropriate
7638 interpretation of KILL argument.
7639 (display-buffer-below-selected): New buffer display action
7640 function.
7641
7642 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
7643
7644 * minibuffer.el (completion-at-point-functions): Complete docstring
7645 (bug#12254).
7646
7647 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7648
7649 Better seed support for (random).
7650 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7651 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7652 * play/mpuz.el, play/tetris.el, play/zone.el:
7653 * calc/calc-comb.el (math-init-random-base):
7654 * play/blackbox.el (bb-init-board):
7655 * play/life.el (life):
7656 * server.el (server-use-tcp):
7657 * type-break.el (type-break):
7658 Remove unnecessary call to (random t).
7659 * net/sasl.el (sasl-unique-id-function):
7660 Change (random t) to (random), now that the latter is more random.
7661 * play/life.el (life-initialized): Remove no-longer-needed var.
7662
7663 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
7664
7665 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7666 Consider frame's buffer predicate when choosing the buffer.
7667 (Bug#12081)
7668
7669 2012-08-30 Richard Stallman <rms@gnu.org>
7670
7671 * simple.el (special-mode-map): Delete binding for `z'.
7672
7673 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
7674
7675 * progmodes/compile.el (compilation-always-kill): Doc fix.
7676
7677 2012-08-30 Chong Yidong <cyd@gnu.org>
7678
7679 * window.el (display-buffer-reuse-frames): Make the obsolescence
7680 message more informative.
7681
7682 2012-08-30 Glenn Morris <rgm@gnu.org>
7683
7684 * paren.el (show-paren-delay):
7685 Add a :set function. Doc fix. (Bug#12297)
7686
7687 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
7688
7689 * progmodes/compile.el (compilation-always-kill): New var.
7690 (compilation-start): Use it.
7691
7692 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7693
7694 * simple.el (read-only-mode): Move from files.el for bootstrapping.
7695 * files.el (read-only-mode): Move to simple.el.
7696
7697 * files.el (read-only-mode): New minor mode.
7698 (toggle-read-only): Use it and mark obsolete.
7699 (find-file--read-only):
7700 * vc/vc.el (vc-next-action, vc-checkout):
7701 * vc/vc-cvs.el (vc-cvs-checkout):
7702 * obsolete/vc-mcvs.el (vc-mcvs-update):
7703 * ffap.el (ffap--toggle-read-only): Update callers.
7704
7705 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
7706
7707 * eshell/esh-ext.el (eshell-external-command): Do not examine
7708 remote shell scripts.
7709 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
7710
7711 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
7712 "/usr/local/sbin".
7713
7714 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7715
7716 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
7717
7718 2012-08-28 Leo Liu <sdl.web@gmail.com>
7719
7720 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
7721 completion-at-point. (Bug#12220)
7722
7723 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
7724
7725 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
7726
7727 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7728
7729 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
7730 be buffer-local; add delete-trailing-whitespace (bug#12259).
7731
7732 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
7733
7734 * progmodes/hideif.el (hif-compress-define-list):
7735 Fix typo. (Bug#11951)
7736
7737 2012-08-28 Dan Nicolaescu <dann@gnu.org>
7738
7739 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
7740 buffer local setting.
7741
7742 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
7743 rcirc-encode-coding-system.
7744
7745 2012-08-28 Leo Liu <sdl.web@gmail.com>
7746
7747 * net/rcirc.el (rcirc-split-message): New function.
7748 (rcirc-send-message): Use it. (Bug#12051)
7749
7750 2012-08-28 Juri Linkov <juri@jurta.org>
7751
7752 * info.el (Info-fontify-node): Hide empty lines at the end of
7753 the node. (Bug#12272)
7754
7755 2012-08-27 Drew Adams <drew.adams@oracle.com>
7756
7757 * dired.el (dired-pop-to-buffer): Make window start at beginning
7758 of buffer (Bug#12281).
7759
7760 2012-08-26 Chong Yidong <cyd@gnu.org>
7761
7762 * window.el (special-display-regexps, special-display-frame-alist)
7763 (special-display-buffer-names, special-display-function)
7764 (display-buffer-reuse-frames): Mark as obsolete.
7765
7766 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
7767
7768 * help.el (help-print-return-message): Don't treat
7769 display-buffer-reuse-frames specially.
7770
7771 2012-08-26 Chong Yidong <cyd@gnu.org>
7772
7773 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
7774 New variable, replacing gdb-frame-parameters.
7775 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
7776 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
7777 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
7778 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
7779 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
7780 the functions directly with gdb-display-buffer-other-frame-action.
7781 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
7782 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
7783 (gdb-display-stack-buffer, gdb-display-locals-buffer)
7784 (gdb-display-registers-buffer): Define directly.
7785 (def-gdb-display-buffer): Macro deleted.
7786 (gdb-display-buffer): Remove second and third args, callers don't
7787 use them. Defer to the default display-buffer behavior, apart
7788 from making windows dedicated.
7789 (gdb-setup-windows): Don't call display-buffer unnecessarily.
7790
7791 * progmodes/gud.el (gud-display-line): Just use display-buffer.
7792
7793 * window.el (display-buffer-pop-up-frame): Handle a
7794 pop-up-frame-parameters alist entry.
7795 (display-buffer): Document it.
7796
7797 2012-08-26 Chong Yidong <cyd@gnu.org>
7798
7799 * isearch.el (search-whitespace-regexp): Make string and nil
7800 values apply to both ordinary and regexp search. Allow a cons
7801 cell value to distinguish between the two.
7802 (isearch-whitespace-regexp, isearch-search-forward)
7803 (isearch-search-backward): New functions.
7804 (isearch-occur, isearch-search-fun-default, isearch-search)
7805 (isearch-lazy-highlight-new-loop): Use them.
7806 (isearch-forward, isearch-forward-regexp): Doc fix.
7807
7808 2012-08-26 Chong Yidong <cyd@gnu.org>
7809
7810 * faces.el (help-argument-name): Always inherit from italic
7811 (Bug#12213).
7812
7813 2012-08-25 Martin Rudalics <rudalics@gmx.at>
7814
7815 * window.el (window--even-window-heights): Even heights when
7816 WINDOW and the selected window form a vertical combination.
7817 (display-buffer-use-some-window): Provide that window used gets
7818 sized back by quit-window. (Bug#11880) and (Bug#12091)
7819
7820 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7821
7822 Fix file time stamp problem with bzr and CVS (Bug#12001).
7823 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
7824 in the file's time stamp, since the version control system loses
7825 that information.
7826
7827 2012-08-22 Juri Linkov <juri@jurta.org>
7828
7829 * info.el (Info-fontify-node): Hide the suffix of the
7830 Info file name in the header line. (Bug#12187)
7831
7832 2012-08-22 Glenn Morris <rgm@gnu.org>
7833
7834 * calendar/cal-tex.el (cal-tex-weekly-common):
7835 Restore leading blank page.
7836
7837 2012-08-22 Le Wang <l26wang@gmail.com>
7838
7839 * misc.el (forward-to-word, backward-to-word): Activate or extend
7840 the region under `shift-select-mode'. (Bug#12231)
7841
7842 2012-08-22 Bastien Guerry <bzg@gnu.org>
7843
7844 * progmodes/executable.el (executable-prefix): Set to "#!" instead
7845 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
7846 gives details on why the space is never needed.
7847
7848 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7849
7850 * window.el (walk-window-tree, window-with-parameter):
7851 New optional argument MINIBUF to control whether these functions
7852 should run on the minibuffer window.
7853 (window-at-side-list): Don't operate on minibuffer window.
7854 (window-in-direction): Simplify and rewrite doc-string.
7855 (window--size-ignore): Rename to window--size-ignore-p.
7856 Update callers.
7857 (display-buffer-in-atom-window, window--major-non-side-window)
7858 (window--major-side-window, display-buffer-in-major-side-window)
7859 (delete-side-window, display-buffer-in-side-window):
7860 New functions.
7861 (window--side-check, window-deletable-p, delete-window)
7862 (delete-other-windows, split-window): Handle side windows and
7863 atomic windows appropriately.
7864 (window--display-buffer): Call display-buffer-record-window also
7865 when the window buffer did not change.
7866
7867 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
7868
7869 * help-fns.el (help-fns--key-bindings):
7870 Abbreviate non-symbol remap targets. (Bug#12174)
7871
7872 2012-08-22 Martin Rudalics <rudalics@gmx.at>
7873
7874 * dired.el (dired-mark-remembered): Don't clobber point.
7875 (Bug#11795)
7876
7877 2012-08-22 Glenn Morris <rgm@gnu.org>
7878
7879 * progmodes/bug-reference.el (bug-reference): New custom group.
7880 (bug-reference-bug-regexp): Make it a defcustom.
7881
7882 2012-08-22 Daiki Ueno <ueno@unixuser.org>
7883
7884 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
7885 (js-paren-indent-offset, js-square-indent-offset)
7886 (js-curly-indent-offset): Add :safe (Bug#12257).
7887
7888 2012-08-22 Edward O'Connor <hober0@gmail.com>
7889
7890 * json.el (json-key-format): Add error properties.
7891 (json-encode-key): New function.
7892 (json-encode-hash-table, json-encode-alist, json-encode-plist):
7893 Use json-encode-key.
7894
7895 2012-08-22 Glenn Morris <rgm@gnu.org>
7896
7897 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
7898 (cal-tex-leftday, cal-tex-rightday): Remove functions.
7899 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
7900 Update for above change.
7901
7902 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
7903
7904 * cus-face.el (custom-face-attributes): Fix customize type for the
7905 :underline attribute. (Bug#11805)
7906
7907 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7908
7909 * window.el (window-point-1, set-window-point-1): Remove.
7910 (window-in-direction, record-window-buffer)
7911 (set-window-buffer-start-and-point, split-window-below)
7912 (window--state-get-1, display-buffer-record-window):
7913 Replace calls to window-point-1 and set-window-point-1 by calls to
7914 window-point and set-window-point respectively.
7915
7916 2012-08-21 Glenn Morris <rgm@gnu.org>
7917
7918 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
7919 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
7920 Use it.
7921
7922 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
7923 (cal-tex-shortday): New function.
7924 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
7925 (cal-tex-cursor-filofax-daily): Use the above.
7926
7927 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
7928 New functions.
7929 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7930 (cal-tex-cursor-filofax-week): Use them.
7931
7932 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
7933 New constants.
7934 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7935 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
7936
7937 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
7938 (cal-tex-end-document): Don't rely on buffer name.
7939
7940 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
7941 Use cal-tex-vspace.
7942 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
7943 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
7944 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
7945 Use cal-tex-arg.
7946
7947 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
7948 (cal-tex-cursor-week, cal-tex-cursor-week2)
7949 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
7950 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7951 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
7952 (cal-tex-insert-preamble, cal-tex-b-document)
7953 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
7954 Improve cal-tex-cmd usage.
7955
7956 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
7957 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
7958 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
7959 (cal-tex-weekly-paper): New function.
7960 (cal-tex-cursor-week, cal-tex-cursor-week2)
7961 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
7962 (cal-tex-cursor-day): Use it.
7963
7964 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
7965 (cal-tex-cursor-filofax-week): Remove leading blank page.
7966
7967 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
7968 Add autoload cookie. For now at least, don't use color, since
7969 no other cal-tex function does.
7970
7971 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
7972 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
7973 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
7974
7975 2012-08-21 Juri Linkov <juri@jurta.org>
7976
7977 * info.el (Info-file-attributes): New variable.
7978 (info-insert-file-contents): Add file attributes to
7979 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
7980 `Info-toc-nodes' when previous modtime of the Info file is less
7981 than new modtime.
7982 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
7983 of info.el. (Bug#12230)
7984
7985 2012-08-20 Glenn Morris <rgm@gnu.org>
7986
7987 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
7988 * calendar/holidays.el (calendar-holiday-list):
7989 Report errors with display-warning rather than beep'n'sleep.
7990
7991 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
7992
7993 * net/tramp.el (tramp-accept-process-output): Accept only output
7994 from PROC. Otherwise, process filters and sentinels might be
7995 confused. (Bug#12145)
7996
7997 2012-08-20 Chong Yidong <cyd@gnu.org>
7998
7999 * descr-text.el (describe-text-properties-1): Use overlays-in to
8000 report on empty overlays (Bug#3322).
8001
8002 2012-08-20 Glenn Morris <rgm@gnu.org>
8003
8004 * mail/rmailout.el (rmail-output-read-file-name):
8005 Trap and report errors in rmail-output-file-alist elements.
8006
8007 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
8008 since most non-font-lock faces are not also variables).
8009
8010 2012-08-20 Edward Reingold <reingold@iit.edu>
8011
8012 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8013 New function. (Bug12160)
8014
8015 2012-08-19 Glenn Morris <rgm@gnu.org>
8016
8017 * mail/rmailout.el (rmail-output-read-file-name):
8018 Fix previous change (when the alist is nil or does not match).
8019
8020 2012-08-19 Chong Yidong <cyd@gnu.org>
8021
8022 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
8023 (Bug#12228).
8024
8025 2012-08-18 Chong Yidong <cyd@gnu.org>
8026
8027 * simple.el (yank-handled-properties): New defcustom.
8028 (yank-excluded-properties): Add font-lock-face and category.
8029 (yank): Doc fix.
8030
8031 * subr.el (remove-yank-excluded-properties):
8032 Obey yank-handled-properties. The special handling of font-lock-face
8033 and category is now done this way, instead of being hard-coded.
8034 (insert-for-yank-1): Remove font-lock-face handling.
8035 (yank-handle-font-lock-face-property)
8036 (yank-handle-category-property): New function.
8037
8038 2012-08-17 Glenn Morris <rgm@gnu.org>
8039
8040 * mail/rmailout.el (rmail-output-read-file-name):
8041 Check rmail-output-file-alist against the full message body
8042 in the correct rmail buffer. (Bug#12214)
8043
8044 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
8045
8046 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8047 Eliminate superfluous prompt. (Bug#12203)
8048
8049 2012-08-17 Chong Yidong <cyd@gnu.org>
8050
8051 * mouse.el (mouse-appearance-menu): If x-select-font returns a
8052 font spec, set the font directly (Bug#3228).
8053
8054 2012-08-17 Martin Rudalics <rudalics@gmx.at>
8055
8056 * window.el (delete-window): Fix last fix.
8057
8058 2012-08-16 Martin Rudalics <rudalics@gmx.at>
8059
8060 * window.el (window-valid-p): Move to window.c.
8061 (window-child, window-child-count, window-last-child)
8062 (window-normalize-window, window-combined-p)
8063 (window-combinations, window-atom-root, window-min-size)
8064 (window-sizable, window-sizable-p, window-size-fixed-p)
8065 (window-min-delta, window-max-delta, window--resizable)
8066 (window--resizable-p, window-resizable, window-total-size)
8067 (window-full-height-p, window-full-width-p, window-body-size)
8068 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
8069 (minimize-window, window-deletable-p, delete-window)
8070 (delete-other-windows, set-window-buffer-start-and-point)
8071 (next-buffer, previous-buffer, split-window, balance-windows-2)
8072 (set-window-text-height, window-buffer-height)
8073 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
8074 (truncated-partial-width-window-p): Minor code adjustments.
8075 In doc-strings state whether the argument window has to denote a
8076 live, valid or any window.
8077
8078 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
8079
8080 * progmodes/subword.el (subword-forward-function)
8081 (subword-backward-function, subword-forward-regexp)
8082 (subword-backward-regexp): New variables.
8083 (subword-forward, subword-forward-internal, subword-backward-internal):
8084 Use new variables, eg so that different "word" definitions
8085 can be easily used. (Bug#11411)
8086
8087 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8088
8089 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
8090 for composite selectors.
8091 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
8092 operation just because we can't find a previous revision.
8093
8094 2012-08-15 Chong Yidong <cyd@gnu.org>
8095
8096 * frame.el (set-frame-font): Accept font objects.
8097
8098 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8099
8100 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
8101
8102 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
8103
8104 * man.el (Man-overstrike-face, Man-underline-face)
8105 (Man-reverse-face): Remove variables.
8106 (Man-overstrike, Man-underline, Man-reverse): New faces.
8107 (Man-fontify-manpage): Use them instead of the variables.
8108 (Man-cleanup-manpage): Comment change.
8109 (Man-ansi-color-map): New variable.
8110 (Man-fontify-manpage): Use it.
8111 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
8112
8113 Implement ANSI SGR parameters 22-27 (bug#12146).
8114 * ansi-color.el (ansi-colors): Doc fix.
8115 (ansi-color-context, ansi-color-context-region): Doc fix.
8116 (ansi-color--find-face): New function.
8117 (ansi-color-apply, ansi-color-apply-on-region): Use it.
8118 Rename the local variable `face' to `codes' since it is now a list of
8119 ansi codes. Doc fix.
8120 (ansi-color-get-face): Remove.
8121 (ansi-color-parse-sequence): New function, derived from
8122 ansi-color-get-face.
8123 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
8124 codes 22-27.
8125
8126 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
8127
8128 * subr.el (read-passwd): Allow use from a minibuffer.
8129
8130 2012-08-14 Eli Zaretskii <eliz@gnu.org>
8131
8132 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
8133 inside comments and strings as identifiers.
8134
8135 * progmodes/gud.el (gud-tooltip-print-command): Quote the
8136 expression to evaluate. This allows to evaluate expressions with
8137 embedded whitespace.
8138 (gud-tooltip-tips): Add a blank before the newline in the
8139 message-box text, for the benefit of message-box emulation on
8140 MS-Windows.
8141
8142 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
8143 messages from GDB, pop them up in a tooltip to give feedback to
8144 user.
8145 (gdb-tooltip-print-1): Quote the expression to evaluate.
8146 This allows to evaluate expressions with embedded whitespace.
8147 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
8148 if the TTY name is nil or empty (which happens when communicating
8149 with the inferior via pipes, e.g. on MS-Windows).
8150 (gdb-internals): If GDB sends a "&\n" empty debugging message,
8151 don't send that to the GUD buffer.
8152
8153 2012-08-14 Glenn Morris <rgm@gnu.org>
8154
8155 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
8156 Optimize away setq-default with no args, as for setq. (Bug#12195)
8157
8158 2012-08-14 Chong Yidong <cyd@gnu.org>
8159
8160 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
8161
8162 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
8163 (Bug#12085).
8164
8165 2012-08-14 Glenn Morris <rgm@gnu.org>
8166
8167 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
8168
8169 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
8170
8171 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8172 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8173 Use cached shell name.
8174
8175 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8176
8177 * progmodes/python.el (python-shell-send-string):
8178 (python-shell-send-setup-code): Do not use `format' with `message'.
8179
8180 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
8181
8182 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8183 (ruby-percent-literal-beg-re): New constant.
8184 (ruby-syntax-general-delimiters-goto-beg): Rename to
8185 `ruby-syntax-enclosing-percent-literal', improve literal type check.
8186 (ruby-syntax-propertize-general-delimiters): Rename to
8187 `ruby-syntax-propertize-percent-literal', it's a shorter and more
8188 popular term. Adjust comments everywhere.
8189 (ruby-syntax-propertize-percent-literal): Only propertize when not
8190 inside a simple string or comment. When the literal is unclosed,
8191 leave the text after it unpropertized.
8192 (ruby-syntax-methods-before-regexp): New constant.
8193 (ruby-syntax-propertize-function): Use it to recognize regexps.
8194 Don't look at the text after regexp, just use the whitelist.
8195
8196 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8197
8198 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8199 non-nil always load the compiled file if it exists. (Bug#12197)
8200
8201 2012-08-14 Chong Yidong <cyd@gnu.org>
8202
8203 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8204 (hi-lock-set-pattern): When deciding whether to use font lock or
8205 overlays, look at font-lock-mode instead of font-lock-fontified
8206 (Bug#12168).
8207 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8208 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8209
8210 2012-08-14 Daiki Ueno <ueno@unixuser.org>
8211
8212 * subr.el (internal--after-with-selected-window): Fix typo
8213 (Bug#12193).
8214
8215 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
8216
8217 Use `completion-table-dynamic' for completion functions.
8218 * progmodes/python.el
8219 (python-shell-completion--do-completion-at-point)
8220 (python-shell-completion--get-completions):
8221 Remove functions.
8222 (python-shell-completion-complete-at-point): New function.
8223 (python-completion-complete-at-point): Use it.
8224
8225 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
8226
8227 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8228 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8229
8230 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
8231
8232 * subr.el (function-get): Refine `autoload' arg so it can also
8233 autoload functions for gv.el (bug#12191).
8234 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8235 autoloads macros.
8236
8237 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8238 Prefer pcase-let over destructuring-bind.
8239 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8240 Also, remove whitespace as we go, rather than after accumulating the
8241 various places.
8242
8243 * subr.el (internal--before-with-selected-window)
8244 (internal--after-with-selected-window): Fix typo seleted->selected.
8245 (with-selected-window): Adjust callers.
8246 Reported by Dmitry Gutov <dgutov@yandex.ru>.
8247
8248 2012-08-13 Bastien Guerry <bzg@gnu.org>
8249
8250 * window.el (special-display-popup-frame): Minor docstring
8251 enhancement. (Bug#12172)
8252
8253 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
8254
8255 * tar-mode.el (tar-header-data-end): Only ignore size for files of
8256 type 1-6.
8257 (tar-header-block-summarize, tar-get-descriptor): Handle pax
8258 extended headers.
8259
8260 * files.el (hack-local-variables-filter): Remove useless eval.
8261
8262 2012-08-13 Martin Rudalics <rudalics@gmx.at>
8263
8264 * subr.el (with-selected-window): Fix last change.
8265
8266 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8267
8268 * subr.el (internal--before-with-seleted-window)
8269 (internal--after-with-seleted-window): New functions.
8270 (with-selected-window): Use them, to replace dependency on
8271 tty-top-frame.
8272
8273 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
8274
8275 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8276 binding for `newline'.
8277 (ruby-move-to-block): When moving backward, stop at block opening,
8278 not indentation.
8279 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8280 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8281 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8282 `ruby-toggle-block'.
8283
8284 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8285
8286 * ibuffer.el (ibuffer-do-toggle-read-only):
8287 * dired.el (dired-toggle-read-only):
8288 * buff-menu.el (Buffer-menu-toggle-read-only):
8289 * bindings.el (mode-line-toggle-read-only):
8290 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8291
8292 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
8293
8294 * descr-text.el (describe-char): Put the overlays over the
8295 "displayed as" character.
8296
8297 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
8298
8299 * calc/calc-units.el (math-default-units-table): Give an
8300 initial value.
8301 (math-put-default-units): Add options to put composite units and
8302 unit systems in the default units table.
8303 (calc-convert-units): Send composite units to
8304 `math-put-default-units' when appropriate.
8305
8306 2012-08-11 Glenn Morris <rgm@gnu.org>
8307
8308 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8309
8310 * tutorial.el (help-with-tutorial):
8311 * emacs-lisp/copyright.el (copyright-update-directory):
8312 * emacs-lisp/autoload.el (autoload-find-generated-file)
8313 (autoload-find-file): Disable local eval: (for insurance).
8314
8315 * files.el (hack-local-variables-filter): If an eval: form is not
8316 known to be safe, and enable-local-variables is :safe, then ignore
8317 the form totally, as is done for non-eval forms. (Bug#12155)
8318 This is CVE-2012-3479.
8319
8320 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8321
8322 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8323 (rx-form): Simplify.
8324
8325 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
8326
8327 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8328 ?, _, and : are symbol constituents, ! is not (but kinda should be).
8329 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8330 (ruby-syntax-propertize-function): Adjust for changes in
8331 `ruby-syntax-propertize-heredoc'.
8332
8333 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
8334
8335 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8336 binding (use `M-;' instead).
8337 (ruby-singleton-class-p): New function.
8338 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8339
8340 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8341
8342 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8343
8344 2012-08-10 Chong Yidong <cyd@gnu.org>
8345
8346 * progmodes/python.el (python-shell-get-process-name): Don't mess
8347 with same-window-buffer-names.
8348
8349 * eshell/eshell.el (eshell-add-to-window-buffer-names)
8350 (eshell-remove-from-window-buffer-names): Make obsolete.
8351 (eshell-buffer-name, eshell-unload-hook): Don't use them.
8352 (eshell): Just use pop-to-buffer-same-window instead.
8353
8354 2012-08-10 Chong Yidong <cyd@gnu.org>
8355
8356 * bindings.el: Bind M-= back to count-words-region.
8357
8358 * simple.el (count-words-region): Accept a prefix arg for acting
8359 on the entire buffer.
8360 (count-words--buffer-message): New helper function.
8361
8362 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
8363
8364 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8365 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8366 (event-start, event-end): Use posn-at-point to return a more
8367 informative posn.
8368 (posnp): New function.
8369 * mouse.el (popup-menu-normalize-position): Use it.
8370
8371 2012-08-10 Masatake YAMATO <yamato@redhat.com>
8372
8373 * mouse.el (popup-menu-normalize-position): New function.
8374 (popup-menu): Use `popup-menu-normalize-position' to normalize
8375 the form for POSITION argument.
8376
8377 * term/x-win.el (x-menu-bar-open):
8378 Use the value returend from (posn-at-point) as position
8379 passed to `popup-menu'.
8380
8381 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8382
8383 * calc/calccomp.el (math-compose-expr): Add extra argument
8384 indicating that parentheses should be put around products in
8385 denominators. Give multiplication precedence over division during
8386 composition.
8387
8388 2012-08-09 Chong Yidong <cyd@gnu.org>
8389
8390 * man.el (Man-switches, Man-sed-command, Man-awk-command)
8391 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8392 (Man-untabify-command, manual-program): Convert to defcustom
8393 (Bug#10429).
8394
8395 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8396
8397 * descr-text.el (describe-char): Don't insert extra newlines
8398 (Bug#10127).
8399
8400 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8401 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8402
8403 * align.el (align-region): Delete temporary markers (Bug#10047).
8404 Plus some code cleanups.
8405
8406 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8407
8408 * progmodes/python.el (python-pdbtrack-tracked-buffer)
8409 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8410 (python-shell-internal-last-output): Use make-local-variable
8411 instead of make-variable-buffer-local.
8412
8413 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
8414
8415 * progmodes/python.el: Enhancements to forward-sexp.
8416 (python-nav-forward-sexp): Rename from
8417 python-nav-forward-sexp-function.
8418 (python-nav--forward-sexp, python-nav--backward-sexp):
8419 New functions.
8420
8421 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
8422
8423 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8424 modes and simplification modes.
8425
8426 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
8427
8428 * delsel.el (delete-selection-pre-hook): Don't propagate the
8429 file-supersession signals (bug#12161).
8430
8431 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8432
8433 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8434 (cl-map-extents): Add compatibility aliases (bug#12135).
8435
8436 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
8437
8438 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8439 tests by `ignore-error'.
8440 (tramp-find-shell): Open also a new shell, when cache is already
8441 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
8442
8443 2012-08-08 Juri Linkov <juri@jurta.org>
8444
8445 * bookmark.el: Add `defaults' property to the bookmark record.
8446 (bookmark-current-buffer): Doc fix.
8447 (bookmark-make-record): Add `defaults' property with default values
8448 to the bookmark record.
8449 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8450 with `bookmark-insert-current-bookmark'.
8451 (bookmark-set): Get `defaults' property from the bookmark record
8452 and use it in `read-from-minibuffer'.
8453 (bookmark-insert-current-bookmark): Remove function.
8454
8455 * info.el (Info-bookmark-make-record): Add `defaults' property
8456 with values of canonical Info node name, the current Info file
8457 name and the current Info node name. (Bug#12107)
8458
8459 2012-08-08 Juri Linkov <juri@jurta.org>
8460
8461 * files.el (basic-save-buffer): Use `buffer-name' as the default
8462 of `read-file-name' when buffer is not visiting a file (bug#12128).
8463
8464 2012-08-08 Juri Linkov <juri@jurta.org>
8465
8466 * info.el (Info-isearch-search): Doc fix.
8467 (Info-search): Change search-failed message from "initial node" to
8468 "end of node" (bug#12078).
8469 (Info-isearch-search): Change `isearch-string-state' to
8470 `isearch--state-string'.
8471
8472 2012-08-08 Glenn Morris <rgm@gnu.org>
8473
8474 * language/persian.el: Remove file.
8475 * language/misc-lang.el: Move unique part of persian.el here.
8476 * loadup.el: Remove language/persian.
8477
8478 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
8479
8480 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8481
8482 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
8483
8484 * progmodes/python.el: Fix defsubst warning.
8485 (python-syntax-context) Rename from python-info-ppss-context.
8486 (python-syntax-context-type): Rename from
8487 python-info-ppss-context-type.
8488 (python-syntax-comment-or-string-p): Rename from
8489 python-info-ppss-comment-or-string-p.
8490
8491 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
8492
8493 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8494
8495 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
8496
8497 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8498 a defcustom that is quoted with backquote.
8499
8500 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8501 Fix handling of interactive spec when the body uses return.
8502 (math-do-arg-check, math-define-function-body): Use backquote forms.
8503 * calc/calc-ext.el (math-defcache): Likewise.
8504 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8505 * allout.el (allout-new-exposure): Likewise.
8506 * calc/calcalg2.el (math-tracing-integral): Likewise.
8507 * info.el (Info-last-menu-item): Likewise.
8508 * emulation/vip.el (vip-loop): Likewise.
8509 * textmodes/artist.el (artist-funcall): Likewise.
8510 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8511 Construct menu-item directly.
8512
8513 * progmodes/autoconf.el (font-lock-syntactic-keywords):
8514 Don't declare.
8515
8516 2012-08-07 Chong Yidong <cyd@gnu.org>
8517
8518 * simple.el (deactivate-mark): Preserve text properties when
8519 saving the primary selection (Bug#8384).
8520
8521 2012-08-07 Kevin Ryde <user42@zip.com.au>
8522
8523 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8524 (woman-parse-numeric-value): On a bad .IP line, issue a warning
8525 and continue processing (Bug#12110).
8526
8527 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8528
8529 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8530 syntax-propertize-function (bug#10095).
8531
8532 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8533
8534 * help-fns.el (help-fns--key-bindings, help-fns--signature)
8535 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8536 describe-function-1.
8537 (describe-function-1): Use them. Move compiler macro after sig.
8538 (help-fns--compiler-macro): Use function-get. Assume we're already in
8539 standard-output. Adjust layout to new call order.
8540
8541 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8542 re-binding a symbol that has a symbol-macro (bug#12119).
8543
8544 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
8545
8546 * language/persian.el: New file. (Bug#11812)
8547 * loadup.el: Add language/persian.el.
8548
8549 2012-08-06 Chong Yidong <cyd@gnu.org>
8550
8551 * window.el (window--maybe-raise-frame): New function.
8552 (window--display-buffer): Split off from here.
8553 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8554 (display-buffer-pop-up-window, display-buffer-use-some-window):
8555 Obey an inhibit-switch-frame action alist entry.
8556 (display-buffer): Update doc.
8557
8558 * replace.el (occur-after-change-function): Avoid losing focus by
8559 using the inhibit-switch-frame display parameter (Bug#12139).
8560
8561 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
8562
8563 Make internal shell process buffer names start with space.
8564 * progmodes/python.el (python-shell-make-comint): Add optional
8565 argument INTERNAL.
8566 (run-python-internal): Use it.
8567 (python-shell-internal-get-or-create-process): Check for new
8568 internal buffer names.
8569
8570 2012-08-06 Glenn Morris <rgm@gnu.org>
8571
8572 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8573 Do less getting and setting of environment variables.
8574
8575 2012-08-05 Chong Yidong <cyd@gnu.org>
8576
8577 * proced.el (proced): Add substitution string to docstring to
8578 trigger autoloading of the proced library on C-h f (Bug#1768).
8579
8580 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8581 Don't show defvars which have no second argument (Bug#8638).
8582
8583 * imenu.el (imenu-generic-expression): Move documentation here
8584 from imenu--generic-function.
8585 (imenu--generic-function): Refer to imenu-generic-expression.
8586
8587 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
8588
8589 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8590 indentation declaration.
8591 (viper-loop): Add indentation declaration (Bug#7025).
8592
8593 2012-08-05 Chong Yidong <cyd@gnu.org>
8594
8595 * help-fns.el (describe-variable): Add hyperlink for
8596 directory-local variables files. Improve buffer-local and
8597 permanent-local reporting; suggested by MON KEY (Bug#6644).
8598
8599 * help-mode.el (help-dir-local-var-def): New button type.
8600
8601 * files.el (kill-buffer-hook): Provide a defvar.
8602
8603 2012-08-05 Glenn Morris <rgm@gnu.org>
8604
8605 * eshell/esh-ext.el (eshell/addpath):
8606 Also update eshell-path-env. (Bug#12013)
8607
8608 2012-08-05 Chong Yidong <cyd@gnu.org>
8609
8610 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8611
8612 * fringe.el (fringe-styles): Add docstring.
8613 (fringe--check-mode): New function.
8614 (set-fringe-mode, set-fringe-style): Use it.
8615 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8616
8617 * files.el (set-auto-mode): Fix invalid setq call.
8618
8619 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8620
8621 * isearch.el: Misc simplification; use defstruct.
8622 (isearch-mode-map): Dense maps now work like sparse ones.
8623 (isearch--state): New defstruct.
8624 (isearch-string-state, isearch-message-state, isearch-point-state)
8625 (isearch-success-state, isearch-forward-state)
8626 (isearch-other-end-state, isearch-word-state, isearch-error-state)
8627 (isearch-wrapped-state, isearch-barrier-state)
8628 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8629 replaced by defstruct's accessors.
8630 (isearch--set-state): Rename from isearch-top-state and change
8631 calling convention.
8632 (isearch-push-state): Use new isearch--get-state.
8633 (isearch-toggle-word): Disable regexp when enabling word.
8634 (isearch-message-prefix): Remove unused arg _c-q-hack.
8635 (isearch-message-suffix): Remove unused arg _ellipsis.
8636
8637 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
8638
8639 * simple.el (list-processes--refresh): For a server use :host or
8640 :local as the address.
8641 (list-processes): Doc fix.
8642
8643 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
8644
8645 * lisp/mpc.el: Support password in host argument.
8646 (mpc--proc-connect): Parse and use new password element.
8647 Set mpc-proc variable instead of returning process.
8648 (mpc-proc): Adjust accordingly.
8649
8650 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8651
8652 * whitespace.el (whitespace-display-mappings): Use Unicode
8653 codepoints, instead of emacs-mule codepoints. See
8654 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8655 for the details.
8656
8657 * files.el (file-truename): Don't skip symlink-chasing part on
8658 windows-nt. Incorporate the resolution of 8+3 short aliases on
8659 Windows into the loop that recursively chases symlinks.
8660 Compare directory and its parent case-insensitively on MS-Windows and
8661 MS-DOS.
8662
8663 2012-08-03 Chong Yidong <cyd@gnu.org>
8664
8665 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8666
8667 * sort.el (sort-regexp-fields): Doc fix.
8668
8669 2012-08-03 Tassilo Horn <tsdh@gnu.org>
8670
8671 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8672 labels regex position point at the expected place.
8673
8674 2012-08-03 MON KEY <monkey@sandpframing.com>
8675
8676 * net/imap.el (imap-interactive-login, imap-authenticate)
8677 (imap-mailbox-lsub, imap-mailbox-list)
8678 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8679 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8680 (imap-parse-response): Doc fix.
8681
8682 2012-08-03 João Távora <joaotavora@gmail.com>
8683
8684 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8685 if sexp scanning does not move point (Bug#5734).
8686
8687 2012-08-02 Tassilo Horn <tsdh@gnu.org>
8688
8689 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8690 Add listings, minted, and ctable packages.
8691 (reftex-label-alist-builtin): Move listings, minted, and ctable
8692 entries before LaTeX.
8693 (reftex-label-alist): Docfix.
8694
8695 2012-08-02 Bastien Guerry <bzg@gnu.org>
8696
8697 * replace.el (occur): Fix docstring (bug#12122).
8698
8699 2012-08-02 Glenn Morris <rgm@gnu.org>
8700
8701 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
8702
8703 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8704
8705 Obsolete alias inactivate-current-input-method-function (Bug#10150).
8706 * international/mule-cmds.el: Create
8707 inactivate-current-input-method-function as an obsolete alias for
8708 deactivate-current-input-method-function. See Katsumi Yamaoka in
8709 <http://bugs.gnu.org/10150#46>.
8710
8711 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
8712
8713 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
8714 of nested `if's.
8715
8716 2012-08-01 Glenn Morris <rgm@gnu.org>
8717
8718 * progmodes/autoconf.el (autoconf-definition-regexp):
8719 Add AH_TEMPLATE, adjust submatch numbering.
8720 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
8721 (autoconf-current-defun-function): Update for above change.
8722 (autoconf-current-defun-function): First skip to end of current word.
8723
8724 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
8725
8726 * calendar/cal-html.el (cal-html-insert-agenda-days):
8727 Fix typo. (Bug#12018)
8728
8729 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8730
8731 Shell processes: enhancements to startup and CEDET compatibility.
8732 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
8733 (python-shell-make-comint): accept-process-output at startup.
8734 (run-python-internal): Set inferior-python-mode-hook to nil.
8735 (python-shell-internal-get-or-create-process): call sit-for.
8736 (python-preoutput-result): Add obsolete alias.
8737 (python-shell-internal-send-string): Use it.
8738 (python-shell-send-setup-code): Remove call to
8739 accept-process-output.
8740
8741 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
8742
8743 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
8744 (Bug#12108)
8745
8746 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
8747
8748 * calc-mode.el (calc-basic-simplification-mode): Rename from
8749 `calc-limited-simplification-mode'.
8750 (calc-alg-simplification-mode): New function.
8751 (calc-set-simplify-mode): Adjust message.
8752
8753 * calc.el (calc-set-mode-line): Adjust mode line display for
8754 basic simplification mode.
8755
8756 * calc-help.el (calc-m-prefix-help): Update help message.
8757
8758 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
8759 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
8760
8761 2012-07-31 Bastien Guerry <bzg@gnu.org>
8762
8763 * man.el (man): Fix comment. (bug#12101)
8764
8765 2012-07-31 Martin Rudalics <rudalics@gmx.at>
8766
8767 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
8768 Don't return a non-nil value when no suitable buffer was found.
8769
8770 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
8771
8772 * progmodes/python.el (run-python-internal): Disable font lock for
8773 internal shells.
8774
8775 2012-07-30 Stefan Merten <smerten@oekonux.de>
8776
8777 * textmodes/rst.el: Silence `checkdoc-ispell'.
8778 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8779 (rst-official-version, rst-official-cvs-rev)
8780 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
8781 (rst-mode-map): New key binding.
8782
8783 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8784
8785 Update .PHONY listings in makefiles.
8786 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
8787 autoloads, update-subdirs, updates, bzr-update, update-authors,
8788 compile-onefile, compile-calc, backup-compiled-files,
8789 compile-after-backup, compile-one-process, mh-autoloads,
8790 bootstrap-clean, distclean, maintainer-clean.
8791
8792 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
8793
8794 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
8795 (calc-set-mode-line): Don't display "AlgSimp ".
8796
8797 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
8798 (calc-lim-simplify-mode): New function.
8799 (calc-set-simplify-mode): Default to 'alg.
8800 (calc-default-simplify-mode): Make algebraic simplifications
8801 the default.
8802
8803 * calc/calc-ext.el (calc-init-extensions): Remove binding for
8804 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
8805
8806 * calc/calc-help.el (calc-m-prefix-help): Change messages to
8807 indicate new simplification modes.
8808
8809 * calc/README: Mention new default simplification mode.
8810
8811 * calc/calc.el (math-normalize-error): New variable.
8812 (math-normalize): Set `math-normalize-error' to t
8813 when there's an error.
8814
8815 * calc/calc-alg.el (math-simplify): Don't simplify when
8816 `math-normalize' returns an error.
8817
8818 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8819
8820 * international/mule-cmds.el (set-locale-environment): Revert last
8821 change, since display-graphic-p returns nil when this function is
8822 called during startup. Instead...
8823
8824 * term/w32console.el (terminal-init-w32console): ...setup the
8825 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
8826
8827 2012-07-29 Juri Linkov <juri@jurta.org>
8828
8829 * simple.el (goto-line): Don't display default line number in the
8830 prompt because it should be displayed by `read-number' (bug#9952).
8831 Add the current line number to the defaults of `goto-line' to
8832 allow its easier modification by users with `M-n' (bug#9201).
8833
8834 * subr.el (read-number): Support multiple default values like in
8835 other minibuffer reading functions. Replace `read' with
8836 `string-to-number' for consistency with `number-to-string'.
8837
8838 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8839
8840 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
8841 * emulation/viper-init.el (viper-deactivate-input-method-action):
8842 Rename from viper-inactivate-input-method-action.
8843 (viper-deactivate-input-method):
8844 Rename from viper-inactivate-input-method.
8845 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
8846 * international/mule-cmds.el (deactivate-input-method):
8847 Rename from inactivate-input-method.
8848 Also run input-method-deactivate-hook.
8849 (deactivate-current-input-method-function):
8850 Rename from inactivate-current-input-method-function.
8851 (input-method-deactivate-hook): New hook.
8852 (input-method-inactivate-hook): Mark obsolete.
8853 (inactivate-input-method): Mark obsolete.
8854
8855 * international/quail.el (quail-activate):
8856 Also run quail-deactivate-hook.
8857 (quail-deactivate): Rename from quail-inactivate.
8858 * international/robin.el (robin-activate):
8859 Also run robin-deactivate-hook.
8860 (robin-deactivate): Rename from robin-inactivate.
8861
8862 2012-07-29 Chong Yidong <cyd@gnu.org>
8863
8864 * simple.el (indicate-copied-region): New function.
8865 (kill-ring-save): Split off from here.
8866
8867 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
8868 (kill-rectangle): Set deactivate-mark to t on read-only error.
8869
8870 * register.el (copy-to-register, copy-rectangle-to-register):
8871 Deactivate the mark, and use indicate-copied-region (Bug#10056).
8872 (append-to-register, prepend-to-register): Call indicate-copied-region.
8873
8874 2012-07-29 Juri Linkov <juri@jurta.org>
8875
8876 * simple.el (async-shell-command-buffer): New defcustom.
8877 (shell-command): Use it. (Bug#4719)
8878
8879 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8880
8881 * international/mule-cmds.el (set-locale-environment): In a
8882 console session on MS-Windows, set up keyboard and terminal
8883 encoding from the OEM codepage, not the ANSI codepage.
8884 (Bug#12055)
8885
8886 2012-07-28 Chong Yidong <cyd@gnu.org>
8887
8888 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
8889 gdb-get-location.
8890
8891 2012-07-28 Leo Liu <sdl.web@gmail.com>
8892
8893 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
8894 the alist (bug#12029).
8895
8896 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8897
8898 * makefile.w32-in (custom-deps, finder-data, updates, compile)
8899 (compile-always, compile-first)
8900 ($(lisp)/calendar/cal-loaddefs.el)
8901 ($(lisp)/calendar/diary-loaddefs.el)
8902 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8903 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
8904 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
8905 instead of on update-subdirs.
8906 (bootstrap-clean): Delete $(lisp)/subdirs.el.
8907
8908 2012-07-28 Chong Yidong <cyd@gnu.org>
8909
8910 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
8911 directory if vc-deduce-backend returns nil (Bug#7350).
8912
8913 * simple.el (delete-trailing-lines): New option.
8914 (delete-trailing-whitespace): Obey it (Bug#11879).
8915
8916 2012-07-28 David Engster <deng@randomsample.de>
8917
8918 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
8919 Explanation of new 'symbol-qnames feature in doc-strings.
8920 (xml-maybe-do-ns): Return expanded names as plain symbols if
8921 'symbol-qnames was provided in XML-NS argument (Bug#11916).
8922 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
8923
8924 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8925
8926 Consistent completion in inferior python with emacs -nw.
8927 * progmodes/python.el (inferior-python-mode): replace "<tab>"
8928 binding in inferior-python-mode-map with "\t".
8929 (python-shell-completion-complete-at-point)
8930 (python-completion-complete-at-point): Remove interactive spec.
8931
8932 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8933
8934 * calc/calccomp.el (math-compose-expr): Undo previous change.
8935
8936 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
8937
8938 * progmodes/python.el (python-mode-map): Add keybinding for
8939 run-python.
8940 (python-shell-make-comint): Fix pop-to-buffer call.
8941 (run-python): Autoload. New arg SHOW.
8942 (python-shell-get-or-create-process): Do not pop python process
8943 buffer.
8944
8945 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8946
8947 * notifications.el (notifications-on-action-signal)
8948 (notifications-on-closed-signal): Use also the bus address for the map.
8949 (notifications-notify, notifications-close-notification)
8950 (notifications-get-capabilities): Add optional argument BUS.
8951
8952 2012-07-27 Tassilo Horn <tsdh@gnu.org>
8953
8954 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
8955 Add support for the lstlisting and minted environments, and for the
8956 ctable macro.
8957 * textmodes/reftex.el (reftex-compile-variables): Also recognize
8958 labels written in keyvals syntax.
8959
8960 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
8961
8962 * calc/calccomp.el (math-compose-expr): Use parentheses when
8963 there is a product in the denominator of a fraction.
8964
8965 2012-07-26 Eli Zaretskii <eliz@gnu.org>
8966
8967 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
8968 ($(lisp)/calendar/diary-loaddefs.el)
8969 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8970 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
8971 Fixes failures in parallel bootstrap because subdirs.el is being
8972 rewritten while the autoload files are built at the same time,
8973 which needs to load subdirs.el.
8974
8975 2012-07-26 Martin Rudalics <rudalics@gmx.at>
8976
8977 * mouse.el (popup-menu): Fix doc-string and re-indent code.
8978 (mouse-drag-line): Don't exit tracking when a switch-frame or
8979 switch-window event occurs (Bug#12006).
8980
8981 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8982
8983 * mouse.el (popup-menu): Fix last change.
8984
8985 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8986
8987 Autoload from Lisp with more care. Follow aliases when looking for
8988 function properties.
8989 * subr.el (autoloadp): New function.
8990 (symbol-file): Use it.
8991 (function-get): New function.
8992 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
8993 autoload-do-load.
8994 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
8995 (lisp-indent-function):
8996 * emacs-lisp/gv.el (gv-get):
8997 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
8998 * emacs-lisp/byte-opt.el (byte-optimize-form):
8999 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9000 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
9001 Use function-get.
9002 * emacs-lisp/cl.el: Don't propagate function properties any more.
9003
9004 * speedbar.el (speedbar-add-localized-speedbar-support):
9005 * emacs-lisp/disass.el (disassemble-internal):
9006 * desktop.el (desktop-load-file):
9007 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
9008 (describe-function-1):
9009 * emacs-lisp/find-func.el (find-function-noselect):
9010 * emacs-lisp/elp.el (elp-instrument-function):
9011 * emacs-lisp/advice.el (ad-has-proper-definition):
9012 * apropos.el (apropos-safe-documentation, apropos-macrop):
9013 * emacs-lisp/debug.el (debug-on-entry):
9014 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
9015 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9016 * calc/calc.el (name): Use autoloadp & autoload-do-load.
9017
9018 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
9019
9020 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
9021 function, not an obsolete variable (Bug#12046).
9022
9023 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
9024
9025 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
9026
9027 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
9028
9029 * emacs-lisp/pp.el (pp-display-expression): Select old selected
9030 window only if it is still live (Bug#12034).
9031
9032 2012-07-25 Martin Rudalics <rudalics@gmx.at>
9033
9034 * subr.el (redirect-frame-focus): Add advertised calling
9035 convention (Bug#12030).
9036
9037 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
9038
9039 Prefer typical American spelling for "acknowledgment".
9040 * vc/add-log.el (change-log-acknowledgment): Rename from
9041 change-log-acknowledgement, with an alias for the old name.
9042
9043 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
9044
9045 * calc-alg.el (math-simplify-divide): Don't cross multiply
9046 in an equation when the lhs is a variable.
9047
9048 2012-07-24 Julien Danjou <julien@danjou.info>
9049
9050 * net/netrc.el (netrc-find-service-number, netrc-store-data):
9051 Remove, unused.
9052
9053 2012-07-23 Eli Zaretskii <eliz@gnu.org>
9054
9055 * startup.el (command-line): Don't display an empty user name in
9056 the error message about non-existent home directory, when
9057 init-file-user was set to an empty string. See
9058 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
9059 for the details and context.
9060
9061 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
9062
9063 * ses.el (ses-cell-formula-aset): New macro.
9064 (ses-cell-references-aset): New macro.
9065 (ses-cell-p): New function.
9066 (ses-rename-cell): Do no longer rely on complex operations like
9067 ses-cell-set-formula or ses-set-cell to change the cell and handle
9068 the undo at the same time, but rather use lower level new macros
9069 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
9070 the undo directly. Refresh the mode line.
9071
9072 2012-07-21 Leo Liu <sdl.web@gmail.com>
9073
9074 * progmodes/cc-cmds.el (c-defun-name):
9075 Use match-string-no-properties instead for consistency.
9076
9077 2012-07-20 Leo Liu <sdl.web@gmail.com>
9078
9079 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
9080 (Bug#7879)
9081
9082 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
9083
9084 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
9085
9086 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
9087 * progmodes/bug-reference.el, misearch.el: Provide themselves
9088 (bug#11915).
9089
9090 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
9091 of narrowed buffer (bug#11966).
9092
9093 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
9094
9095 * ses.el (ses-rename-cell): Set new name also in reference list of
9096 cells of which the renamed cell depends.
9097
9098 2012-07-20 Masatake YAMATO <yamato@redhat.com>
9099
9100 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
9101 to check whether menu-bar is shown or not. If not shown,
9102 show the menu-bar as a popup menu instead of using tmm.
9103 * mouse.el (popup-menu): Accept `point' as `position' argument.
9104
9105 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
9106
9107 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
9108 up inside string symbol literal (bug#11923).
9109
9110 2012-07-20 Eli Zaretskii <eliz@gnu.org>
9111
9112 * startup.el (fancy-startup-text): Read the whole tutorial, not
9113 just its first 256 bytes. Prevents gibberish in display of the
9114 tutorial title.
9115
9116 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9117
9118 Drop idle buffer compaction due to an absence of the
9119 proved efficiency.
9120 * compact.el: Remove.
9121
9122 2012-07-19 Sam Steingold <sds@gnu.org>
9123
9124 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
9125 vc-bzr-pull & vc-bzr-merge-branch.
9126 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
9127 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
9128 for consistency with compilation-error-regexp-alist.
9129 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
9130 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
9131 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
9132 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
9133
9134 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9135
9136 * emacs-lisp/chart.el: Use lexical-binding.
9137 (chart-emacs-storage): Don't hardcode the list of entries.
9138
9139 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9140
9141 Next round of tweaks caused by Fgarbage_collect changes.
9142 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
9143
9144 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9145
9146 Compact buffers when idle.
9147 * compact.el: New file.
9148
9149 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9150
9151 * subr.el (eventp): Presume that if it looks vaguely like an event,
9152 it's an event (bug#10190).
9153
9154 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
9155
9156 Enhancements to ppss related code (thanks Stefan).
9157 * progmodes/python.el (python-indent-context)
9158 (python-indent-calculate-indentation, python-indent-dedent-line)
9159 (python-indent-electric-colon, python-nav-forward-block)
9160 (python-mode-abbrev-table)
9161 (python-info-assignment-continuation-line-p): Simplify checks
9162 for ppss context.
9163 (python-info-continuation-line-p): Cleanup.
9164 (python-info-ppss-context): Do not catch 'quote.
9165 (python-info-ppss-context-type)
9166 (python-info-ppss-comment-or-string-p): Simplify.
9167
9168 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
9169
9170 * progmodes/python.el: Enhancements to eldoc support.
9171 (python-info-current-symbol): New function.
9172 (python-eldoc-at-point): Use python-info-current-symbol.
9173 (python-info-current-defun): Fix cornercase on first defun scan.
9174 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9175 and signal error when no inferior python process is available.
9176
9177 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
9178
9179 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9180 assume it's always t.
9181 (vc-git-registered): Remove caching, the function is only called
9182 once.
9183 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9184
9185 2012-07-18 Chong Yidong <cyd@gnu.org>
9186
9187 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9188
9189 * simple.el (count-words): Report on narrowing (Bug#9959).
9190
9191 * bindings.el: Bind M-= to count-words.
9192
9193 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9194
9195 2012-07-18 Masatake YAMATO <yamato@redhat.com>
9196
9197 * progmodes/sh-script.el (sh-imenu-generic-expression):
9198 Capture a function with `function' keyword and without parentheses
9199 like "function FOO" (bug#11856).
9200
9201 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
9202
9203 * window.el (split-window-sensibly): Make WINDOW argument
9204 optional.
9205
9206 2012-07-18 Chong Yidong <cyd@gnu.org>
9207
9208 * subr.el (keyboard-translate): Doc fix (Bug#7261).
9209
9210 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9211 and make C-x 8 RET exit isearch (Bug#11439).
9212
9213 * international/iso-transl.el: Move isearch-mode-map key
9214 definitions to isearch.el.
9215
9216 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9217
9218 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9219 (eieio-defclass): Use gv-define-setter when possible.
9220
9221 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9222
9223 Reflect recent changes in Fgarbage_collect.
9224 * emacs-lisp/chart.el (chart-emacs-storage): Change to
9225 reflect new format of data returned by Fgarbage_collect.
9226
9227 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9228
9229 New utility functions + python-info-ppss-context fix (Bug#11910).
9230 * progmodes/python.el (python-info-beginning-of-block-statement-p)
9231 (python-info-ppss-comment-or-string-p): New functions.
9232 (python-info-ppss-context): Small fix for string check.
9233
9234 2012-07-17 Juri Linkov <juri@jurta.org>
9235
9236 * dired-aux.el (dired-do-async-shell-command): Doc fix.
9237 (dired-do-async-shell-command): Don't add `*' at the end of the
9238 command (Bug#11815).
9239 (dired-do-shell-command): Doc fix.
9240 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9241 Join the individual commands using either "&" or ";" as the
9242 separator depending on the values of these trailing characters.
9243 At the end re-add the trailing "&". (Bug#10598)
9244
9245 * simple.el (async-shell-command): Sync the interactive spec with
9246 `shell-command'. Doc fix.
9247 (shell-command): Doc fix.
9248
9249 2012-07-17 Juri Linkov <juri@jurta.org>
9250
9251 * descr-text.el (describe-char): Fix format args. (Bug#10129)
9252
9253 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9254
9255 Final renames and doc fixes for movement commands (bug#11899).
9256 * progmodes/python.el (python-nav-beginning-of-statement):
9257 Rename from python-nav-statement-start.
9258 (python-nav-end-of-statement): Rename from
9259 python-nav-statement-end.
9260 (python-nav-beginning-of-block): Rename from
9261 python-nav-block-start.
9262 (python-nav-end-of-block): Rename from python-nav-block-end.
9263
9264 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
9265
9266 * progmodes/python.el (python-shell-send-string-no-output):
9267 Allow accept-process-output to quit, keeping shell process ready for
9268 future interactions (Bug#11868).
9269
9270 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9271
9272 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9273
9274 * emacs-lisp/elint.el (elint-find-args-in-code):
9275 Use help-function-arglist, so as to handle lexical byte-code.
9276
9277 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9278 change (bug#11826).
9279
9280 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
9281
9282 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9283 Avoid spuriously marking the buffer as modified because of c-is-sws.
9284
9285 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9286 as not-a-comment (bug#11946).
9287
9288 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9289 for uninterned vars.
9290
9291 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9292 Use read-event since we don't really want to read chars but bytes.
9293
9294 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9295 $$..$$ but also $..$ using regexps (bug#11953).
9296 Use tex-verbatim for \url and \path.
9297 (tex-font-lock-keywords): Define as defconst like the others.
9298 (tex-common-initialization): Don't use font-lock-syntax-table any more.
9299
9300 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9301
9302 * international/mule-cmds.el (ucs-insert): Make it an obsolete
9303 alias for insert-char.
9304
9305 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9306
9307 * progmodes/python.el: Simplified imenu implementation.
9308 (python-nav-jump-to-defun): Remove command.
9309 (python-mode-map): Use `imenu' instead.
9310 (python-nav-list-defun-positions-cache)
9311 (python-imenu-include-defun-type, python-imenu-make-tree)
9312 (python-imenu-subtree-root-label, python-imenu-index-alist):
9313 Remove vars.
9314 (python-nav-list-defun-positions, python-nav-read-defun)
9315 (python-imenu-tree-assoc, python-imenu-make-element-tree)
9316 (python-imenu-make-tree, python-imenu-create-index):
9317 Remove functions.
9318 (python-mode): Update to interact with imenu by setting
9319 `imenu-extract-index-name-function' only.
9320
9321 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
9322
9323 * progmodes/python.el: Enhancements to navigation commands.
9324 (python-nav-backward-sentence)
9325 (python-nav-forward-sentence): Remove.
9326 (python-nav-backward-statement, python-nav-forward-statement)
9327 (python-nav-statement-start, python-nav-statement-end)
9328 (python-nav-backward-block, python-nav-forward-block)
9329 (python-nav-block-start, python-nav-block-end)
9330 (python-nav-forward-sexp-function)
9331 (python-info-current-line-comment-p)
9332 (python-info-current-line-empty-p): New functions.
9333 (python-indent-context): Use `python-nav-statement-start'.
9334
9335 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
9336
9337 * eshell/em-ls.el (eshell/ls): Use `apply'.
9338
9339 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9340 multi-hops, instead of Tramp internals.
9341
9342 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9343
9344 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9345 when F1 and F2 are located on different hosts.
9346
9347 2012-07-14 Chong Yidong <cyd@gnu.org>
9348
9349 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9350 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9351 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9352 (xterm-mouse--read-event-sequence-1000)
9353 (xterm-mouse--read-event-sequence-1006): New functions. For old
9354 mouse protocol, handle M-mouse-X events correctly.
9355 (xterm-mouse-event): New arg specifying mouse protocol.
9356 (turn-on-xterm-mouse-tracking-on-terminal)
9357 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9358 sequence to toggle extended coordinates on newer XTerms.
9359 This appears to be harmless on terminals which do not support this.
9360
9361 2012-07-14 Leo Liu <sdl.web@gmail.com>
9362
9363 Add fringe bitmap indicators for flymake. (Bug#11253)
9364 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9365 (flymake-make-overlay): New arg BITMAP.
9366 (flymake-error-bitmap, flymake-warning-bitmap)
9367 (flymake-fringe-indicator-position): New user variables.
9368
9369 * fringe.el: New bitmap exclamation-mark.
9370
9371 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
9372
9373 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9374 also (Bug#7879).
9375
9376 2012-07-14 Chong Yidong <cyd@gnu.org>
9377
9378 * electric.el (electric-pair-post-self-insert-function): Fix pair
9379 insertion in empty-region case (Bug#11520).
9380
9381 2012-07-14 Chong Yidong <cyd@gnu.org>
9382
9383 * bindings.el: Consolidate ctl-x-r-map bindings.
9384 Bind copy-rectangle-as-kill to C-x r w.
9385
9386 * rect.el, register.el: Move bindings to bindings.el.
9387
9388 2012-07-14 Reuben Thomas <rrt@sc3d.org>
9389
9390 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9391
9392 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
9393
9394 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
9395
9396 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9397
9398 * bindings.el (top): Use `mapc' instead of `mapcar'.
9399
9400 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9401
9402 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
9403
9404 * progmodes/sql.el (sql-comint): Suppress the check for program on
9405 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
9406 (Bug#11908)
9407
9408 2012-07-13 Chong Yidong <cyd@gnu.org>
9409
9410 * bindings.el: Assign a non-nil permanent-local property to
9411 per-buffer variables which lack a default value (Bug#11930).
9412
9413 * help-fns.el (describe-variable): In the "automatically becomes
9414 local" notice, take note of permanent-local variables.
9415
9416 2012-07-13 Chong Yidong <cyd@gnu.org>
9417
9418 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
9419 to allow printing the message when called from Lisp.
9420
9421 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9422 Remove toggle-read-only.
9423
9424 * bs.el (bs-toggle-readonly):
9425 * buff-menu.el (Buffer-menu-toggle-read-only):
9426 Remove with-no-warnings around toggle-read-only.
9427
9428 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9429 Remove with-no-warnings around toggle-read-only.
9430 (ffap-read-only, ffap-read-only-other-window)
9431 (ffap-read-only-other-frame): Callers changed.
9432
9433 * help-mode.el: Don't require view package.
9434 (help-mode-finish): Set buffer-read-only instead of calling
9435 toggle-read-only.
9436
9437 * bindings.el (mode-line-toggle-read-only):
9438 * dired.el (dired-toggle-read-only):
9439 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9440 with non-nil second arg.
9441
9442 * emacs-lisp/eieio-custom.el (eieio-customize-object):
9443 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9444 directly.
9445
9446 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9447
9448 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9449 not incf.
9450
9451 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9452
9453 More CL cleanups and reduction of use of cl.el.
9454 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9455 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9456 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9457 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9458 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9459 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9460 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9461 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9462 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9463 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9464 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9465 * eshell/em-cmpl.el, eshell/em-banner.el:
9466 * calendar/parse-time.el: Use cl-lib.
9467 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9468 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9469 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9470 * term/ns-win.el, term.el, shell.el, ps-samp.el:
9471 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9472 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9473 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9474 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9475 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9476 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9477 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9478 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9479 `lambda' rather than with `quote'.
9480 (eshell-do-opt): Adjust accordingly.
9481 (eshell-process-option): Simplify.
9482 * eshell/esh-var.el:
9483 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9484 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9485 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9486 to `pcase--dontcare'.
9487 * emacs-lisp/cl.el (labels): Mark obsolete.
9488 (cl--letf, letf): Move to cl-lib.
9489 (cl--letf*, letf*): Remove.
9490 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9491 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9492 (cl-progv): Rewrite.
9493 (cl--letf, cl-letf): Move from cl.el.
9494 (cl-letf*): New macro.
9495 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9496
9497 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
9498
9499 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9500
9501 2012-07-11 Chong Yidong <cyd@gnu.org>
9502
9503 * vc/log-edit.el (log-edit-vc-backend): New variable.
9504 (log-edit): Doc fix.
9505
9506 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
9507 argument of log-edit to set up all local variables.
9508 (vc-start-logentry): New optional arg specifying VC backend.
9509
9510 * vc/vc.el (vc-checkin): Use it.
9511 (vc-deduce-fileset): Handle Log Edit buffers.
9512 (vc-diff): Make first argument optional too.
9513
9514 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9515
9516 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
9517
9518 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9519 command, just in case. The function is not needed anymore.
9520 (eshell-external-command): Do not call `eshell-remote-command'.
9521
9522 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
9523
9524 Reduce use of (require 'cl).
9525 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9526 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9527 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9528 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9529 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9530 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9531 * battery.el, avoid.el, abbrev.el: Use cl-lib.
9532 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9533 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9534 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9535 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9536 * calculator.el, autorevert.el, apropos.el: Don't require CL.
9537 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9538 (byte-compile-unfold-bcf, byte-compile-check-variable):
9539 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9540 (byte-compile-nilconstp):
9541 * emacs-lisp/autoload.el (make-autoload): Use pcase.
9542 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9543
9544 * emacs-lisp/gv.el (cond): Make it a valid place.
9545 (if): Simplify slightly.
9546
9547 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9548 (pcase--self-quoting-p): New function.
9549 (pcase--u1): Use it.
9550
9551 2012-07-10 Glenn Morris <rgm@gnu.org>
9552
9553 * emacs-lisp/authors.el (authors-fixed-entries):
9554 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9555
9556 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9557
9558 Rename configure.in to configure.ac (Bug#11603).
9559 * emacs-lisp/authors.el (authors-canonical-file-name):
9560 * progmodes/autoconf.el (autoconf-mode):
9561 Prefer configure.ac to configure.in.
9562
9563 2012-07-08 Chong Yidong <cyd@gnu.org>
9564
9565 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9566 Implement the mouse-1-click-follows-link handling properly.
9567
9568 * info.el (Info-link-keymap): Use follow-link mechanism for
9569 header-line links (Bug#374).
9570
9571 * simple.el (deactivate-mark): Do not set the primary selection
9572 if another program has acquired it (Bug#11772).
9573
9574 2012-07-07 Kevin Ryde <user42@zip.com.au>
9575
9576 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9577 (woman-decode-region): Replace escaped-escapes without destroying
9578 bold or underline (Bug#11552).
9579 (woman2-process-escapes): Handle nofill regions (Bug#11591).
9580
9581 2012-07-07 Chong Yidong <cyd@gnu.org>
9582
9583 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9584 (interprogram-cut-function, interprogram-paste-function):
9585 Mention that we typically mean the clipboard.
9586
9587 2012-07-06 Glenn Morris <rgm@gnu.org>
9588
9589 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
9590
9591 * files.el (toggle-read-only): Restrict message to interactive use.
9592
9593 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
9594
9595 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9596
9597 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9598
9599 2012-07-06 Glenn Morris <rgm@gnu.org>
9600
9601 * Makefile.in (compile-one-process): Rename from "recompile".
9602
9603 * Makefile.in (bzr-update): "compile" is the same as "recompile
9604 autoloads", but parallelizable, so use that instead.
9605
9606 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
9607
9608 * window.el (quit-window): Always restore window height when
9609 it's saved in quit-restore parameter (Bug#11810).
9610
9611 2012-07-06 Glenn Morris <rgm@gnu.org>
9612
9613 * simple.el (kill-whole-line): Doc tweak.
9614
9615 2012-07-06 Eli Zaretskii <eliz@gnu.org>
9616
9617 * files.el (file-relative-name): Compare file names
9618 case-insensitively if on MS-Windows or MS-DOS, or if
9619 read-file-name-completion-ignore-case is non-nil. Don't use
9620 case-fold-search for this purpose. (Bug#11827)
9621
9622 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9623
9624 * calendar/cal-dst.el (calendar-current-time-zone):
9625 Return calendar-current-time-zone-cache if non-nil.
9626
9627 2012-07-17 Masatake YAMATO <yamato@redhat.com>
9628 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9629
9630 * calendar/cal-dst.el (calendar-current-time-zone):
9631 Return calendar-current-time-zone-cache if non-nil.
9632
9633 2012-07-06 Glenn Morris <rgm@gnu.org>
9634
9635 * Makefile.in (cvs-update): Remove old alias.
9636
9637 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
9638
9639 Sync with Tramp 2.2.6-pre.
9640
9641 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9642 compatible declaration.
9643
9644 * net/tramp-cmds.el (tramp-append-tramp-buffers):
9645 Protect `list-load-path-shadows' call.
9646
9647 * net/tramp-compat.el (top): Require packages, which aren't
9648 autoloaded anymore for XEmacs. Protect call of
9649 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9650 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
9651 it hurts at least for SXEmacs.
9652 (tramp-compat-temporary-file-directory): In XEmacs, there is no
9653 standard-value for `temporary-file-directory'.
9654
9655 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9656 Redirect stderr to /dev/null.
9657 (tramp-sh-handle-write-region): uid and gid can be floats.
9658 Reported by Russell Sim <russell.sim@gmail.com>.
9659 (tramp-sh-handle-vc-registered): Hide errors.
9660 (tramp-vc-file-name-handler): Use dummy results for `process-file'
9661 and `start-file-process'.
9662 (tramp-maybe-open-connection): Check also whether `non-essential'
9663 is bound.
9664
9665 2012-07-04 Chong Yidong <cyd@gnu.org>
9666
9667 * xml.el (xml--parse-buffer): Use xml-syntax-table.
9668 (xml-parse-tag): Likewise, and avoid changing entity tables.
9669 (xml-syntax-table): Define from scratch, making sure not to give
9670 x2000 and other Unicode spaces whitespace syntax, since those are
9671 not spaces in XML.
9672 (xml-parse-fragment): Delete unused function.
9673 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9674 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9675 (xml-entity-ref, xml-pe-reference-re)
9676 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9677 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9678 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9679 (xml-entity-value-re): Use syntax references in regexps where
9680 possible; no need to define inside a let-binding.
9681 (xml-parse-dtd): Use xml-pe-reference-re.
9682 (xml-entity-or-char-ref-re): New defconst.
9683 (xml-parse-string, xml-substitute-special): Use it.
9684
9685 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9686
9687 * files.el (locate-dominating-file): Allow `name' to be a predicate.
9688 (find-file--read-only): New function.
9689 (find-file-read-only, find-file-read-only-other-window)
9690 (find-file-read-only-other-frame): Use it.
9691 (insert-file-contents-literally): Don't `fset'.
9692 (get-free-disk-space): Use locate-dominating-file.
9693
9694 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
9695 function is already compiled.
9696
9697 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
9698
9699 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
9700
9701 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
9702 files on the same host.
9703
9704 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
9705
9706 * help-fns.el (describe-function-1): Only call
9707 help-fns--autoloaded-p when we have a file name. (Bug#11848)
9708
9709 2012-07-03 Chong Yidong <cyd@gnu.org>
9710
9711 * xml.el: Protect parser against XML bombs.
9712 (xml-entity-expansion-limit): New variable.
9713 (xml-parse-string, xml-substitute-special): Use it.
9714 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
9715
9716 2012-07-03 Glenn Morris <rgm@gnu.org>
9717
9718 * progmodes/bug-reference.el (bug-reference-bug-regexp):
9719 Allow linking to specific messages in debbugs reports (eg 123#5).
9720
9721 2012-07-02 Chong Yidong <cyd@gnu.org>
9722
9723 * xml.el: Fix entity and character reference expansion, allowing
9724 them to expand into markup as per XML spec.
9725 (xml-default-ns): New variable.
9726 (xml-entity-alist): Use XML spec definitions for lt and amp.
9727 (xml-parse-region): Make first two arguments optional.
9728 Discard text properties.
9729 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
9730 All callers changed.
9731 (xml-parse-tag): Call xml-parse-tag-1. For backward
9732 compatibility, this function should not modify buffer contents.
9733 (xml-parse-tag-1): Fix opening-tag regexp.
9734 (xml-parse-string): Rewrite, handling entity and character
9735 references properly.
9736 (xml--entity-replacement-text): Signal an error if a parameter
9737 entity is undefined.
9738
9739 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9740
9741 * comint.el (comint-output-filter): Filter out repeated prompts.
9742
9743 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
9744 and file-name-absolute-p.
9745 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
9746 internal calls.
9747
9748 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
9749
9750 Spelling fixes.
9751 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
9752 Rename from byte-compile--refiy-function. All uses changed.
9753
9754 2012-07-01 Chong Yidong <cyd@gnu.org>
9755
9756 * xml.el (xml--parse-buffer): New function. Move most of
9757 xml-parse-region here.
9758 (xml-parse-region): Copy region into a temporary buffer, since
9759 parameter entity substitution requires changing buffer contents.
9760 Use xml--parse-buffer.
9761 (xml-parse-file): Use xml--parse-buffer.
9762 (xml-parse-dtd): Make parameter entity substitution work right.
9763 Use proper regexps for ELEMENT declarations (Bug#7172).
9764
9765 2012-06-30 Glenn Morris <rgm@gnu.org>
9766
9767 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
9768
9769 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
9770 Remove outdated and unnecessary dbus declarations.
9771
9772 2012-06-30 Eli Zaretskii <eliz@gnu.org>
9773
9774 * emacs-lisp/timer.el (timer-until): Subtract results of
9775 float-time, instead of taking float-time of the result of
9776 time-subtract, since float-time signals an error for negative time
9777 arguments.
9778
9779 2012-06-30 Chong Yidong <cyd@gnu.org>
9780
9781 * xml.el (xml-*-re): Convert defvars into defconsts, and
9782 eval-and-compile them so eval-and-compile works on derivatives.
9783 (xml--entity-replacement-text): Use eval-and-comple.
9784
9785 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
9786
9787 * vc/vc-git.el (vc-git-registered): Use cache property
9788 `git-registered'.
9789 (vc-git-mode-line-string): Call `vc-working-revision' instead of
9790 `vc-git-working-revision' in order to benefit from the cache.
9791 (vc-git-root): Use cache property `git-root'. (Bug#11757)
9792
9793 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
9794
9795 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
9796 removed (likely outside Emacs). (Bug#11757)
9797
9798 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9799
9800 * emacs-lisp/cl-lib.el: Require macroexp.
9801
9802 2012-06-30 Chong Yidong <cyd@gnu.org>
9803
9804 * xml.el: Implement XML parameter entities.
9805 (xml-parameter-entity-alist): New variable.
9806 (xml-parse-region, xml-parse-fragment): Preserve previous values
9807 of xml-entity-alist and xml-parameter-entity-alist, so that
9808 repeated calls on different documents do not change them.
9809 (xml-parse-tag): Fix doctype regexp.
9810 (xml--entity-replacement-text): New function.
9811 (xml-parse-dtd): Use it. Don't handle system entities; doing that
9812 properly requires url retrieval which is unimplemented.
9813 (xml-escape-string): Doc fix.
9814
9815 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
9816
9817 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
9818
9819 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
9820
9821 * fringe.el (fringe-mode): Doc fix.
9822
9823 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
9824
9825 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
9826 is non-nil.
9827 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
9828 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
9829
9830 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
9831
9832 * calendar/cal-dst.el (calendar-current-time-zone):
9833 Return calendar-current-time-zone-cache if non-nil.
9834
9835 2012-06-29 Masatake YAMATO <yamato@redhat.com>
9836
9837 * progmodes/which-func.el (which-func-format):
9838 Add mouse-face. (Bug#11698)
9839
9840 2012-06-29 Leo Liu <sdl.web@gmail.com>
9841
9842 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
9843
9844 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9845
9846 * minibuffer.el (minibuffer-confirm-exit-commands):
9847 Add completion-at-point (bug#11725).
9848
9849 2012-06-29 Glenn Morris <rgm@gnu.org>
9850
9851 * progmodes/f90.el (f90-font-lock-keywords-2):
9852 Add some preprocessor elements. (Bug#10499)
9853
9854 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
9855
9856 * progmodes/cperl-mode.el (cperl-update-syntaxification):
9857 Use syntax-propertize (bug#11739).
9858
9859 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
9860
9861 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
9862
9863 2012-06-28 Julien Danjou <julien@danjou.info>
9864
9865 * term.el (term-handle-colors-array): Use a set of new faces to
9866 color the terminal. Also uses :inverse-video property.
9867 (term-default-fg-color): Set to nil by default, deprecate in favor
9868 of `term-face'.
9869 (term-default-bg-color): Set to nil by default, deprecate in favor
9870 of `term-face'.
9871 (term-current-face): Use `term-face' by default.
9872 (term-bold-attribute): Variable deleted.
9873
9874 2012-06-28 Glenn Morris <rgm@gnu.org>
9875
9876 * simple.el (completion-list-mode-finish):
9877 Don't use toggle-read-only. (Since completion-list-mode has
9878 a special mode-class, it wasn't doing anything extra anyway.)
9879
9880 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
9881
9882 Make inlining of other-mode interpreted functions work (bug#11799).
9883 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
9884 (byte-compile): Use it to fix compilation of lexical-binding closures.
9885 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
9886 function, if needed.
9887
9888 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9889
9890 * help-mode.el (help-make-xrefs): Don't just withstand
9891 cyclic-variable-indirection but any error in documentation-property.
9892
9893 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
9894 memory use.
9895 * bindings.el (bindings--define-key): New function.
9896 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
9897 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
9898 * bindings.el: Use it to purecopy define-key bindings.
9899
9900 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
9901
9902 * emacs-lisp/cl.el (flet): Mark obsolete.
9903 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
9904 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
9905 * progmodes/js.el (js-c-fill-paragraph):
9906 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
9907 (ebrowse-switch-member-buffer-to-derived-class):
9908 * play/5x5.el (5x5-solver): Use cl-flet.
9909
9910 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
9911 (cl--symbol-function): New macro.
9912 (cl--letf, cl--letf*): Use it.
9913
9914 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
9915 Strip "toggle-" if any.
9916
9917 2012-06-27 Glenn Morris <rgm@gnu.org>
9918
9919 * info.el (Info-default-directory-list): Move here from paths.el.
9920 * paths.el: Remove file, which is now empty.
9921 * loadup.el: No longer load "paths".
9922
9923 * custom.el (custom-initialize-delay): Doc fix.
9924
9925 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9926 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
9927 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
9928 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
9929 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
9930 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
9931 * eshell/eshell.el (eshell-defgroup): Remove alias.
9932
9933 2012-06-27 Chong Yidong <cyd@gnu.org>
9934
9935 * help.el (help-enable-auto-load): New variable.
9936
9937 * help-fns.el (help-fns--autoloaded-p): New function.
9938 (describe-function-1): Refer to a function as "autoloaded" if it
9939 was autoloaded at any time in the past. Perform autoloading if
9940 help-enable-auto-load is non-nil.
9941
9942 2012-06-26 Eli Zaretskii <eliz@gnu.org>
9943
9944 * makefile.w32-in (compile, compile-always): Depend on
9945 update-subdirs, not on subdirs.el. Otherwise, several different
9946 sub-targets of 'bootstrap' running in parallel could
9947 simultaneously write to subdirs.el, producing a garbled file.
9948
9949 2012-06-26 Sam Steingold <sds@gnu.org>
9950
9951 * files.el (file-name-base): New convenience function.
9952 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
9953 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
9954 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
9955 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
9956 * textmodes/ispell.el, textmodes/reftex-ref.el:
9957 * textmodes/tex-mode.el: Use it.
9958 Did not touch cedet and org because they are maintained elsewhere.
9959
9960 2012-06-26 Martin Rudalics <rudalics@gmx.at>
9961
9962 * calendar/calendar.el (calendar-exit): Don't try to delete or
9963 iconify last frame. See:
9964 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
9965
9966 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
9967
9968 * server.el (server-process-filter): Remember dir in the
9969 process's `server-client-directory' properties.
9970
9971 2012-06-24 Chong Yidong <cyd@gnu.org>
9972
9973 * xml.el (xml-parse-tag): Correctly handle comment embedded in
9974 non-tag text.
9975
9976 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
9977
9978 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
9979
9980 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9981
9982 * help-fns.el (describe-variable): Don't croak when doc is not found.
9983 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
9984 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
9985 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
9986 * emacs-lisp/smie.el (smie-next-sexp): CSE.
9987 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
9988 ((lambda ..) ..).
9989 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
9990
9991 2012-06-23 Chong Yidong <cyd@gnu.org>
9992
9993 * info.el (Info-mouse-follow-link): Accept symbol values of
9994 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
9995 (Info-fontify-node): Use Info-link-keymap for all navigation
9996 buttons, with link-args property to perform the desired action.
9997 (Info-link-keymap): Doc fix.
9998 (Info-next-link-keymap, Info-prev-link-keymap)
9999 (Info-up-link-keymap): Delete now-unused keymaps.
10000
10001 2012-06-23 Chong Yidong <cyd@gnu.org>
10002
10003 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
10004
10005 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
10006 system abbrevs.
10007
10008 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
10009
10010 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10011
10012 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
10013 (bug#11719).
10014
10015 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
10016 the requote function doesn't work properly (bug#11714).
10017
10018 2012-06-23 Glenn Morris <rgm@gnu.org>
10019
10020 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
10021
10022 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10023
10024 Further GV/CL cleanups.
10025 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
10026 gv-expander.
10027 (gv--defun-declaration): New function.
10028 (defun-declarations-alist): Use it.
10029 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
10030 (gv-place): Autoload.
10031 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
10032 original definition of dotimes and dolist.
10033 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
10034 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
10035 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
10036 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10037 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
10038 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
10039 to the function's definition.
10040 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
10041 * window.el:
10042 * files.el:
10043 * faces.el:
10044 * env.el: Don't use CL.
10045
10046 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10047
10048 Support higher-resolution time stamps (Bug#9000).
10049
10050 * calendar/time-date.el (with-decoded-time-value): New arg
10051 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
10052 (encode-time-value): New optional arg PICO. New type 3.
10053 (time-to-seconds) [!float-time]: Support the new picoseconds
10054 component if it's used.
10055 (seconds-to-time, time-subtract, time-add):
10056 Support ps-resolution time stamps as well.
10057
10058 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
10059 (timerp): Timer vectors now have length 9, not 8.
10060 (timer--time): Support new-style (4-part) time stamps.
10061 (timer-next-integral-multiple-of-time): Time stamps now have
10062 picosecond resolution, so take a bit more care about rounding.
10063 (timer-relative-time, timer-inc-time): New optional arg psecs.
10064 (timer-set-time-with-usecs): Set psecs to 0.
10065 (timer--activate): Check psecs component, too.
10066
10067 * proced.el (proced-time-lessp): Support ps-resolution stamps.
10068
10069 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10070
10071 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
10072 Move the non-essential binding to the post/pre-command-hook where it is
10073 more obviously correct.
10074
10075 * subr.el (read-passwd): Don't use a history at all.
10076 * savehist.el (savehist-save): Remove password saved accidentally
10077 because of the above bug.
10078
10079 2012-06-22 Bastien Guerry <bzg@gnu.org>
10080
10081 * files.el (toggle-read-only): Display a message telling whether
10082 the buffer is read-only or not (bug#11726).
10083
10084 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
10085
10086 * emacs-lisp/gv.el: New file.
10087 * subr.el (push, pop): Extend to generalized variables.
10088 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
10089 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
10090 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
10091 gv-define-simple-setter, and gv-define-expander.
10092 Remove setf-methods defined in gv. Rename cl-setf -> setf.
10093 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
10094 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
10095 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
10096 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
10097 gv-letplace.
10098 (cl-defstruct): Don't define setf-method any more.
10099 * emacs-lisp/cl.el (flet): Don't autoload.
10100 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
10101 (define-setf-expander, defsetf, define-modify-macro)
10102 (cl-struct-setf-expander): Move from cl-lib.el.
10103 * emacs-lisp/syntax.el:
10104 * emacs-lisp/ewoc.el:
10105 * emacs-lisp/smie.el:
10106 * emacs-lisp/cconv.el:
10107 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
10108 (timer--time): Use gv-define-simple-setter.
10109 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
10110 to avoid coding-system problems in subr.el. Adjust all users.
10111 (macroexp--maxsize, macroexp-small-p): New functions.
10112 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
10113 * scroll-bar.el (scroll-bar-mode):
10114 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
10115 (normal-erase-is-backspace-mode): Don't use the `eq' place.
10116 * winner.el (winner-configuration, winner-make-point-alist)
10117 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
10118 * files.el (locate-file-completion-table): Avoid list*.
10119
10120 2012-06-22 Chong Yidong <cyd@gnu.org>
10121
10122 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
10123 (dired-create-files): Doc fix (Bug#11329).
10124 (dired-do-copy): Doc fix (Bug#11334).
10125 (dired-mark-read-string): Doc fix (Bug#11553).
10126
10127 * dired.el (dired-recursive-copies, dired-recursive-deletes):
10128 Doc fix (Bug#11326).
10129 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
10130 (dired-dwim-target): Doc fix.
10131
10132 * wdired.el (wdired-mode): Doc fix.
10133
10134 2012-06-22 Glenn Morris <rgm@gnu.org>
10135
10136 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
10137 (pcmpl-rpm-cache-stamp-file): New constant.
10138 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
10139 (pcmpl-rpm-packages): Optionally cache list of packages.
10140
10141 * pcmpl-rpm.el (pcmpl-rpm): New group.
10142 (pcmpl-rpm-query-options): New option.
10143 (pcmpl-rpm-packages): No need to inline it.
10144 Use pcmpl-rpm-query-options.
10145
10146 * calendar/calendar.el (calendar-in-read-only-buffer):
10147 Avoid some needless mode changes.
10148
10149 2012-06-21 Chong Yidong <cyd@gnu.org>
10150
10151 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
10152 (desktop-path): Remove . from the default value (Bug#10977).
10153 (desktop-read): Use user-emacs-directory if desktop-path is nil.
10154
10155 2012-06-20 Chong Yidong <cyd@gnu.org>
10156
10157 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
10158
10159 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
10160
10161 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
10162 (bug#11201).
10163
10164 2012-06-20 Chong Yidong <cyd@gnu.org>
10165
10166 * term.el (term-window-width): Handle the case of a missing right
10167 fringe (Bug#8837).
10168 (term-check-size): Use window-text-height (Bug#5445).
10169 (term-mode): Use define-derived-mode. Minor cleanups.
10170 Set font-lock-defaults (Bug#7692).
10171 (term-move-columns, term-insert-char, term-emulate-terminal)
10172 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10173
10174 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
10175
10176 * net/ange-ftp.el (ange-ftp-get-passwd):
10177 Bind `enable-recursive-minibuffers'.
10178 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10179
10180 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
10181
10182 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10183
10184 2012-06-19 Glenn Morris <rgm@gnu.org>
10185
10186 * progmodes/python.el (python-mode): Derive from prog-mode.
10187
10188 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
10189
10190 * emulation/edt.el (edt-default-menu-bar-update-buffers)
10191 (edt-user-menu-bar-update-buffers): New functions.
10192 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10193
10194 2012-06-19 Chong Yidong <cyd@gnu.org>
10195
10196 * subr.el (with-selected-window): Preserve the selected window's
10197 terminal's top-frame (Bug#4702).
10198
10199 * window.el (save-selected-window): Likewise.
10200
10201 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10202
10203 * progmodes/python.el (python-rx-constituents): Move backquote.
10204 (python-skeleton-define, python-define-auxiliary-skeleton):
10205 Use `declare'.
10206
10207 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
10208
10209 * minibuffer.el (read-file-name-default): Revert the patch from
10210 2012-06-17.
10211
10212 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10213
10214 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10215 (pcase--u1, pcase--q1): Don't use apply-partially.
10216
10217 2012-06-18 Glenn Morris <rgm@gnu.org>
10218
10219 * progmodes/python.el (python-proc, python-buffer)
10220 (python-send-receive, python-send-string): Fix obsolete versions.
10221
10222 2012-06-18 Martin Rudalics <rudalics@gmx.at>
10223
10224 * window.el (special-display-p): Completely remove stringp
10225 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10226
10227 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
10228
10229 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10230
10231 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10232
10233 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10234 * net/tramp-sh.el (tramp-maybe-open-connection):
10235 Throw if `non-essential' is non-nil.
10236
10237 2012-06-17 Martin Rudalics <rudalics@gmx.at>
10238
10239 * window.el (special-display-p): Signal an error if BUFFER-NAME
10240 is not a string (Bug#11713).
10241
10242 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
10243
10244 * progmodes/python.el (python-info-beginning-of-backslash):
10245 Rename from python-info-beginning-of-backlash, as a spelling fix.
10246
10247 2012-06-17 Chong Yidong <cyd@gnu.org>
10248
10249 * term.el (term-emulate-terminal): If term-check-size is called,
10250 move point to the process mark without resetting point (Bug#4635).
10251
10252 2012-06-17 Glenn Morris <rgm@gnu.org>
10253
10254 * international/mule-cmds.el (mule-menu-keymap)
10255 (set-language-environment, set-locale-environment): Doc tweaks.
10256
10257 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
10258
10259 * cus-face.el (custom-face-attributes): Add wave-style underline
10260 attribute.
10261 * faces.el (set-face-attribute): Update docstring to describe
10262 wave-style underline attribute.
10263
10264 2012-06-16 Chong Yidong <cyd@gnu.org>
10265
10266 * term/xterm.el (terminal-init-xterm): Discard input before
10267 querying background mode (Bug#10959).
10268
10269 2012-06-16 Stefan Merten <smerten@oekonux.de>
10270
10271 * textmodes/rst.el: Added and corrected some comments.
10272 (rst-re-alist-def): Improve symbol syntax.
10273 (rst-mode-syntax-table): Correct syntax entries.
10274 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10275 (rst-official-version, rst-official-cvs-rev): Update version
10276 information.
10277
10278 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
10279
10280 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10281 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10282
10283 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
10284
10285 * progmodes/python.el: New python.el merge.
10286 (python-guess-indent): Obsolete var.
10287 (python-indent-guess-indent-offset): New defcustom.
10288 (python-indent): Obsolete var.
10289 (python-indent-offset): New defcustom.
10290 (python-python-command, python-jython-command): Delete var.
10291 (python-shell-interpreter): New defcustom.
10292 (python-pdbtrack-do-tracking-p): Delete var.
10293 (python-pdbtrack-activate): New defcustom.
10294 (python-use-skeletons): Obsolete var.
10295 (python-skeleton-autoinsert): New defcustom.
10296 (inferior-python-filter-regexp, python-continuation-offset)
10297 (python-honour-comment-indentation, python-indent-string-contents)
10298 (python-jython-packages, python-mode-hook)
10299 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10300 (python-shell-prompt-alist)
10301 (python-source-modes): Delete defcustoms.
10302 (python-check-buffer-name, python-eldoc-setup-code)
10303 (python-eldoc-string-code, python-ffap-setup-code)
10304 (python-ffap-string-code, python-fill-comment-function)
10305 (python-fill-decorator-function, python-fill-paren-function)
10306 (python-fill-string-function, python-imenu-include-defun-type)
10307 (python-imenu-make-tree, python-imenu-subtree-root-label)
10308 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10309 (python-shell-compilation-regexp-alist)
10310 (python-shell-completion-module-string-code)
10311 (python-shell-completion-pdb-string-code)
10312 (python-shell-completion-setup-code)
10313 (python-shell-completion-string-code)
10314 (python-shell-enable-font-lock, python-shell-exec-path)
10315 (python-shell-extra-pythonpaths)
10316 (python-shell-internal-buffer-name, python-shell-interpreter-args)
10317 (python-shell-process-environment)
10318 (python-shell-prompt-block-regexp)
10319 (python-shell-prompt-output-regexp)
10320 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10321 (python-shell-send-setup-max-wait, python-shell-setup-codes)
10322 (python-shell-virtualenv-path): New defcustoms.
10323 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10324 (inferior-python-mode-syntax-table, python--prompt-regexp)
10325 (python-buffer, python-command python-python-command)
10326 (python-default-template, python-imports, python-indent-index)
10327 (python-indent-list, python-indent-list-length)
10328 (python-mode-running, python-pdbtrack-is-tracking-p)
10329 (python-preoutput-continuation, python-preoutput-leftover)
10330 (python-preoutput-result, python-preoutput-skip-next-prompt)
10331 (python-prev-dir/file, python-recursing)
10332 (python-saved-check-command, python-version-checked)
10333 (python-which-func-length-limit)
10334 (view-return-to-alist): Delete vars.
10335 (python-check-custom-command, python-dotty-syntax-table)
10336 (python-imenu-index-alist, python-indent-current-level)
10337 (python-indent-dedenters, python-indent-levels)
10338 (python-nav-beginning-of-defun-regexp)
10339 (python-nav-list-defun-positions-cache)
10340 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10341 (python-shell-internal-buffer)
10342 (python-skeleton-available): New vars.
10343 (def-python-skeleton): Delete macro.
10344 (python-skeleton-define): New macro.
10345 (python-define-auxiliary-skeleton, python-rx): New macros.
10346 (python-insert-class): Delete command.
10347 (python-skeleton-class): New command.
10348 (python-insert-def): Delete command.
10349 (python-skeleton-def): New command.
10350 (python-insert-for): Delete command.
10351 (python-skeleton-for): New command.
10352 (python-insert-if): Delete command.
10353 (python-skeleton-if): New command.
10354 (python-insert-try/except, python-insert-try/finally): Delete commands.
10355 (python-skeleton-try): New command.
10356 (python-insert-while): Delete command.
10357 (python-skeleton-while): New command.
10358 (python-backspace): Delete command.
10359 (python-indent-dedent-line-backspace): New command.
10360 (python-electric-colon): Delete command.
10361 (python-indent-electric-colon): New command.
10362 (python-guess-indent): Delete command.
10363 (python-indent-guess-indent-offset): New command.
10364 (python-shift-left): Delete command.
10365 (python-indent-shift-left): New command.
10366 (python-shift-right): Delete command.
10367 (python-indent-shift-right): New command.
10368 (python-find-function): Delete command.
10369 (python-nav-jump-to-defun): New command.
10370 (python-next-statement): Delete command.
10371 (python-nav-forward-sentence): New command.
10372 (python-previous-statement): Delete command.
10373 (python-nav-backward-sentence): New command.
10374 (python-fill-paragraph): Delete command.
10375 (python-fill-paragraph-function): New command.
10376 (python-send-buffer): Delete command.
10377 (python-shell-send-buffer): New command.
10378 (python-send-defun): Delete command.
10379 (python-shell-send-defun): New command.
10380 (python-send-region, python-send-region-and-go): Delete commands.
10381 (python-shell-send-region)
10382 (python-shell-switch-to-shell): New commands.
10383 (python-send-string): Delete command.
10384 (python-shell-send-string): New command.
10385 (python-switch-to-python): Delete command.
10386 (python-shell-switch-to-shell): New command.
10387 (python-describe-symbol): Delete command.
10388 (python-eldoc-at-point): New command.
10389 (python--set-prompt-regexp, python-args-to-list)
10390 (python-after-info-look, python-check-version)
10391 (python-check-comint-prompt, python-find-imports)
10392 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10393 (python-unload-function, python-expand-template)
10394 (python-maybe-jython, python-preoutput-filter)
10395 (python-pdbtrack-get-source-buffer)
10396 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10397 (python-pdbtrack-toggle-stack-tracking)
10398 (python-pdbtrack-track-stack-file, python-initial-text)
10399 (python-first-word, python-comment-line-p, python-send-command)
10400 (python-setup-brm, python-sentinel, python-set-proc)
10401 (python-skip-out, python-input-filter, python-outdent-p)
10402 (python-outline-level, python-backslash-continuation-line-p)
10403 (python-end-of-block, python-end-of-statement, python-mark-block)
10404 (python-beginning-of-block, python-beginning-of-statement)
10405 (python-blank-line-p, python-beginning-of-string)
10406 (python-open-block-statement-p): Delete functions.
10407 (python-indent-line, python-indent-line-1): Delete functions.
10408 (python-indent-line): New function.
10409 (python-indentation-levels): Delete function.
10410 (python-indent-calculate-levels): New function.
10411 (python-proc): Delete function.
10412 (python-shell-get-process): New function.
10413 (python-send-receive): Delete function.
10414 (python-shell-send-string-no-output): New function.
10415 (python-module-path): Delete function.
10416 (python-ffap-module-path): New function.
10417 (python-completion-at-point)
10418 (python-symbol-completions): Delete functions.
10419 (python-completion-complete-at-point): New function.
10420 (python-load-file): Delete function.
10421 (python-shell-send-file): New function.
10422 (python-calculate-indentation): Delete function.
10423 (python-indent-calculate-indentation): New function.
10424 (python-skip-comments/blanks): Delete function.
10425 (python-util-forward-comment): New function.
10426 (python-continuation-line-p): Delete function.
10427 (python-info-continuation-line-p): New function.
10428 (python-which-func, python-current-defun): Delete function.
10429 (python-info-current-defun): New function.
10430 (python-beginning-of-defun): Delete function.
10431 (python-nav-beginning-of-defun): New function.
10432 (python-close-block-statement-p)
10433 (python-block-end-p): Delete function.
10434 (python-info-closing-block): New function.
10435 (python-comint-output-filter-function)
10436 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10437 (python-fill-comment, python-fill-decorator, python-fill-paren)
10438 (python-fill-string, python-imenu-make-element-tree)
10439 (python-imenu-make-tree, python-imenu-tree-assoc)
10440 (python-indent-context, python-indent-dedent-line)
10441 (python-indent-line-function)
10442 (python-indent-post-self-insert-function)
10443 (python-indent-toggle-levels)
10444 (python-info-assignment-continuation-line-p)
10445 (python-info-beginning-of-backlash)
10446 (python-info-block-continuation-line-p)
10447 (python-info-closing-block-message)
10448 (python-info-line-ends-backslash-p)
10449 (python-info-looking-at-beginning-of-defun)
10450 (python-info-ppss-context, python-info-ppss-context-type)
10451 (python-nav-list-defun-positions, python-nav-read-defun)
10452 (python-nav-sentence-end, python-nav-sentence-start)
10453 (python-pdbtrack-comint-output-filter-function)
10454 (python-pdbtrack-set-tracked-buffer)
10455 (python-shell-calculate-exec-path)
10456 (python-shell-calculate-process-environment)
10457 (python-shell-completion--do-completion-at-point)
10458 (python-shell-completion--get-completions)
10459 (python-shell-completion-complete-at-point)
10460 (python-shell-completion-complete-or-indent)
10461 (python-shell-get-or-create-process)
10462 (python-shell-get-process-name)
10463 (python-shell-internal-get-or-create-process)
10464 (python-shell-internal-get-process-name)
10465 (python-shell-internal-send-string, python-shell-make-comint)
10466 (python-shell-parse-command, python-shell-send-setup-code)
10467 (python-skeleton-add-menu-items)
10468 (python-util-clone-local-variables, python-util-position)
10469 (run-python-internal, python-indentation-levels)
10470 (python-nav-beginning-of-defun)
10471 (python-completion-complete-at-point): New functions.
10472 (run-python): Change arguments. New API requirements.
10473
10474 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10475
10476 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10477 (bug#11649).
10478
10479 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10480 (macroexp--expand-all): Use it.
10481
10482 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10483 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10484 Use `cl-function' instead.
10485
10486 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
10487
10488 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10489 Suggested by Stefan Monnier while discussing bug#11657.
10490
10491 2012-06-14 Sam Steingold <sds@gnu.org>
10492
10493 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10494
10495 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
10496
10497 * play/doctor.el (doctor-doc): Remove parameter and use
10498 doctor-sent instead of sent.
10499 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
10500
10501 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10502
10503 * files.el: Require cl-lib.
10504 (file-name-non-special): Replace case -> cl-case.
10505
10506 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10507
10508 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10509 mapping from #' to function*.
10510
10511 2012-06-13 Chong Yidong <cyd@gnu.org>
10512
10513 * mouse.el (mouse-drag-track): Do not set the mark if the user
10514 releases the mouse without selecting anything (Bug#11588).
10515
10516 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10517
10518 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10519 as well (bug#11646).
10520
10521 * loadup.el: Count byte-code functions as well.
10522
10523 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10524 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10525
10526 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10527 (bug#11649). Add cl-defun and cl-defmacro.
10528
10529 2012-06-13 Drew Adams <drew.adams@oracle.com>
10530
10531 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10532 Fix last change.
10533
10534 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
10535
10536 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10537 Otherwise, it blocks in batch mode.
10538
10539 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
10540
10541 * help-mode.el (bookmark-make-record-default): Declare.
10542
10543 2012-06-13 Chong Yidong <cyd@gnu.org>
10544
10545 * emacs-lisp/package.el (list-packages): Compute a list of
10546 packages that are newly-available since the last list-packages
10547 invocation.
10548 (package-menu--new-package-list): New var.
10549 (package-menu--generate, package-menu--print-info)
10550 (package-menu--status-predicate, package-menu-mark-install):
10551 Handle new status label "new".
10552
10553 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10554
10555 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10556 conversion to backquotes.
10557
10558 2012-06-12 Chong Yidong <cyd@gnu.org>
10559
10560 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10561 Rename from gud-inhibit-global-bindings.
10562
10563 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10564
10565 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10566 hook from nxml-glyph-set-hook.
10567
10568 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10569 declaration.
10570
10571 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10572
10573 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10574 Convert to defcustom.
10575
10576 2012-06-12 Drew Adams <drew.adams@oracle.com>
10577
10578 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10579 New functions.
10580 (help-mode): Use them.
10581
10582 2012-06-11 Glenn Morris <rgm@gnu.org>
10583
10584 * progmodes/fortran.el (fortran-font-lock-keywords-3):
10585 Use preprocessor face for directives.
10586 (fortran-directive-re): Doc fix.
10587
10588 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10589
10590 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10591 conversion to backquotes (bug#11652).
10592
10593 Fix compiler-expansion of CL's cXXr functions (bug#11673).
10594 * emacs-lisp/cl-lib.el (cl--defalias): New function.
10595 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10596 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10597 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10598 (cl-ninth, cl-tenth): Mark them as inlinable.
10599 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10600 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10601 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10602 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10603 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10604 (cl-list*, cl-adjoin): Don't put an autoload manually.
10605 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10606 (cl--compiler-macro-list*): Add autoload cookie.
10607 (cl--compiler-macro-cXXr): New function.
10608
10609 * help-fns.el (help-fns--compiler-macro): New function extracted from
10610 describe-function-1; follow aliases and use `compiler-macro' property.
10611 (describe-function-1): Use it.
10612
10613 2012-06-11 Chong Yidong <cyd@gnu.org>
10614
10615 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10616 is uninstalled, if imagemagick is installed.
10617
10618 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10619
10620 * emacs-lisp/cl-lib.el: Use lexical-binding.
10621 (cl-map-extents, cl-maclisp-member): Remove.
10622 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10623 (cl--set-substring, cl--block-wrapper, cl--block-throw)
10624 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10625 * emacs-lisp/cl-extra.el: Use lexical-binding.
10626 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10627 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10628 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10629 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10630 * emacs-lisp/cl-seq.el: Use lexical-binding.
10631 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10632 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10633 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10634 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10635 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10636 CL's internals.
10637
10638 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
10639
10640 Sync with Tramp 2.2.6-pre.
10641
10642 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10643 `print-length' and `print-level' to nil, in order to avoid
10644 truncation. Reported by Christopher Schmidt
10645 <christopher@ristopher.com>.
10646
10647 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10648
10649 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10650 New defmacro.
10651 (tramp-compat-copy-directory): Add optional argument
10652 COPY-CONTENTS. It is not handled yet.
10653
10654 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10655 (tramp-ftp-file-name-p): Simplify.
10656
10657 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10658 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10659 connection vector.
10660
10661 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10662 (tramp-methods): Do not use `tramp-password-end-of-line'.
10663 (tramp-completion-function-alist-putty): Handle UNIX case.
10664 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10665 (tramp-do-file-attributes-with-stat)
10666 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10667 gid as real numbers. They could run out of integer range on cygwin.
10668 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10669 (tramp-sh-handle-expand-file-name): Handle hops.
10670 (tramp-open-connection-setup-interactive-shell):
10671 Use `tramp-cleanup'. Move check for busyboxes ...
10672 (tramp-find-shell): ... here. Simplify implementation.
10673 Set "remote-shell" property also for alternative shells.
10674 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10675 If failing, a regular file would be written otherwise.
10676 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10677 (tramp-find-inline-encoding): Cache the coding commands in the
10678 process cache. Apply test command on the remote side, if defined.
10679 (tramp-find-inline-compress): Cache the compress commands in the
10680 process cache.
10681 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10682 when requested. Handle hops.
10683 (tramp-current-connection): New defvar.
10684 (tramp-maybe-open-connection): Use `tramp-cleanup'.
10685 Throw `suppress', if there was a failed connection shortly before.
10686 Handle user interrupt. (Bug#10187)
10687 (tramp-get-inline-compress, tramp-get-inline-coding):
10688 Read connection properties from the process cache.
10689
10690 * net/tramp-smb.el (tramp-smb-server-version)
10691 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
10692 New defconsts.
10693 (tramp-smb-prompt): Extend for powershell prompt.
10694 (tramp-smb-file-name-handler-alist): Add handlers for
10695 `process-file', `shell-command' and `start-file-process'.
10696 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
10697 (tramp-smb-winexe-shell-command-switch): New defcustoms.
10698 (tramp-smb-file-name-p): Simplify.
10699 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
10700 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
10701 (tramp-smb-shell-quote-argument): New defuns.
10702 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
10703 Implement using "tar". By this, time-stamps are preserved.
10704 (tramp-smb-handle-copy-file): Handle also the case of directories.
10705 (tramp-smb-do-file-attributes-with-stat)
10706 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
10707 Use `tramp-get-connection-buffer').
10708 (tramp-smb-handle-rename-file): Use "rename", when source and
10709 target are on the same share.
10710 (tramp-smb-maybe-open-connection): Handle wrong passwords.
10711 Use `tramp-smb-server-version'.
10712 (tramp-smb-wait-for-output): Remove prompt.
10713
10714 * net/tramp.el (top): Require 'cl.
10715 (tramp-methods, tramp-rsh-end-of-line):
10716 Remove `tramp-password-end-of-line' from docstring.
10717 (tramp-save-ad-hoc-proxies): New defcustom.
10718 (tramp-completion-function-alist): Adapt docstring.
10719 (tramp-default-password-end-of-line): Remove defcustom.
10720 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
10721 (tramp-user-regexp, tramp-file-name-regexp-unified)
10722 (tramp-file-name-regexp-url): Extend regexp by hop separator.
10723 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
10724 (tramp-remote-file-name-spec-regexp): New defconst.
10725 (tramp-file-name-structure): Extend structure for hops.
10726 (tramp-get-method-parameter): Move up.
10727 (tramp-file-name-p, tramp-dissect-file-name)
10728 (with-parsed-tramp-file-name): Handle hops.
10729 (tramp-file-name-hop): New defun.
10730 (tramp-make-tramp-file-name): New optional arg HOP.
10731 (tramp-message-show-progress-reporter-message): New defvar.
10732 (tramp-with-progress-reporter): Use it. We cannot use
10733 `tramp-message-show-message' here, because this suppresses also
10734 error buffers.
10735 (tramp-error-with-buffer): Suppress buffer view, if
10736 `tramp-message-show-message' is nil.
10737 Use `tramp-get-connection-buffer'.
10738 (tramp-cleanup): New defun.
10739 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
10740 (tramp-file-name-handler): If `debug-on-error' is set, propagate
10741 an error unchanged.
10742 (tramp-completion-handle-file-name-all-completions): Handle hops.
10743 Fix an error when called from ido.
10744 (tramp-completion-dissect-file-name): Use better local variable
10745 name. Add hop to the vector.
10746 (tramp-handle-insert-file-contents): Use progress-reporter for the
10747 whole scenario.
10748 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
10749 to `t'.
10750 (tramp-check-for-regexp): Simplify search.
10751 (tramp-enter-password): Remove it. Move implementation ...
10752 (tramp-action-password): ... here.
10753 (tramp-mode-string-to-int, tramp-local-host-p)
10754 (tramp-make-tramp-temp-file, tramp-read-passwd)
10755 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
10756 Set tramp-autoload cookie.
10757
10758 * net/trampver.el: Update release number.
10759
10760 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10761 Michael Albinus <michael.albinus@gmx.de>
10762
10763 * net/tramp.el (tramp-set-completion-function): Fix docstring.
10764 (tramp-parse-group, tramp-parse-file)
10765 (tramp-parse-shostkeys-sknownhosts): New defuns.
10766 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
10767 (tramp-parse-shosts-group, tramp-parse-sconfig)
10768 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
10769 (tramp-parse-sknownhosts, tramp-parse-hosts)
10770 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
10771 Use them.
10772 (tramp-parse-passwd-group, tramp-parse-netrc-group)
10773 (tramp-parse-putty-group): Don't narrow.
10774 (tramp-parse-putty): Make a loop.
10775 (tramp-file-name-handler): Catch the `suppress' signal.
10776
10777 2012-06-11 Chong Yidong <cyd@gnu.org>
10778
10779 * image.el (imagemagick-register-types): Put the ImageMagick entry
10780 at the end of image-type-file-name-regexps.
10781
10782 2012-06-11 Johan Bockgård <bojohan@gnu.org>
10783
10784 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
10785 (pcase, pcase-let*, pcase-dolist): Use them.
10786
10787 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10788
10789 * emacs-lisp/pcase.el (pcase--let*): New function.
10790 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
10791 (pcase--expand): Use macroexp-let².
10792
10793 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
10794
10795 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
10796 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
10797 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
10798 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
10799 * emacs-lisp/derived.el: Use pcase instead of `cl'.
10800 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
10801
10802 2012-06-10 Glenn Morris <rgm@gnu.org>
10803
10804 * mail/rmail.el (rmail-yank-current-message): Leave point at
10805 correct position. (Bug#11660)
10806
10807 2012-06-10 Chong Yidong <cyd@gnu.org>
10808
10809 * allout-widgets.el: Fix code header.
10810
10811 2012-06-10 Chong Yidong <cyd@gnu.org>
10812
10813 * cus-edit.el (customize-changed-options-previous-release):
10814 Bump to 24.1.
10815
10816 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
10817
10818 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
10819
10820 2012-06-09 Chong Yidong <cyd@gnu.org>
10821
10822 * ebuff-menu.el (electric-buffer-list): Preserve header line.
10823
10824 2012-06-09 Martin Rudalics <rudalics@gmx.at>
10825
10826 * window.el (special-display-popup-frame): Don't use
10827 window--display-buffer (Bug#11651).
10828
10829 2012-06-09 Eli Zaretskii <eliz@gnu.org>
10830
10831 Fix parallel builds: make sure loaddefs.el is not being written
10832 while Lisp files are compiled.
10833 (compile): Don't depend on 'mh-autoloads'.
10834 (compile-CMD, compile-SH): Depend on 'autoloads'.
10835 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
10836
10837 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
10838
10839 2012-06-09 Chong Yidong <cyd@gnu.org>
10840
10841 * face-remap.el (face-remap-add-relative, face-remap-set-base)
10842 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
10843 Doc fixes (Bug#11225).
10844
10845 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
10846
10847 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
10848 a function if there's a clear indication that it has a compiler-macro.
10849 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
10850 (macro-declarations-alist): Add arglist to declaration functions.
10851 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
10852 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
10853 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
10854 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
10855 Also add autoload to find the compiler macro.
10856 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
10857 (cl--compiler-macro-member, cl--compiler-macro-assoc)
10858 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
10859 (cl--compiler-macro-get): New functions, replacing calls to
10860 cl-define-compiler-macro.
10861 (cl-typep) [compiler-macro]: Use macroexp-let².
10862
10863 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
10864
10865 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
10866 string properly, fixes Bug#11473.
10867
10868 2012-06-08 Chong Yidong <cyd@gnu.org>
10869
10870 * faces.el (set-face-attribute): Doc fix.
10871 (modify-face): Don't use :bold and :italic.
10872 (error, warning, success): Tweak definitions.
10873
10874 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
10875 (custom-modified, custom-set, custom-changed, custom-themed)
10876 (custom-saved, custom-button, custom-button-mouse)
10877 (custom-button-pressed, custom-state, custom-comment-tag)
10878 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
10879 (custom-group-subtitle): Use new-style face specs.
10880 (custom-invalid-face, custom-rogue-face, custom-modified-face)
10881 (custom-set-face, custom-changed-face, custom-saved-face)
10882 (custom-button-face, custom-button-pressed-face)
10883 (custom-documentation-face, custom-state-face)
10884 (custom-comment-face, custom-comment-tag-face)
10885 (custom-variable-tag-face, custom-variable-button-face)
10886 (custom-face-tag-face, custom-group-tag-face-1)
10887 (custom-group-tag-face): Remove obsolete face alias.
10888
10889 * epa.el (epa-validity-high, epa-validity-medium)
10890 (epa-validity-low, epa-mark, epa-field-name, epa-string)
10891 (epa-field-name, epa-field-body):
10892 * font-lock.el (font-lock-comment-face, font-lock-string-face)
10893 (font-lock-keyword-face, font-lock-builtin-face)
10894 (font-lock-function-name-face, font-lock-variable-name-face)
10895 (font-lock-type-face, font-lock-constant-face):
10896 * ido.el (ido-first-match, ido-only-match, ido-subdir)
10897 (ido-virtual, ido-indicator, ido-incomplete-regexp):
10898 * speedbar.el (speedbar-button-face, speedbar-file-face)
10899 (speedbar-directory-face, speedbar-tag-face)
10900 (speedbar-selected-face, speedbar-highlight-face)
10901 (speedbar-separator-face):
10902 * whitespace.el (whitespace-newline, whitespace-space)
10903 (whitespace-hspace, whitespace-tab, whitespace-trailing)
10904 (whitespace-line, whitespace-space-before-tab)
10905 (whitespace-space-after-tab, whitespace-indentation)
10906 (whitespace-empty):
10907 * emulation/cua-base.el (cua-global-mark):
10908 * eshell/em-prompt.el (eshell-prompt):
10909 * net/newst-plainview.el (newsticker-new-item-face)
10910 (newsticker-old-item-face, newsticker-immortal-item-face)
10911 (newsticker-obsolete-item-face, newsticker-date-face)
10912 (newsticker-statistics-face, newsticker-default-face):
10913 * net/newst-reader.el (newsticker-feed-face)
10914 (newsticker-extra-face, newsticker-enclosure-face):
10915 * net/newst-treeview.el (newsticker-treeview-face)
10916 (newsticker-treeview-new-face, newsticker-treeview-old-face)
10917 (newsticker-treeview-immortal-face)
10918 (newsticker-treeview-obsolete-face)
10919 (newsticker-treeview-selection-face):
10920 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
10921 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
10922 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
10923 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
10924 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
10925 (nxml-outline-active-indicator, nxml-outline-ellipsis):
10926 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
10927 (mpuz-text):
10928 * progmodes/vera-mode.el (vera-font-lock-number)
10929 (vera-font-lock-function, vera-font-lock-interface):
10930 * textmodes/table.el (table-cell): Use new-style face specs, and
10931 don't use the old :bold and :italic attributes.
10932
10933 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
10934 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
10935 (ebrowse-member-class, ebrowse-progress): Likewise.
10936 (ebrowse-tree-mark-face, ebrowse-root-class-face)
10937 (ebrowse-file-name-face, ebrowse-default-face)
10938 (ebrowse-member-attribute-face, ebrowse-member-class-face)
10939 (ebrowse-progress-face): Remove obsolete faces.
10940
10941 * progmodes/flymake.el (flymake-errline, flymake-warnline):
10942 Inherit from error and warning faces respectively.
10943
10944 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
10945 Likewise.
10946 (flyspell-incorrect-face, flyspell-duplicate-face):
10947 Remove obsolete aliases.
10948
10949 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
10950
10951 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
10952 Avoid infloop.
10953
10954 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10955
10956 * startup.el (argv, argi): Make lexically scoped.
10957 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
10958 * emacs-lisp/cl-macs.el: Use lexical-binding.
10959 Rename cl-bind-* to cl--bind-*.
10960 * files.el: Don't require `cl' since it doesn't use it.
10961 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
10962
10963 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
10964
10965 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
10966 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
10967 instead of calling external sort utility.
10968 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
10969
10970 2012-06-08 Eli Zaretskii <eliz@gnu.org>
10971
10972 * descr-text.el (describe-char): Mention how to insert the
10973 character, if the current input method doesn't support it.
10974 See the discussion in this thread for the details:
10975 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
10976
10977 2012-06-08 Sam Steingold <sds@gnu.org>
10978
10979 * bindings.el (global-map): Bind XF86Forward to next-buffer and
10980 XF86Back to previous-buffer.
10981 (minibuffer-local-map): Bind them to next-history-element and
10982 previous-history-element respectively.
10983 * help-mode.el (help-mode-map): Bind them to help-go-forward and
10984 help-go-back respectively.
10985 * info.el (Info-mode-map): Bind them to Info-history-forward and
10986 Info-history-back respectively.
10987 These are the keys next to Up on the ThinkPad keyboard.
10988
10989 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
10990
10991 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
10992 * emacs-lisp/cl-macs.el: Provide itself.
10993 (cl--labels-convert-cache): New var.
10994 (cl--labels-convert): New function.
10995 (cl-flet, cl-labels): New implementation with new semantics, relying on
10996 lexical-binding.
10997 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
10998 (cl-closure-vars, cl--function-convert-cache)
10999 (cl--function-convert): Move from cl-macs.el.
11000 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
11001 rename by removing the "cl-" prefix.
11002 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
11003
11004 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11005
11006 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
11007 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
11008 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
11009 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
11010 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
11011 (cl-hash-table-count): Add old compatibility aliases.
11012
11013 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
11014 Use macroexpand-all-environment instead.
11015 (cl--old-macroexpand): New var.
11016 (cl--sm-macroexpand): New function.
11017 (cl-symbol-macrolet): Use it during macro expansion.
11018 (cl--function-convert-cache): New var.
11019 (cl--function-convert): New function, extracted from
11020 cl-macroexpand-all.
11021 (cl-lexical-let): Use it.
11022
11023 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
11024 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
11025 (cl-member): Remove old alias.
11026
11027 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
11028 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
11029 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
11030 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
11031 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
11032 (cl-macroexpand-cmacs): Remove var.
11033 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
11034 Use macroexpand-all instead.
11035
11036 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11037
11038 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
11039 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
11040 (macroexp-copyable-p): New functions and macros.
11041 * emacs-lisp/edebug.el (edebug-unwrap):
11042 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
11043 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
11044 (pcase--let*): Remove.
11045 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
11046 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
11047 macroexp-const-p instead.
11048 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
11049
11050 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
11051 instead of "cl-" for internal definitions. Use macroexp-const-p.
11052 (cl-old-bc-file-form): Remove var.
11053 (cl-const-exprs-p): Remove fun.
11054 (cl-labels, cl-macrolet): Use backquote.
11055 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
11056 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
11057 (cl-define-setf-expander): Rename from cl-define-setf-method.
11058 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
11059
11060 * international/mule-cmds.el: Don't require CL.
11061 (view-hello-file): Don't use `letf'.
11062
11063 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * tmm.el (tmm-prompt): Use string-prefix-p.
11066 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
11067 (tmm-add-prompt): Use minibuffer-completion-help.
11068 (tmm-delete-map): Remove.
11069
11070 * subr.el (kbd): Make it its own function.
11071
11072 2012-06-07 Stefan Merten <smerten@oekonux.de>
11073
11074 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
11075 Silence compiler warnings. Fix versions.
11076 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
11077 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
11078 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
11079 (rst-package-emacs-version-alist): Correct Emacs version to
11080 represent major merge with upstream.
11081 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
11082
11083 2012-06-06 Glenn Morris <rgm@gnu.org>
11084
11085 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
11086 Only print environment variables if set.
11087
11088 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11089
11090 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
11091 (macroexp--cons): Rename from maybe-cons.
11092 (macroexp--accumulate): Rename from macroexp-accumulate.
11093 (macroexp--all-forms): Rename from macroexpand-all-forms.
11094 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
11095 (macroexp--expand-all): Rename from macroexpand-all-1.
11096
11097 2012-06-06 Sam Steingold <sds@gnu.org>
11098
11099 * calendar/calendar.el (calendar-in-read-only-buffer):
11100 Call `special-mode' to enable the standard read-only keybindings.
11101
11102 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
11103
11104 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
11105 with "loading" messages (bug#11635).
11106
11107 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
11108
11109 * files.el (enable-remote-dir-locals): New option.
11110 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
11111
11112 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11113 Ensure, that the temp directory is local.
11114
11115 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
11116 `temporary-file-directory'.
11117
11118 * progmodes/python.el (python-send-region): Ensure, that the
11119 temporary file is created also in the remote case.
11120
11121 2012-06-06 Glenn Morris <rgm@gnu.org>
11122
11123 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
11124 (vc-rcs-update-changelog): Use it.
11125
11126 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
11127
11128 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
11129 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
11130 (vc-sccs-diff): Replace use of the external vcdiff script.
11131
11132 2012-06-05 Glenn Morris <rgm@gnu.org>
11133
11134 * ledit.el: Move to obsolete/.
11135
11136 2012-06-05 Sam Steingold <sds@gnu.org>
11137
11138 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
11139 patch (Bug#11140).
11140
11141 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11142
11143 * emacs-lisp/cust-print.el: Move to obsolete.
11144
11145 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
11146 compiler-macro expansion.
11147
11148 Add native compiler-macro support.
11149 * emacs-lisp/macroexp.el (macroexpand-all-1):
11150 Support compiler-macros directly. Properly follow aliases and apply
11151 the compiler macros more thoroughly.
11152 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
11153 macroexpand now properly follows aliases.
11154 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
11155 (cl-compiler-macroexpand): Use new prop.
11156 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
11157
11158 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
11159
11160 2012-06-05 Martin Rudalics <rudalics@gmx.at>
11161
11162 * window.el (get-lru-window, get-mru-window, get-largest-window):
11163 New argument NOT-SELECTED to avoid picking the selected window.
11164 (window--display-buffer-1, window--display-buffer-2): Replace by
11165 new function window--display-buffer
11166 (display-buffer-same-window, display-buffer-reuse-window)
11167 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11168 Use window--display-buffer.
11169 (display-buffer-use-some-window): Remove temporary dedication
11170 hack by calling get-lru-window and get-largest-window with
11171 NOT-SELECTED argument non-nil. Call window--display-buffer.
11172
11173 2012-06-05 Glenn Morris <rgm@gnu.org>
11174
11175 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11176 Replace external vcdiff script.
11177
11178 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11181
11182 2012-06-04 Chong Yidong <cyd@gnu.org>
11183
11184 * image.el (imagemagick-types-inhibit): Revert last change.
11185 Add INFO and M.
11186 (imagemagick-enabled-types): Remove CIN and EPS*.
11187
11188 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11189
11190 * emacs-lisp/cl-lib.el: Rename from cl.el.
11191 * emacs-lisp/cl.el: New compatibility file.
11192 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11193 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11194 to obey the "cl-" prefix.
11195 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11196
11197 2012-06-03 Glenn Morris <rgm@gnu.org>
11198
11199 * emacs-lisp/authors.el (authors-aliases): Addition.
11200
11201 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11202 Fix :version.
11203
11204 2012-06-03 Stefan Merten <smerten@oekonux.de>
11205
11206 * textmodes/rst.el: Add comments.
11207 (rst-transition, rst-adornment): New faces.
11208 (rst-adornment-faces-alist): Make default safe to reevaluate.
11209 Fixes
11210 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11211 Improve customization tags.
11212 (rst-define-level-faces): Clarify meaning.
11213
11214 2012-06-03 Chong Yidong <cyd@gnu.org>
11215
11216 * progmodes/compile.el (compilation-mode-line-fail)
11217 (compilation-mode-line-run, compilation-mode-line-exit):
11218 New faces.
11219 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11220
11221 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
11222
11223 * progmodes/which-func.el (which-func-update-ediff-windows):
11224 New function. Use it in ediff-select-hook (Bug#11478).
11225
11226 2012-06-03 Chong Yidong <cyd@gnu.org>
11227
11228 * bindings.el: Remove explicit help text from format-mode-line.
11229 It is now supplied by mode-line-default-help-echo.
11230 (mode-line-front-space, mode-line-end-spaces)
11231 (mode-line-misc-info): New variables.
11232 (mode-line-modes, mode-line-position): Move the default value to
11233 the variable definition.
11234 (mode-line-default-help-echo): New defcustom.
11235 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11236 (mode-line-modified-help-echo): New functions.
11237 (mode-line-mule-info, mode-line-modified): Use them.
11238 (mode-line-eol-desc, propertized-buffer-identification):
11239 Consistency fixes for help text.
11240 (mode-line-coding-system-map): Allow using mouse-3 to invoke
11241 set-buffer-file-coding-system (Bug#289).
11242 (mode-line-mule-info-help-echo): Update help text.
11243
11244 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11245
11246 * simple.el (execute-extended-command): Set real-this-command
11247 (bug#11506).
11248
11249 2012-06-02 Chong Yidong <cyd@gnu.org>
11250
11251 Remove incorrect uses of "modeline" in comments, docstrings, and
11252 function/variable names (Bug#10329).
11253
11254 * cus-edit.el (mode-line):
11255 * dframe.el (dframe-mouse-hscroll):
11256 * emacs-lisp/re-builder.el:
11257 * emacs-lisp/easy-mmode.el (define-minor-mode):
11258 * frame.el (set-frame-name):
11259 * help.el (lookup-minor-mode-from-indicator):
11260 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11261 * progmodes/cc-cmds.el (c-toggle-auto-newline)
11262 (c-toggle-hungry-state):
11263 * progmodes/antlr-mode.el (antlr-language-alist):
11264 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11265 * progmodes/vhdl-mode.el (vhdl-mode):
11266 * progmodes/which-func.el (which-func, which-func-cleanup-function):
11267 * term/ns-win.el (ns-face-at-pos):
11268 * term/sup-mouse.el (sup-mouse-report):
11269 * textmodes/flyspell.el (flyspell-mode-line-string):
11270 * textmodes/ispell.el (ispell-highlight-face):
11271 * textmodes/reftex-global.el:
11272 * vc/vc-arch.el (vc-arch-mode-line-string):
11273 * vc/vc-cvs.el (vc-cvs-mode-line-string):
11274 * vc/vc-git.el (vc-git-mode-line-string):
11275 * vc/vc-hooks.el (vc-display-status)
11276 (vc-default-mode-line-string):
11277 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11278
11279 * ansi-color.el (ansi-color-faces-vector): Change default faces.
11280
11281 * dired.el (dired-sort-set-mode-line): Rename from
11282 dired-sort-set-modeline. All callers changed.
11283
11284 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11285 eshell-status-in-modeline.
11286
11287 * foldout.el (foldout-mode-line-string): Rename from
11288 foldout-modeline-string. All callers changed.
11289 (foldout-update-mode-line): Rename from foldout-update-modeline.
11290
11291 * subr.el (redraw-modeline): Make into obsolete alias.
11292
11293 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11294 timeclock-modeline-display. Make old name an alias.
11295 (timeclock-update-mode-line): Likewise. All callers changed.
11296 (timeclock-mode-line-display): No need to check before using
11297 add-hook.
11298 (timeclock-relative, timeclock-day-over-hook)
11299 (timeclock-use-elapsed, timeclock-mode-string)
11300 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11301
11302 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11303 crisp-mode-modeline-string.
11304
11305 * play/solitaire.el (solitaire-build-mode-line): Rename from
11306 solitaire-build-modeline. All callers changed.
11307
11308 * play/zone.el (zone-hiding-mode-line): Rename from
11309 zone-hiding-modeline. All callers changed.
11310 (zone): Remove unusued `modeline-hidden-level' property.
11311
11312 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11313 xscheme-modeline-initialize. All callers changed.
11314
11315 * strokes.el (strokes-lighter): Rename from
11316 strokes-modeline-string.
11317
11318 * textmodes/sgml-mode.el (html-face-tag-alist)
11319 (html-tag-face-alist): Use mode-line face instead of obsolete
11320 alias modeline.
11321
11322 2012-06-02 Stefan Merten <smerten@oekonux.de>
11323
11324 * textmodes/rst.el: Always require `cl'.
11325 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11326
11327 2012-06-02 Chong Yidong <cyd@gnu.org>
11328
11329 * image.el (imagemagick-enabled-types): Rename from
11330 imagemagick-types-enable. Add many more types.
11331 (imagemagick-types-inhibit): Change default to nil.
11332 (imagemagick-filter-types): Caller changed.
11333
11334 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11335
11336 * emacs-lisp/cl-macs.el: Use backquotes.
11337 (cl-transform-function-property): Use eval-and-compile rather than
11338 abusing `require'.
11339 (defstruct): Use declare-function instead of with-no-warnings.
11340
11341 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11342 (byte-compile-output-docform): Re-add the print-circle bindings.
11343 (byte-compile-fix-header): Use #$ just because it's shorter.
11344 (byte-compile-output-file-form): Remove defun/defmacro.
11345
11346 2012-06-01 Martin Rudalics <rudalics@gmx.at>
11347
11348 * simple.el (choose-completion): Remove now obsolete binding for
11349 owindow.
11350
11351 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
11352
11353 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11354 in order to avoid "Stack overflow in regexp matcher".
11355
11356 2012-05-31 Glenn Morris <rgm@gnu.org>
11357
11358 * image.el: For clarity, call imagemagick-register-types at
11359 top-level, rather than relying on a custom :initialize.
11360 (imagemagick-types-enable): New option. (Bug#11557)
11361 (imagemagick-filter-types): New function. (Bug#7406)
11362 (imagemagick-register-types): Use imagemagick-filter-types.
11363 If disabling support, remove elements altogether rather
11364 than using an impossible regexp.
11365 (imagemagick-types-inhibit): Give it the default init function.
11366
11367 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11368
11369 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11370 Handle arbitrary file name lengths (Bug#11585).
11371
11372 2012-05-31 Martin Rudalics <rudalics@gmx.at>
11373
11374 * desktop.el (desktop-read): Clear previous and next buffers for
11375 all windows and bury *Messages* buffer (bug#11556).
11376
11377 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11378
11379 Add `declare' for `defun'. Align `defmacro's with it.
11380 * emacs-lisp/easy-mmode.el (define-minor-mode)
11381 (define-globalized-minor-mode): Don't autoload the var definitions.
11382 * emacs-lisp/byte-run.el: Use lexical-binding.
11383 (defun-declarations-alist, macro-declarations-alist): New vars.
11384 (defmacro, defun): Use them.
11385 (make-obsolete, define-obsolete-function-alias)
11386 (make-obsolete-variable, define-obsolete-variable-alias):
11387 Use `declare'.
11388 (macro-declaration-function): Mark obsolete.
11389 * emacs-lisp/autoload.el: Use lexical-binding.
11390 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
11391
11392 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11393
11394 * textmodes/ispell.el (ispell-with-no-warnings):
11395 Define as a macro.
11396 (ispell-kill-ispell, ispell-change-dictionary):
11397 Use `called-interactively-p' for Emacs instead of obsolete
11398 `interactive-p'.
11399
11400 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11401
11402 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11403 (macro-declaration-function): Move var from C code.
11404 (macro-declaration-function): Define function with defalias.
11405 * emacs-lisp/macroexp.el (macroexpand-all-1):
11406 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11407 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11408 defun/defmacro any more.
11409 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11410 Provide fallback for unknown arglist.
11411 (byte-compile-arglist-warn): Change calling convention.
11412 (byte-compile-output-file-form): Move print-vars binding.
11413 (byte-compile-output-docform): Simplify accordingly.
11414 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11415 (byte-compile-defmacro-declaration): Remove.
11416 (byte-compile-file-form-defmumble): Generalize to defalias.
11417 (byte-compile-output-as-comment): Return byte-positions.
11418 Simplify callers accordingly.
11419 (byte-compile-lambda): Use `assert'.
11420 (byte-compile-defun, byte-compile-defmacro): Remove.
11421 (byte-compile-file-form-defalias):
11422 Use byte-compile-file-form-defmumble.
11423 (byte-compile-defalias-warn): Remove.
11424
11425 2012-05-29 Stefan Merten <smerten@oekonux.de>
11426
11427 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11428 possible. Fix authors. Improve comments. Improve loading of `cl'.
11429
11430 (rst-mode-abbrev-table): Merge definition.
11431 (rst-mode): Make sure `font-lock-defaults' is buffer local.
11432 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11433
11434 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
11435
11436 * calendar/icalendar.el
11437 (icalendar-export-region): Export UID properly.
11438
11439 2012-05-29 Leo Liu <sdl.web@gmail.com>
11440 * calendar/icalendar.el (icalendar-import-format):
11441 Add `icalendar-import-format-uid' (Bug#11525).
11442 (icalendar-import-format-uid): New.
11443 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11444 Export UID.
11445
11446 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11447
11448 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11449 different alternative patterns.
11450 (pcase-codegen): Be more careful to preserve identity.
11451 (pcase--u1): Don't forget to mark vars as used.
11452
11453 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11454 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11455 (byte-compile-from-buffer): ...rather than here.
11456
11457 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11458 functions from byte-compile-function-environment.
11459
11460 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11461
11462 * window.el (window-deletable-p): Avoid deleting the root window
11463 of a frame with an active minibuffer.
11464
11465 2012-05-29 Martin Rudalics <rudalics@gmx.at>
11466
11467 * simple.el (choose-completion): Use quit-window (Bug#11567).
11468
11469 2012-05-29 Chong Yidong <cyd@gnu.org>
11470
11471 * whitespace.el (whitespace-cleanup): Fix usage of
11472 whitespace-empty-at-bob-regexp (Bug#11492).
11473
11474 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11475
11476 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11477 revert (Bug#11488).
11478
11479 2012-05-29 Juri Linkov <juri@jurta.org>
11480
11481 * isearch.el (isearch-mode-map): Bind `M-s _' to
11482 `isearch-toggle-symbol'. Bind `M-s c' to
11483 `isearch-toggle-case-fold'.
11484 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11485 (isearch-forward): Add `M-s _' to the docstring.
11486 (isearch-forward-symbol, isearch-toggle-case-fold)
11487 (isearch-symbol-regexp): New functions. (Bug#11381)
11488
11489 2012-05-29 Juri Linkov <juri@jurta.org>
11490
11491 * isearch.el (isearch-word): Add docstring. (Bug#11381)
11492 (isearch-occur, isearch-search-and-update): If `isearch-word' is
11493 a function, call it to get the regexp.
11494 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11495 property `isearch-message-prefix' instead of the string "word ".
11496 (isearch-search-fun-default): For the case of `isearch-word',
11497 return a lambda that calls re-search-forward/re-search-backward
11498 with a regexp returned by `word-search-regexp' or by the function
11499 in `isearch-word'.
11500
11501 2012-05-29 Juri Linkov <juri@jurta.org>
11502
11503 * isearch.el (isearch-search-fun-default): New function.
11504 (isearch-search-fun): Move default part to the new function
11505 `isearch-search-fun-default'.
11506 (isearch-search-fun-function): Set the default value to
11507 `isearch-search-fun-default'. (Bug#11381)
11508
11509 * comint.el (comint-history-isearch-end):
11510 Use `isearch-search-fun-default'.
11511 (comint-history-isearch-search): Use `isearch-search-fun-default'
11512 and remove spacial case for `isearch-word'.
11513 (comint-history-isearch-wrap): Remove spacial case for
11514 `isearch-word'.
11515
11516 * hexl.el (hexl-isearch-search-function):
11517 Use `isearch-search-fun-default'.
11518
11519 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11520 Use `word-search-regexp' for `isearch-word'.
11521
11522 * misearch.el (multi-isearch-search-fun):
11523 Use `isearch-search-fun-default'.
11524
11525 * simple.el (minibuffer-history-isearch-search):
11526 Use `isearch-search-fun-default' and remove spacial case for
11527 `isearch-word'.
11528 (minibuffer-history-isearch-wrap): Remove spacial case for
11529 `isearch-word'.
11530
11531 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11532 Remove spacial case for `isearch-word'.
11533 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11534
11535 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11536
11537 Decrease XEmacs incompatibilities.
11538 * textmodes/flyspell.el (flyspell-check-pre-word-p):
11539 Use `string-match'.
11540 (flyspell-delete-region-overlays): Use alternative definition for
11541 XEmacs.
11542 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11543 (flyspell-word): Use `process-kill-without-query' if XEmacs.
11544 (flyspell-mode-on): Use `interactive-p' if XEmacs.
11545 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11546 `define-obsolete-face-alias' under XEmacs, but old method.
11547
11548 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11549 `with-no-warnings' definition or Emacs alias.
11550 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11551 (ispell-word): Do not use `region-p' if XEmacs.
11552
11553 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11554
11555 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11556 Check for `ispell-dictionary-base-alist' instead of full
11557 `ispell-dictionary-alist'.
11558 (ispell-init-process): Show spellchecker when starting new Ispell
11559 process.
11560
11561 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11562
11563 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11564 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11565
11566 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
11567
11568 * version.el (motif-version-string, gtk-version-string)
11569 (ns-version-string): Declare.
11570
11571 2012-05-27 Juri Linkov <juri@jurta.org>
11572
11573 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11574 after the `eval-defun-1' specialcaseing
11575 like in `edebug-eval-defun' (bug#10181).
11576
11577 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11578 like in `eval-defun-1'.
11579
11580 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11581
11582 * mail/sendmail.el (mail-yank-region):
11583 Recognize rmail-yank-current-message in addition to insert-buffer.
11584 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11585 a *mail* buffer created through rmail-start-mail with sendmail as
11586 mail-user-agent.
11587
11588 2012-05-27 Chong Yidong <cyd@gnu.org>
11589
11590 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11591 Default to 256 (Bug#11267).
11592
11593 * help.el (describe-mode): Doc fix.
11594
11595 2012-05-26 Glenn Morris <rgm@gnu.org>
11596
11597 * w32-fns.el (w32-init-info): Remove.
11598 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11599
11600 * info.el (info-initialize): For self-contained NS builds, put the
11601 included info/ directory at the front. (Bug#2791)
11602
11603 * paths.el (Info-default-directory-list): Make it a defcustom,
11604 mainly so that we can use custom-initialize-delay.
11605
11606 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
11607
11608 * subr.el (buffer-has-markers-at): Mark obsolete.
11609
11610 * subr.el (lambda): Use declare.
11611
11612 * emacs-lisp/lisp-mode.el (lambda):
11613 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11614
11615 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
11616
11617 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
11618
11619 2012-05-26 Glenn Morris <rgm@gnu.org>
11620
11621 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11622
11623 2012-05-25 Glenn Morris <rgm@gnu.org>
11624
11625 * paths.el: Remove no-byte-compile.
11626 * loadup.el: No need to load paths.el uncompiled.
11627
11628 * image.el (imagemagick-types-inhibit): Doc fix.
11629
11630 * version.el: Remove no-byte-compile and associated formatting.
11631 * loadup.el: No need to load version.el uncompiled. AFAICS, this
11632 is ancient code from when there was an "inc-vers.el".
11633
11634 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11635
11636 * progmodes/gdb-mi.el: Minor style changes.
11637 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11638 Turn into minor modes.
11639 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11640 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11641 (gdb-shell): Remove unneeded let-binding.
11642 (gdb-get-many-fields): Eliminate O(n²) behavior.
11643
11644 2012-05-25 Eli Zaretskii <eliz@gnu.org>
11645
11646 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11647 platforms that don't link in fontset.c.
11648
11649 2012-05-25 Juri Linkov <juri@jurta.org>
11650
11651 Use the same diff color scheme as in modern VCSes (bug#10181).
11652
11653 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11654 to avoid confusion with `diff-added' that now uses green colors.
11655 (diff-removed): Use shades of red.
11656 (diff-added): Use shades of green.
11657 (diff-changed): Leave just the yellow color.
11658 (diff-use-changed-face): New variable.
11659 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11660 how to highlight context diff changes.
11661 (diff-refine-change): Use shades of yellow.
11662 (diff-refine-removed): New face that uses shades of red.
11663 (diff-refine-added): New face that uses shades of green.
11664 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11665 `diff-refine-removed' in the call to `smerge-refine-subst'
11666 depending on the value of `diff-use-changed-face'.
11667
11668 * vc/smerge-mode.el (smerge-mine): Use shades of red.
11669 (smerge-other): Use shades of green.
11670 (smerge-base): Use shades of yellow.
11671 (smerge-refined-change): Empty face.
11672 (smerge-refined-removed): New face that uses shades of red.
11673 (smerge-refined-added): New face that uses shades of green.
11674 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
11675 args `props-r' and `props-a', and use them. Doc fix.
11676 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11677 on its value use different faces `smerge-refined-change',
11678 `smerge-refined-removed', `smerge-refined-added' in the call to
11679 `smerge-refine-subst'.
11680
11681 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11682 Add face condition `min-colors 88' with shades of red.
11683 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11684 `min-colors 88' with shades of green.
11685 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11686 `min-colors 88' with shades of yellow.
11687
11688 2012-05-24 Glenn Morris <rgm@gnu.org>
11689
11690 * paths.el (prune-directory-list, remote-shell-program): Move to...
11691 * files.el (prune-directory-list, remote-shell-program): ...here.
11692 For the latter, delay initialization, prefer ssh, just search PATH.
11693
11694 * paths.el (term-file-prefix): Move to faces.el (the only user).
11695 * faces.el (term-file-prefix): Move here, make it a defcustom.
11696
11697 * paths.el (news-directory, news-path, news-inews-program):
11698 Move to gnus/nnspool.el.
11699
11700 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
11701
11702 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
11703 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
11704 Make the latter a defcustom, with a delayed initialization.
11705
11706 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
11707 These were deleted from Gnus itself late 2010.
11708
11709 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
11710
11711 * progmodes/which-func.el (which-func-ff-hook):
11712 Check against user-error, not error.
11713
11714 * emacs-lisp/edebug.el (top): Do not load or set up loading of
11715 cl-specs.el, which no longer exists.
11716
11717 2012-05-22 Glenn Morris <rgm@gnu.org>
11718
11719 * info.el (info-emacs-bug): New command.
11720 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
11721 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
11722
11723 2012-05-21 Glenn Morris <rgm@gnu.org>
11724
11725 * makefile.w32-in (update-subdirs-SH):
11726 * Makefile.in (update-subdirs): Update for moved update-subdirs.
11727
11728 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11729
11730 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
11731
11732 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11733 Simplify Maven regexp, and make sure the file can't start with a space
11734 (bug#11517).
11735
11736 2012-05-21 Glenn Morris <rgm@gnu.org>
11737
11738 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11739 Scrap superfluous subshells.
11740
11741 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11742
11743 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
11744 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
11745
11746 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
11747
11748 * calc/calc.el (calc-ensure-consistent-units): New variable.
11749
11750 * calc/calc-units.el (math-consistent-units-p)
11751 (math-check-unit-consistency): New functions.
11752 (calc-quick-units, calc-convert-units):
11753 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
11754 is non-nil.
11755 (calc-extract-units): Fix typo.
11756
11757 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11758
11759 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
11760
11761 * textmodes/flyspell.el: Commenting style, plus code simplifications.
11762 (flyspell-default-deplacement-commands): Don't spell check after
11763 repeated window/frame switches (e.g. triggered by mouse-movement).
11764 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
11765 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
11766 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
11767 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
11768 Remove unused vars.
11769 (flyspell-get-casechars, flyspell-get-not-casechars):
11770 Simplify; Don't bother removing a ] just to add it back.
11771 * textmodes/ispell.el (ispell-program-name): Use executable-find.
11772
11773 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11774
11775 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
11776 New functions.
11777 (math-function-table): Add support for more C functions.
11778
11779 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11780
11781 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11782 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11783 Protect delay handling for otherchars against empty otherchars.
11784
11785 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
11786
11787 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
11788 their respective macro declarations.
11789 * skeleton.el (define-skeleton):
11790 * progmodes/compile.el (define-compilation-mode):
11791 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
11792 (define-ibuffer-filter):
11793 * emacs-lisp/generic.el (define-generic-mode):
11794 * emacs-lisp/easy-mmode.el (define-minor-mode)
11795 (define-globalized-minor-mode):
11796 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
11797 * emacs-lisp/byte-run.el (defsubst):
11798 * custom.el (deftheme): Add doc-string metadata.
11799
11800 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11801
11802 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
11803
11804 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11805
11806 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
11807
11808 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
11809 * emacs-lisp/cl-macs.el: Idem.
11810 * emacs-lisp/cl-specs.el: Remove.
11811
11812 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11813
11814 Minor renaming of internal CL functions and variables.
11815 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
11816 (cl--position): Rename from cl-position.
11817 (cl--delete-duplicates): Rename from cl-delete-duplicates.
11818 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
11819 (cl--random-state): Rename from *random-state*.
11820
11821 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11822
11823 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
11824 parens around the arg list (bug#11499).
11825
11826 2012-05-17 Juri Linkov <juri@jurta.org>
11827
11828 * isearch.el (word-search-regexp, word-search-backward)
11829 (word-search-forward, word-search-backward-lax)
11830 (word-search-forward-lax): Move functions from search.c
11831 (bug#10145, bug#11381).
11832
11833 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11834
11835 * textmodes/flyspell.el (flyspell-check-pre-word-p)
11836 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11837 Delay for otherchars as for normal word components.
11838
11839 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11840
11841 * minibuffer.el (completion--sifn-requote): Fix last change.
11842 (minibuffer-local-must-match-filename-map):
11843 Move define-obsolete-variable-alias before its var.
11844
11845 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
11846
11847 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
11848
11849 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
11850 behavior.
11851 (completion--string-equal-p): New function.
11852 (completion--twq-all): Use it to get better assertion failure data.
11853
11854 Only handle ".." and '..' quoting in shell-mode (bug#11466).
11855 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
11856 (shell--requote-argument): New functions.
11857 (shell-completion-vars): Use them.
11858 (shell--parse-pcomplete-arguments): Rename from
11859 shell-parse-pcomplete-arguments.
11860 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
11861 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
11862 Obey comint-file-name-quote-list.
11863
11864 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
11865 (smie-indent-keyword): Use it.
11866
11867 2012-05-14 Stefan Merten <smerten@oekonux.de>
11868
11869 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
11870
11871 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11872
11873 * net/rlogin.el (rlogin-mode-map): Fix last change.
11874
11875 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
11876
11877 * mail/smtpmail.el (smtpmail-send-command): Send the command and
11878 the following \r\n using a single `process-send-string', since the
11879 Lotus SMTP server refuses to accept any commands if they are sent
11880 with two `process-send-string's (Bug#11444).
11881
11882 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
11883
11884 * shell.el (shell-parse-pcomplete-arguments):
11885 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
11886
11887 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11888
11889 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
11890 (image-transform-scale, image-transform-right-angle-fudge): New vars.
11891 (image-transform-width, image-transform-fit-width): New functions.
11892 (image-transform-properties): Use them.
11893 (image-transform-check-size): New function.
11894 (image-toggle-display-image): Use it (for testing).
11895 (image-transform-set-rotation): Reduce angle mod 360.
11896 Delete obsolete comment.
11897
11898 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
11899
11900 * image-mode.el: Fix scaling (bug#11399).
11901 (image-transform-resize): Doc fix.
11902 (image-transform-properties): Default scale is 1 and height should
11903 be an integer.
11904
11905 2012-05-13 Johan Bockgård <bojohan@gnu.org>
11906
11907 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
11908 than hard-coding `car', to fix misbehavior when moving forward.
11909
11910 2012-05-13 Chong Yidong <cyd@gnu.org>
11911
11912 * emacs-lisp/tabulated-list.el (tabulated-list-format)
11913 (tabulated-list-entries, tabulated-list-padding)
11914 (tabulated-list-sort-key): Make permanent-local.
11915
11916 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
11917 (electric-buffer-list): Put electric buffer menu
11918 command descriptions in this docstring, instead of the docstring
11919 of electric-buffer-menu-mode. Code cleanups.
11920 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
11921 Electric-buffer-menu-mode.
11922 (electric-buffer-update-highlight): Minor code cleanup.
11923
11924 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
11925
11926 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
11927 (Bug#11447)
11928
11929 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11930
11931 Move define-obsolete-variable-alias before the var's definition.
11932 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
11933 * tooltip.el (tooltip-hook):
11934 * textmodes/reftex-toc.el (reftex-toc-map):
11935 * textmodes/reftex-sel.el (reftex-select-label-map)
11936 (reftex-select-bib-map):
11937 * textmodes/reftex-index.el (reftex-index-map)
11938 (reftex-index-phrases-map):
11939 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
11940 * progmodes/meta-mode.el (meta-mode-map):
11941 * novice.el (disabled-command-hook):
11942 * loadhist.el (unload-hook-features-list):
11943 * frame.el (blink-cursor):
11944 * files.el (find-file-not-found-hooks, write-file-hooks)
11945 (write-contents-hooks):
11946 * emulation/tpu-edt.el (GOLD-map):
11947 * emacs-lock.el (emacs-lock-from-exiting):
11948 * emacs-lisp/generic.el (generic-font-lock-defaults):
11949 * emacs-lisp/chart.el (chart-map):
11950 * dos-fns.el (register-name-alist):
11951 * dired-x.el (dired-omit-files-p):
11952 * desktop.el (desktop-enable):
11953 * cus-edit.el (custom-mode-hook):
11954 * buff-menu.el (buffer-menu-mode-hook):
11955 * bookmark.el (bookmark-read-annotation-text-func)
11956 (bookmark-exit-hooks):
11957 * allout.el (allout-mode-deactivate-hook)
11958 (allout-exposure-change-hook, allout-structure-added-hook)
11959 (allout-structure-deleted-hook, allout-structure-shifted-hook):
11960 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
11961 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
11962 comes before the corresponding variable's definition.
11963
11964 2012-05-12 Chong Yidong <cyd@gnu.org>
11965
11966 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
11967 (Buffer-menu-mouse-select): Restore function (Bug#11459).
11968 (Buffer-menu-mode-map): Bind it.
11969 (Buffer-menu--pretty-name): Add a mouse-face property.
11970
11971 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
11972
11973 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
11974 (prolog-upper-case-string, prolog-lower-case-string)
11975 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
11976 (prolog-use-smie, prolog-smie-grammar): New vars.
11977 (prolog-smie-forward-token, prolog-smie-backward-token)
11978 (prolog-smie-rules): New funs.
11979 (prolog-comment-indent): Remove.
11980 (prolog-mode-variables): Use default comment indentation instead.
11981 Setup SMIE.
11982 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
11983 (prolog-mode): Don't call them any more.
11984 (prolog-electric-colon, prolog-electric-dash)
11985 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
11986
11987 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
11988
11989 * minibuffer.el (completion--twq-all): Again, allow case differences.
11990
11991 * term.el: Move keymap initialization code to be more idiomatic.
11992 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
11993 (term-terminal-menu): Move initialization into declaration.
11994 (term-escape-char): Let the user set it in her .emacs.
11995
11996 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
11997 Provide SMIE-based indentation (not enabled by default yet).
11998 (sh-mode-map): Don't bind electric keys.
11999 Use electric-pair-mode instead of skeleton-pair.
12000 (sh-assignment-regexp): Fit within 80 columns.
12001 (sh-indent-supported): Specify actual shell name instead of boolean.
12002 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
12003 (sh-maybe-here-document): Use it. Make obsolete.
12004 (sh-electric-here-document-mode) New minor mode.
12005 (sh-mode): Use it. Don't set sh-indent-supported-here here.
12006 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
12007 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
12008 (sh-smie-rc-grammar, sh-use-smie): New vars.
12009 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
12010 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
12011 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
12012 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
12013 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
12014 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
12015 (sh-set-shell): Use smie-setup if requested.
12016
12017 * term.el (term-set-escape-char): Properly set term-escape-char.
12018 See http://stackoverflow.com/questions/10524656.
12019
12020 2012-05-10 Chong Yidong <cyd@gnu.org>
12021
12022 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
12023 Use url-generic-parse-url, and handle host names and Windows
12024 filenames properly.
12025 (ffap-url-unwrap-remote): Use url-generic-parse-url.
12026 (ffap-url-unwrap-remote): Accept list values, specifying a list of
12027 URL schemes to work on.
12028 (ffap--toggle-read-only): New function.
12029 (ffap-read-only, ffap-read-only-other-window)
12030 (ffap-read-only-other-frame): Use it.
12031 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
12032 necessary for ffap-url-unwrap-remote.
12033
12034 2012-05-10 Dave Abrahams <dave@boostpro.com>
12035
12036 * cus-start.el (create-lockfiles): Add it.
12037
12038 2012-05-09 Chong Yidong <cyd@gnu.org>
12039
12040 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
12041 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
12042
12043 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12044
12045 * shell.el (shell-completion-vars): Fix last change (bug#11348).
12046
12047 2012-05-09 Chong Yidong <cyd@gnu.org>
12048
12049 * ansi-color.el (ansi-color-process-output): Check for validity of
12050 comint-last-output-start before using it. This avoids a bad
12051 interaction with gdb-mi's input/output buffer.
12052
12053 2012-05-09 Glenn Morris <rgm@gnu.org>
12054
12055 * files.el (dir-locals-read-from-file):
12056 Mention dir-locals in any error message.
12057
12058 2012-05-09 Chong Yidong <cyd@gnu.org>
12059
12060 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
12061 package (Bug#11410).
12062
12063 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
12064 variables into description.
12065
12066 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12067
12068 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
12069 shell-delimiter-argument-list (bug#11348).
12070 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
12071
12072 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
12073
12074 * textmodes/rst.el: Silence byte-compiler warnings.
12075 (rst-re-alist, rst-reset-section-caches): Move around.
12076 (rst-re): Use `characterp', not `char-valid-p'.
12077 (font-lock-beg, font-lock-end): Declare.
12078
12079 * progmodes/idlw-shell.el (specs): Remove reference to deleted
12080 variable `idlwave-shell-activate-alt-keybindings' and simplify.
12081
12082 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
12083
12084 2012-05-08 Glenn Morris <rgm@gnu.org>
12085
12086 * files.el (auto-mode-alist): Treat ".make" like ".mk".
12087
12088 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12089
12090 * vc/log-edit.el: Add GNU coding standards highlighting.
12091 (log-edit-font-lock-gnu-style)
12092 (log-edit-font-lock-gnu-keywords): New vars.
12093 (log-edit-font-lock-keywords): New fun.
12094 (log-edit-mode): Don't fold case in font-lock.
12095 (log-edit-font-lock-keywords): Do not assume case-folding.
12096
12097 * imenu.el: Misc cleanup. Make docstrings out of comments.
12098 Use lexical-binding.
12099 (imenu--index-alist, imenu--last-menubar-index-alist)
12100 (imenu-menubar-modified-tick): Use defvar-local.
12101 (imenu--split-menu): Remove unused var.
12102 (imenu--cleanup-seen): Declare as global.
12103 (imenu--cleanup): Use dolist.
12104
12105 * subr.el (defvar-local): Add debug spec and doc-string position.
12106
12107 2012-05-08 Glenn Morris <rgm@gnu.org>
12108
12109 * language/burmese.el, language/cham.el, language/czech.el:
12110 * language/english.el, language/georgian.el, language/greek.el:
12111 * language/japanese.el, language/khmer.el, language/korean.el:
12112 * language/lao.el, language/misc-lang.el, language/romanian.el:
12113 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
12114 * language/thai.el, language/utf-8-lang.el:
12115 Remove no-byte-compile setting.
12116
12117 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
12118
12119 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12120
12121 * progmodes/make-mode.el (makefile-browse):
12122 Remove unnecessary interactive. (Bug#11324)
12123
12124 2012-05-07 Glenn Morris <rgm@gnu.org>
12125
12126 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
12127
12128 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
12129
12130 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12131
12132 * loadup.el: Preload newcomment.el.
12133 * newcomment.el: Move autoload-only code to toplevel.
12134
12135 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
12136 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12137 Handle new :right-align column property.
12138 (tabulated-list-print-col): Idem, plus use `display' text-property to
12139 try and preserve alignment for variable pitch fonts.
12140
12141 2012-05-07 Chong Yidong <cyd@gnu.org>
12142
12143 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
12144 (tabulated-list-use-header-line): New var.
12145 (tabulated-list-init-header): Use it.
12146 (tabulated-list-print-fake-header): New function.
12147 (tabulated-list-print): Use it.
12148 (tabulated-list-sort-button-map): Add non-header-line commands.
12149 (tabulated-list-init-header): Add column name property to basic
12150 labels as well.
12151 (tabulated-list-col-sort): Handle non-header-line button case.
12152 (tabulated-list--sort-by-column-name): Fix a corner case.
12153
12154 * buff-menu.el (list-buffers--refresh):
12155 Handle Buffer-menu-use-header-line.
12156
12157 2012-05-06 Chong Yidong <cyd@gnu.org>
12158
12159 * buff-menu.el: Convert to Tabulated List mode.
12160 (Buffer-menu-buffer+size-width): Make obsolete.
12161 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
12162 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
12163 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
12164 documentation into docstring of buffer-menu.
12165 (Buffer-menu-toggle-files-only): Add an informative message.
12166 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
12167 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
12168 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
12169 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12170 (Buffer-menu-execute, Buffer-menu-select)
12171 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12172 (Buffer-menu-bury): Use Tabulated List machinery.
12173 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12174 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12175 Delete.
12176 (list-buffers--refresh): New function.
12177 (list-buffers-noselect): Use it.
12178 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12179 (Buffer-menu--pretty-file-name): New helper functions.
12180
12181 * loadup.el: Preload tabulated-list.
12182
12183 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12184 tabulated-list-sort-column.
12185 (tabulated-list-init-header): Add the initial aligning space even
12186 if tabulated-list-padding is zero.
12187
12188 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
12189
12190 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12191 whose cdr is not a cons cell correctly (bug#11038).
12192
12193 2012-05-06 Chong Yidong <cyd@gnu.org>
12194
12195 * emacs-lisp/tabulated-list.el (tabulated-list-format):
12196 Accept additional plist in column descriptors.
12197 (tabulated-list-init-header): Obey it.
12198 (tabulated-list-get-entry): New function.
12199 (tabulated-list-put-tag): Use it. Use string-width instead of
12200 length.
12201 (tabulated-list--column-number): New function.
12202 (tabulated-list-print): Use it.
12203 (tabulated-list-print-col): New function.
12204 Set `tabulated-list-column-name' property on each column's text.
12205 (tabulated-list-print-entry): Use it.
12206 (tabulated-list-delete-entry, tabulated-list-set-col):
12207 New functions.
12208 (tabulated-list-sort-column): New command (Bug#11337).
12209
12210 * buff-menu.el (list-buffers): Move C-x C-b binding from
12211 buff-menu.el to bindings.el.
12212
12213 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12214 :advertised-binding feature.
12215
12216 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
12217
12218 * progmodes/compile.el (compilation-internal-error-properties):
12219 Calculate start position correctly when end-col is set but
12220 end-line is not (Bug#11382).
12221
12222 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
12223
12224 * man.el (Man-unindent): Use text-property-default-nonsticky to
12225 prevent untabify from inheriting face properties (Bug#11408).
12226
12227 2012-05-05 Stefan Merten <smerten@oekonux.de>
12228
12229 * textmodes/rst.el: Major merge with upstream development up to
12230 Docutils SVN r7399 / rst.el V1.2.1.
12231
12232 Clarify maintainership and authors.
12233
12234 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12235 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12236 (rst-official-version, rst-official-cvs-rev, rst-version)
12237 (rst-package-emacs-version-alist): New functions and variables
12238 for version information.
12239
12240 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12241 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12242 (rst-mode-syntax-table, rst-mode): New and corrected functions
12243 and variables representing reStructuredText features.
12244
12245 (rst-re): New function for reStructuredText regexes. Use in
12246 many places.
12247
12248 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12249 (rst-mode-map): Rebind keys.
12250
12251 (rst-mode-lazy, rst-font-lock-keywords)
12252 (rst-font-lock-extend-region)
12253 (rst-font-lock-extend-region-internal)
12254 (rst-font-lock-extend-region-extend)
12255 (rst-font-lock-find-unindented-line-limit)
12256 (rst-font-lock-find-unindented-line-match)
12257 (rst-adornment-level, rst-font-lock-adornment-level)
12258 (rst-font-lock-adornment-match)
12259 (rst-font-lock-handle-adornment-pre-match-form)
12260 (rst-font-lock-handle-adornment-matcher): Major revision of
12261 font-locking. Integrate with other code. Use `jit-lock-mode'.
12262
12263 (rst-preferred-adornments, rst-adjust-hook)
12264 (rst-new-adornment-down, rst-preferred-bullets)
12265 (rst-preferred-bullets, rst-indent, rst-indent-width)
12266 (rst-indent-field, rst-indent-literal-normal)
12267 (rst-indent-literal-minimized, rst-indent-comment): Change,
12268 extend and improve customization.
12269
12270 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12271 (rst-normalize-cursor-position, rst-get-decoration)
12272 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12273 (rst-rstrip, rst-toc-insert-find-delete-contents)
12274 (rst-shift-fill-region, rst-compute-bullet-tabs)
12275 (rst-debug-print-tabs, rst-debug-mark-found)
12276 (rst-shift-region-guts, rst-shift-region-right)
12277 (rst-shift-region-left, rst-use-char-classes)
12278 (rst-font-lock-keywords-function)
12279 (rst-font-lock-indentation-point)
12280 (rst-font-lock-find-unindented-line-begin)
12281 (rst-font-lock-find-unindented-line-end)
12282 (rst-font-lock-find-unindented-line)
12283 (rst-font-lock-adornment-point, rst-font-lock-level)
12284 (rst-adornment-level-alist): Remove functions and variables.
12285
12286 (rst-compare-adornments, rst-get-adornment-match)
12287 (rst-suggest-new-adornment, rst-get-adornments-around)
12288 (rst-adornment-complete-p, rst-get-next-adornment)
12289 (rst-adjust-adornment, rst-display-adornments-hierarchy)
12290 (rst-straighten-adornments): Standardize function names to
12291 use "adornment" instead of "decoration". Correct callers.
12292 Similar standardizing in many places.
12293
12294 (rst-update-section, rst-adjust, rst-promote-region)
12295 (rst-enumerate-region, rst-bullet-list-region)
12296 (rst-repeat-last-character): Correct use of `interactive'.
12297
12298 (rst-classify-adornment, rst-find-all-adornments)
12299 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12300 (rst-find-leftmost-column, rst-repeat-last-character):
12301 Refactor functions.
12302
12303 (rst-find-title-line, rst-reset-section-caches)
12304 (rst-get-adornments-around, rst-adjust-adornment-work)
12305 (rst-arabic-to-roman, rst-roman-to-arabic)
12306 (rst-insert-list-pos, rst-insert-list-new-item)
12307 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12308 New functions.
12309
12310 (rst-all-sections, rst-section-hierarchy)
12311 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12312 New variables.
12313
12314 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12315 configuration instead of only buffer. Change where necessary.
12316
12317 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12318 (rst-shift-region, rst-adaptive-fill): New functions for
12319 indentation and filling.
12320
12321 (rst-comment-line-break, rst-comment-indent)
12322 (rst-comment-insert-comment, rst-comment-region)
12323 (rst-uncomment-region): New functions for handling comments.
12324
12325 (rst-compile): Quote shell arguments.
12326
12327 (rst-compile-pdf-preview, rst-compile-slides-preview):
12328 Delete temporary files after use.
12329
12330 2012-05-05 Glenn Morris <rgm@gnu.org>
12331
12332 * calendar/cal-html.el: Optionally include holidays in the output.
12333 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12334 (cal-html-holidays): New option.
12335 (cal-html-css-default): Add holiday entry.
12336 (holiday-in-range): Autoload it.
12337 (cal-html-htmlify-entry): Add optional class argument.
12338 (cal-html-htmlify-list): Add optional holidays argument.
12339 (cal-html-insert-agenda-days): Include holidays in the output.
12340 (cal-html-one-month): Maybe include holidays.
12341
12342 * calendar/holidays.el (holiday-in-range):
12343 Move here from cal-tex-list-holidays.
12344 * calendar/cal-tex.el (cal-tex-list-holidays):
12345 Make it an obsolete alias for holiday-in-range. Update all callers.
12346
12347 2012-05-05 Chong Yidong <cyd@gnu.org>
12348
12349 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12350 Nextstep.
12351
12352 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
12353
12354 * files.el (file-auto-mode-skip): New var.
12355 (set-auto-mode-1): Use it.
12356
12357 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12358
12359 * repeat.el: Use lexical-binding.
12360 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12361 (repeat-undo-count): Remove.
12362 (repeat):
12363 * progmodes/octave-mod.el (octave-abbrev-start):
12364 * progmodes/f90.el (f90-abbrev-start):
12365 * face-remap.el (text-scale-adjust):
12366 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12367
12368 * emacs-lisp/pcase.el (pcase--let*): New function.
12369 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12370 a bit more.
12371 (pcase--split-pred): Be more clever about ruling out overlap between
12372 a predicate and some constant pattern.
12373 (pcase--q1): Use `null' instead of (eq foo nil).
12374
12375 * subr.el (setq-local, defvar-local): New macros.
12376 (kbd): Redefine as an alias.
12377 (with-selected-window): Leave unrelated frames alone.
12378 (set-temporary-overlay-map): New function.
12379
12380 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12381
12382 * subr.el (user-error): New function.
12383 * window.el (switch-to-buffer):
12384 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12385 (smerge-match-conflict):
12386 * simple.el (previous-matching-history-element)
12387 (next-matching-history-element, goto-history-element, undo-more)
12388 (undo-start):
12389 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12390 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12391 (next-file, tags-loop-scan, list-tags, complete-tag):
12392 * progmodes/compile.el (compilation-loop):
12393 * mouse.el (mouse-minibuffer-check):
12394 * man.el (Man-bgproc-sentinel, Man-goto-page):
12395 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12396 (Info-history-forward, Info-follow-reference, Info-menu)
12397 (Info-extract-menu-item, Info-extract-menu-counting)
12398 (Info-forward-node, Info-backward-node, Info-next-menu-item)
12399 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12400 (Info-next-reference, Info-prev-reference, Info-index)
12401 (Info-index-next, Info-follow-nearest-node)
12402 (Info-copy-current-node-name):
12403 * imenu.el (imenu--make-index-alist)
12404 (imenu-default-create-index-function, imenu-add-to-menubar):
12405 * files.el (basic-save-buffer, recover-file):
12406 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12407 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12408 (checkdoc-message-text, checkdoc-defun):
12409 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12410 * cus-edit.el (customize-changed-options, customize-rogue)
12411 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12412 (custom-variable-mark-to-reset-standard)
12413 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12414 (custom-file):
12415 * completion.el (check-completion-length):
12416 * comint.el (comint-search-arg)
12417 (comint-previous-matching-input-string-position)
12418 (comint-previous-matching-input)
12419 (comint-replace-by-expanded-history-before-point, comint-send-input)
12420 (comint-copy-old-input, comint-backward-matching-input)
12421 (comint-goto-process-mark, comint-set-process-mark):
12422 * calendar/calendar.el (calendar-cursor-to-date): Use it.
12423 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12424
12425 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12426
12427 * dabbrev.el (dabbrev--ignore-case-p): New function.
12428 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12429 Use it.
12430
12431 * files.el (automount-dir-prefix): Mark as obsolete.
12432
12433 2012-05-04 Glenn Morris <rgm@gnu.org>
12434
12435 * patcomp.el, play/bruce.el: Move to obsolete/.
12436
12437 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
12438
12439 Fix minor Y10k bugs.
12440 * arc-mode.el (archive-unixdate):
12441 * autoinsert.el (auto-insert-alist):
12442 * calc/calc-forms.el (math-this-year):
12443 * emacs-lisp/copyright.el (copyright-current-year)
12444 (copyright-update-year, copyright):
12445 * tar-mode.el (tar-clip-time-string):
12446 * time.el (display-time-update):
12447 Don't assume years have 4 digits.
12448
12449 2012-05-04 Chong Yidong <cyd@gnu.org>
12450
12451 * dos-w32.el (file-name-buffer-file-type-alist)
12452 (direct-print-region-use-command-dot-com):
12453 * ffap.el (ffap-menu-regexp):
12454 * find-file.el (ff-special-constructs):
12455 * follow.el (follow-debug):
12456 * forms.el (forms--debug):
12457 * iswitchb.el (iswitchb-all-frames):
12458 * ido.el (ido-all-frames):
12459 * emacs-lisp/timer.el (timer-max-repeats):
12460 * mail/feedmail.el (feedmail-mail-send-hook)
12461 (feedmail-mail-send-hook-queued):
12462 * mail/footnote.el (footnote-signature-separator):
12463 * mail/mailabbrev.el (mail-alias-separator-string)
12464 (mail-abbrev-mode-regexp):
12465 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12466 * progmodes/idlwave.el (idlwave-libinfo-file)
12467 (idlwave-default-completion-case-is-down)
12468 (idlwave-library-routines): Convert defvars to defcustoms.
12469
12470 * mail/rmail.el (rmail-decode-mime-charset):
12471 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12472 (idlwave-shell-fix-inserted-breaks)
12473 (idlwave-shell-activate-alt-keybindings)
12474 (idlwave-shell-use-breakpoint-glyph):
12475 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12476
12477 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12478
12479 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12480
12481 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
12482
12483 * progmodes/verilog-mode.el (font-lock-keywords):
12484 Fix mis-highligting auto. Reported by Craig Barner.
12485 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12486 defines from global name space. Reported by Dan Dever.
12487 (verilog-auto-reset, verilog-auto-reset-widths)
12488 (verilog-auto-tieoff): Support using unbased numbers for
12489 AUTORESET and AUTOTIEOFF.
12490 (verilog-submit-bug-report): Update variable list.
12491 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12492 parenthesis from not matching. Reported by Michael Rytting.
12493 (verilog-auto-template-lint): Fix hash error when linting modules
12494 with no used templates.
12495 (verilog-warn, verilog-warn-error)
12496 (verilog-warn-fatal): When non-interactive report multiple
12497 warnings before exiting. Suggested by Brad Dobbie.
12498 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12499 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12500 to report unused template errors. Reported by Brad Dobbie.
12501 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12502 nets, bug438. Reported by Vns Blore.
12503 (verilog-auto-inout-module, verilog-auto-reg)
12504 (verilog-read-decls, verilog-read-sub-decls-sig)
12505 (verilog-signals-edit-wire-reg, verilog-signals-with):
12506 Fix passing of Verilog data types in ANSI input/output ports
12507 such as "output logic" into the AUTOs. Special case "wire" and
12508 "reg" for backwards compatibility presuming Verilog 2001.
12509 (verilog-auto-ascii-enum): Add "auto enum" as alias.
12510 (verilog-preprocess): Fix replication of preprocess output.
12511 Reported by Brad Dobbie.
12512 (verilog-auto-inst-interfaced-ports):
12513 Create verilog-auto-inst-interfaced-ports, bug429.
12514 Reported by Julian Gorfajn.
12515 (verilog-after-save-font-hook)
12516 (verilog-before-save-font-hook): New variable.
12517 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12518 (verilog-save-font-mods): Wrap disabling fontification, reported
12519 by David Rogoff.
12520 (verilog-do-indent, verilog-pretty-declarations-auto)
12521 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12522 Reported by Pierre-David Pfister.
12523 (verilog-set-auto-endcomments): Fix endtask auto comments outside
12524 of class declarations, bug292. Reported by Kevin Heilman.
12525 (verilog-read-decls): Fix 'parameter type' not appearing in
12526 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
12527 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12528 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
12529 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12530 Reported by David Kravitz.
12531
12532 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
12533
12534 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12535 assignment with tests in ifs and for loops.
12536 (verilog-extended-complete-re, verilog-complete-reg): Change so
12537 that DPI inport functions don't look like fuction declarations.
12538 (verilog-pretty-expr): Don't line up assignment
12539 operations to the test and increment in if and for loops
12540 (verilog-extended-complete-re, verilog-complete-reg): Change so
12541 that DPI inport functions don't look like fuction declarations.
12542
12543 2012-05-03 Kenichi Handa <handa@m17n.org>
12544
12545 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12546 decoding, and show a warning message without signaling an error
12547 (Bug#11282).
12548
12549 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12550
12551 * emacs-lisp/bytecomp.el
12552 (byte-compile-file-form-custom-declare-variable): Compile all elements,
12553 since cconv.el might have introduced :fun-body, internal-make-closure,
12554 and friends for bytecomp to handle (bug#11391).
12555 * custom.el (defcustom): Avoid ((λ ..) ..).
12556
12557 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
12558
12559 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12560
12561 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
12562
12563 * notifications.el (dbus-debug):
12564 * term/linux.el (gpm-mouse-enable):
12565 * term/screen.el (xterm-register-default-colors): Declare.
12566
12567 2012-05-02 Chong Yidong <cyd@gnu.org>
12568
12569 * cus-start.el (gc-cons-percentage, exec-suffixes)
12570 (dos-display-scancodes, dos-hyper-key, dos-super-key)
12571 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12572 (make-cursor-line-fully-visible, void-text-area-pointer)
12573 (font-list-limit): Add customization data.
12574
12575 * allout.el (allout-exposure-change-functions)
12576 (allout-structure-added-functions)
12577 (allout-structure-deleted-functions)
12578 (allout-structure-shifted-functions): Rename abnormal hooks from
12579 *-hook, and convert to defcustoms.
12580 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12581 Convert to defcustoms.
12582 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12583
12584 * allout-widgets.el: Hook callers changed.
12585
12586 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12587
12588 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12589 the yanked message in preference to the default value of
12590 buffer-file-coding-system.
12591
12592 2012-05-02 Martin Rudalics <rudalics@gmx.at>
12593
12594 * window.el (display-buffer--action-function-custom-type):
12595 Fix entry.
12596
12597 2012-05-02 Alan Mackenzie <acm@muc.de>
12598
12599 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12600
12601 2012-05-01 Glenn Morris <rgm@gnu.org>
12602
12603 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12604
12605 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
12606
12607 * cus-edit.el (custom-variable-documentation): Simplify with format.
12608
12609 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12610 Stefan Monnier <monnier@iro.umontreal.ca>
12611
12612 * simple.el (suggest-key-bindings, execute-extended-command):
12613 Move from keyboard.c.
12614
12615 2012-05-01 Chong Yidong <cyd@gnu.org>
12616
12617 * follow.el: Eliminate advice.
12618 (set-process-filter, process-filter, sit-for): Advice deleted.
12619 (follow-mode-off-hook): Obsolete hook removed.
12620 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12621 Vars deleted.
12622 (follow-auto): Use a :set function.
12623 (follow-mode): Rewritten. Don't advise process filters.
12624 (follow-switch-to-current-buffer-all, follow-scroll-up)
12625 (follow-scroll-down): Assume follow-mode is bound.
12626 (follow-comint-scroll-to-bottom)
12627 (follow-align-compilation-windows): New functions.
12628 (follow--window-sorter): New function.
12629 (follow-all-followers): Use it to explicitly sort windows by their
12630 positions; don't make assumptions about next-window order.
12631 (follow-windows-start-end, follow-delete-other-windows-and-split)
12632 (follow-calc-win-start): Doc fix.
12633 (follow-windows-aligned-p, follow-select-if-visible): Don't call
12634 vertical-motion unnecessarily.
12635 (follow-adjust-window): New function.
12636 (follow-post-command-hook): Use it.
12637 (follow-call-set-process-filter, follow-call-process-filter)
12638 (follow-intercept-process-output, follow-tidy-process-filter-alist)
12639 (follow-stop-intercept-process-output, follow-generic-filter):
12640 Functions deleted.
12641 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12642 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12643 New functions, replacing advice on scroll-bar-* commands.
12644 (follow-mwheel-scroll): New function (Bug#4112).
12645
12646 * comint.el (comint-adjust-point): New function.
12647 (comint-postoutput-scroll-to-bottom): Use it.
12648 Call follow-comint-scroll-to-bottom for Follow mode buffers.
12649
12650 2012-05-01 Glenn Morris <rgm@gnu.org>
12651
12652 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12653 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12654 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12655 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12656 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12657 Remove no-byte-compile setting.
12658
12659 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12660
12661 * minibuffer.el (completion-table-with-quoting): Fix compatibility
12662 all-completions code to not return a number in the last cdr.
12663
12664 2012-04-30 Leo Liu <sdl.web@gmail.com>
12665
12666 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12667 read-only error.
12668
12669 2012-04-29 Chong Yidong <cyd@gnu.org>
12670
12671 * follow.el (follow-calc-win-end): Rewrite to handle partial
12672 screen lines correctly (Bug#8390).
12673 (follow-avoid-tail-recenter): Minor cleanup.
12674
12675 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12676
12677 Avoid the obsolete `assoc' package.
12678 * speedbar.el (speedbar-refresh): Avoid adelete.
12679 (speedbar-file-lists): Simplify and avoid aput.
12680 * man.el (Man--sections, Man--refpages): New vars, replacing
12681 Man-sections-alist and Man-refpages-alist.
12682 (Man-build-section-alist, Man-build-references-alist):
12683 Use them; avoid aput.
12684 (Man--last-section, Man--last-refpage): New vars.
12685 (Man-follow-manual-reference): Use them.
12686 Use the `default' arg of completing-read.
12687 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
12688
12689 2012-04-27 Chong Yidong <cyd@gnu.org>
12690
12691 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
12692
12693 * startup.el (x-apply-session-resources): New function.
12694
12695 * term/ns-win.el (ns-initialize-window-system):
12696 * term/w32-win.el (w32-initialize-window-system):
12697 * term/x-win.el (x-initialize-window-system): Use it to properly
12698 set menu-bar-mode and other vars from X resources, even if the
12699 initial frame is not a window-system frame (Bug#2299).
12700
12701 * subr.el (read-key): Avoid running filter function when setting
12702 up temporary tool bar entries (Bug#9922).
12703
12704 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12705
12706 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
12707 (Bug#11344)
12708
12709 2012-04-27 Chong Yidong <cyd@gnu.org>
12710
12711 * select.el (xselect--encode-string): New function, split from
12712 xselect-convert-to-string.
12713 (xselect-convert-to-string): Use it.
12714 (xselect-convert-to-filename, xselect-convert-to-os)
12715 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
12716 returned strings are properly encoded (Bug#11315).
12717
12718 2012-04-27 Chong Yidong <cyd@gnu.org>
12719
12720 * simple.el (delete-active-region): Move to killing custom group.
12721
12722 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
12723
12724 * progmodes/which-func.el (which-func-current): Quote %
12725 characters for mode-line processing.
12726
12727 2012-04-27 Chong Yidong <cyd@gnu.org>
12728
12729 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
12730 reaching eob (Bug#11286).
12731
12732 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12733
12734 * progmodes/gdb-mi.el (gdb-control-level): New variable.
12735 (gdb): Make it buffer-local and init to zero.
12736 (gdb-control-commands-regexp): New variable.
12737 (gdb-send): Don't wrap in "-interpreter-exec console" if
12738 gdb-control-level is positive. Increment gdb-control-level
12739 whenever the command matches gdb-control-commands-regexp, and
12740 decrement it each time the command is "end". (Bug#11279)
12741
12742 2012-04-27 Martin Rudalics <rudalics@gmx.at>
12743
12744 * window.el (adjust-window-trailing-edge, enlarge-window)
12745 (shrink-window, window-resize):
12746 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
12747 windows (Bug#11276).
12748
12749 2012-04-27 Chong Yidong <cyd@gnu.org>
12750
12751 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
12752 fix "missing prefix" warning. All callers changed.
12753
12754 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12755
12756 * emacs-lisp/assoc.el: Move to obsolete/.
12757
12758 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12759
12760 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
12761
12762 * term/ns-win.el (ns-define-service):
12763 * progmodes/pascal.el (pascal-goto-defun):
12764 * progmodes/js.el (js--read-tab):
12765 * progmodes/etags.el (tags-lazy-completion-table):
12766 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
12767 * emacs-lisp/ewoc.el (ewoc--wrap):
12768 * emacs-lisp/assoc.el (aput, adelete, amake):
12769 * doc-view.el (doc-view-convert-current-doc):
12770 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
12771
12772 2012-04-26 Chong Yidong <cyd@gnu.org>
12773
12774 * image.el (image-type-from-buffer): Only return supported image
12775 type (Bug#9045).
12776
12777 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
12778 value, for symmetry with diff-end-of-hunk.
12779 (diff-split-hunk, diff-find-source-location)
12780 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
12781 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
12782 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
12783 compute the relevant hunk or file properly (Bug#6005).
12784 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
12785
12786 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12787
12788 * vc/vc-mtn.el:
12789 * vc/vc-hg.el:
12790 * vc/vc-git.el:
12791 * vc/vc-dir.el:
12792 * vc/vc-cvs.el:
12793 * vc/vc-bzr.el:
12794 * vc/vc-arch.el:
12795 * vc/vc.el: Replace lexical-let by lexical-binding.
12796 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
12797 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
12798 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
12799
12800 2012-04-26 Chong Yidong <cyd@gnu.org>
12801
12802 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
12803 (diff-mode-shared-map): Bind it to / and [remap undo].
12804
12805 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
12806 (ediff-window-setup-function): Use it as the default, to set up
12807 windows based on whether the current frame is graphical (Bug#2138).
12808 (ediff-choose-window-setup-function-automatically): Make obsolete.
12809
12810 * vc/ediff-init.el: Always define ediff-pixel-width/height.
12811
12812 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
12813
12814 * ffap.el: Remove old code for obsolete package.
12815 (ffap-complete-as-file-p): Remove.
12816
12817 Use completion-table-with-quoting for comint and pcomplete.
12818 * comint.el (comint--unquote&requote-argument)
12819 (comint--unquote-argument, comint--requote-argument): New functions.
12820 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
12821 (comint-quote-filename): Use regexp-opt-charset.
12822 (comint--common-suffix, comint--common-quoted-suffix)
12823 (comint--table-subvert): Remove.
12824 (comint-unquote-function, comint-requote-function): New vars.
12825 (comint--complete-file-name-data): Use them with
12826 completion-table-with-quoting.
12827 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
12828 * pcomplete.el (pcomplete-arg-quote-list)
12829 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
12830 (pcomplete-unquote-argument-function): Default to non-nil.
12831 (pcomplete-unquote-argument): Simplify.
12832 (pcomplete--common-quoted-suffix): Remove.
12833 (pcomplete-requote-argument-function): New var.
12834 (pcomplete--common-suffix): New function.
12835 (pcomplete-completions-at-point): Use completion-table-with-quoting
12836 and completion-table-subvert.
12837
12838 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
12839 (minibuffer--double-dollars): Preserve properties.
12840 (completion--sifn-requote): New function.
12841 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
12842
12843 * minibuffer.el: Add support for completion of quoted/escaped data.
12844 (completion-table-with-quoting, completion-table-subvert): New funs.
12845 (completion--twq-try, completion--twq-all): New functions.
12846 (completion--nth-completion): New function.
12847 (completion-try-completion, completion-all-completions): Use it.
12848
12849 2012-04-25 Leo Liu <sdl.web@gmail.com>
12850
12851 * progmodes/python.el (python-pdbtrack-get-source-buffer):
12852 Use compilation-message if available to find real filename.
12853
12854 2012-04-25 Chong Yidong <cyd@gnu.org>
12855
12856 * vc/diff-mode.el (diff-setup-whitespace): New function.
12857 (diff-mode): Use it.
12858
12859 * vc/diff.el (diff-sentinel):
12860 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
12861 Whitespace mode variables based on diff style (Bug#8612).
12862
12863 2012-04-25 Leo Liu <sdl.web@gmail.com>
12864
12865 * progmodes/python.el (python-send-region): Add suffix .py to the
12866 temp file.
12867
12868 * files.el (auto-mode-alist): Use javascript-mode instead.
12869
12870 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
12871
12872 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
12873
12874 * net/soap-client.el (soap-resolve-references-for-sequence-type)
12875 (soap-resolve-references-for-array-type): Hack to prevent self
12876 references, see Bug#9.
12877 (soap-parse-envelope): Report the contents of the 'detail' node
12878 when receiving a fault reply.
12879 (soap-parse-envelope): Report the contents of the entire 'detail' node.
12880
12881 * net/soap-inspect.el (soap-sample-value-for-simple-type)
12882 (soap-inspect-simple-type): New function.
12883
12884 * net/soap-client.el (soap-simple-type): New struct.
12885 (soap-default-xsd-types, soap-default-soapenc-types)
12886 (soap-decode-basic-type, soap-encode-basic-type):
12887 support unsignedInt and double basic types.
12888 (soap-resolve-references-for-simple-type)
12889 (soap-parse-simple-type, soap-encode-simple-type): New function.
12890 (soap-parse-schema): Parse xsd:simpleType declarations.
12891
12892 * net/soap-client.el (soap-default-xsd-types)
12893 (soap-default-soapenc-types): Add integer, byte and anyURI types.
12894 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
12895 the local name of "soapenc:Array".
12896 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
12897 decoding integer, byte and anyURI xsd types.
12898
12899 2012-04-25 Chong Yidong <cyd@gnu.org>
12900
12901 * cus-edit.el (custom-buffer-create-internal): Update header text.
12902
12903 2012-04-25 Eli Zaretskii <eliz@gnu.org>
12904
12905 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
12906 settings on 'system-type', not on 'window-system'. On MS-Windows,
12907 set interactive-mode on in GDB.
12908
12909 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12910
12911 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
12912 (ruby-syntax-propertize-regexp): Remove.
12913 (ruby-syntax-propertize-function): Split regexp into chunks.
12914 Match following code directly.
12915
12916 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
12917
12918 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
12919 (ruby-syntax-propertize-regexp): New function.
12920 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
12921 by a special keyword.
12922
12923 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
12924 (ruby-syntax-general-delimiters-goto-beg)
12925 (ruby-syntax-propertize-general-delimiters): New functions.
12926 (ruby-syntax-propertize-function): Use them to handle GDL.
12927 (ruby-font-lock-keywords): Move old handling of GDL...
12928 (ruby-font-lock-syntactic-keywords): .. to here.
12929 (ruby-calculate-indent): Adjust indentation for GDL.
12930
12931 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
12932
12933 * notifications.el (top): Remove unneeded declarations.
12934 (notifications-specification-version): Change to "1.2".
12935 (notifications-interface, notifications-notify-method)
12936 (notifications-close-notification-method): Fix docstring.
12937 (notifications-get-capabilities-method): New defconst.
12938 (notifications-notify): Add :action-items, :resident and
12939 :transient hints. Change "image_data" to "image-data" and
12940 "image_path" to "image-path".
12941 (notifications-get-capabilities): New defun.
12942
12943 2012-04-24 Leo Liu <sdl.web@gmail.com>
12944
12945 * progmodes/python.el: Move hideshow setup to the end.
12946
12947 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12948
12949 * window.el (handle-select-window): Clear echo area since this is
12950 no more done by read_char (Bug#11304).
12951
12952 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
12953
12954 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
12955 and `/ M' to filter-derived-mode.
12956 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
12957 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
12958 (ibuffer-mark-by-mode): Use default rather than initial-input.
12959 (ibuffer-filter-by-derived-mode): Autoload and require-match.
12960
12961 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
12962
12963 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
12964 (ibuffer-filter-by-derived-mode): New filter.
12965 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
12966
12967 2012-04-23 Andreas Politz <politza@fh-trier.de>
12968
12969 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
12970
12971 2012-04-23 Chong Yidong <cyd@gnu.org>
12972
12973 * cus-edit.el (customize-apropos, customize-apropos-options):
12974 Disable matching of non-option variables (Bug#11176).
12975 (customize-option, customize-option-other-window)
12976 (customize-changed-options): Doc fix.
12977 (customize-apropos-options, customize-apropos-faces)
12978 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
12979
12980 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
12981 Fix word list splitting (Bug#11132).
12982 (apropos-symbol, apropos-keybinding, apropos-label)
12983 (apropos-property, apropos-function-button)
12984 (apropos-variable-button, apropos-misc-button): New faces.
12985 (apropos-symbol-face, apropos-keybinding-face)
12986 (apropos-label-face, apropos-property-face, apropos-match-face):
12987 Variables removed (Bug#8396).
12988 (apropos-library-button, apropos-format-plist, apropos-print)
12989 (apropos-print-doc, apropos-describe-plist): Callers changed.
12990
12991 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
12992
12993 * net/xesam.el (xesam-mode-map): Use let-bound map in
12994 initialization. (Bug#11292)
12995
12996 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12997
12998 Preserve ispell session localwords when switching back to
12999 original buffer.
13000
13001 * textmodes/ispell.el (ispell-buffer-session-localwords):
13002 New buffer-local variable to hold buffer session localwords.
13003 (ispell-kill-ispell): Add option 'clear to delete session
13004 localwords.
13005 (ispell-command-loop, ispell-change-dictionary)
13006 (ispell-buffer-local-words): Preserve session localwords when
13007 needed.
13008
13009 * textmodes/flyspell.el (flyspell-process-localwords)
13010 (flyspell-do-correct): Preserve session localwords when needed.
13011
13012 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13013
13014 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
13015 using obsolete `translation-table-for-input'.
13016 (ispell-word, ispell-process-line, ispell-complete-word):
13017 Use plain `insert' instead of removed `ispell-insert-word'.
13018
13019 2012-04-22 Chong Yidong <cyd@gnu.org>
13020
13021 * cus-edit.el (custom-variable-menu)
13022 (custom-variable-reset-saved, custom-face-menu)
13023 (custom-face-reset-saved): If there is no saved value, make the
13024 "reset-saved" operation bring back the default (Bug#9509).
13025 (custom-face-state): Properly detect themed faces.
13026
13027 * faces.el (face-spec-set): Stop supporting deprecated form of
13028 third arg.
13029
13030 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
13031
13032 Move functions from C to Lisp. Make non-blocking method calls
13033 the default. Implement further D-Bus standard interfaces.
13034
13035 * net/dbus.el (dbus-message-internal): Declare function.
13036 Remove unneeded function declarations.
13037 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
13038 (dbus-message-type-method-return, dbus-message-type-error)
13039 (dbus-message-type-signal): Declare variables. Remove local
13040 definitions.
13041 (dbus-interface-dbus, dbus-interface-peer)
13042 (dbus-interface-introspectable, dbus-interface-properties)
13043 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
13044 Adapt docstring.
13045 (dbus-interface-objectmanager): New defconst.
13046 (dbus-call-method, dbus-call-method-asynchronously)
13047 (dbus-send-signal, dbus-method-return-internal)
13048 (dbus-method-error-internal, dbus-register-service)
13049 (dbus-register-signal, dbus-register-method): New defuns, moved
13050 from dbusbind.c
13051 (dbus-call-method-handler, dbus-setenv)
13052 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
13053 New defuns.
13054 (dbus-call-method-non-blocking): Make it an obsolete function.
13055 (dbus-unregister-object, dbus-unregister-service)
13056 (dbus-handle-event, dbus-register-property)
13057 (dbus-property-handler): Obey the new structure of
13058 `bus-registered-objects'.
13059 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
13060 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
13061 Use `dbus-call-method'.
13062
13063 2012-04-22 Chong Yidong <cyd@gnu.org>
13064
13065 * cus-edit.el (custom-commands, custom-reset-menu)
13066 (Custom-reset-standard): Tweak labels.
13067 (custom-reset-button-menu): Change default to t.
13068 (custom-buffer-create-internal): For the custom-reset-button-menu
13069 case, put the revert button first.
13070 (custom-group-subtitle): New face.
13071 (custom-group-value-create): Align docstring to a specific column.
13072
13073 * wid-edit.el (widget-documentation-link-add): Don't handle
13074 indentation in this function.
13075 (widget-documentation-string-indent-to): New function.
13076 (widget-documentation-string-value-create): Use it.
13077
13078 * autorevert.el (auto-revert):
13079 * epg-config.el (epg):
13080 * ibuffer.el (ibuffer):
13081 * mpc.el (mpc):
13082 * ses.el (ses):
13083 * eshell/eshell.el (eshell):
13084 * net/ange-ftp.el (ange-ftp):
13085 * progmodes/ebnf2ps.el (postscript):
13086 * progmodes/flymake.el (flymake):
13087 * progmodes/prolog.el (prolog):
13088 * progmodes/verilog-mode.el (verilog-mode):
13089 * progmodes/which-func.el (which-func):
13090 * term/xterm.el (xterm):
13091 * textmodes/picture.el (picture):
13092 * textmodes/tildify.el (tildify):
13093 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
13094 customization buffers.
13095
13096 2012-04-22 Alan Mackenzie <acm@muc.de>
13097
13098 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13099 Adding a ) can hide the resulting (..) from searches. Fix it.
13100 Bound the backward search to the position of the existing (.
13101
13102 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
13103
13104 * progmodes/verilog-mode.el (verilog-mode): Check whether
13105 which-func-modes is t before adding verilog-mode.
13106 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
13107
13108 2012-04-21 Leo Liu <sdl.web@gmail.com>
13109
13110 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
13111
13112 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
13113
13114 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
13115 filling of the last column of a table (Bug#5635).
13116 (woman-find-next-control-line): New arg, specifying an additional
13117 regexp component for the control line.
13118 (woman2-roff-buffer): Use it.
13119 (woman-break-table): New function.
13120 (woman2-TS): Use it.
13121
13122 2012-04-21 Chong Yidong <cyd@gnu.org>
13123
13124 * woman.el (woman-set-buffer-display-table, woman-decode-region)
13125 (woman-horizontal-escapes, woman-negative-vertical-space)
13126 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
13127 (WoMan-warn-ignored): Use ?\s instead of ?\ .
13128
13129 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13130
13131 * minibuffer.el (completion-file-name-table): Complete user names.
13132
13133 2012-04-20 Leo Liu <sdl.web@gmail.com>
13134
13135 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
13136 and pcase-let*.
13137
13138 2012-04-20 Chong Yidong <cyd@gnu.org>
13139
13140 * server.el (server-execute): Respect initial-buffer-choice if it
13141 is a string and there are no files to open (Bug#2825).
13142 (server-create-window-system-frame, server-create-tty-frame):
13143 Don't switch buffers here.
13144 (server-process-filter): Only try to open a window system frame if
13145 compiled with graphical support (Bug#8314).
13146
13147 2012-04-20 Dan Nicolaescu <dann@gnu.org>
13148
13149 * battery.el (battery-echo-area-format): Display remaining time
13150 for sysfs backend too (Bug#11269).
13151 (battery-linux-sysfs): Fix conditional for the charge.
13152
13153 2012-04-20 Chong Yidong <cyd@gnu.org>
13154
13155 * progmodes/gdb-mi.el (gdb): Revert previous change.
13156 (gdb-inferior-io--init-proc): New function.
13157 (gdb-init-1): Use it.
13158 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
13159 responsible for allocating a new pty and hooking it to gdb when
13160 the old pty gets an EIO due to process exit.
13161 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
13162 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
13163 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
13164
13165 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13166
13167 * window.el (window-min-size, window-sizable, window-min-delta)
13168 (window-max-delta, window--resizable, window-resizable)
13169 (window-total-size, window-full-height-p, window-full-width-p)
13170 (window-in-direction, window--resize-mini-window, window-resize)
13171 (window--resize-child-windows-normal)
13172 (window--resize-child-windows, window--resize-siblings)
13173 (window--resize-this-window, adjust-window-trailing-edge)
13174 (enlarge-window, shrink-window): Doc fixes.
13175
13176 2012-04-20 Chong Yidong <cyd@gnu.org>
13177
13178 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13179 New function to call delete-process on the gdb-inferior buffer's pty.
13180 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13181 pty process (Bug#11273).
13182 (gdb-update): New arg to suppress talking to the gdb process.
13183 (gdb-done-or-error): Use it.
13184 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13185 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13186 sentinel not being called.
13187
13188 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13189
13190 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13191
13192 2012-04-20 Glenn Morris <rgm@gnu.org>
13193
13194 * net/network-stream.el (open-network-stream): Doc fix.
13195
13196 2012-04-20 Chong Yidong <cyd@gnu.org>
13197
13198 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13199
13200 2012-04-20 Alan Mackenzie <acm@muc.de>
13201
13202 Ensure searching for keywords is case sensitive.
13203
13204 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13205 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13206 (c-defun-name, c-mark-function, c-cpp-define-name)
13207 (c-comment-indent, c-scan-conditionals, c-indent-defun)
13208 (c-context-line-break): Bind case-fold-search to nil.
13209
13210 * progmodes/cc-mode.el (c-font-lock-fontify-region):
13211 Bind case-fold-search to nil.
13212
13213 2012-04-20 Chong Yidong <cyd@gnu.org>
13214
13215 * mail/sendmail.el (mail-bury): Call return action with the right
13216 Rmail buffer (Bug#11242).
13217
13218 * server.el (server-process-filter): Handle corner case where both
13219 tty and nowait options are present (Bug#11102).
13220
13221 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13222
13223 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13224 (top level): Put into the executable the ident-style '$Id:' tag on
13225 windows-nt as well.
13226
13227 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13228
13229 * electric.el (electric-indent-post-self-insert-function): Check that
13230 electric-indent-mode is enabled in current buffer.
13231
13232 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13233
13234 * imenu.el (imenu-progress-message): Restore; it is "used" in
13235 erc/erc-imenu.el and net/snmp-mode.el.
13236
13237 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
13238
13239 * avoid.el (mouse-avoidance-mode): Mark unused arg.
13240 (mouse-avoidance-nudge-mouse): Remove unused binding.
13241
13242 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13243
13244 * descr-text.el (describe-char):
13245 * progmodes/python.el (python-describe-symbol):
13246 Don't call `toggle-read-only', set `buffer-read-only'.
13247
13248 * imenu.el (imenu-default-goto-function): Mark unused args.
13249 (imenu-progress-message): Remove obsolete macro; all callers changed.
13250
13251 * subr.el (keymap-canonicalize): Remove unused binding.
13252 (read-passwd): Mark unused arg.
13253
13254 * tutorial.el (tutorial--display-changes): Remove unused binding.
13255 (tutorial--save-tutorial-to): Remove unused variable.
13256
13257 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13258 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13259 (package-generate-autoloads, package-menu--generate)
13260 (package-menu--find-upgrades): Remove unused bindings.
13261
13262 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13263 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
13264 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13265 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13266 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13267 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13268 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13269 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13270 (cua-delete-char-rectangle): Mark unused args.
13271 (cua-align-rectangle): Remove unused binding.
13272
13273 * mail/rmail.el (compilation--message->loc)
13274 (epa--find-coding-system-for-mime-charset): Declare.
13275
13276 * net/dbus.el (dbus-register-service): Declare.
13277 (dbus-name-owner-changed-handler): Remove unused binding.
13278
13279 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13280 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13281 (nxml-scan-backward-within): Mark unused arg.
13282 (nxml-dynamic-markup-word): Remove unused binding.
13283
13284 * mouse.el (mouse-menu-major-mode-map):
13285 * emacs-lisp/authors.el (authors-scan-change-log)
13286 (authors-add-to-author-list):
13287 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13288 * emacs-lisp/smie.el (smie-auto-fill):
13289 * mail/sendmail.el (mail-bury):
13290 * mail/unrmail.el (unrmail):
13291 * net/tls.el (open-tls-stream):
13292 * textmodes/picture.el (picture-mouse-set-point):
13293 Remove unused bindings.
13294
13295 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
13296
13297 * net/tramp.el (tramp-action-password): Let-bind
13298 `enable-recursive-minibuffers' to t.
13299
13300 2012-04-18 Sam Steingold <sds@gnu.org>
13301
13302 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13303 instead of 'string to accommodate values like [f11].
13304 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13305 * progmodes/gdb-mi.el: Likewise.
13306
13307 2012-04-18 Leo Liu <sdl.web@gmail.com>
13308
13309 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13310 current buffer.
13311 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13312 LOCAL is nil.
13313
13314 2012-04-18 Chong Yidong <cyd@gnu.org>
13315
13316 * simple.el (line-move): Use forward-line if in batch mode
13317 (Bug#11053).
13318
13319 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
13320
13321 * files.el (after-find-file): Do not try to add a final newline if
13322 the buffer is read-only (Bug#11156).
13323
13324 2012-04-17 Richard Stallman <rms@gnu.org>
13325
13326 * mail/rmail.el (rmail-start-mail):
13327 Pass (rmail-mail-return...) for the return-action.
13328 Pass (rmail-yank-current-message...) for the yank-action.
13329 (rmail-yank-current-message): New function.
13330 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13331 (rmail-reply): Likewise.
13332 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13333
13334 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13335 buffer, not the last. Reject temp buffers. Use the rmail-mode
13336 buffer, not newbuf.
13337
13338 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
13339
13340 * server.el (server-ensure-safe-dir): Simplify.
13341
13342 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13343
13344 * emacs-lisp/smie.el: Provide smarter auto-filling.
13345 (smie-auto-fill): New function.
13346 (smie-setup): Use it.
13347
13348 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13349
13350 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
13351
13352 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13353 (comment-indent): Use it.
13354
13355 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
13356
13357 * ses.el: The overall change is to add cell renaming, that is
13358 setting fancy names for cell symbols other than name matching
13359 "\\`[A-Z]+[0-9]+\\'" regexp .
13360 (ses-localvars): Add ses--renamed-cell-symb-list.
13361 (ses-create-cell-variable): New defun.
13362 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13363 (ses-relocate-formula): Relocate formulas only for cells the
13364 symbols of which are not renamed, i.e. symbols whose names do not
13365 match regexp "\\`[A-Z]+[0-9]+\\'".
13366 (ses-relocate-all): Relocate values only for cells the symbols of
13367 which are not renamed.
13368 (ses-load): Create cells variables as the (ses-cell ...) are read,
13369 in order to check row col consistency with cell symbol name only
13370 for cells that are not renamed.
13371 (ses-replace-name-in-formula): New defun.
13372 (ses-rename-cell): New defun.
13373
13374 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
13375
13376 * progmodes/perl-mode.el (perl-indent-parens-as-block):
13377 New option (bug#11118).
13378 (perl-calculate-indent): Respect it.
13379
13380 2012-04-17 Glenn Morris <rgm@gnu.org>
13381
13382 * dired-aux.el (dired-mark-read-string): Doc fix.
13383
13384 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13385
13386 * dired-aux.el (dired-mark-read-string): Offer optional completion.
13387 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
13388
13389 2012-04-17 Glenn Morris <rgm@gnu.org>
13390
13391 * mouse.el (mouse-drag-track):
13392 * speedbar.el (speedbar-frame-mode):
13393 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13394
13395 2012-04-16 Leo Liu <sdl.web@gmail.com>
13396
13397 * progmodes/python.el: Trivial cleanup.
13398
13399 2012-04-16 Glenn Morris <rgm@gnu.org>
13400
13401 * vc/vc.el (vc-string-prefix-p):
13402 * vc/pcvs-util.el (cvs-string-prefix-p):
13403 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13404 * mpc.el (mpc-string-prefix-p):
13405 Make all of these into obsolete aliases for string-prefix-p.
13406 Update callers.
13407 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13408
13409 * textmodes/two-column.el: Move custom options to the start.
13410 (frame-width): Remove compat definition.
13411 (2C-associate-buffer, 2C-dissociate):
13412 Use with-current-buffer rather than save-excursion.
13413 (2C-dissociate): Force a mode-line update.
13414 (2C-autoscroll): Use ignore-errors.
13415
13416 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13417 Autoload trivia.
13418
13419 * emacs-lisp/cl-extra.el (*random-state*):
13420 Remove unnecessary declaration.
13421
13422 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13423
13424 * play/cookie1.el (cookie-snarf):
13425 Give an explicit error if input file cannot be read.
13426
13427 * play/yow.el (yow-file): Use expand-file-name rather than concat.
13428
13429 * progmodes/perl-mode.el (c-macro-expand):
13430 Remove unnecessary autoload (it is in loaddefs.el).
13431
13432 * textmodes/picture.el (picture-desired-column)
13433 (picture-update-desired-column): Convert comments to doc-strings.
13434 (picture-substitute): Remove function.
13435 (picture-mode-map): Initialize in the defvar.
13436
13437 * woman.el: Remove eval-after-load for tar-mode.
13438 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13439 (woman-tar-extract-file): Autoload it.
13440
13441 * frame.el (automatic-hscrolling): Make this alias obsolete.
13442
13443 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13444
13445 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13446 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13447 (ispell-dictionary-base-alist): Revert to original XEmacs
13448 friendly version for default. [:alpha:] will be added in
13449 `ispell-set-spellchecker-params' if needed.
13450
13451 2012-04-16 Chong Yidong <cyd@gnu.org>
13452
13453 * image.el (imagemagick--file-regexp): New variable.
13454 (imagemagick-register-types): Use it.
13455 (imagemagick-types-inhibit): Add :set function. Allow new value
13456 of t to inhibit all types.
13457
13458 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13459 so we can preload it.
13460
13461 * loadup.el (fboundp): Preload regexp-opt, needed by
13462 imagemagick-register-types.
13463
13464 2012-04-15 Chong Yidong <cyd@gnu.org>
13465
13466 * frame.el (scrolling): Remove nearly unused customization group.
13467
13468 * scroll-all.el (scroll-all-mode): Move to windows group.
13469
13470 2012-04-15 Chong Yidong <cyd@gnu.org>
13471
13472 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13473
13474 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13475
13476 Avoid the use of ((lambda ...) ...) in lexical-binding code.
13477 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13478
13479 2012-04-15 Glenn Morris <rgm@gnu.org>
13480
13481 * simple.el (process-file-side-effects): Doc fix.
13482
13483 2012-04-15 Glenn Morris <rgm@gnu.org>
13484
13485 * international/mule-cmds.el (set-language-environment): Doc fix.
13486
13487 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13488
13489 * server.el (server-auth-key, server-generate-key): Doc fixes.
13490 (server-get-auth-key): Doc fix. Use `string-match-p'.
13491 (server-start): Reflow docstring.
13492
13493 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
13494
13495 * server.el (server-generate-key): `called-interactively-p'
13496 requires a parameter.
13497
13498 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
13499
13500 * server.el (server-auth-key): New variable.
13501 (server-generate-key, server-get-auth-key): New function.
13502 (server-start): Use the new variable and functions to allow
13503 setting a permanent server key (bug#9423).
13504
13505 2012-04-14 Leo Liu <sdl.web@gmail.com>
13506
13507 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13508
13509 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13510
13511 Spelling fixes.
13512 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13513 Emacs uses American spelling.
13514
13515 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
13516
13517 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13518 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
13519 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13520 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
13521
13522 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13523
13524 * progmodes/which-func.el (which-func-modes): Change default.
13525
13526 2012-04-14 Kim F. Storm <storm@cua.dk>
13527
13528 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13529 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13530
13531 2012-04-14 Chong Yidong <cyd@gnu.org>
13532
13533 * custom.el (custom-theme-set-variables): Doc fix.
13534
13535 2012-04-14 Glenn Morris <rgm@gnu.org>
13536
13537 * international/mule.el (set-auto-coding-for-load): Doc fix.
13538
13539 2012-04-14 Alan Mackenzie <acm@muc.de>
13540
13541 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13542 imenu work again for Objective C Mode. Correct the *-index values,
13543 these having been disturbed by a previous change in 2011-08.
13544
13545 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13546 Correct two search limits.
13547
13548 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13549
13550 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13551
13552 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
13553
13554 * international/characters.el: Fix sorting.
13555
13556 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13557
13558 * international/characters.el: Add more missing Latin case pairs.
13559
13560 2012-04-14 Glenn Morris <rgm@gnu.org>
13561
13562 * files.el (dir-locals-set-class-variables): Doc fix.
13563
13564 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13565
13566 * international/characters.el: Add set-case-syntax-pair call for
13567 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13568 counterpart. (Bug#11209)
13569
13570 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
13571
13572 2012-04-14 Glenn Morris <rgm@gnu.org>
13573
13574 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13575
13576 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13577
13578 * textmodes/ispell.el (ispell-dictionary-base-alist):
13579 Add data for Hebrew.
13580
13581 2012-04-14 Chong Yidong <cyd@gnu.org>
13582
13583 * net/rcirc.el (rcirc-cmd-quit):
13584 Revert 2012-03-18 change (Bug#11192).
13585
13586 2012-04-14 Glenn Morris <rgm@gnu.org>
13587
13588 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13589
13590 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13591
13592 * minibuffer.el (completion-in-region-mode-map):
13593 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
13594
13595 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
13596
13597 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13598
13599 2012-04-13 Masatake YAMATO <yamato@redhat.com>
13600
13601 * minibuffer.el (minibuffer-local-filename-syntax): New variable
13602 to allow `C-M-f' and `C-M-b' to move to the nearest path
13603 separator (bug#9511).
13604
13605 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
13606
13607 * avoid.el: Require cl when compiling. And also move the
13608 `provide' to the end.
13609
13610 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13611
13612 * avoid.el (mouse-avoidance-banish-position): New variable.
13613 (mouse-avoidance-banish-destination): Use it (bug#10165).
13614
13615 2012-04-13 Leo Liu <sdl.web@gmail.com>
13616
13617 * progmodes/which-func.el (which-func-modes): Add objc-mode.
13618
13619 2012-04-13 Ken Brown <kbrown@cornell.edu>
13620
13621 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13622 this is no longer needed now that cygstart understands file:// URLs.
13623 (browse-url-filename-alist): For the same reason, don't modify
13624 file:// URLs on Cygwin.
13625
13626 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13627
13628 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13629 the region on shift if the binding is already shifted (bug#11221).
13630
13631 2012-04-12 Glenn Morris <rgm@gnu.org>
13632
13633 * mail/mailpost.el: Move to obsolete/.
13634
13635 2012-04-12 Drew Adams <drew.adams@oracle.com>
13636
13637 * imenu.el (imenu--generic-function): Ignore invisible definitions
13638 (bug#10123).
13639
13640 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
13641
13642 * hexl.el (hexl-bits): New variable.
13643 (hexl-options): Mention the variable in the doc string.
13644 (hexl-rulerise, hexl-line-displen): New functions.
13645 (hexl-mode): Mention the new variable.
13646 (hexl-mode, hexl-current-address, hexl-current-address):
13647 Use the displen.
13648 (hexl-ascii-start-column): New function.
13649 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13650 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13651
13652 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13653
13654 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13655 '("-i" ENCODING), in 2 separate command-line arguments, to specify
13656 the encoding, as expected by hunspell.
13657
13658 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * battery.el (battery--linux-sysfs-regexp): New const.
13661 (battery-status-function): Use it. Remove yeeloong special case.
13662 (battery-yeeloong-sysfs): Remove.
13663 (battery-echo-area-format): Remove yeeloong special case.
13664
13665 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13666
13667 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13668 Reported by Noah Friedman.
13669
13670 * subr.el (read-passwd): Use read-string.
13671
13672 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13673
13674 * vcursor.el (vcursor-move): Increase the priority of the overlay
13675 (bug#9663).
13676
13677 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13678
13679 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13680 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13681
13682 2012-04-11 William Stevenson <yhvh2000@gmail.com>
13683
13684 * textmodes/artist.el (artist-mode): Convert artist-mode to use
13685 define-minor-mode (bug#10760).
13686
13687 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
13688
13689 * progmodes/grep.el (rgrep): Tweak the find command line so
13690 that directories matching `grep-find-ignored-files' won't be
13691 pruned (bug#10351).
13692
13693 2012-04-11 Chong Yidong <cyd@gnu.org>
13694
13695 * startup.el (command-line): Remove support for long-obsolete
13696 variable font-lock-face-attributes.
13697
13698 2012-04-11 Glenn Morris <rgm@gnu.org>
13699
13700 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
13701
13702 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * window.el (window--state-get-1): Obey window-point-insertion-type.
13705
13706 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
13707
13708 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
13709 to previous function when point is on the first character of a
13710 function. Take care of that in `narrow-to-defun' (bug#6157).
13711
13712 2012-04-11 Glenn Morris <rgm@gnu.org>
13713
13714 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
13715 not just file-errors.
13716
13717 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
13718 (vc-bzr-sha1): Use internal sha1.
13719
13720 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13721
13722 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
13723
13724 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
13725
13726 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
13727 that start in the middle of the line (bug#10496).
13728
13729 2012-04-10 Dan Nicolaescu <dann@gnu.org>
13730
13731 * battery.el (battery-linux-proc-acpi): Only one battery is
13732 discharged at a time, but that seems to confuse battery.el when
13733 computing `rate-type' for the battery not being discharged
13734 (bug#10332).
13735
13736 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13737
13738 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
13739
13740 * international/quail.el: Use dolist and simplify.
13741 (quail-define-package, quail-update-keyboard-layout)
13742 (quail-define-rules): Use dolist.
13743 (quail-insert-kbd-layout, quail-get-translation): CSE.
13744
13745 * tmm.el: Use dolist, remove left over hook.
13746 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
13747 Use dolist.
13748 (calendar-load-hook): Don't mess with it.
13749
13750 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
13751 Use derived-mode-p. Run the diff asynchronously.
13752
13753 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13754
13755 * obsolete/mouse-sel.el: Add an Obsolete-since header.
13756
13757 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13758
13759 * misc.el: Display absolute path of loaded DLLs (bug#10424).
13760 (list-dynamic-libraries--loaded): New function.
13761 (list-dynamic-libraries--refresh): Use it.
13762
13763 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
13764
13765 * progmodes/python.el (python-fill-paragraph):
13766 Make python-fill-region in a multiline string work when font-lock is
13767 disabled (bug#7018).
13768
13769 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
13770
13771 * language/european.el (cp775): Add oem/legacy (en)coding on
13772 DOS/MS Windows for the Baltic languages. There are still plenty
13773 of texts written in this encoding/codepage (bug#6519).
13774
13775 2012-04-10 Glenn Morris <rgm@gnu.org>
13776
13777 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
13778 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
13779
13780 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
13781
13782 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
13783 next-line "n" and previous-line "p" in order to make recentf more
13784 consistent with ibuffer, dired or org-mode (bug#9387).
13785
13786 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
13787
13788 * image.el (put-image): Return the overlay created instead of the
13789 optional input string (bug#7834). Note that this may break code
13790 that is (for some reason or other) depending on `put-image'
13791 returning the string.
13792
13793 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
13794
13795 * simple.el (zap-to-char): Allow zapping using input methods
13796 (bug#1580).
13797
13798 * textmodes/fill.el (fill-region): Leave point and mark where they
13799 were before filling (bug#5399).
13800
13801 2012-04-09 Glenn Morris <rgm@gnu.org>
13802
13803 * version.el (emacs-bzr-get-version):
13804 Handle lightweight checkouts of local branches.
13805
13806 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
13807
13808 * international/characters.el: Recover lost case pairs. (Bug#11209)
13809
13810 2012-04-09 Chong Yidong <cyd@gnu.org>
13811
13812 * custom.el (custom-variable-p): Return nil for non-symbol
13813 arguments instead of signaling an error.
13814 (user-variable-p): Obsolete alias for custom-variable-p.
13815
13816 * apropos.el (apropos-variable):
13817 * files-x.el (read-file-local-variable):
13818 * simple.el (set-variable):
13819 * woman.el (woman-mini-help):
13820 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
13821
13822 2012-04-09 Glenn Morris <rgm@gnu.org>
13823
13824 * startup.el (normal-top-level): Don't look for leim-list.el
13825 in places where it will not be found. (Bug#910)
13826
13827 * international/mule-cmds.el (set-default-coding-systems):
13828 * files.el (normal-mode):
13829 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
13830 This function was removed with ucs-tables.el in 2008.
13831
13832 2012-04-08 Eli Zaretskii <eliz@gnu.org>
13833
13834 * textmodes/ispell.el (ispell-check-version): For hunspell, set
13835 ispell-encoding8-command to "-i", without a trailing space.
13836 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
13837 separate command-line arguments, to specify the encoding, since
13838 that's how hunspell expects it.
13839
13840 2012-04-08 Glenn Morris <rgm@gnu.org>
13841
13842 * loadup.el: Load bindings before cus-start.
13843 This reduces somewhat the number of "rogue" settings in emacs -Q.
13844
13845 2012-04-07 Glenn Morris <rgm@gnu.org>
13846
13847 * version.el (emacs-bzr-get-version): New function.
13848 (emacs-bzr-version): New variable.
13849 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
13850 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
13851
13852 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13853
13854 * international/uni-bidi.el, international/uni-category.el:
13855 * international/uni-combining.el, international/uni-decimal.el:
13856 * international/uni-decomposition.el, international/uni-digit.el:
13857 * international/uni-lowercase.el, international/uni-mirrored.el:
13858 * international/uni-name.el, international/uni-numeric.el:
13859 * international/uni-titlecase.el, international/uni-uppercase.el:
13860 Update for Unicode 6.1.
13861
13862 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13863
13864 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
13865
13866 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
13867
13868 * window.el (shrink-window): Mention the `window-min-height'
13869 variable in the doc string.
13870
13871 2012-04-05 Bastien Guerry <bzg@altern.org>
13872
13873 * color.el (color-lighten-name): Fix typo.
13874
13875 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13876
13877 * server.el (server--on-display-p): New function.
13878 (server--on-display-p): Use it.
13879
13880 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
13881
13882 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
13883 (bug#11145).
13884
13885 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13886
13887 * comint.el (comint--common-quoted-suffix): Check string boundary
13888 before comparing (bug#11158).
13889 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
13890
13891 2012-04-04 Chong Yidong <cyd@gnu.org>
13892
13893 * minibuffer.el (completion-extra-properties): Doc fix.
13894
13895 * subr.el (delayed-warnings-hook): Doc fix.
13896
13897 2012-04-04 Daiki Ueno <ueno@unixuser.org>
13898
13899 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
13900 selection (Bug#11159).
13901 (epa-insert-keys): Inform that the default public key will be
13902 exported if no key is selected.
13903
13904 2012-04-04 Richard Stallman <rms@gnu.org>
13905
13906 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
13907
13908 2012-04-03 Chong Yidong <cyd@gnu.org>
13909
13910 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
13911 mail-insert-file, not its obsolete alias mail-attach-file.
13912
13913 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
13914
13915 * notifications.el (notifications-notify): Fix docstring.
13916
13917 2012-04-02 Glenn Morris <rgm@gnu.org>
13918
13919 * emacs-lisp/authors.el (authors-aliases): Another addition.
13920
13921 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
13922
13923 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
13924 `tramp-compat-call-process' instead of `tramp-local-call-process'.
13925 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
13926
13927 2012-04-01 Chong Yidong <cyd@gnu.org>
13928
13929 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
13930 Handle root directory properly.
13931 (copy-directory): Caller changed.
13932
13933 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13934 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
13935
13936 2012-03-31 Glenn Morris <rgm@gnu.org>
13937
13938 * term/xterm.el (xterm-extra-capabilities): Doc fix.
13939
13940 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
13941
13942 * calendar/calendar.el (calendar-window-list)
13943 (calendar-hide-window): Restore. (Bug#11140)
13944 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
13945
13946 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
13947
13948 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13949
13950 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
13951 Check if file is a symlink (Bug#10489).
13952
13953 * files.el (copy-directory): Likewise.
13954
13955 2012-03-30 Chong Yidong <cyd@gnu.org>
13956
13957 * image.el (imagemagick-types-inhibit)
13958 (imagemagick-register-types): Doc fix.
13959
13960 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13961
13962 * textmodes/ispell.el (ispell-get-extended-character-mode):
13963 Disable extended-char-mode for hunspell. hunspell does not support it
13964 and treats ~word as ordinary words in pipe mode.
13965
13966 2012-03-30 Glenn Morris <rgm@gnu.org>
13967
13968 * tutorial.el (help-with-tutorial): Ensure local variables don't
13969 happen to make the buffer read-only. (Bug#11127)
13970
13971 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
13972
13973 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
13974 (perl-calculate-indent): Return `noindent' in strings.
13975
13976 2012-03-28 Sam Steingold <sds@gnu.org>
13977
13978 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
13979 instead of the broken adhockery which does not prevent calendar
13980 buffers from being displayed at random after exit.
13981 (calendar-window-list, calendar-hide-window): Remove the broken
13982 adhockery.
13983
13984 2012-03-28 Glenn Morris <rgm@gnu.org>
13985
13986 * replace.el (query-replace-map): Doc fix.
13987
13988 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
13989
13990 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
13991 contents. (Bug#11109)
13992
13993 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13994
13995 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
13996 (bug#11077).
13997 (avl-tree--check, avl-tree--check-node): New funs.
13998
13999 2012-03-27 Martin Rudalics <rudalics@gmx.at>
14000
14001 * window.el (switch-to-visible-buffer): New option.
14002 (switch-to-prev-buffer, switch-to-next-buffer):
14003 Observe switch-to-visible-buffer. Make sure that checking for a window
14004 showing a buffer already is done on the same frame.
14005
14006 2012-03-27 Glenn Morris <rgm@gnu.org>
14007
14008 * startup.el (mail-host-address): Doc fix.
14009
14010 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
14011
14012 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
14013 than 197 variables.
14014
14015 2012-03-26 Ami Fischman <ami@fischman.org>
14016
14017 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
14018
14019 2012-03-26 Glenn Morris <rgm@gnu.org>
14020
14021 * files.el (save-buffers-kill-emacs): Doc fix.
14022
14023 * startup.el (normal-top-level, command-line, command-line-1):
14024 Give them doc strings.
14025
14026 2012-03-25 Eli Zaretskii <eliz@gnu.org>
14027
14028 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
14029 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
14030
14031 2012-03-25 Chong Yidong <cyd@gnu.org>
14032
14033 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
14034 theme if it was previously enabled before (Bug#11031).
14035
14036 * cus-theme.el (custom-theme-write-faces): Retrieve current face
14037 spec with custom-face-get-current-spec if its :shown-value is not
14038 determined yet (Bug#9337).
14039 (customize-create-theme, custom-theme-revert): Doc fixes.
14040
14041 * button.el (button-at): Minor addition to docstring.
14042
14043 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
14044
14045 * vc/vc.el (vc-merge): Fix a prompt.
14046
14047 2012-03-24 Chong Yidong <cyd@gnu.org>
14048
14049 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
14050 point (Bug#9623).
14051
14052 * button.el (button-at): Minor addition to docstring.
14053
14054 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
14055
14056 * newcomment.el (comment-choose-indent): No space after BOL.
14057
14058 2012-03-22 Sam Steingold <sds@gnu.org>
14059
14060 * window.el (switch-to-prev-buffer): Revert last patch because the
14061 bug turned out to be an advertised feature (Elisp manual 28.14).
14062
14063 2012-03-22 Glenn Morris <rgm@gnu.org>
14064
14065 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
14066 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
14067
14068 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
14069
14070 * net/network-stream.el (network-stream-open-starttls): Make error
14071 message under Windows be less misleading.
14072
14073 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
14074
14075 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
14076 understands (bug#9942).
14077
14078 2012-03-22 Chong Yidong <cyd@gnu.org>
14079
14080 * simple.el (end-of-visible-line): Handle return value of
14081 next-single-property-change properly (Bug#9371).
14082
14083 2012-03-22 Kenichi Handa <handa@m17n.org>
14084
14085 * international/quail.el (quail-insert-kbd-layout): Fix previous
14086 change. To avoid unwanted bidi reordering, use
14087 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
14088
14089 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
14090
14091 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
14092 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
14093 (ruby-beginning-of-indent): Be more careful with the difference
14094 between word-boundary and symbol boundary.
14095 (ruby-mode-syntax-table): Make : a symbol constituent.
14096
14097 2012-03-21 Andreas Politz <politza@fh-trier.de>
14098
14099 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
14100
14101 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14102
14103 * progmodes/etags.el (tags-completion-at-point-function):
14104 Improve last fix.
14105
14106 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
14107
14108 2012-03-21 Sam Steingold <sds@gnu.org>
14109
14110 * progmodes/etags.el (tags-completion-at-point-function):
14111 Avoid the error when point is inside the pattern.
14112
14113 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
14114
14115 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
14116 line (Bug#10855).
14117
14118 2012-03-21 Drew Adams <drew.adams@oracle.com>
14119
14120 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
14121
14122 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
14123
14124 * ido.el (ido-set-current-directory, ido-read-internal)
14125 (ido-choose-completion-string, ido-completion-help): Handle nil
14126 value of ido-completion-buffer (Bug#11008).
14127
14128 2012-03-21 Sam Steingold <sds@gnu.org>
14129
14130 * window.el (switch-to-prev-buffer): Do not switch to a visible
14131 window previous buffer, just like with the frame previous buffers.
14132
14133 2012-03-21 Chong Yidong <cyd@gnu.org>
14134
14135 * faces.el (make-face, make-empty-face, copy-face):
14136 * face-remap.el (face-remap-add-relative, face-remap-set-base):
14137 Doc fixes.
14138
14139 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14140
14141 * wid-edit.el (widget-complete-field): Remove (bug#11051).
14142 (widget-complete): Remove broken use of it.
14143
14144 2012-03-20 Chong Yidong <cyd@gnu.org>
14145
14146 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14147 Use string-width and truncate-string-width to handle arbitrary
14148 characters.
14149
14150 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
14151
14152 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
14153 to draw rectangles, not squares. (Regression introduced by revno
14154 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
14155
14156 2012-03-18 Chong Yidong <cyd@gnu.org>
14157
14158 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
14159 it is not yet defined (for temacs).
14160
14161 2012-03-18 Leo Liu <sdl.web@gmail.com>
14162
14163 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
14164 prefix.
14165
14166 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14167
14168 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
14169 (ispell-choices-win-default-height, ispell-silently-savep)
14170 (ispell-dictionary-alist, ispell-encoding8-command)
14171 (ispell-check-version, ispell-aspell-find-dictionary)
14172 (ispell-valid-dictionary-list, ispell-words-keyword)
14173 (ispell-get-word, ispell-internal-change-dictionary)
14174 (ispell-region, ispell-skip-region-list)
14175 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14176 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14177 (ispell-message-text-end, ispell-message)
14178 (ispell-buffer-local-parsing): Doc fix.
14179
14180 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
14181
14182 * htmlfontify.el: Add support for code block fontification for ODT
14183 export (Bug #9914).
14184 (hfy-optimisations): Define new option
14185 `body-text-only'
14186 (hfy-fontify-buffer): Honor above setting.
14187 (hfy-begin-span, hfy-end-span): New routines factored out form
14188 `hfy-fontify-buffer'.
14189 (hfy-begin-span-handler, hfy-end-span-handler): New variables
14190 that permit insertion of custom tags.
14191 (hfy-fontify-buffer): Use above handlers.
14192 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14193 (hfy-face-to-css): Re-defined to be a variable.
14194 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
14195 over multiple runs. This is made possible by having the caller let
14196 bind a special variable `hfy-user-sheet-assoc'.
14197 (htmlfontify-string): New defun.
14198 (hfy-compile-face-map): Make sure that the last char in the
14199 buffer is correctly fontified.
14200 (hfy-face-resolve-face): Whitespace only change.
14201
14202 2012-03-17 Eli Zaretskii <eliz@gnu.org>
14203
14204 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14205 message more clear.
14206
14207 2012-03-16 Leo Liu <sdl.web@gmail.com>
14208
14209 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14210
14211 2012-03-16 Alan Mackenzie <acm@muc.de>
14212
14213 Further optimize the handling of large macros.
14214
14215 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14216 limit to a call of `c-literal-limits'.
14217 (c-determine-+ve-limit): New function.
14218 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14219 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14220 In CASE 5B, restrict a search limit to 500.
14221 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14222
14223 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14224 Restrict macro bounds to +-500 from after-change's BEG END.
14225
14226 2012-03-16 Leo Liu <sdl.web@gmail.com>
14227
14228 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14229
14230 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
14231
14232 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14233 `special-mode' setting of `buffer-read-only'. (Bug#11010)
14234
14235 2012-03-16 Glenn Morris <rgm@gnu.org>
14236
14237 * view.el (view-buffer, view-buffer-other-window)
14238 (view-buffer-other-frame): Doc fixes re special mode-class.
14239
14240 * subr.el (eval-after-load): If named feature is provided not from
14241 a file, run after-load forms. (Bug#10946)
14242
14243 * calendar/calendar.el (calendar-insert-at-column):
14244 Handle non-unit-width characters a bit better. (Bug#10978)
14245
14246 2012-03-15 Chong Yidong <cyd@gnu.org>
14247
14248 * emacs-lisp/ring.el (ring-extend): New function.
14249 (ring-insert+extend): Extend the ring correctly (Bug#11019).
14250
14251 * comint.el (comint-read-input-ring)
14252 (comint-add-to-input-history): Grow comint-input-ring lazily.
14253
14254 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14255
14256 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14257 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14258
14259 * imenu.el: Fix multiple inheritance breakage (bug#9199).
14260 (imenu-add-to-menubar): Don't add a redundant index.
14261 (imenu-update-menubar): Handle a dynamically composed keymap.
14262
14263 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
14264
14265 * mail/sendmail.el (mail-encode-header):
14266 Bind rfc2047-encode-encoded-words to nil.
14267
14268 2012-03-13 Glenn Morris <rgm@gnu.org>
14269
14270 * calendar/calendar.el (calendar-string-spread):
14271 Handle non-unit-width characters a bit better. (Bug#10978)
14272
14273 2012-03-13 Leo Liu <sdl.web@gmail.com>
14274
14275 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14276 directory and file as argument (Bug#10822).
14277
14278 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14279
14280 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14281 For dynamically generated code, follow $PC.
14282 (gdb-disassembly-handler-custom): Handle no function name case.
14283
14284 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
14285
14286 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14287 * emulation/ws-mode.el (ws-query-replace):
14288 * sort.el (sort-regexp-fields):
14289 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
14290
14291 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14292
14293 * dabbrev.el: Fix cycle completion order (bug#10963).
14294 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14295 (dabbrev-completion): Don't use an obarray; provide
14296 a cycle-sort-function.
14297
14298 2012-03-12 Leo Liu <sdl.web@gmail.com>
14299
14300 * simple.el (kill-new): Use equal-including-properties for comparison.
14301 (kill-do-not-save-duplicates): Doc fix.
14302
14303 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14304
14305 * dabbrev.el: Fix cycle completion (bug#10963).
14306 Use lexical binding and wrap to 80 columns.
14307 (dabbrev-completion): Delay computing the list of completions.
14308
14309 2012-03-12 Kenichi Handa <handa@m17n.org>
14310
14311 * international/quail.el (quail-insert-kbd-layout): Surround each
14312 row by LRO and PDF instead of inserting many LRMs. Pad the left
14313 and right of each non-spacing marks. Insert invisible space
14314 between lower and upper characters to prevent composition.
14315
14316 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14317
14318 * minibuffer.el (minibuffer-complete): Don't get confused when the
14319 function is run twice via different commands (bug#10958).
14320 (complete-with-action): Fix docstring.
14321
14322 2012-03-12 Chong Yidong <cyd@gnu.org>
14323
14324 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14325 (nxml-completion-at-point-function): New function.
14326 (nxml-mode): Use it.
14327 (nxml-bind-meta-tab-to-complete-flag): Default to t.
14328
14329 * emacs-lisp/package.el (package-unpack, package-unpack-single):
14330 Load generated autoloads file before byte compiling (Bug#10970).
14331 (package--make-autoloads-and-compile): New helper fun.
14332
14333 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
14334
14335 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14336
14337 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
14338
14339 * autorevert.el (auto-revert-handler): Ensure, that
14340 file-readable-p is applied only for local files or in
14341 auto-revert-tail-mode.
14342
14343 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
14344
14345 * server.el (server-eval-at): Handle non-tcp connections.
14346 Decode result string.
14347
14348 * server.el (server-msg-size): New constant.
14349 (server-reply-print): New function.
14350 (server-eval-and-print): Use it.
14351 (server-eval-at): Use server-quote-arg and server-unquote-arg.
14352 Handle -print-nonl.
14353
14354 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
14355
14356 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14357 (Bug#10987).
14358
14359 2012-03-11 Chong Yidong <cyd@gnu.org>
14360
14361 * simple.el (goto-line): Doc fix (Bug#9938).
14362
14363 * subr.el (save-window-excursion): Doc fix (Bug#9979).
14364
14365 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14366 when finished (Bug#10963).
14367
14368 2012-03-11 Martin Rudalics <rudalics@gmx.at>
14369
14370 * window.el (split-window-below): Fix bug in case where
14371 split-window-keep-point is nil (Bug#10971).
14372
14373 2012-03-11 Juri Linkov <juri@jurta.org>
14374
14375 * replace.el (replace-highlight): Set isearch-word to nil
14376 unconditionally. (Bug#10887)
14377
14378 2012-03-10 Eli Zaretskii <eliz@gnu.org>
14379
14380 * net/mairix.el (mairix-replace-invalid-chars): Rename from
14381 mairix-replace-illegal-chars; all callers changed. Don't remove
14382 ^, ~, and = characters: they are meaningful in mairix search specs.
14383 (mairix-widget-create-query): Add usage information about mairix
14384 search forms: negating words, searching for substrings, etc.
14385
14386 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
14387
14388 * international/fontset.el (font-encoding-alist): Add an entry for
14389 ksx1001 (Bug#5667).
14390
14391 2012-03-10 Richard Stallman <rms@gnu.org>
14392
14393 * mail/sendmail.el (mail-encode-header):
14394 Set rfc2047-encode-encoded-words.
14395
14396 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14397
14398 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14399 view buffer means not swapped.
14400 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14401 (rmail-write-region-annotate): Error if real text has disappeared.
14402
14403 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14404
14405 2012-03-10 Chong Yidong <cyd@gnu.org>
14406
14407 * emulation/cua-rect.el (cua--init-rectangles):
14408 * emulation/cua-base.el (cua--init-keymaps):
14409 Add delete-forward-char to remappings (Bug#9666).
14410
14411 2012-03-10 Martin Rudalics <rudalics@gmx.at>
14412
14413 * speedbar.el (speedbar-unhighlight-one-tag-line):
14414 Avoid unhighlighting due to frame switching (Bug#10275).
14415
14416 2012-03-10 Chong Yidong <cyd@gnu.org>
14417
14418 * minibuffer.el (completion-in-region, completion-help-at-point):
14419 Give the completion field overlay a high priority (Bug#6830).
14420
14421 * dired.el (dired-goto-file): Recognize absolute file name
14422 listings (Bug#7126).
14423 (dired-goto-file-1): New helper function.
14424 (dired-toggle-read-only): Inhibit warnings.
14425
14426 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
14427
14428 * net/dbus.el (dbus-property-handler): Return empty array if
14429 there are no properties.
14430
14431 2012-03-09 Leo Liu <sdl.web@gmail.com>
14432
14433 * savehist.el (savehist-printable): Stricter check for string
14434 value (Bug#10937).
14435
14436 2012-03-09 Eli Zaretskii <eliz@gnu.org>
14437
14438 * mail/smtpmail.el (smtpmail-send-it):
14439 Bind coding-system-for-write to *-unix, so that FCC files are kept in
14440 valid mbox format.
14441
14442 2012-03-09 Glenn Morris <rgm@gnu.org>
14443
14444 * files.el (dir-locals-find-file):
14445 Don't check result is regular, readable.
14446 (dir-locals-read-from-file): Demote errors.
14447
14448 2012-03-08 Eli Zaretskii <eliz@gnu.org>
14449
14450 * international/quail.el (quail-insert-kbd-layout):
14451 Insert invisible LRM characters before each character in a keyboard
14452 layout cell, to prevent their reordering by bidi display engine.
14453 For details, see the discussion in
14454 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14455
14456 2012-03-08 Alan Mackenzie <acm@muc.de>
14457
14458 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14459 the starting position; make it extend the marked region when
14460 invoked repeatedly - all under appropriate circumstances.
14461 Fixes bugs #5525, #10906.
14462
14463 2012-03-08 Glenn Morris <rgm@gnu.org>
14464
14465 * files.el (locate-dominating-file, dir-locals-find-file):
14466 Undo 2012-03-06 change.
14467
14468 2012-03-07 Eli Zaretskii <eliz@gnu.org>
14469
14470 * international/quail.el (quail-help):
14471 Force bidi-paragraph-direction be left-to-right. See discussion in
14472 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14473 for the reason.
14474
14475 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
14476
14477 Avoid superfluous registering of signals. (Bug#10807)
14478
14479 * notifications.el (notifications-on-action-object)
14480 (notifications-on-close-object): New defvars.
14481 (notifications-on-action-signal, notifications-on-closed-signal):
14482 Unregister the signal if not needed any longer.
14483 (notifications-notify): Register `notifications-action-signal' or
14484 `notifications-closed-signal', if :on-action or :on-close has been
14485 passed as argument.
14486
14487 2012-03-07 Chong Yidong <cyd@gnu.org>
14488
14489 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14490 non-X platforms.
14491
14492 2012-03-06 Glenn Morris <rgm@gnu.org>
14493
14494 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14495 (x-disown-selection-internal, x-get-selection-internal):
14496 Doc fix (add arglist signatures). (Bug#10783)
14497
14498 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
14499
14500 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14501 Handle breakpoints with no "type".
14502
14503 2012-03-06 Glenn Morris <rgm@gnu.org>
14504
14505 * files.el (locate-dominating-file): Add optional predicate argument.
14506 (dir-locals-find-file): Make use of above change.
14507
14508 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
14509
14510 * info.el (Info-insert-dir): Also try "dir.gz".
14511
14512 2012-03-06 Glenn Morris <rgm@gnu.org>
14513
14514 * files.el (dir-locals-find-file):
14515 Ignore non-readable or non-regular files. (Bug#10928)
14516
14517 * files.el (locate-dominating-file): Doc fix.
14518
14519 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
14520
14521 * calendar/calendar.el (calendar-set-mode-line):
14522 `getenv' returns a string. (Bug#10951)
14523
14524 2012-03-05 Leo Liu <sdl.web@gmail.com>
14525
14526 * simple.el (backward-delete-char-untabify): Constrain point to
14527 field (Bug#10939).
14528
14529 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14530
14531 2012-03-05 Chong Yidong <cyd@gnu.org>
14532
14533 * simple.el (count-words): If called from Lisp, return the word
14534 count, for symmetry with `count-lines'. Arglist changed.
14535 (count-words--message): Args changed. Consolidate counting code
14536 from count-words and count-words-region.
14537 (count-words-region): Caller changed.
14538 (count-lines-region): Make it an obsolete alias.
14539
14540 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
14541
14542 * saveplace.el (save-place-to-alist)
14543 (save-place-ignore-files-regexp): Allow value nil to disable this
14544 feature.
14545
14546 2012-03-04 Chong Yidong <cyd@gnu.org>
14547
14548 * faces.el (face-spec-reset-face): For the default face, reset the
14549 attributes to default values (Bug#10748).
14550
14551 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14552
14553 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14554 previous patch: Check `message-send-mail-function', and not the
14555 default function (bug#10897).
14556
14557 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
14558
14559 * notifications.el (notifications-on-action-signal)
14560 (notifications-on-closed-signal): Check for unique service name of
14561 incoming event. Fix error in removing entry.
14562 (top): Register for signals with wildcard service name.
14563 (notifications-notify): Use daemon unique service name for map entries.
14564
14565 2012-03-04 Chong Yidong <cyd@gnu.org>
14566
14567 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14568
14569 2012-03-04 Glenn Morris <rgm@gnu.org>
14570
14571 * abbrev.el (copy-abbrev-table, abbrev-table-p)
14572 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14573 (expand-abbrev, define-abbrev-table): Doc fixes.
14574
14575 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14576
14577 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14578 `message-default-send-mail-function' and not `send-mail-function'
14579 when doing the prompting for `sendmail-query-once' before sending
14580 in Message buffers (bug#10897).
14581
14582 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14583 This is inconsistent with all the other stream functions, which leave
14584 the setting up to the higher levels (if so wanted) (bug#10931).
14585
14586 2012-03-02 Alan Mackenzie <acm@muc.de>
14587
14588 Depessimize the handling of very large macros.
14589
14590 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14591 (c-macro-cache-syntactic): New variables to implement a one
14592 element macro cache.
14593 (c-invalidate-macro-cache): New function.
14594 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14595 Adapt to use the new cache.
14596 (c-state-safe-place): Use better the cache of safe positions.
14597 (c-state-semi-nonlit-pos-cache)
14598 (c-state-semi-nonlit-pos-cache-limit):
14599 New variables for...
14600 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
14601 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14602 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14603 Use c-state-semi-safe-place.
14604
14605 * progmodes/cc-langs.el (c-get-state-before-change-functions):
14606 Add c-invalidate-macro-cache to the C, C++, Obj entries.
14607
14608 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
14609
14610 * jka-compr.el (jka-compr-call-process):
14611 Apply `file-accessible-directory-p' only when the default directory is
14612 not remote.
14613
14614 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
14615
14616 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
14617 access of FILE2, if FILE1 does not exist.
14618
14619 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14620 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14621
14622 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14623 Add "PAGER=" to `process-environment'.
14624
14625 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
14626
14627 * progmodes/sql.el: Bug fix
14628 (sql-get-login-ext): Save login values in globals.
14629 (sql-get-login): Use new version of `sql-get-login-ext'.
14630 (sql-interactive-mode): Set global `sql-connection' to nil.
14631 (sql-connect): Set global values for connection.
14632 (sql-product-interactive): Save global values as buffer local.
14633
14634 2012-02-29 Leo Liu <sdl.web@gmail.com>
14635
14636 * abbrev.el (define-abbrevs): Reset sys to nil.
14637
14638 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14639
14640 * files.el (file-equal-p): Rename from `files-equal-p'.
14641 Return nil when one or both files don't exist.
14642 (file-subdir-of-p): Now only top directory must exists,
14643 return nil if it doesn't.
14644 (copy-directory): No need to test with `file-subdir-of-p' after
14645 creating dir.
14646 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14647 to `file-equal-p'.
14648
14649 2012-02-28 Glenn Morris <rgm@gnu.org>
14650
14651 * shell.el (shell-mode):
14652 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14653 * play/landmark.el (landmark-font-lock-face-O):
14654 * play/handwrite.el (handwrite):
14655 * play/gomoku.el (gomoku-O):
14656 * net/browse-url.el (browse-url-browser-display):
14657 * international/mule.el (define-charset):
14658 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14659 * filesets.el (filesets-find-file-delay):
14660 * eshell/em-xtra.el (eshell-xtra):
14661 * eshell/em-unix.el (eshell-grep):
14662 * emulation/viper.el (viper-mode):
14663 * emacs-lisp/regexp-opt.el (regexp-opt-group):
14664 * emacs-lisp/easymenu.el (easy-menu-define):
14665 * calendar/timeclock.el (timeclock-use-display-time):
14666 * bs.el (bs-mode):
14667 * bookmark.el (bookmark-save-flag):
14668 Doc fix (standardize possessive apostrophe usage).
14669
14670 2012-02-27 Chong Yidong <cyd@gnu.org>
14671
14672 * emulation/viper-cmd.el (viper-intercept-ESC-key):
14673 Fix key-binding lookup for ESC key (Bug#9146).
14674
14675 * font-lock.el (font-lock-specified-p): Rename from
14676 font-lock-spec-present. Callers changed.
14677
14678 2012-02-27 Daniel Hackney <dan@haxney.org>
14679
14680 * emacs-lisp/package.el (package-compute-transaction):
14681 Handle holding a package version to t in package-load-list.
14682
14683 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
14684
14685 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14686 (tramp-get-inode, tramp-get-device): Use cached values.
14687
14688 2012-02-26 Alan Mackenzie <acm@muc.de>
14689
14690 Check there is a font-lock specification before doing initial
14691 fontification.
14692
14693 * font-core.el (font-lock-mode): Move the conditional from
14694 :after-hook to font-lock-initial-fontify.
14695 (font-lock-default-function): Move the check for a specification
14696 to font-lock-spec-present.
14697
14698 * font-lock.el (font-lock-initial-fontify): Call ...
14699 (font-lock-spec-present): New function.
14700
14701 2012-02-26 Jim Blandy <jimb@red-bean.com>
14702
14703 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
14704 (gdb-send): Apply it to the operand of the '-interpreter-exec
14705 console' command, so that we can pass arguments with (say) quotes
14706 in them. Store exact string sent in gdb-debug-log (Bug#10765).
14707
14708 2012-02-26 Chong Yidong <cyd@gnu.org>
14709
14710 * help-fns.el (describe-function-1): Clarify description of
14711 remapping (Bug#10844).
14712
14713 * files.el (files-equal-p): Doc fix.
14714 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
14715 and quit the loop once a mismatch is found.
14716
14717 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
14718
14719 * bs.el (bs--show-with-configuration): Don't throw an error
14720 if the window cannot be split; otherwise, subsequent calls to
14721 bs-show fail, restoring a stale window config. (Bug#10882)
14722
14723 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
14724
14725 * term/ns-win.el (global-map): Bind ns-drag-file to
14726 ns-find-file (Bug#5855, Bug#10050).
14727
14728 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
14729
14730 * calendar/parse-time.el (parse-time-string): Allow extractor to
14731 return nil.
14732
14733 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
14734
14735 * net/tramp.el (tramp-file-name-for-operation):
14736 Add `files-equal-p' and `file-subdir-of-p'.
14737
14738 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14739 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14740 Add COPY-CONTENTS argument.
14741
14742 2012-02-25 Chong Yidong <cyd@gnu.org>
14743
14744 Add custom groups for VC backends, for consistency with vc-bzr.
14745
14746 * vc/vc-arch.el (vc-arch):
14747 * vc/vc-cvs.el (vc-cvs):
14748 * vc/vc-git.el (vc-git):
14749 * vc/vc-hg.el (vc-hg):
14750 * vc/vc-mtn.el (vc-mtn):
14751 * vc/vc-rcs.el (vc-rcs):
14752 * vc/vc-sccs.el (vc-sccs):
14753 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
14754 All relevant defcustoms reassigned.
14755
14756 2012-02-25 Chong Yidong <cyd@gnu.org>
14757
14758 * newcomment.el (comment-styles): Add autoload (Bug#10868).
14759
14760 * term/x-win.el (x-initialize-window-system): Reduce default for
14761 x-selection-timeout to 5 seconds (Bug#8869).
14762
14763 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14764
14765 * files.el (files-equal-p, file-subdir-of-p): New functions.
14766 (copy-directory): Error when trying to copy a directory on itself.
14767 Add missing copy-contents arg to tramp handler.
14768 * dired-aux.el (dired-copy-file-recursive): Same.
14769 (dired-create-files): Modify destination when source is equal to
14770 dest when copying files.
14771 Return also when dest is a subdir of source. (Bug#10489)
14772
14773 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
14774
14775 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
14776 (Bug#10874)
14777
14778 2012-02-23 Alan Mackenzie <acm@muc.de>
14779
14780 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
14781 parameter "after-hook:" to allow the expansion to run code after
14782 the execution of the mode hooks.
14783
14784 * font-lock.el (font-lock-initial-fontify): New function extracted
14785 from font-lock-mode-internal.
14786
14787 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
14788 :after-hook.
14789
14790 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14791
14792 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
14793 (completion--cache-all-sorted-completions): New function.
14794 (completion-all-sorted-completions): Use it.
14795 (completion--do-completion, minibuffer-force-complete):
14796 Use it to re-instate the flush hook.
14797
14798 * icomplete.el (icomplete-completions): Replace last fix with a better
14799 one (bug#10850).
14800
14801 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
14802
14803 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
14804 when it might call us back infinitely (bug#10797).
14805
14806 2012-02-23 Glenn Morris <rgm@gnu.org>
14807
14808 * minibuffer.el (completion-category-overrides): Doc fix.
14809
14810 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14811
14812 * minibuffer.el (completion-table-with-context): Fix inf-loop.
14813 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
14814
14815 2012-02-23 Glenn Morris <rgm@gnu.org>
14816
14817 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
14818 (authors-obsolete-files-regexps, authors-ignored-files)
14819 (authors-ambiguous-files, authors-renamed-files-alist):
14820 Add more entries.
14821
14822 2012-02-23 Juri Linkov <juri@jurta.org>
14823
14824 * isearch.el (isearch-occur): Sync interactive spec with occur's
14825 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
14826
14827 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
14828
14829 2012-02-22 Juri Linkov <juri@jurta.org>
14830
14831 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
14832 (ucs-insert): Doc fix. Check for hex digits in the string.
14833 Don't display `nil' in the error message. (Bug#10857)
14834
14835 2012-02-22 Alan Mackenzie <acm@muc.de>
14836
14837 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
14838
14839 2012-02-22 Glenn Morris <rgm@gnu.org>
14840
14841 * ffap.el (ffap-c-path):
14842 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
14843
14844 2012-02-22 Chong Yidong <cyd@gnu.org>
14845
14846 * custom.el (load-theme): Doc fix.
14847
14848 2012-02-22 Glenn Morris <rgm@gnu.org>
14849
14850 * dired-x.el (dired-guess-shell-alist-default):
14851 Remove escape sequences from nroff output. (Bug#172)
14852
14853 2012-02-21 Glenn Morris <rgm@gnu.org>
14854
14855 * vc/emerge.el (emerge-defvar-local):
14856 Set `permanent-local' property rather than unused `preserved'.
14857
14858 * textmodes/picture.el (picture-delete-char): New alias.
14859 (picture-mode-map): Use it. (Bug#10860)
14860 (picture-mode): Doc fix.
14861
14862 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
14863
14864 * newcomment.el (uncomment-region-default): Remove unused binding.
14865
14866 2012-02-21 Glenn Morris <rgm@gnu.org>
14867
14868 * textmodes/picture.el (picture-motion, picture-motion-reverse)
14869 (picture-self-insert, picture-tab-chars): Doc fix.
14870 (picture-mode-map): Fix C-a, C-e.
14871
14872 2012-02-20 Glenn Morris <rgm@gnu.org>
14873
14874 * emacs-lisp/authors.el (authors-aliases): Add another entry.
14875
14876 2012-02-20 Leo Liu <sdl.web@gmail.com>
14877
14878 * icomplete.el (icomplete-completions): Check FROM arg before
14879 passing to substring (Bug#10850).
14880
14881 2012-02-19 Chong Yidong <cyd@gnu.org>
14882
14883 * comint.el: Require ansi-color.
14884 (comint-output-filter-functions): Add ansi-color-process-output.
14885
14886 * ansi-color.el: Don't set comint-output-filter-functions; it is
14887 now in the initial value defined in comint.el.
14888 (ansi-color-apply-face-function): New variable.
14889 (ansi-color-apply-on-region): Use it.
14890 (ansi-color-apply-overlay-face): New function.
14891
14892 * shell.el (shell): No need to require ansi-color.
14893 (shell-mode): Use ansi-color-apply-face-function to highlight
14894 color escapes using font-lock-face property (Bug#10835).
14895
14896 2012-02-19 Chong Yidong <cyd@gnu.org>
14897
14898 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
14899 mode-line formats (Bug#10839).
14900
14901 2012-02-18 Glenn Morris <rgm@gnu.org>
14902
14903 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
14904
14905 * mail/undigest.el (unforward-rmail-message): Doc fix.
14906
14907 * saveplace.el (save-place-ignore-files-regexp): Add :version.
14908
14909 2012-02-18 Eli Zaretskii <eliz@gnu.org>
14910
14911 * international/characters.el (script-list): Sync with the latest
14912 Unicode Character Database.
14913
14914 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
14915
14916 * international/titdic-cnv.el: Remove duplicate coding tag.
14917 * language/cham.el: Likewise.
14918 * language/tai-viet.el: Likewise.
14919
14920 2012-02-18 Glenn Morris <rgm@gnu.org>
14921
14922 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
14923 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
14924 (calendar-bahai-all-holidays-flag, calendar-other-dates):
14925 * calendar/diary-lib.el (diary-abbreviated-year-flag):
14926 * calendar/holidays.el (holiday-bahai-holidays)
14927 (calendar-holidays, list-holidays):
14928 Use utf-8 Bahá'í in doc-strings, menus, etc.
14929
14930 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
14931
14932 * saveplace.el (save-place-ignore-files-regexp): New variable
14933 allowing for excluding files from saving their location of point.
14934 The default value matches the temporary commit message editing
14935 files from Git, SVN, Bazaar, and Mercurial.
14936 (save-place-to-alist): Use it.
14937
14938 2012-02-17 Lawrence Mitchell <wence@gmx.li>
14939 Stefan Monnier <monnier@iro.umontreal.ca>
14940
14941 * newcomment.el (uncomment-region-default): Don't leave extra space
14942 when an arg is provided (bug#8150).
14943
14944 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
14945
14946 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
14947
14948 2012-02-17 Glenn Morris <rgm@gnu.org>
14949
14950 * net/socks.el: Require network-stream. (Bug#10599)
14951
14952 2012-02-17 Kenichi Handa <handa@m17n.org>
14953
14954 * international/charprop.el:
14955 * international/uni-name.el:
14956 * international/uni-old-name.el:
14957 * international/uni-comment.el: Regenerate.
14958
14959 2012-02-16 Glenn Morris <rgm@gnu.org>
14960
14961 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
14962 Interactively in calendar buffer, give an error if not on a date.
14963
14964 2012-02-15 Glenn Morris <rgm@gnu.org>
14965
14966 * shell.el (shell-delimiter-argument-list):
14967 Revert 2011-02-17 change. (Bug#8027)
14968
14969 2012-02-15 Chong Yidong <cyd@gnu.org>
14970
14971 * minibuffer.el (completion-at-point-functions): Doc fix.
14972
14973 * custom.el (defcustom): Doc fix; note use of defvar.
14974
14975 2012-02-15 Glenn Morris <rgm@gnu.org>
14976
14977 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
14978 Doc fixes.
14979
14980 2012-02-14 Glenn Morris <rgm@gnu.org>
14981
14982 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
14983
14984 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
14985
14986 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
14987 way the ports list is computed.
14988 (smtpmail-query-smtp-server): Prompt the user for a port number if
14989 we can't connect to any of the standard ports (bug#10810).
14990
14991 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
14992
14993 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
14994
14995 2012-02-13 Glenn Morris <rgm@gnu.org>
14996
14997 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
14998
14999 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
15000
15001 * net/gnutls.el (gnutls-trustfiles): New variable.
15002 (gnutls-negotiate): Use it.
15003
15004 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
15005
15006 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
15007 does its stuff if Gnus is running.
15008
15009 2012-02-13 Alan Mackenzie <acm@muc.de>
15010
15011 Fix a loop in c-set-fl-decl-start.
15012
15013 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
15014 c-backward-syntactic-ws actually moves backwards.
15015
15016 2012-02-13 Leo Liu <sdl.web@gmail.com>
15017
15018 * net/rcirc.el (rcirc-markup-attributes): Move point to the
15019 beginning so that all \C-o chars are removed.
15020
15021 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
15022
15023 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
15024
15025 2012-02-12 Alan Mackenzie <acm@muc.de>
15026
15027 Fix infinite loop with long macros.
15028 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
15029
15030 2012-02-12 Chong Yidong <cyd@gnu.org>
15031
15032 * window.el (display-buffer): Doc fix (Bug#10785).
15033
15034 2012-02-12 Glenn Morris <rgm@gnu.org>
15035
15036 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15037 (x-disown-selection-internal, x-get-selection-internal):
15038 Sync docs with the xselect.c versions.
15039
15040 * allout-widgets.el: Add missing license notice.
15041
15042 2012-02-11 Glenn Morris <rgm@gnu.org>
15043
15044 * select.el (x-get-selection-internal, x-own-selection-internal)
15045 (x-disown-selection-internal):
15046 * x-dnd.el (x-get-selection-internal): Update declarations.
15047
15048 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
15049
15050 * window.el (window-sides-slots):
15051 * tool-bar.el (tool-bar-position):
15052 * term/xterm.el (xterm-extra-capabilities):
15053 * ses.el (ses-self-reference-early-detection):
15054 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
15055 (verilog-auto-wire-type)
15056 (verilog-auto-delete-trailing-whitespace)
15057 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
15058 (verilog-auto-tieoff-declaration):
15059 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
15060 (sql-oracle-statement-starters, sql-oracle-scan-on):
15061 * progmodes/prolog.el (prolog-align-comments-flag)
15062 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
15063 (prolog-left-indent-regexp, prolog-paren-indent-p)
15064 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
15065 (prolog-types, prolog-mode-specificators)
15066 (prolog-determinism-specificators, prolog-directives)
15067 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
15068 (prolog-electric-dot-flag)
15069 (prolog-electric-dot-full-predicate-template)
15070 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
15071 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
15072 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
15073 (prolog-program-switches, prolog-prompt-regexp)
15074 (prolog-debug-on-string, prolog-debug-off-string)
15075 (prolog-trace-on-string, prolog-trace-off-string)
15076 (prolog-zip-on-string, prolog-zip-off-string)
15077 (prolog-use-standard-consult-compile-method-flag)
15078 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
15079 (prolog-imenu-max-lines, prolog-info-predicate-index)
15080 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
15081 (prolog-char-quote-workaround):
15082 * progmodes/cc-vars.el (c-defun-tactic):
15083 * net/tramp.el (tramp-encoding-command-interactive)
15084 (tramp-local-end-of-line):
15085 * net/soap-client.el (soap-client):
15086 * net/netrc.el (netrc-file):
15087 * net/gnutls.el (gnutls):
15088 * minibuffer.el (completion-category-overrides)
15089 (completion-cycle-threshold)
15090 (completion-pcm-complete-word-inserts-delimiters):
15091 * man.el (Man-name-local-regexp):
15092 * mail/feedmail.el (feedmail-display-full-frame):
15093 * international/characters.el (glyphless-char-display-control):
15094 * eshell/em-ls.el (eshell-ls-date-format):
15095 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
15096 (lisp-lambda-list-keyword-parameter-indentation)
15097 (lisp-lambda-list-keyword-parameter-alignment):
15098 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
15099 * dired-x.el (dired-omit-verbose):
15100 * cus-theme.el (custom-theme-allow-multiple-selections):
15101 * calc/calc.el (calc-highlight-selections-with-faces)
15102 (calc-lu-field-reference, calc-lu-power-reference)
15103 (calc-note-threshold):
15104 * battery.el (battery-mode-line-limit):
15105 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15106 (archive-7z-update):
15107 * allout.el (allout-prefixed-keybindings)
15108 (allout-unprefixed-keybindings)
15109 (allout-inhibit-auto-fill-on-headline)
15110 (allout-flattened-numbering-abbreviation):
15111 * allout-widgets.el (allout-widgets-auto-activation)
15112 (allout-widgets-icons-dark-subdir)
15113 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
15114 (allout-widgets-theme-dark-background)
15115 (allout-widgets-theme-light-background)
15116 (allout-widgets-item-image-properties-emacs)
15117 (allout-widgets-item-image-properties-xemacs)
15118 (allout-widgets-run-unit-tests-on-load)
15119 (allout-widgets-time-decoration-activity)
15120 (allout-widgets-hook-error-post-time)
15121 (allout-widgets-track-decoration):
15122 Add missing :version tags to new defcustoms and defgroups.
15123
15124 * progmodes/sql.el (sql-ansi-statement-starters)
15125 (sql-oracle-statement-starters): Add custom type.
15126
15127 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
15128 (prolog-system-version): Give it a type.
15129
15130 2012-02-11 Eli Zaretskii <eliz@gnu.org>
15131
15132 * term/pc-win.el (x-select-text, x-selection-owner-p)
15133 (x-own-selection-internal, x-disown-selection-internal)
15134 (x-get-selection-internal): Sync doc strings and argument lists
15135 with xselect.c, common-win.el and x-win.el. (Bug#10783)
15136
15137 2012-02-11 Leo Liu <sdl.web@gmail.com>
15138
15139 * progmodes/python.el (python-end-of-statement): Fix infinite
15140 loop. (Bug#10788)
15141
15142 2012-02-10 Glenn Morris <rgm@gnu.org>
15143
15144 * international/mule-cmds.el (unify-8859-on-encoding-mode)
15145 (unify-8859-on-decoding-mode): Properly mark as obsolete.
15146
15147 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
15148
15149 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
15150 about SMTP before checking the From header.
15151
15152 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
15153 into own function for reuse by emacsbug.el.
15154
15155 2012-02-10 Leo Liu <sdl.web@gmail.com>
15156
15157 * subr.el (condition-case-unless-debug): Rename from
15158 condition-case-no-debug. All callers changed.
15159 (with-demoted-errors): Fix caller.
15160
15161 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
15162 * nxml/rng-valid.el (rng-do-some-validation):
15163 * emacs-lisp/package.el (package-refresh-contents)
15164 (package-menu-execute):
15165 * desktop.el (desktop-create-buffer):
15166 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
15167
15168 2012-02-10 Glenn Morris <rgm@gnu.org>
15169
15170 * textmodes/bibtex.el:
15171 Add missing :version tags for new/changed defcustoms.
15172
15173 * files.el (remote-file-name-inhibit-cache): Doc fixes.
15174
15175 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
15176
15177 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15178 (smtpmail-via-smtp): Use it, or fall back on the From address.
15179 (smtpmail-send-it): Ditto.
15180
15181 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
15182
15183 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15184 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
15185 (byte-compile-tmp-var): New const.
15186 (byte-compile-defvar): Use it to minimize .elc size.
15187 Just use `defvar' rather than simulate it (bug#10761).
15188
15189 2012-02-09 Glenn Morris <rgm@gnu.org>
15190
15191 * files.el (rename-uniquely): Doc fix. (Bug#3806)
15192
15193 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15194 Add :version tags.
15195
15196 * progmodes/compile.el (compilation-error-screen-columns)
15197 (compilation-first-column, compilation-filter-start): Doc fixes.
15198
15199 * vc/log-view.el (log-view-toggle-entry-display):
15200 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15201
15202 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15203 (report-emacs-bug-can-use-xdg-email):
15204 (report-emacs-bug-insert-to-mailer): Doc fixes.
15205 (report-emacs-bug): Message fix.
15206
15207 * net/browse-url.el (browse-url-can-use-xdg-open)
15208 (browse-url-xdg-open): Doc fixes.
15209
15210 * electric.el (electric-indent-mode, electric-pair-mode)
15211 (electric-layout-rules, electric-layout-mode): Doc fixes.
15212 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15213
15214 2012-02-08 Martin Rudalics <rudalics@gmx.at>
15215
15216 * server.el (server-unselect-display): Don't inadvertently kill
15217 the current buffer. (Bug#10729)
15218
15219 2012-02-08 Glenn Morris <rgm@gnu.org>
15220
15221 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15222 (sql-list-table): Doc fixes.
15223
15224 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15225 Comment out (does nothing).
15226
15227 * completion.el (dynamic-completion-mode):
15228 * dirtrack.el (dirtrack-debug-mode):
15229 * electric.el (electric-layout-mode):
15230 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15231 * face-remap.el (text-scale-mode, buffer-face-mode):
15232 * iimage.el (iimage-mode):
15233 * image-mode.el (image-transform-mode):
15234 * minibuffer.el (completion-in-region-mode):
15235 * scroll-lock.el (scroll-lock-mode):
15236 * simple.el (next-error-follow-minor-mode):
15237 * tar-mode.el (tar-subfile-mode):
15238 * tooltip.el (tooltip-mode):
15239 * vcursor.el (vcursor-use-vcursor-map):
15240 * wid-browse.el (widget-minor-mode):
15241 * emulation/tpu-edt.el (tpu-edt-mode):
15242 * emulation/tpu-extras.el (tpu-cursor-free-mode):
15243 * international/iso-ascii.el (iso-ascii-mode):
15244 * language/thai-util.el (thai-word-mode):
15245 * mail/supercite.el (sc-minor-mode):
15246 * net/goto-addr.el (goto-address-mode):
15247 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15248 * progmodes/cwarn.el (cwarn-mode):
15249 * progmodes/flymake.el (flymake-mode):
15250 * progmodes/glasses.el (glasses-mode):
15251 * progmodes/hideshow.el (hs-minor-mode):
15252 * progmodes/pascal.el (pascal-outline-mode):
15253 * textmodes/enriched.el (enriched-mode):
15254 * vc/smerge-mode.el (smerge-mode):
15255 Doc fixes (minor mode argument).
15256
15257 2012-02-07 Eli Zaretskii <eliz@gnu.org>
15258
15259 * ls-lisp.el (ls-lisp-sanitize): New function.
15260 (ls-lisp-insert-directory): Use it to fix or remove any elements
15261 in file-alist with missing attributes. (Bug#4673)
15262
15263 2012-02-07 Alan Mackenzie <acm@muc.de>
15264
15265 Fix spurious recognition of c-in-knr-argdecl.
15266
15267 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15268 putative K&R region.
15269
15270 2012-02-07 Alan Mackenzie <acm@muc.de>
15271
15272 * progmodes/cc-engine.el (c-forward-objc-directive):
15273 Prevent looping in "#pragma mark @implementation".
15274
15275 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
15276
15277 * notifications.el (notifications-on-closed-signal): Make `reason'
15278 optional. (Bug#10744)
15279
15280 2012-02-07 Glenn Morris <rgm@gnu.org>
15281
15282 * emacs-lisp/easy-mmode.el (define-minor-mode):
15283 Doc fixes for the macro and the mode it defines.
15284
15285 * image.el (imagemagick-types-inhibit): Doc fix.
15286
15287 * cus-start.el (imagemagick-render-type): Add it.
15288
15289 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
15290
15291 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15292 Set the default at load time, too, so that `font-lock-fontify-buffer'
15293 can be called without setting up the entire mode first. This fixes
15294 a bug in `mm-inline-text' with C MIME parts.
15295
15296 2012-02-06 Chong Yidong <cyd@gnu.org>
15297
15298 * simple.el (list-processes--refresh): Delete exited processes
15299 (Bug#8094).
15300
15301 * comint.el (comint-next-prompt): next-single-char-property-change
15302 and prev-single-char-property-change never return nil (Bug#8657).
15303
15304 * custom.el (defcustom): Doc fix (Bug#9711).
15305
15306 2012-02-05 Chong Yidong <cyd@gnu.org>
15307
15308 * cus-edit.el (custom-variable-reset-backup): Quote the value
15309 before storing it in the customized-value property (Bug#6712).
15310 (custom-display): Add a customization type tag.
15311 (custom-buffer-create-internal): Improve tooltip message.
15312
15313 * wid-edit.el (widget-field-value-get): New optional arg to
15314 suppress trailing whitespace truncation.
15315 (character): Use it (Bug#2689).
15316
15317 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
15318
15319 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15320 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15321
15322 2012-02-05 Chong Yidong <cyd@gnu.org>
15323
15324 * cus-edit.el (custom-variable-value-create): For mismatched
15325 types, show the current value (Bug#7600).
15326
15327 * custom.el (defcustom): Doc fix.
15328
15329 2012-02-05 Glenn Morris <rgm@gnu.org>
15330
15331 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15332
15333 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
15334
15335 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15336 (pp-buffer): Use `ignore-errors', `looking-at-p'.
15337 (pp-last-sexp): Use `looking-at-p'.
15338
15339 2012-02-04 Glenn Morris <rgm@gnu.org>
15340
15341 * files.el (revert-buffer):
15342 Doc fix (mention revert-buffer-in-progress-p).
15343
15344 * emacs-lisp/ert-x.el (ert-simulate-command):
15345 Check deferred-action-list (which is obsolete) is bound.
15346
15347 * subr.el (with-wrapper-hook): Doc fixes.
15348
15349 * simple.el (filter-buffer-substring-functions)
15350 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15351
15352 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
15353
15354 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15355 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
15356
15357 2012-02-04 Leo Liu <sdl.web@gmail.com>
15358
15359 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15360
15361 2012-02-04 Glenn Morris <rgm@gnu.org>
15362
15363 * image.el (image-extension-data): Add obsolete alias.
15364
15365 * isearch.el (isearch-update): Doc fix.
15366
15367 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15368
15369 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15370
15371 2012-02-03 Glenn Morris <rgm@gnu.org>
15372
15373 * image.el (image-animated-p): Doc fix. Use image-animated-types.
15374 (image-animate-timeout): Doc fix.
15375
15376 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15377
15378 2012-02-02 Glenn Morris <rgm@gnu.org>
15379
15380 * server.el (server-auth-dir): Doc fix.
15381 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
15382
15383 * subr.el (run-mode-hooks): Doc fix.
15384
15385 2012-02-02 Juri Linkov <juri@jurta.org>
15386
15387 * image-mode.el (image-toggle-display-image): Remove tautological
15388 `major-mode' from the `derived-mode-p' test.
15389
15390 2012-02-02 Kenichi Handa <handa@m17n.org>
15391
15392 * composite.el (compose-region): Cancel previous change.
15393
15394 2012-02-02 Kenichi Handa <handa@m17n.org>
15395
15396 * composite.el (compose-region, compose-string): Signal error for
15397 a null string component (Bug#6988).
15398
15399 2012-02-01 Chong Yidong <cyd@gnu.org>
15400
15401 * view.el (view-buffer-other-window, view-buffer-other-frame):
15402 Handle special modes like view-buffer (Bug#10650).
15403 (view-buffer): Simplify.
15404
15405 * frame.el (set-frame-font): Tweak meaning of third argument.
15406
15407 * dynamic-setting.el (font-setting-change-default-font):
15408 Use set-frame-font (Bug#9982).
15409
15410 2012-02-01 Glenn Morris <rgm@gnu.org>
15411
15412 * progmodes/compile.el (compilation-internal-error-properties):
15413 Respect compilation-first-column in the "*compilation*" buffer.
15414
15415 * emacs-lisp/easy-mmode.el (define-minor-mode):
15416 Relax :variable's test for a named function.
15417
15418 2012-01-31 Alan Mackenzie <acm@muc.de>
15419
15420 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15421 off by one error.
15422
15423 2012-01-31 Chong Yidong <cyd@gnu.org>
15424
15425 * frame.el (set-frame-font): New arg ALL-FRAMES.
15426
15427 * menu-bar.el (menu-set-font): Use set-frame-font.
15428
15429 * faces.el (face-spec-reset-face): Don't apply unspecified
15430 attribute values to the default face.
15431
15432 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
15433
15434 * progmodes/cwarn.el (cwarn): Remove dead link.
15435 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15436 Remove * from defcustom docstrings.
15437 (turn-on-cwarn-mode): Make obsolete.
15438 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15439 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15440
15441 2012-01-31 Glenn Morris <rgm@gnu.org>
15442
15443 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15444 Fix :variable handling of mode a symbol not equal to modefun.
15445 Allow named functions to be used as the cdr of :variable.
15446
15447 2012-01-30 Glenn Morris <rgm@gnu.org>
15448
15449 * emacs-lisp/authors.el (authors-fixed-entries):
15450 Remove reference to deleted file rnewspost.el.
15451
15452 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
15453
15454 * window.el (window-with-parameter): Remove unused variable `windows'.
15455 (window--side-check): Remove unused variable `code'.
15456 (window--resize-siblings): Remove unused variable `first'.
15457 (adjust-window-trailing-edge): Remove unused variable `failed'.
15458 (window-deletable-p, window--delete): Remove unused variable `buffer'.
15459 Use `let', not `let*'.
15460 (balance-windows-2): Remove unused variable `found'.
15461 (window--state-put-2): Remove unused variable `splits'.
15462 (window-state-put): Remove unused variable `selected'.
15463 (same-window-p): Use `string-match-p'.
15464 (display-buffer-assq-regexp): Remove unused variable `value'.
15465 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15466 Mark argument ALIST as ignored.
15467 (pop-to-buffer): Remove unused variable `old-window'.
15468
15469 2012-01-29 Eli Zaretskii <eliz@gnu.org>
15470
15471 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15472 and .lzma compressed files.
15473
15474 2012-01-29 Chong Yidong <cyd@gnu.org>
15475
15476 * frame.el (window-system-default-frame-alist): Doc fix.
15477
15478 * dynamic-setting.el (font-setting-change-default-font): Don't
15479 change the default face if SET-FONT argument is non-nil (Bug#9982).
15480
15481 2012-01-29 Samuel Bronson <naesten@gmail.com>
15482
15483 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15484
15485 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
15486
15487 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15488 breakpoints in files outside current directory (Bug#6098).
15489
15490 2012-01-29 Chong Yidong <cyd@gnu.org>
15491
15492 * progmodes/python.el: Require ansi-color at top-level.
15493
15494 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15495 Define and use in Emacs Lisp mode (Bug#9360).
15496 (lisp-mode-abbrev-table): Add doc.
15497 (lisp-mode-variables): Don't set local-abbrev-table.
15498 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15499
15500 2012-01-28 Roland Winkler <winkler@gnu.org>
15501
15502 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15503
15504 2012-01-28 Roland Winkler <winkler@gnu.org>
15505
15506 * textmodes/bibtex.el (bibtex-entry-alist): New function.
15507 (bibtex-set-dialect): Use it. Either set global values of
15508 dialect-dependent variables or bind these variables buffer-locally
15509 (Bug#10254).
15510 (bibtex-mode): Call bibtex-set-dialect via
15511 hack-local-variables-hook.
15512 (bibtex-dialect): Update docstring.
15513 Add safe-local-variable predicate.
15514 (bibtex-entry-alist, bibtex-field-alist): Initialize via
15515 bibtex-set-dialect.
15516 (bibtex-mode-map): Define menu for each dialect.
15517 (bibtex-entry): Fix docstring.
15518
15519 2012-01-28 Chong Yidong <cyd@gnu.org>
15520
15521 * eshell/esh-arg.el (eshell-quote-argument): New function.
15522
15523 * eshell/esh-ext.el (eshell-invoke-batch-file):
15524 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15525 first arg to eshell-parse-command (Bug#10523).
15526
15527 2012-01-28 Drew Adams <drew.adams@oracle.com>
15528
15529 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15530 `default-directory' is non-nil.
15531
15532 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15533
15534 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15535 line that displays system-configuration-options. (Bug#9924)
15536
15537 2012-01-28 Drew Adams <drew.adams@oracle.com>
15538
15539 * descr-text.el (describe-char): Show information about POS, in
15540 addition to information about the character at POS. Improve and
15541 update the doc string. Change "code point" to "code point in
15542 charset", to avoid confusion with the character's Unicode code
15543 point shown above that. (Bug#10129)
15544
15545 2012-01-28 Eli Zaretskii <eliz@gnu.org>
15546
15547 * descr-text.el (describe-char): Show the raw character, not only
15548 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
15549 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15550 for the reasons.
15551
15552 2012-01-28 Phil Hagelberg <phil@hagelb.org>
15553
15554 * emacs-lisp/package.el (package-install):
15555 Run package-refresh-contents if there is no archive yet (Bug#9798).
15556
15557 2012-01-28 Chong Yidong <cyd@gnu.org>
15558
15559 * emacs-lisp/package.el (package-maybe-load-descriptor):
15560 New function, split from package-maybe-load-descriptor.
15561 (package-maybe-load-descriptor): Use it.
15562 (package-download-transaction): Fully load required packages
15563 inside the loop, so that `require' calls work (Bug#10593).
15564 (package-install): No need to call package-initialize now.
15565
15566 2012-01-28 Chong Yidong <cyd@gnu.org>
15567
15568 * simple.el (deactivate-mark): Doc fix (Bug#8614).
15569
15570 * tooltip.el (tooltip-mode): Doc fix.
15571 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15572
15573 * frame.el (set-cursor-color): Doc fix (Bug#352).
15574
15575 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15576 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15577
15578 * cus-edit.el (custom-buffer-create-internal): Fix search button
15579 action (Bug#10542).
15580 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15581
15582 2012-01-27 Eduard Wiebe <usenet@pusto.de>
15583
15584 * dired.el (dired-mark-files-regexp):
15585 Include any subdirectory components. (Bug#10445)
15586
15587 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
15588
15589 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15590 Handle [host]:port syntax. (Bug#10533)
15591
15592 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
15593
15594 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15595
15596 2012-01-26 Glenn Morris <rgm@gnu.org>
15597
15598 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15599 * term.el (term-raw-escape-map): Use Control-X-prefix.
15600 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
15601
15602 2012-01-25 Martin Rudalics <rudalics@gmx.at>
15603
15604 * window.el (window-state-get, window--state-get-1): Don't deal
15605 with fixed-sizeness of windows. Simplify code.
15606
15607 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
15608
15609 * window.el (window--state-get-1, window--state-put-2):
15610 Don't save and restore the mark.
15611
15612 2012-01-25 Chong Yidong <cyd@gnu.org>
15613
15614 * custom.el (custom-variable-p): Doc fix.
15615
15616 2012-01-25 Glenn Morris <rgm@gnu.org>
15617
15618 * dired.el (dired-goto-file): Handle some of the more common
15619 characters that `ls -b' escapes. (Bug#10596)
15620
15621 * progmodes/compile.el (compilation-next-error-function):
15622 Respect compilation-first-column in the "*compilation*" buffer.
15623 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
15624
15625 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
15626
15627 2012-01-24 Glenn Morris <rgm@gnu.org>
15628
15629 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
15630
15631 2012-01-24 Julien Danjou <julien@danjou.info>
15632
15633 * color.el (color-rgb-to-hsl): Fix value computing.
15634 (color-hue-to-rgb): New function.
15635 (color-hsl-to-rgb): New function.
15636 (color-clamp, color-saturate-hsl, color-saturate-name)
15637 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15638 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15639
15640 2012-01-24 Glenn Morris <rgm@gnu.org>
15641
15642 * vc/vc-rcs.el (vc-rcs-create-tag):
15643 * vc/vc-sccs.el (vc-sccs-create-tag):
15644 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
15645
15646 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
15647
15648 * eshell/esh-util.el (eshell-read-hosts-file):
15649 Skip comment lines. (Bug#10549)
15650
15651 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
15652
15653 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
15654
15655 * subr.el (display-delayed-warnings): Doc fix.
15656 (collapse-delayed-warnings): New function to collapse identical
15657 adjacent warnings.
15658 (delayed-warnings-hook): Add it.
15659
15660 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
15661
15662 * net/tramp.el (tramp-action-login): Set connection property "login-as".
15663
15664 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15665 (tramp-default-user-alist): Don't add "pscp".
15666 (tramp-do-copy-or-rename-file-out-of-band): Use connection
15667 property "login-as", if set. (Bug#10530)
15668
15669 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
15670
15671 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15672 "plink1" and "psftp". (Bug#10530)
15673
15674 2012-01-21 Kenichi Handa <handa@m17n.org>
15675
15676 * international/mule-cmds.el (prefer-coding-system): Show a
15677 warning message if the default value of file-name-coding-system
15678 was not changed.
15679
15680 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
15681
15682 * windmove.el (windmove-reference-loc):
15683 Fix windmove-reference-loc miscalculation.
15684
15685 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
15686
15687 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15688 default unit.
15689
15690 2012-01-21 Glenn Morris <rgm@gnu.org>
15691
15692 * international/mule.el (auto-coding-alist): Add .tbz.
15693
15694 * files.el (local-enable-local-variables): Doc fix.
15695 (inhibit-local-variables-regexps): Rename from
15696 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
15697 Doc fix. Add some extensions from auto-coding-alist.
15698 (inhibit-local-variables-suffixes):
15699 Rename from inhibit-first-line-modes-suffixes. Doc fix.
15700 (inhibit-local-variables-p):
15701 New function, extracted from set-auto-mode-1.
15702 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
15703 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
15704 (hack-local-variables): Doc fix. Make the mode-only case
15705 respect enable-local-variables and friends.
15706 Respect inhibit-local-variables-regexps for file-locals, but
15707 not for directory-locals.
15708 (set-visited-file-name):
15709 Take account of inhibit-local-variables-regexps.
15710 Whether it applies may change as the file name is changed.
15711 * jka-cmpr-hook.el (jka-compr-install):
15712 * jka-compr.el (jka-compr-uninstall):
15713 Update for inhibit-first-line-modes-suffixes name change.
15714
15715 2012-01-20 Martin Rudalics <rudalics@gmx.at>
15716
15717 * help-macro.el (make-help-screen): Temporarily restore original
15718 binding for minor-mode-map-alist (Bug#10454).
15719
15720 2012-01-19 Julien Danjou <julien@danjou.info>
15721
15722 * color.el (color-name-to-rgb): Use the white color to find the max
15723 color component value and return correctly computed values.
15724 (color-name-to-rgb): Add missing float conversion for max value.
15725
15726 2012-01-19 Martin Rudalics <rudalics@gmx.at>
15727
15728 * window.el (window--state-get-1, window-state-get): Do not use
15729 special state value for window-persistent-parameters.
15730 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
15731 (window--state-put-2): Reset all window parameters to nil before
15732 assigning values of persistent parameters.
15733
15734 2012-01-18 Alan Mackenzie <acm@muc.de>
15735
15736 Eliminate sluggishness and hangs in fontification of "semicolon
15737 deserts".
15738
15739 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
15740 Change value 10000 -> 3000.
15741 (c-state-safe-place): Reformulate so it doesn't stack up an
15742 infinite number of wrong entries in c-state-nonlit-pos-cache.
15743 (c-determine-limit-get-base, c-determine-limit): New functions to
15744 determine backward search limits disregarding literals.
15745 (c-find-decl-spots): Amend commenting.
15746 (c-cheap-inside-bracelist-p): New function which detects "={".
15747
15748 * progmodes/cc-fonts.el
15749 (c-make-font-lock-BO-decl-search-function): Give a limit to a
15750 backward search.
15751 (c-font-lock-declarations): Fix an occurrence of point being
15752 undefined. Check additionally for point being in a bracelist or
15753 near a macro invocation without a semicolon so as to avoid a
15754 fruitless time consuming search for a declarator. Give a more
15755 precise search limit for declarators using the new
15756 c-determine-limit.
15757
15758 2012-01-18 Glenn Morris <rgm@gnu.org>
15759
15760 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
15761 (set-auto-mode): Doc fixes.
15762
15763 2012-01-17 Glenn Morris <rgm@gnu.org>
15764
15765 * isearch.el (search-nonincremental-instead): Fix doc typo.
15766
15767 * dired.el (dired-insert-directory): Handle newlines in directory name.
15768 (dired-build-subdir-alist): Unescape newlines in directory name.
15769
15770 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
15771
15772 * net/tramp.el (tramp-local-end-of-line): New defcustom.
15773 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
15774 (tramp-action-terminal): Use it. (Bug#10530)
15775
15776 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
15777
15778 * minibuffer.el (completion--replace): Strip properties (bug#10062).
15779
15780 2012-01-16 Martin Rudalics <rudalics@gmx.at>
15781
15782 * window.el (window-state-ignored-parameters): Remove variable.
15783 (window--state-get-1): Rename argument MARKERS to IGNORE.
15784 Handle persistent window parameters. Make copy of clone-of
15785 parameter only if requested. (Bug#10348)
15786 (window--state-put-2): Install a window parameter only if it has
15787 a non-nil value or an existing parameter shall be overwritten.
15788
15789 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
15790
15791 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
15792
15793 2012-01-14 Eli Zaretskii <eliz@gnu.org>
15794
15795 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
15796 don't pass the (nil) value of `upnode' to string-match.
15797
15798 2012-01-14 Chong Yidong <cyd@gnu.org>
15799
15800 * startup.el (command-line): Fix X resource class for cursorColor.
15801 Fix values recognized by the cursorBlink resource.
15802
15803 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
15804
15805 * epg.el (epg--make-temp-file): Avoid permission race condition
15806 when running on old Emacs versions (bug#10403).
15807
15808 2012-01-14 Glenn Morris <rgm@gnu.org>
15809
15810 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
15811
15812 2012-01-13 Alan Mackenzie <acm@muc.de>
15813
15814 Fix filling for when filladapt mode is enabled.
15815
15816 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
15817 c-mask-paragraph, pass in `fill-paragraph' rather than
15818 `fill-region-as-paragraph'. (This is a reversion of a previous
15819 change.)
15820 * progmodes/cc-mode.el (c-basic-common-init):
15821 Make fill-paragraph-handle-comment buffer local and set it to nil.
15822
15823 2012-01-13 Glenn Morris <rgm@gnu.org>
15824
15825 * dired.el (dired-switches-escape-p): New function.
15826 (dired-insert-directory): Use dired-switches-escape-p.
15827 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
15828
15829 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
15830
15831 2012-01-12 Glenn Morris <rgm@gnu.org>
15832
15833 * mail/sendmail.el (mail-mode): Update paragraph-separate for
15834 changes in adaptive-fill-regexp. (Bug#10276)
15835
15836 2012-01-11 Alan Mackenzie <acm@muc.de>
15837
15838 Fix Emacs bug #10463 - put `widen's around the critical spots.
15839
15840 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
15841 widen around each invocation of c-state-pp-to-literal. Remove an
15842 unused let variable.
15843
15844 2012-01-11 Glenn Morris <rgm@gnu.org>
15845
15846 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
15847 Doc fix.
15848
15849 2012-01-10 Chong Yidong <cyd@gnu.org>
15850
15851 * net/network-stream.el (network-stream-open-starttls):
15852 Avoid emitting a confusing error message when the server gives a bad
15853 response to the capability command.
15854
15855 2012-01-10 Glenn Morris <rgm@gnu.org>
15856
15857 * mail/unrmail.el (unrmail): Tweak previous change.
15858
15859 2012-01-09 Chong Yidong <cyd@gnu.org>
15860
15861 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
15862
15863 2012-01-08 Alan Mackenzie <acm@muc.de>
15864
15865 Optimize font locking in long enum definitions.
15866
15867 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
15868 arm to a cond form to handle enums.
15869 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
15870 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
15871
15872 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
15873
15874 * files.el (move-file-to-trash): Preserve default file modes on error.
15875 (Bug#10401)
15876
15877 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15878
15879 * faces.el (set-face-attribute): Clarify the meaning of the nil
15880 frame (bug#10294).
15881
15882 * subr.el (with-selected-frame): Mention that the selected frame
15883 is restored (bug#9980).
15884
15885 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
15886 (bug#9759).
15887
15888 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
15889 (password-read): Don't autoload unused function.
15890
15891 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
15892
15893 * progmodes/which-func.el (which-func-mode): Turn into a
15894 non-interactive function and mark as obsolete (bug#10428).
15895
15896 2012-01-06 Chong Yidong <cyd@gnu.org>
15897
15898 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
15899 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
15900 functions, along with 1 and -1.
15901
15902 2012-01-06 Eli Zaretskii <eliz@gnu.org>
15903
15904 * time.el (display-time-load-average)
15905 (display-time-default-load-average): Doc fixes. See the thread
15906 starting at
15907 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
15908 for the details.
15909
15910 2012-01-06 Glenn Morris <rgm@gnu.org>
15911
15912 * mail/unrmail.el (unrmail): Give an explicit error if the input file
15913 has no messages. (Bug#10377)
15914
15915 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
15916 than Info-edit. (Bug#10385)
15917
15918 * time.el (display-time-load-average, display-time-next-load-average):
15919 Doc fixes.
15920
15921 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
15922 local setting of buffer-read-only to the input buffer. (Bug#10419)
15923
15924 * calendar/calendar.el (calendar-mode):
15925 Locally set scroll-margin to 0. (Bug#10379)
15926
15927 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
15928
15929 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
15930
15931 2012-01-05 Glenn Morris <rgm@gnu.org>
15932
15933 * eshell/em-unix.el (diff-no-select): Autoload it.
15934 (eshell/diff): Use diff-no-select. (Bug#10420)
15935
15936 2012-01-05 Chong Yidong <cyd@gnu.org>
15937
15938 * shell.el (shell-dynamic-complete-functions): Revert last change.
15939 (shell-command-completion-function): New function.
15940 (shell-completion-vars): Use it to implement
15941 shell-completion-execonly (Bug#10417).
15942
15943 * custom.el (enable-theme): Don't set custom-safe-themes.
15944
15945 * cus-theme.el (custom-theme-merge-theme):
15946 Ignore custom-enabled-themes and custom-safe-themes.
15947
15948 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
15949
15950 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
15951 first prompt in `sql-interacive-mode'.
15952 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
15953 keywords.
15954 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
15955 (sql-product-interactive): Bug fix: Set `sql-buffer' in
15956 context of original buffer. Invoke `sql-login-hook'.
15957
15958 2012-01-04 Eli Zaretskii <eliz@gnu.org>
15959
15960 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
15961 letters in cite-prefix.
15962
15963 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15964
15965 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
15966
15967 2012-01-03 Chong Yidong <cyd@gnu.org>
15968
15969 * shell.el (shell-dynamic-complete-functions):
15970 Put pcomplete-completions-at-point, so as to try
15971 comint-filename-completion first (Bug#10417).
15972
15973 2012-01-02 Richard Stallman <rms@gnu.org>
15974
15975 * battery.el (battery-status-function):
15976 Detect when to use battery-yeeloong-sysfs.
15977 (battery-echo-area-format): Add string for Yeeloong.
15978 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
15979 (battery-yeeloong-sysfs): New function.
15980
15981 2012-01-02 Chong Yidong <cyd@gnu.org>
15982
15983 * dirtrack.el (dirtrack-list): Eliminate unused third element.
15984 (dirtrack): Merge code for handling relative filenames in prompt
15985 from shell-dir-cookie-watcher.
15986 (dirtrack-debug-message): New arg to avoid excess format calls.
15987
15988 * shell.el (shell-dir-cookie-re): Variable deleted.
15989 (shell-dir-cookie-watcher): Function deleted.
15990 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
15991 with dirtrack-mode.
15992
15993 2012-01-01 Eli Zaretskii <eliz@gnu.org>
15994
15995 * term/w32-win.el (dynamic-library-alist) <gnutls>:
15996 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
15997 libgnutls-26.dll.
15998
15999 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
16000
16001 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
16002
16003 2011-12-31 Eli Zaretskii <eliz@gnu.org>
16004
16005 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
16006 headers of non-MIME messages, when rmail-enable-mime is non-nil.
16007
16008 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
16009
16010 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
16011 also for alternative shells.
16012 (tramp-open-connection-setup-interactive-shell): Check, whether
16013 the shell is a busybox.
16014 (tramp-send-command): Don't suppress multiple prompts for
16015 busyboxes, it hurts.
16016
16017 2011-12-28 Chong Yidong <cyd@gnu.org>
16018
16019 * progmodes/gdb-mi.el (gdb-get-source-file-list)
16020 (gdb-get-source-file): Move mode line update to
16021 gdb-get-source-file (Bug#10087).
16022
16023 2011-12-25 Chong Yidong <cyd@gnu.org>
16024
16025 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
16026 gud-gdb-marker-filter without taking it as an argument.
16027 (gud-gdb-run-command-fetch-lines): Caller changed.
16028 (gud-gdb-completion-function): New variable.
16029 (gud-gdb-completion-at-point): Use it.
16030 (gud-gdb-completions-1): Split from gud-gdb-completions.
16031
16032 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
16033 function as separate arguments.
16034 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
16035 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
16036 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
16037 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
16038 (gdb-stopped, def-gdb-auto-update-trigger)
16039 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
16040 (gdb-get-changed-registers, gdb-get-main-selected-frame):
16041 Callers changed.
16042 (gud-gdbmi-completions): New function.
16043 (gdb): Use it for generating the completion table.
16044
16045 2011-12-24 Alan Mackenzie <acm@muc.de>
16046
16047 Introduce a mechanism to widen the region used in context font
16048 locking. Use this to protect declarations from losing their contexts.
16049
16050 * progmodes/cc-langs.el (c-before-font-lock-functions):
16051 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
16052 (c-before-context-fontification-functions): New defvar, a list of
16053 functions to be run just before context (etc.) font locking.
16054
16055 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
16056 New, functionality extracted from
16057 c-neutralize-syntax-in-and-mark-CPP.
16058 (c-in-after-change-fontification): New variable.
16059 (c-after-change): Set c-in-after-change-fontification.
16060 (c-set-fl-decl-start): Rejig its interface, so it can be called
16061 from both after-change and context fontifying.
16062 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
16063 New functions.
16064 (c-standard-font-lock-fontify-region-function): New variable.
16065 (c-font-lock-fontify-region): New function.
16066
16067 2011-12-24 Juri Linkov <juri@jurta.org>
16068
16069 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
16070 (Bug#10348)
16071
16072 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
16073
16074 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
16075 existence of source file. (Bug#10325)
16076
16077 2011-12-23 Alan Mackenzie <acm@muc.de>
16078
16079 Fix unstable fontification inside templates.
16080
16081 * progmodes/cc-langs.el (c-before-font-lock-functions):
16082 Newly created from the singular version. The (c c++ objc) entry now
16083 additionally has c-set-fl-decl-start. The other languages (apart
16084 from AWK) have that as a single entry.
16085
16086 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16087 The functionality for "local" declarations has been extracted to
16088 c-set-fl-decl-start.
16089
16090 * progmodes/cc-mode.el (c-common-init, c-after-change):
16091 Changes due to pluralisation of c-before-font-lock-functions.
16092 (c-set-fl-decl-start): New function, extracted from
16093 c-font-lock-enclosing-decls and enhanced.
16094
16095 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
16096
16097 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
16098
16099 2011-12-22 Juri Linkov <juri@jurta.org>
16100
16101 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
16102
16103 2011-12-22 Chong Yidong <cyd@gnu.org>
16104
16105 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
16106
16107 2011-12-21 Drew Adams <drew.adams@oracle.com>
16108
16109 * files.el (file-remote-p): Fix docstring. (Bug#10319)
16110
16111 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
16112
16113 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
16114
16115 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
16116
16117 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
16118 highlighting and support. Fix up comments for capitalization.
16119 (cfengine-mode-debug): New var.
16120 (cfengine3-mode): Change the modeline indicator to "CFE3".
16121 (cfengine3-font-lock-keywords): Improve defun highlighting.
16122 (cfengine2-actions): Rename from `cfengine-actions'.
16123 (cfengine2-font-lock-keywords): Rename from
16124 `cfengine-font-lock-keywords'.
16125 (cfengine2-imenu-expression): Rename from
16126 `cfengine-imenu-expression'.
16127 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
16128 (cfengine2-beginning-of-defun): Rename from
16129 `cfengine-beginning-of-defun'.
16130 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
16131 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
16132 (cfengine2-mode): Rename from `cfengine-mode'. Change the
16133 modeline indicator to "CFE2".
16134 (cfengine-mode): Defalias to `cfengine-auto-mode'.
16135 (cfengine-mode-abbrevs): Mark obsolete.
16136
16137 2011-12-21 Chong Yidong <cyd@gnu.org>
16138
16139 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
16140 filename argument.
16141
16142 2011-12-20 Martin Rudalics <rudalics@gmx.at>
16143
16144 * window.el (window-normalize-buffer-to-display): Remove.
16145 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
16146
16147 2011-12-19 Chong Yidong <cyd@gnu.org>
16148
16149 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
16150 Don't signal an error in a predicate function; return non-nil.
16151 (vc-dir-mark-file): Move the error here.
16152 (vc-dir-mark-unmark): If acting on the region, keep going if one
16153 of the entries cannot be marked/unmarked.
16154 (vc-dir-mark-all-files): If current entry is a directory, mark
16155 only child files, as documented.
16156
16157 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
16158
16159 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
16160 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
16161 addition.
16162
16163 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
16164
16165 * term/ns-win.el (ns-get-selection-internal)
16166 (ns-store-selection-internal): Declare.
16167 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
16168 Declare as obsolete.
16169 (ns-get-pasteboard, ns-paste-secondary):
16170 Use ns-get-selection-internal.
16171 (ns-set-pasteboard, ns-copy-including-secondary):
16172 Use ns-store-selection-internal.
16173
16174 2011-12-17 Chong Yidong <cyd@gnu.org>
16175
16176 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16177 (vc-deduce-fileset): Doc fix.
16178
16179 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
16180
16181 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16182
16183 2011-12-13 Sam Steingold <sds@gnu.org>
16184
16185 * man.el (Man-getpage-in-background): When running under a
16186 window-system, ignore $MANWIDTH and $COLUMNS.
16187
16188 2011-12-15 Kenichi Handa <handa@m17n.org>
16189
16190 * language/ethio-util.el: Change coding tag to utf-8-emacs.
16191 (setup-ethiopic-environment-internal): Comment out key-binding for
16192 ethio-toggle-punctuation.
16193
16194 2011-12-13 Alan Mackenzie <acm@muc.de>
16195
16196 Add the switch statement to AWK Mode.
16197
16198 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16199 "default" to the keywords regexp.
16200
16201 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16202 expression as the rest.
16203 (c-nonlabel-token-key): Allow string literals for AWK.
16204 Refactor for the other modes.
16205
16206 Large brace-block initialisation makes CC Mode slow: Fix.
16207 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16208 routines. Limit backward searching in c-font-lock-enclosing.decl.
16209
16210 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16211 pp-state and literal type in addition to the limits.
16212 (c-state-safe-place): New defun, extracted from c-state-literal-at.
16213 (c-state-literal-at): Use the above new defun.
16214 (c-slow-in-literal, c-fast-in-literal): Remove.
16215 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16216
16217 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16218 being in a literal. Add a limit for backward searching.
16219
16220 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16221 c-slow-in-literal.
16222
16223 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
16224
16225 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16226
16227 2011-12-13 Martin Rudalics <rudalics@gmx.at>
16228
16229 * window.el (delete-other-windows): Use correct frame in call to
16230 window-with-parameter.
16231
16232 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
16233
16234 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16235 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16236 (makefile-gmake-statements, makefile-makepp-statements):
16237 Use it and add new makepp keywords.
16238 (makefile-makepp-font-lock-keywords): Add new patterns.
16239 (makefile-match-function-end): Match new [...] and [[...]].
16240
16241 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
16242
16243 * ses.el (ses-call-printer-return, ses-cell-property-get)
16244 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16245 (ses-create-cell-variable, ses-reset-header-string)
16246 (ses-cell-set-formula, ses-repair-cell-reference-all)
16247 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16248 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16249 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16250 (ses-aset-with-undo, ses-load, ses-truncate-cell)
16251 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16252 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16253 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16254 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16255 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16256 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16257 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16258 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16259
16260 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
16261
16262 * ses.el: The overall change is to add cell renaming, that is
16263 setting fancy names for cell symbols other than name matching
16264 "\\`[A-Z]+[0-9]+\\'" regexp .
16265 (ses-create-cell-variable): New defun.
16266 (ses-relocate-formula): Relocate formulas only for cells the
16267 symbols of which are not renamed, i.e. symbols whose names do not
16268 match regexp "\\`[A-Z]+[0-9]+\\'".
16269 (ses-relocate-all): Relocate values only for cells the symbols of
16270 which are not renamed.
16271 (ses-load): Create cells variables as the (ses-cell ...) are read,
16272 in order to check row col consistency with cell symbol name only
16273 for cells that are not renamed.
16274 (ses-replace-name-in-formula): New defun.
16275 (ses-rename-cell): New defun.
16276
16277 2011-12-11 Chong Yidong <cyd@gnu.org>
16278
16279 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16280 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16281
16282 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
16283
16284 * window.el (other-window): Fix docstring.
16285
16286 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16287
16288 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16289 `from' or `to' address before taking its substring.
16290 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16291 encoded name is chopped in the middle of the encoded string, and
16292 thus displayed encoded.
16293
16294 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
16295
16296 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16297
16298 2011-12-10 Eli Zaretskii <eliz@gnu.org>
16299
16300 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
16301 to use texinfo-update-node and commands that call it if the
16302 Texinfo file uses @node lines without next/prev/up pointers.
16303 Correct outdated description about texinfo-master-menu.
16304 (texinfo-all-menus-update, texinfo-master-menu)
16305 (texinfo-update-node, texinfo-every-node-update)
16306 (texinfo-multiple-files-update): Doc fix. Warn against updating
16307 all the @node lines.
16308 (texinfo-master-menu): Only call texinfo-update-node if the prefix
16309 argument is numeric. Explain better in the doc string what the
16310 function really does.
16311 (texinfo-insert-master-menu-list): Improve the error message
16312 displayed if there's no menu in the Top node.
16313 (Bug#2975) See also this thread:
16314 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16315
16316 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
16317
16318 * speedbar.el (speedbar-supported-extension-expressions):
16319 Add .adb and .ads, commonly used for Ada source code (bug#10256).
16320
16321 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
16322
16323 * printing.el (pr-mode-alist):
16324 * simple.el (filter-buffer-substring-functions)
16325 (completion-list-insert-choice-function):
16326 * window.el (window-with-parameter, window-atom-root)
16327 (window-sides-slots, window-size-fixed, window-min-delta)
16328 (window-max-delta, window--resize-mini-window)
16329 (window--resize-child-windows-normal, window-tree)
16330 (delete-other-windows, quit-window, split-window)
16331 (display-buffer-record-window, special-display-buffer-names)
16332 (special-display-regexps, special-display-popup-frame)
16333 (same-window-p, split-window-sensibly)
16334 (display-buffer-overriding-action, display-buffer-alist)
16335 (display-buffer-base-action, display-buffer, switch-to-buffer)
16336 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16337 (fit-window-to-buffer, recenter-positions)
16338 (mouse-autoselect-window-state, mouse-autoselect-window-select):
16339 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16340 and remove unneeded backslashes in docstrings.
16341
16342 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
16343
16344 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16345
16346 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16347 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16348 end in ".mk".
16349 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16350 when reading the makefile (bug#10116).
16351
16352 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
16353
16354 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16355 (bug#10116).
16356
16357 2011-12-06 Glenn Morris <rgm@gnu.org>
16358
16359 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16360
16361 2011-12-06 Chong Yidong <cyd@gnu.org>
16362
16363 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16364
16365 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
16366
16367 * textmodes/table.el (table-shorten-cell): Fix typo.
16368
16369 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
16370
16371 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16372
16373 2011-12-05 Eli Zaretskii <eliz@gnu.org>
16374
16375 * descr-text.el (describe-char): Fix display of strong
16376 right-to-left characters and directional embeddings and overrides.
16377
16378 * simple.el (what-cursor-position): Fix display of codepoints of
16379 strong right-to-left characters.
16380
16381 2011-12-05 Chong Yidong <cyd@gnu.org>
16382
16383 * faces.el (read-color): Doc fix.
16384
16385 2011-12-05 Glenn Morris <rgm@gnu.org>
16386
16387 * align.el (align--set-marker): Add doc-string.
16388 Don't try to move something that is not a marker. (Bug#10216)
16389
16390 2011-12-04 Glenn Morris <rgm@gnu.org>
16391
16392 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16393 overly zealous deletion of trailing whitespace.
16394
16395 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
16396
16397 * server.el (server-delete-client): On Windows, do not try to delete
16398 the only terminal.
16399 (server-process-filter): On Windows, treat requests for a tty frame as
16400 if they were for a GUI frame if the running server is in GUI mode.
16401
16402 2011-12-03 Glenn Morris <rgm@gnu.org>
16403
16404 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
16405
16406 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
16407
16408 * electric.el: Streamline electric-indent's hook.
16409 (electric-indent-chars): Revert to simple list.
16410 (electric-indent-functions): New var.
16411 (electric-indent-post-self-insert-function): Use it.
16412
16413 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16414 there's no inferior buffer (bug#10196).
16415 (prolog-consult-compile): Don't use toggle-read-only.
16416
16417 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
16418
16419 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16420 interrupt. (Bug#10187)
16421
16422 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
16423
16424 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16425 (bug#9160).
16426
16427 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16428 (bug#10191).
16429
16430 2011-12-02 Juri Linkov <juri@jurta.org>
16431
16432 * info.el (Info-search): Display "end of manual" when Isearch
16433 reaches the end of single-file Info manual. (Bug#9918)
16434
16435 2011-12-02 Eli Zaretskii <eliz@gnu.org>
16436
16437 * isearch.el (isearch-message-prefix): Run the input method part
16438 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
16439
16440 2011-12-02 Juri Linkov <juri@jurta.org>
16441
16442 * isearch.el (isearch-occur): Use `word-search-regexp' for
16443 `isearch-word'.
16444 (isearch-search-and-update): Add condition for `isearch-word' and
16445 call `word-search-regexp'. (Bug#10145)
16446
16447 2011-12-01 Glenn Morris <rgm@gnu.org>
16448
16449 * eshell/em-hist.el (eshell-hist-initialize):
16450 Handle eshell-history-size nil and HISTSIZE set or unset.
16451 (eshell-history-file-name, eshell-history-size): Fix custom type.
16452
16453 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
16454
16455 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16456
16457 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
16458
16459 * progmodes/verilog-mode.el (verilog-pretty-expr):
16460 Rework verilog-pretty-expr to handle new assignment operators in system
16461 verilog, such as += *= and the like.
16462 (verilog-assignment-operator-re): Regular expression to find the
16463 assigment operator in a verilog assignment.
16464 (verilog-assignment-operation-re): Regular expression to find an
16465 assignment statement for pretty-expr.
16466 (verilog-in-attribute-p): Query returns true if point is in an
16467 attribute context; used to skip these for expression line up from
16468 pretty-expr.
16469 (verilog-in-parameter-p): Query returns true if point is in an
16470 parameter definition context; used to skip these for expression
16471 line up from pretty-expr.
16472 (verilog-in-parenthesis-p): Query returns true if point is in a
16473 parenthetical expression, specifically ( ) but not [ ] or { };
16474 used by pretty-expr.
16475 (verilog-just-one-space): If there is no space, don't add one.
16476 (verilog-get-lineup-indent-2): Specifically skip just attribute
16477 contexts for expression lineup, rather than skipping all
16478 parenthetical expressions.
16479 (verilog-calculate-indent): Fix comment, and fix indent.
16480 (verilog-do-indent): Indent declarations in lists (suggested by
16481 Joachim Lechner).
16482 (verilog-mode-abbrev-table): Populate abbrev mode with the various
16483 skeleton items.
16484 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16485 by Alain Mellan).
16486
16487 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
16488
16489 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16490 parameters with embedded comments. Reported by Ray Stevens.
16491 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16492 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16493 Reported by Tim Holt.
16494 (verilog-auto): Fix AUTOing a upper module then AUTOing module
16495 instantiated by upper module causing wrong expansion until AUTOed a
16496 second time. Reported by K C Buckenmaier.
16497 (verilog-diff-auto): Fix showing .* as a difference when
16498 `verilog-auto-star-save' off. Reported by Dan Dever.
16499 (verilog-auto-reset, verilog-read-always-signals)
16500 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16501 temporary signals in reset list if
16502 verilog-auto-reset-blocking-in-non is nil, and match assignment
16503 style to each signal's assignment type, bug381.
16504 Reported by Thomas Esposito.
16505 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16506 (verilog-uvm-statement-re): Support UVM indentation and
16507 highlighting, with old OVM keywords only.
16508 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16509 Support AUTOTIEOFF creating non-wire data types.
16510 Suggested by Jonathan Greenlaw.
16511 (verilog-auto-insert-lisp, verilog-delete-to-paren)
16512 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16513 (verilog-inject-sense, verilog-read-inst-pins)
16514 (verilog-read-sub-decls, verilog-read-sub-decls-line):
16515 Fix mismatching parenthesis inside commented out code when deleting
16516 AUTOINST, bug383. Reported by Jonathan Greenlaw.
16517 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16518 non-numeric vector width. Reported by Alex Reed.
16519 (verilog-auto-ascii-enum): Add "onehot" option to work around not
16520 detecting signals with parameter widths. Reported by Alex Reed.
16521 (verilog-auto-delete-trailing-whitespace):
16522 With `verilog-auto-delete-trailing-whitespace' remove trailing
16523 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
16524 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16525 Fix verilog-scan-cache corruption when running user AUTO expansion
16526 hooks that call indentation routines.
16527 (verilog-simplify-range-expression): Fix typo ignoring lower case
16528 identifiers.
16529 (verilog-delete-auto): Fix delete-autos to also remove user created
16530 automatics, as long as they start with AUTO.
16531 (verilog-batch-diff-auto, verilog-diff-auto)
16532 (verilog-diff-function): Add `verilog-diff-auto' and bind to
16533 "C-c?" to report differences in AUTO expansion, ignoring spaces.
16534 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16535 (verilog-in-paren-quick, verilog-re-search-backward-quick)
16536 (verilog-re-search-forward-quick, verilog-syntax-ppss):
16537 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16538 is disabled and its cache will get corrupt, causing AUTOS not to
16539 expand. Instead use only -quick functions.
16540 (verilog-scan-region): Fix scanning over escaped quotes.
16541 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16542 (verilog-re-search-backward-quick)
16543 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16544 related functions now ignore strings, to fix misparsing of strings
16545 with magic comments embedded in them.
16546 (verilog-read-auto-template):
16547 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16548 Reported by Brad Dobbie.
16549 (verilog-read-auto-template):
16550 Fix 'verilog-auto-inst-template-numbers' with comments.
16551 Reported by Brad Dobbie.
16552 (verilog-auto-inst, verilog-auto-inst-param)
16553 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16554 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
16555 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16556 debugging templates without merge conflicts, bug357.
16557 Reported by Brad Dobbie.
16558 (verilog-read-auto-template):
16559 Fix verilog-auto-inst-template-numbers with multiple templates.
16560 Reported by Brad Dobbie.
16561 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16562 abbrevs so user won't be asked to save.
16563 (verilog-read-auto-lisp-present): Fix to start at beginning of
16564 buffer in case called outside of verilog-auto.
16565 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16566 to "X-2". Reported by Matthew Myers.
16567 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16568 all inputs from module templates. Reported by Leith Johnson.
16569 (verilog-module-inside-filename-p): Fix locating programs as with
16570 modules.
16571 (verilog-auto-inst-port): Fix vl-width expressions when using
16572 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
16573 (verilog-decls-get-regs, verilog-decls-get-signals,
16574 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16575 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16576 verilog-read-decls): Combine reg and wire structures into one var
16577 structure to represent SystemVerilog concepts.
16578 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16579 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16580 (verilog-auto-wire-type, verilog-insert-definition):
16581 Add verilog-auto-wire-type and AUTOLOGIC to support using
16582 SystemVerilog "logic" keyword instead of "wire"/"reg".
16583 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16584 to declares outputs that also have assignments (presumably in an
16585 ifdef or generate if so there's not a driver conflict).
16586 Reported by Matthew Myers.
16587 (verilog-auto-declare-nettype, verilog-insert-definition):
16588 Add verilog-auto-declare-nettype to fix declarations using
16589 `default_nettype none. Reported by Julian Gorfajn.
16590 (verilog-read-always-signals-recurse, verilog-read-decls)
16591 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16592 malformed end statement, bug325. Reported by Joshua Wise and
16593 Andrew Drake.
16594 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16595 (verilog-inst-comment-re): Fix not deleting Interfaced comment
16596 when expanding .* in interfaces, bug320.
16597 Reported by Pierre-David Pfister.
16598 (verilog-read-module-name): Fix import statements between module
16599 name and open parenthesis, bug317.
16600 Reported by Pierre-David Pfister.
16601 (verilog-simplify-range-expression): Fix simplification of
16602 multiplications inside AUTOWIRE connections, bug303.
16603 (verilog-auto-inst-port): Support parameter expansion in
16604 multidimensional arrays.
16605 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16606 after "assert property". Reported by Julian Gorfajn.
16607 (verilog-simplify-range-expression): Fix "couldn't merge" errors
16608 with multiplication, bug303.
16609 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16610 Reported by Jan Frode Lonnum.
16611
16612 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
16613
16614 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16615 (hfy-shell-file-name, hfy-shell):
16616 * international/fontset.el (x-decompose-font-name): Fix typos.
16617
16618 2011-11-29 Ken Brown <kbrown@cornell.edu>
16619
16620 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16621 (gdb-version): Remove defvar.
16622 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16623 (gdb-gud-context-command, gdb-non-stop-handler)
16624 (gdb-current-context-command, gdb-stopped): Use it.
16625 (gdb-init-1): Enable pretty printing here.
16626 (gdb-non-stop-handler): Don't enable pretty-printing here.
16627 Check to see if the target supports non-stop mode; if not, turn off
16628 non-stop mode. Use the following.
16629 (gdb-check-target-async): New defun.
16630 (gud-watch, gdb-stopped): Fix whitespace.
16631 (gdb-get-source-file): Don't try to display the source file if
16632 `gdb-main-file' is nil.
16633
16634 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16635
16636 * align.el: Try to generate fewer markers (bug#10047).
16637 (align--set-marker): New macro.
16638 (align-region): Use it.
16639
16640 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
16641
16642 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16643
16644 2011-11-29 Chong Yidong <cyd@gnu.org>
16645
16646 * indent.el (indent-for-tab-command, indent-according-to-mode):
16647 Doc fix.
16648 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
16649
16650 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
16651
16652 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16653 aware of remote file names. (Bug#10124)
16654
16655 2011-11-29 Chong Yidong <cyd@gnu.org>
16656
16657 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16658
16659 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
16660
16661 * files.el (find-file): Don't use force-same-window (bug#10144).
16662 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16663 use pop-to-buffer if the selected window can't be used.
16664 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16665
16666 2011-11-28 Eli Zaretskii <eliz@gnu.org>
16667
16668 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16669 special-mode-map.
16670
16671 2011-11-28 Chong Yidong <cyd@gnu.org>
16672
16673 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16674
16675 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
16676
16677 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16678 gdb-get-source-file-list on gdb-create-source-file-list.
16679
16680 2011-11-26 Eli Zaretskii <eliz@gnu.org>
16681
16682 * whitespace.el (whitespace-newline): Use a different foreground
16683 color for 16-color light-background displays.
16684
16685 2011-11-24 Chong Yidong <cyd@gnu.org>
16686
16687 * window.el (display-buffer--special-action): Doc fix.
16688
16689 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
16690
16691 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
16692 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
16693 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
16694 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
16695 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
16696 (avl-tree-stack-first):
16697 * emacs-lisp/cconv.el (cconv--analyse-use):
16698 * net/gnutls.el (gnutls-negotiate): Fix typos.
16699
16700 2011-11-24 Glenn Morris <rgm@gnu.org>
16701
16702 * lpr.el (lpr-windows-system, lpr-lp-system):
16703 * mail/binhex.el (binhex-begin-line):
16704 * progmodes/grep.el (grep-history, grep-find-history):
16705 * textmodes/flyspell.el:
16706 * vc/pcvs-defs.el (cvs-global-menu):
16707 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
16708 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
16709 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
16710
16711 * net/tls.el: Fix case of "GnuTLS".
16712
16713 * paths.el (rmail-file-name): Format doc-string for make-docfile.
16714
16715 * version.el (emacs-build-system): Give it a doc-string.
16716
16717 2011-11-24 Juri Linkov <juri@jurta.org>
16718
16719 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
16720
16721 2011-11-24 Glenn Morris <rgm@gnu.org>
16722
16723 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
16724 if called on a non-mime message just toggle the headers. (Bug#8006)
16725
16726 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
16727
16728 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
16729 (allout-lead-with-comment-string, allout-structure-deleted-hook)
16730 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
16731 (allout-rebullet-heading, allout-open-sibtopic)
16732 (allout-toggle-current-subtree-encryption)
16733 (allout-toggle-subtree-encryption, allout-encrypt-string)
16734 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
16735 (allout-distinctive-bullets-string, allout-auto-activation):
16736 * window.el (window-normalize-buffer-to-display):
16737 * progmodes/verilog-mode.el (verilog-batch-indent):
16738 * textmodes/bibtex.el (bibtex-field-braces-opt)
16739 (bibtex-field-strings-opt):
16740 * vc/cvs-status.el (cvs-tree-merge):
16741 Fix typos.
16742
16743 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
16744
16745 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
16746 `non-essential' to t, in order to avoid remote connections.
16747
16748 2011-11-23 Eli Zaretskii <eliz@gnu.org>
16749
16750 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16751 On MS-DOS and MS-Windows, compare with loaddefs.el
16752 case-insensitively.
16753
16754 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
16755
16756 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
16757
16758 2011-11-23 Glenn Morris <rgm@gnu.org>
16759
16760 * paths.el (rmail-file-name): Reformat the doc-string so that it
16761 is picked up.
16762
16763 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
16764 (rmail-auto-file): Ignore case in the "special" field names,
16765 as mail-fetch-field does for all others.
16766
16767 * mail/rmail.el (rmail-forward):
16768 * mail/rmailkwd.el (rmail-set-label):
16769 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
16770 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
16771
16772 * mail/rmail.el (rmail-current-message): Doc fix.
16773
16774 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
16775
16776 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
16777
16778 * server.el (server-eval-and-print): Allow C-g (bug#6585).
16779
16780 2011-11-22 Glenn Morris <rgm@gnu.org>
16781
16782 * mail/rmailmm.el (test-rmail-mime-handler)
16783 (test-rmail-mime-bulk-handler)
16784 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
16785
16786 2011-11-21 Juri Linkov <juri@jurta.org>
16787
16788 * calc/calc.el (calc-read-key-sequence):
16789 Let-bind `input-method-function' to nil. (Bug#10018)
16790
16791 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
16792
16793 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
16794 Tell the caller that the next line needs recomputation, even
16795 though it doesn't start a sexp (bug#10094).
16796
16797 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
16798
16799 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
16800
16801 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16802
16803 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16804 Use force-same-window.
16805
16806 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16807
16808 * descr-text.el (describe-char-unicode-data):
16809 * json.el (json-string-escape):
16810 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
16811 (Footnote-unicode, Footnote-style-p):
16812 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
16813
16814 2011-11-20 Chong Yidong <cyd@gnu.org>
16815
16816 * window.el (replace-buffer-in-windows): Restore interactive spec.
16817
16818 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
16819
16820 * electric.el (electric-indent-mode): Fix last change (too optimistic).
16821
16822 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
16823 (byte-compile-global-not-obsolete-vars): New var.
16824 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
16825 Use it.
16826 (byte-compile-warn-obsolete): Align text with the one in *Help*.
16827
16828 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
16829
16830 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
16831 * progmodes/pascal.el (electric-pascal-equal):
16832 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
16833 * xml.el (xml-substitute-special): Fix typos.
16834
16835 2011-11-20 Glenn Morris <rgm@gnu.org>
16836
16837 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
16838 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
16839 Doc fixes.
16840 (rmail-decode-mime-charset): Mark as obsolete.
16841
16842 * mail/rmailsum.el (rmail-message-regexp-p-1):
16843 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
16844 Before using mime functions, check they are set. (Bug#10077)
16845
16846 2011-11-19 Juri Linkov <juri@jurta.org>
16847
16848 * info.el (Info-finder-find-node): Use `package--builtins' instead
16849 of `package-alist'. Use node names formed by the pattern "Keyword "
16850 and the keyword name.
16851
16852 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16853
16854 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
16855
16856 2011-11-19 Juri Linkov <juri@jurta.org>
16857
16858 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
16859 that calls `revert-buffer' on all Info buffers. (Bug#9915)
16860 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
16861 `old-history', `old-history-forward'. Add let-binding
16862 `window-selected'. Remove calls to `kill-buffer',
16863 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
16864 before calling `Info-find-node', so `Info-find-node-2' will reread
16865 the Info file. Restore window positions only when `window-selected'
16866 is non-nil.
16867
16868 2011-11-19 Juri Linkov <juri@jurta.org>
16869
16870 * isearch.el (isearch-lazy-highlight-new-loop):
16871 Remove condition `(not isearch-error)'. (Bug#9918)
16872
16873 * misearch.el (multi-isearch-search-fun): Add condition
16874 `(not bound)' to ignore lazy-highlighting search.
16875 Add the search-failed message "end of multi" when the end of
16876 multi-sequence is reached. Uncapitalize the search-failed
16877 message "Repeat for next buffer".
16878
16879 * info.el (Info-search): Add the search-failed message
16880 "end of the manual" when the end of the manual is reached
16881 in Isearch mode.
16882
16883 2011-11-19 Juri Linkov <juri@jurta.org>
16884
16885 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
16886 Use non-destructive `remove' instead of `delete' because
16887 `Info-history-list' stored to `Info-isearch-initial-history-list' in
16888 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
16889
16890 2011-11-19 Juri Linkov <juri@jurta.org>
16891
16892 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
16893 to nil instead of binding `search-ring' and `regexp-search-ring'.
16894 (Bug#9185)
16895
16896 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16897
16898 * simple.el (line-move): Force movement by logical lines for any
16899 hscrolled window, not only when auto-hscroll-mode is on.
16900 (line-move-visual): Update doc string to that effect. (Bug#10076)
16901
16902 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
16903
16904 * language/european.el (macintosh): Define as alias for mac-roman.
16905
16906 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16907
16908 * mail/rmailmm.el (rmail-mime-display-header)
16909 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
16910 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
16911 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
16912 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
16913 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
16914 of a raw aref.
16915 (rmail-mime-entity-segment): To get past the tagline, move forward
16916 2 more lines, to account for the 2 empty lines that precede and
16917 follow the line with the buttons.
16918 (rmail-mime-update-tagline): Move one more line, to get past the
16919 empty line that follows the buttons in the tagline. (Bug#9520)
16920
16921 2011-11-19 Martin Rudalics <rudalics@gmx.at>
16922
16923 * window.el (window-max-delta-1, window-min-delta-1)
16924 (window-min-size-1, window-state-get-1, window-state-put-1)
16925 (window-state-put-2): Use "window--" prefix.
16926
16927 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
16928
16929 * emacs-lisp/smie.el: Improve warnings and conflict detection.
16930 (smie-warning-count): New var.
16931 (smie-set-prec2tab): Use it.
16932 (smie-bnf->prec2): Improve warnings. Add docstring.
16933 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
16934 (smie-bnf--set-class): New function.
16935 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
16936 corner case.
16937
16938 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
16939 (compilation-error-properties, compilation-move-to-column):
16940 Handle compilation-first-column while in the target buffer.
16941
16942 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
16943 Don't hardcode point-min==1.
16944
16945 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
16946 (eshell-rewrite-for-command): Remove workaround.
16947 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
16948 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
16949 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
16950
16951 * files-x.el (modify-file-local-variable): Obey commenting conventions.
16952
16953 2011-11-17 Glenn Morris <rgm@gnu.org>
16954
16955 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16956 Ignore buffer-local generated-autoload-file if it is the same
16957 as the global value. (Bug#10049)
16958
16959 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
16960
16961 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
16962 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
16963 (reftex-toc-previous-heading, reftex-toc-max-level)
16964 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
16965 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
16966 (reftex-toc-do-promote, reftex-toc-promote-prepare)
16967 (reftex-toc-promote-action, reftex-toc-extract-section-number)
16968 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
16969 (reftex-toc-rename-label, reftex-toc-visit-location)
16970 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
16971 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
16972 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
16973 leaving "*toc*" only for references to the buffer.
16974
16975 2011-11-17 Martin Rudalics <rudalics@gmx.at>
16976
16977 * window.el (window-resize, delete-window, split-window):
16978 Replace window-splits by window-combination-resize.
16979 * cus-start.el (window-splits): Replace by window-combination-resize.
16980
16981 2011-11-17 Glenn Morris <rgm@gnu.org>
16982
16983 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16984 Make bash entry derive from sh entry, not shell entry.
16985
16986 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
16987
16988 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
16989 local file name.
16990
16991 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16992
16993 * menu-bar.el (menu-bar-file-menu):
16994 * printing.el (pr-ps-utility):
16995 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
16996 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
16997 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
16998 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
16999 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
17000 (icalendar--convert-cyclic-to-ical)
17001 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
17002 (icalendar--convert-ical-to-diary)
17003 (icalendar--convert-recurring-to-diary)
17004 (icalendar--convert-non-recurring-all-day-to-diary)
17005 (icalendar-import-format-sample):
17006 * progmodes/idlw-shell.el (idlwave-shell-mode):
17007 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
17008 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
17009 (vhdl-ps-print-init): Fix typos.
17010
17011 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
17012
17013 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
17014 FSF and collapse date sequence, obscure author/maintainer email address
17015 better, remove extra version line, track relocation of author's webpage.
17016
17017 * progmodes/python.el (python-pdbtrack-input-prompt)
17018 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
17019 regular python pdb prompts. Adjustments shamelessly taken exactly as
17020 suggested in EmacsWiki page (tiny change):
17021 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
17022
17023 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
17024
17025 * expand.el (expand-pos, expand-index, expand-point):
17026 Remove redundant info from docstring.
17027 (expand-add-abbrevs): Doc fix.
17028 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
17029 (expand-sample-perl-mode-expand-list): Fix typos.
17030
17031 * net/dbus.el (dbus-event-member-name):
17032 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
17033 * term/pc-win.el (msdos-create-frame-with-faces):
17034 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
17035
17036 2011-11-16 Martin Rudalics <rudalics@gmx.at>
17037
17038 * window.el (split-window, window-state-get-1)
17039 (window-state-put-1, window-state-put-2): Rename occurrences of
17040 window-nest to window-combination-limit.
17041 * cus-start.el (window-nest): Rename to window-combination-limit.
17042
17043 2011-11-16 Chong Yidong <cyd@gnu.org>
17044
17045 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
17046 regexp (Bug#10033).
17047
17048 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
17049
17050 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
17051 `completing-read' will remove *Completions* and will preserve
17052 current-buffer for us.
17053 (tmm-add-prompt): Users of *Completions* will always (re)set its
17054 major mode.
17055 (tmm-old-comp-map): Remove.
17056
17057 2011-11-16 Glenn Morris <rgm@gnu.org>
17058
17059 * mail/rmailedit.el: Require rmailmm when compiling.
17060 (rmail-old-mime-state): New declaration.
17061 (rmail-edit-current-message): If editing a mime message,
17062 edit the "raw" message from the mbox buffer.
17063 (rmail-cease-edit): Handle mime messages. (Bug#9840)
17064
17065 2011-11-15 Glenn Morris <rgm@gnu.org>
17066
17067 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
17068 which wasn't being used. Add optional arg to force given state.
17069 (rmail-mime): Add optional arg to force given state.
17070
17071 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17072
17073 * allout.el (allout-encryption-plaintext-sanitization-regexps):
17074 * frame.el (display-mm-dimensions-alist):
17075 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
17076 (outline-move-subtree-down):
17077 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
17078 (newsticker--treeview-do-get-node):
17079 * net/quickurl.el (quickurl-list-buffer-name):
17080 * progmodes/dcl-mode.el (dcl-mode):
17081 * progmodes/gdb-mi.el (gdb-mapcar*):
17082 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
17083
17084 2011-11-15 Glenn Morris <rgm@gnu.org>
17085
17086 * mail/rmail.el (rmail-file-coding-system): It's only ever used
17087 in a boolean sense, so just make it a boolean, and fix the doc.
17088 (rmail-show-mime-function, rmail-mime-feature)
17089 (rmail-require-mime-maybe): Doc fixes.
17090 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
17091
17092 * mail/rmailmm.el (rmail-show-mime): Doc fix.
17093
17094 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
17095
17096 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
17097 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
17098 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
17099 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
17100
17101 2011-11-15 Glenn Morris <rgm@gnu.org>
17102
17103 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
17104 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
17105 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
17106 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
17107 (rmail-mime, rmail-show-mime): Doc fixes.
17108
17109 * term/ns-win.el (mode-line-frame-identification):
17110 Leave it alone. (Bug#10051)
17111
17112 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
17113
17114 * mail/rmailout.el (rmail-output-to-rmail-buffer):
17115 Handle empty buffers. (Bug#9978)
17116
17117 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
17118
17119 * international/mule.el (define-charset):
17120 * mail/rmailmm.el (rmail-mime-find-header-encoding):
17121 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
17122 * progmodes/verilog-mode.el (verilog-backward-token):
17123 * textmodes/ispell.el (lookup-words):
17124 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
17125
17126 2011-11-14 Glenn Morris <rgm@gnu.org>
17127
17128 * progmodes/executable.el
17129 (executable-make-buffer-file-executable-if-script-p):
17130 Handle file-modes returning nil.
17131
17132 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
17133 message - not necessary, and causes problems. (Bug#9831)
17134
17135 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
17136
17137 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
17138
17139 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
17140 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
17141 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
17142
17143 2011-11-12 Martin Rudalics <rudalics@gmx.at>
17144
17145 * window.el (window-resize, delete-window): Use window-splits
17146 variable instead of function.
17147 (window-state-get-1, window-state-put-2, window-state-put):
17148 Don't deal with windows' splits status.
17149
17150 2011-11-12 Glenn Morris <rgm@gnu.org>
17151
17152 * apropos.el (apropos-do-all, apropos-library, apropos-value)
17153 (apropos-documentation): Doc fixes.
17154
17155 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
17156
17157 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
17158 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
17159
17160 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
17161
17162 * electric.el (electric-indent-post-self-insert-function): Make it
17163 possible for a char to only indent in some circumstances.
17164 (electric-indent-mode): Simplify.
17165
17166 2011-11-11 Martin Rudalics <rudalics@gmx.at>
17167
17168 * window.el (windows-with-parameter): Remove unused function.
17169 (windows-at-side): Rename to window-at-side-list.
17170 (window-check, window-atom-check, window-atom-check-1)
17171 (window-side-check, window-size-ignore, window-size-fixed-1)
17172 (window-in-direction-2): Prefix with "window--".
17173 (window-tree-1): Rename to window--subtree, fix doc-string.
17174
17175 2011-11-11 Glenn Morris <rgm@gnu.org>
17176
17177 * subr.el (eval-after-load): If FILE is already loaded,
17178 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
17179
17180 2011-11-10 Glenn Morris <rgm@gnu.org>
17181
17182 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17183 Call svn via vc-svn-command rather than vc-do-command.
17184 (vc-svn-command): Add --non-interactive. (Bug#9993)
17185 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17186
17187 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17188 Add toggle-read-only. (Bug#7292)
17189 * files.el (toggle-read-only): Mention that it should only
17190 be used interactively. (Bug#10006)
17191
17192 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
17193
17194 * progmodes/compile.el (compilation-error-regexp-alist-alist):
17195 Adjust regexp for OCaml warnings.
17196
17197 * electric.el (electric-pair-post-self-insert-function): Let user
17198 turn it off buffer-locally (bug#9932).
17199
17200 * progmodes/python.el (python-beginning-of-statement):
17201 Rewrite (bug#2703).
17202
17203 * progmodes/compile.el: Better handle TABs (bug#9749).
17204 (compilation-internal-error-properties)
17205 (compilation-next-error-function): Obey the target buffer's
17206 compilation-error-screen-columns.
17207
17208 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
17209
17210 * progmodes/meta-mode.el: Remove obsolete comments.
17211 (meta-right-comment-regexp, meta-ignore-comment-regexp):
17212 Fix typos in docstrings.
17213
17214 2011-11-09 Martin Rudalics <rudalics@gmx.at>
17215
17216 * window.el (window-size-fixed-p): Rewrite doc-string.
17217 (window-resizable-p): Rename to window--resizable-p. Update callers.
17218 (window--resizable): New function. Make all callers of
17219 window-resizable call window--resizable instead.
17220 (window-resizable): Rewrite in terms of window--resizable.
17221
17222 2011-11-08 Glenn Morris <rgm@gnu.org>
17223
17224 * progmodes/delphi.el (delphi-mode-syntax-table):
17225 Let define-derived-mode define a proper syntax table. (Bug#9994)
17226
17227 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17228
17229 * window.el: Stay away from defsubst.
17230 (window-list-no-nils): Remove.
17231 (window-state-get-1, window-state-get): Use backquote instead.
17232
17233 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17234
17235 * emacs-lisp/find-func.el (find-function-read):
17236 Fix incorrect use of default argument in `completing-read'.
17237
17238 2011-11-08 Martin Rudalics <rudalics@gmx.at>
17239
17240 * window.el (display-buffer-function, special-display-function):
17241 Mention display-buffer-record-window but do not mention
17242 help-setup parameter in doc-strings.
17243 (window-min-delta): Fix doc-string typo.
17244
17245 2011-11-08 Chong Yidong <cyd@gnu.org>
17246
17247 * window.el (window-total-height, window-total-width): Doc fix.
17248 (window-body-size): Move from C.
17249 (window-body-height, window-body-width): Move to C.
17250
17251 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
17252
17253 * window.el: Make special-display like display-buffer-alist (bug#9532).
17254 (display-buffer--special-action): New function, morphed
17255 from display-buffer--special.
17256 (display-buffer): Use it to handle special-display-buffers at higher
17257 priority (just after display-buffer-alist).
17258 (display-buffer-fallback-action, display-buffer--other-frame-action)
17259 (pop-to-buffer-same-window): Remove display-buffer--special.
17260
17261 2011-11-07 Glenn Morris <rgm@gnu.org>
17262
17263 * calendar/cal-menu.el (cal-menu-set-date-title):
17264 Do nothing if not in a calendar. (Bug#9976)
17265
17266 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
17267
17268 * files.el (find-file): Always use selected-window.
17269
17270 2011-11-07 Martin Rudalics <rudalics@gmx.at>
17271
17272 * window.el (window-combinations): Make WINDOW argument
17273 mandatory. Rewrite doc-string.
17274 (walk-window-subtree, window-atom-check, window-min-delta)
17275 (window-max-delta, window--resize-this-window)
17276 (window--resize-root-window-vertically, window-tree)
17277 (balance-windows, window-state-put): Rewrite doc-strings as to
17278 not mention the term "subwindow".
17279 (window--resize-subwindows-skip-p): Rename to
17280 window--resize-child-windows-skip-p.
17281 (window--resize-subwindows-normal): Rename to
17282 window--resize-child-windows-normal.
17283 (window--resize-subwindows): Rename to
17284 window--resize-child-windows.
17285 (window-or-subwindow-p): Rename to window--in-subtree-p.
17286
17287 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17288
17289 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17290 Ensure that mbox format messages end in two newlines (Bug#9974).
17291
17292 2011-11-06 Chong Yidong <cyd@gnu.org>
17293
17294 * window.el (window-combination-p): Function deleted; its
17295 side-effect is not used in any existing code.
17296 (window-combinations, window-combined-p): Call window-*-child
17297 directly.
17298
17299 2011-11-05 Chong Yidong <cyd@gnu.org>
17300
17301 * window.el (window-valid-p): Rename from window-any-p.
17302 (window-size-ignore, window-state-get): Callers changed.
17303 (window-normalize-window): Rename from window-normalize-any-window.
17304 New arg LIVE-ONLY, replacing window-normalize-live-window.
17305 (window-normalize-live-window): Delete.
17306 (window-combination-p, window-combined-p, window-combinations)
17307 (walk-window-subtree, window-atom-root, window-min-size)
17308 (window-sizable, window-sizable-p, window-size-fixed-p)
17309 (window-min-delta, window-max-delta, window-resizable)
17310 (window-resizable-p, window-full-height-p, window-full-width-p)
17311 (window-current-scroll-bars, window-point-1, set-window-point-1)
17312 (window-at-side-p, window-in-direction, window-resize)
17313 (adjust-window-trailing-edge, maximize-window, minimize-window)
17314 (window-deletable-p, delete-window, delete-other-windows)
17315 (record-window-buffer, unrecord-window-buffer)
17316 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17317 (quit-window, split-window, window-state-put)
17318 (set-window-text-height, fit-window-to-buffer)
17319 (shrink-window-if-larger-than-buffer): Callers changed.
17320
17321 2011-11-04 Eli Zaretskii <eliz@gnu.org>
17322
17323 * mail/rmail.el (rmail-simplified-subject): Decode subject with
17324 rfc2047-decode-string.
17325 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17326 warnings.
17327
17328 * window.el (window-body-height, window-body-width): Mention in
17329 the doc string that the return values are in frame's canonical
17330 units. (Bug#9949)
17331
17332 2011-11-03 Alan Mackenzie <acm@muc.de>
17333
17334 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17335 change in cc-engine.el.
17336
17337 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
17338
17339 * window.el (switch-to-buffer): Use `force-same-window' interactively.
17340
17341 2011-11-02 Martin Rudalics <rudalics@gmx.at>
17342
17343 * window.el (quit-window): Call unrecord-window-buffer after
17344 showing another buffer in the window. (Bug#9937)
17345 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17346
17347 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
17348
17349 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17350 Accept status with more than 9 shelves. (Bug#9935)
17351 Reported by Colin D Bennett <colin@gibibit.com>.
17352
17353 2011-11-01 Martin Rudalics <rudalics@gmx.at>
17354
17355 * help.el (with-help-window): Don't reference
17356 temp-buffer-show-specifiers in doc-string.
17357
17358 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
17359
17360 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17361 menu-item.
17362
17363 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17364
17365 * whitespace.el: New version 13.2.2.
17366 (whitespace-newline-mode): Disable properly. Reported by Sarah
17367 <EmacsWiki>.
17368
17369 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
17370
17371 * net/newst-treeview.el: Remove "Time-stamp".
17372 (newsticker--group-manage-orphan-feeds): Do not call
17373 newsticker--treeview-tree-update.
17374 (newsticker-treeview-update, newsticker-treeview):
17375 Call newsticker--treeview-tree-update if necessary.
17376
17377 2011-10-30 Martin Rudalics <rudalics@gmx.at>
17378
17379 * window.el (window-iso-combination-p, window-iso-combined-p)
17380 (window-iso-combinations): Remove "iso-" infix.
17381 Suggested by Chong Yidong.
17382 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17383 (window-max-delta-1, window-resize, window--resize-siblings)
17384 (window--resize-this-window, adjust-window-trailing-edge)
17385 (split-window, balance-windows-1)
17386 (shrink-window-if-larger-than-buffer):
17387 * calendar/calendar.el (calendar-generate-window):
17388 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17389
17390 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
17391
17392 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17393 in place (bug#9907).
17394 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17395 (eshell-rewrite-if-command, eshell-rewrite-for-command)
17396 (eshell-structure-basic-command, eshell-rewrite-while-command)
17397 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17398 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17399 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17400 (eshell-do-pipelines-synchronously, eshell-eval-command):
17401 Use backquotes and prefer setq to set.
17402 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17403 (eshell-macrop): Use functionp.
17404 (eshell-do-eval): Handle multiple expressions in `while' body.
17405
17406 2011-10-30 Chong Yidong <cyd@gnu.org>
17407
17408 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17409 instead of set-mark (Bug#9810).
17410
17411 2011-10-30 Chong Yidong <cyd@gnu.org>
17412
17413 * window.el (split-window-below, split-window-right): Rename from
17414 split-window-above-each-other and split-window-side-by-side
17415 respectively. All callers changed.
17416 (split-window-sensibly, split-window-sensibly): Use them.
17417 (split-window-keep-point): Doc fix.
17418
17419 * isearch.el: Add isearch-scroll property to split-window-below
17420 and split-window-right.
17421
17422 * follow.el (follow-mode):
17423 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17424 * progmodes/ada-xref.el (ada-gdb-application):
17425 * emulation/vip.el (vip-buffer-in-two-windows):
17426 * image-dired.el (image-dired-dired-with-window-configuration):
17427 * dired-x.el (dired-do-find-marked-files):
17428 * dired.el (dired-pop-to-buffer):
17429 * bs.el (bs--show-with-configuration):
17430 * vc/emerge.el (emerge-setup-windows):
17431 * textmodes/two-column.el (2C-two-columns):
17432 * textmodes/reftex-toc.el (reftex-toc):
17433 * progmodes/gdb-mi.el (gdb-setup-windows):
17434 * progmodes/fortran.el (fortran-window-create):
17435 * net/newst-treeview.el (newsticker--treeview-window-init):
17436 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17437 * emulation/tpu-edt.el (tpu-gold-map):
17438 * emulation/crisp.el (crisp-mode-map):
17439 * calendar/calendar.el (calendar-basic-setup): Callers changed.
17440
17441 2011-10-29 Chong Yidong <cyd@gnu.org>
17442
17443 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17444
17445 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17446
17447 * textmodes/flyspell.el (flyspell-word): Fix char offset for
17448 forged Ispell output (Bug#7904).
17449
17450 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17451
17452 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17453
17454 * doc-view.el: Avoid ugly errors about not finding nil.
17455 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17456 (doc-view-dvipdf-program, doc-view-unoconv-program)
17457 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17458 Avoid nil or absolute file name as default value.
17459 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17460
17461 2011-10-28 Alan Mackenzie <acm@muc.de>
17462
17463 * progmodes/cc-defs.el (c-version): -> 5.32.2.
17464
17465 2011-10-28 Alan Mackenzie <acm@muc.de>
17466
17467 Amend the handling of c-beginning/end-of-defun in nested declaration
17468 scopes.
17469
17470 * progmodes/cc-vars.el (c-defun-tactic): Move here from
17471 cc-langs.el. Change it to a defcustom.
17472
17473 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17474 cc-vars.el.
17475
17476 * progmodes/cc-engine.el (c-beginning-of-statement-1):
17477 Prevent "class foo : bar" being spuriously recognized as a label.
17478
17479 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17480 Add parameter `inclusive' (to include enclosing braces in the region).
17481 (c-widen-to-enclosing-decl-scope): New function.
17482 (c-while-widening-to-decl-block): New macro.
17483 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17484 outward for defun boundaries, and correspondingly change symbol
17485 `respect-enclosure' to `go-outward'.
17486 (c-declaration-limits): Change algorithm to report only the "innermost"
17487 defun's boundaries.
17488
17489 2011-10-28 Deniz Dogan <deniz@dogan.se>
17490
17491 * net/rcirc.el (rcirc-mode): Use hard newlines.
17492
17493 2011-10-28 Alan Mackenzie <acm@muc.de>
17494
17495 Amend to indent and fontify macros "which include their own semicolon"
17496 correctly, using the "virtual semicolon" mechanism.
17497
17498 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17499
17500 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17501 Recode to scan one line at a time rather than having \n and \r
17502 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17503 (c-forward-label): Amend for virtual semicolons.
17504 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17505
17506 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17507 of the new C macros.
17508
17509 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17510 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17511 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17512 (c-opt-cpp-macro-define): Make into a full language variable.
17513 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17514 AWK Mode (including \n, \r) removed, no longer needed.
17515
17516 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17517 Invoke c-make-macro-with-semi-re.
17518
17519 * progmodes/cc-vars.el (c-macro-with-semi-re):
17520 (c-macro-names-with-semicolon): New variables.
17521 (c-make-macro-with-semi-re): New function.
17522
17523 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17524
17525 * vc/log-edit.el: Fill empty field rather than adding new one.
17526 (log-edit-add-field): New function.
17527 (log-edit-insert-changelog): Use it.
17528
17529 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
17530
17531 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17532
17533 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
17534
17535 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17536 (gdb--check-interpreter): New function.
17537 (gdb): Use it.
17538
17539 2011-10-27 Glenn Morris <rgm@gnu.org>
17540
17541 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17542 (least-positive-float, least-negative-float)
17543 (least-positive-normalized-float, least-negative-normalized-float)
17544 (float-epsilon, float-negative-epsilon):
17545 Remove unnecessary declarations.
17546
17547 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17548 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17549 (least-positive-float, least-negative-float)
17550 (least-positive-normalized-float, least-negative-normalized-float)
17551 (float-epsilon, float-negative-epsilon): Add doc-strings,
17552 based on those in cl.texi.
17553
17554 * files.el (set-visited-file-name): If the major-mode changed,
17555 reload the local variables. (Bug#9796)
17556
17557 2011-10-27 Chong Yidong <cyd@gnu.org>
17558
17559 * subr.el (change-major-mode-after-body-hook): New hook.
17560 (run-mode-hooks): Run it.
17561
17562 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17563 Use change-major-mode-before-body-hook.
17564
17565 * simple.el (fundamental-mode):
17566 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17567 change introducing fundamental-mode-hook.
17568
17569 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
17570
17571 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17572
17573 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
17574
17575 * ido.el (ido-file-name-all-completions-1): Do not require
17576 tramp.el explicitly. (Bug#7583)
17577
17578 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
17579
17580 * progmodes/octave-mod.el:
17581 * progmodes/octave-inf.el: Update maintainer.
17582
17583 2011-10-26 Chong Yidong <cyd@gnu.org>
17584
17585 * subr.el (with-wrapper-hook): Rewrite doc.
17586
17587 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
17588
17589 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17590 filenames "/method:foo:". (Bug#9793)
17591
17592 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
17593
17594 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17595 (bug#9865).
17596
17597 2011-10-24 Glenn Morris <rgm@gnu.org>
17598
17599 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
17600
17601 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
17602
17603 * notifications.el: Add the requirement of a running D-Bus session
17604 bus to the Commentary.
17605
17606 2011-10-24 Juri Linkov <juri@jurta.org>
17607
17608 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17609 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17610 (Bug#9364)
17611
17612 2011-10-24 Juri Linkov <juri@jurta.org>
17613
17614 * info.el (Info-following-node-name-re): Add newline to the list
17615 of allowed characters for leading space. (Bug#9824)
17616
17617 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
17618
17619 * progmodes/octave-inf.el (inferior-octave-mode-map):
17620 Fix C-c C-h binding.
17621 * progmodes/octave-mod.el (octave-help): Remove.
17622
17623 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
17624
17625 Sync with Tramp 2.2.3.
17626
17627 * net/tramp-cache.el (top): Pacify byte-compiler using
17628 `init-file-user' and `site-run-file'.
17629
17630 * net/trampver.el: Update release number.
17631
17632 2011-10-23 Chong Yidong <cyd@gnu.org>
17633
17634 * files.el (toggle-read-only): Remove obsolete comment about
17635 version control.
17636
17637 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17638 for toggle-read-only. Note that this hasn't called vc-next-action
17639 since 2008-05-02, though it wasn't documented at the time.
17640
17641 * vc/ediff-init.el (ediff-toggle-read-only-function):
17642 Use toggle-read-only.
17643
17644 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
17645
17646 Fix bug #9560, sporadic wrong indentation; improve instrumentation
17647 of c-parse-state.
17648
17649 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17650 correct faulty logical expression.
17651 (c-parse-state-state, c-record-parse-state-state):
17652 (c-replay-parse-state-state): New defvar/defuns.
17653 (c-debug-parse-state): Use new functions.
17654
17655 2011-10-22 Martin Rudalics <rudalics@gmx.at>
17656
17657 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17658 last fix. Use window-in-direction correctly.
17659
17660 2011-10-21 Chong Yidong <cyd@gnu.org>
17661
17662 * progmodes/idlwave.el (idlwave-mode):
17663 * progmodes/vera-mode.el (vera-mode): No need to set
17664 require-final-newline; that's done in prog-mode.
17665 Suggested by Stefan Monnier.
17666
17667 2011-10-21 Martin Rudalics <rudalics@gmx.at>
17668
17669 * mouse.el (mouse-drag-window-above)
17670 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17671 (mouse-drag-mode-line-1, mouse-drag-header-line)
17672 (mouse-drag-vertical-line-rightward-window): Remove.
17673 (mouse-drag-line): New function.
17674 (mouse-drag-mode-line, mouse-drag-header-line)
17675 (mouse-drag-vertical-line): Call mouse-drag-line.
17676 * window.el (window-at-side-p, windows-at-side): New functions.
17677
17678 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
17679
17680 * tar-mode.el (tar-grind-file-mode):
17681 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
17682
17683 2011-10-21 Chong Yidong <cyd@gnu.org>
17684
17685 * progmodes/idlwave.el (idlwave-mode):
17686 * progmodes/vera-mode.el (vera-mode):
17687 Use mode-require-final-newline.
17688
17689 2011-10-20 Glenn Morris <rgm@gnu.org>
17690
17691 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
17692
17693 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
17694
17695 * emulation/cua-base.el (cua-set-mark): Fix case of string.
17696
17697 2011-10-20 Chong Yidong <cyd@gnu.org>
17698
17699 * emulation/cua-base.el (cua-mode):
17700 * mail/footnote.el (footnote-mode):
17701 * mail/mailabbrev.el (mail-abbrevs-mode):
17702 * net/xesam.el (xesam-minor-mode):
17703 * progmodes/bug-reference.el (bug-reference-mode):
17704 * progmodes/cap-words.el (capitalized-words-mode):
17705 * progmodes/compile.el (compilation-minor-mode)
17706 (compilation-shell-minor-mode):
17707 * progmodes/gud.el (gud-tooltip-mode):
17708 * progmodes/hideif.el (hide-ifdef-mode):
17709 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
17710 * progmodes/subword.el (subword-mode):
17711 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
17712 * progmodes/which-func.el (which-function-mode):
17713 * term/tvi970.el (tvi970-set-keypad-mode):
17714 * term/vt100.el (vt100-wide-mode):
17715 * textmodes/flyspell.el (flyspell-mode):
17716 * textmodes/ispell.el (ispell-minor-mode):
17717 * textmodes/nroff-mode.el (nroff-electric-mode):
17718 * textmodes/paragraphs.el (use-hard-newlines):
17719 * textmodes/refill.el (refill-mode):
17720 * textmodes/reftex.el (reftex-mode):
17721 * textmodes/rst.el (rst-minor-mode):
17722 * textmodes/sgml-mode.el (html-autoview-mode)
17723 (sgml-electric-tag-pair-mode):
17724 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
17725 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
17726 * emulation/crisp.el (crisp-mode):
17727 * emacs-lisp/eldoc.el (eldoc-mode):
17728 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
17729 minor mode behavior.
17730
17731 2011-10-19 Juri Linkov <juri@jurta.org>
17732
17733 * descr-text.el (describe-char): Add #x2010 and #x2011 to
17734 the list of hard-coded chars with escape-glyph face.
17735
17736 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17737
17738 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
17739
17740 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
17741
17742 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
17743 running process.
17744
17745 2011-10-19 Glenn Morris <rgm@gnu.org>
17746
17747 * vc/vc-bzr.el (vc-bzr-after-dir-status):
17748 Ignore ignored files. (Bug#9726)
17749
17750 2011-10-19 Chong Yidong <cyd@gnu.org>
17751
17752 Doc fix for minor modes, stating that an omitted argument enables
17753 the mode unconditionally when called from Lisp.
17754
17755 * abbrev.el (abbrev-mode):
17756 * allout.el (allout-mode):
17757 * autoinsert.el (auto-insert-mode):
17758 * autoarg.el (autoarg-mode, autoarg-kp-mode):
17759 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17760 (global-auto-revert-mode):
17761 * battery.el (display-battery-mode):
17762 * composite.el (global-auto-composition-mode)
17763 (auto-composition-mode):
17764 * delsel.el (delete-selection-mode):
17765 * desktop.el (desktop-save-mode):
17766 * dired-x.el (dired-omit-mode):
17767 * dirtrack.el (dirtrack-mode):
17768 * doc-view.el (doc-view-minor-mode):
17769 * double.el (double-mode):
17770 * electric.el (electric-indent-mode, electric-pair-mode):
17771 * emacs-lock.el (emacs-lock-mode):
17772 * epa-hook.el (auto-encryption-mode):
17773 * follow.el (follow-mode):
17774 * font-core.el (font-lock-mode):
17775 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
17776 * help.el (temp-buffer-resize-mode):
17777 * hilit-chg.el (highlight-changes-mode)
17778 (highlight-changes-visible-mode):
17779 * hi-lock.el (hi-lock-mode):
17780 * hl-line.el (hl-line-mode, global-hl-line-mode):
17781 * icomplete.el (icomplete-mode):
17782 * ido.el (ido-everywhere):
17783 * image-file.el (auto-image-file-mode):
17784 * image-mode.el (image-minor-mode):
17785 * iswitchb.el (iswitchb-mode):
17786 * jka-cmpr-hook.el (auto-compression-mode):
17787 * linum.el (linum-mode):
17788 * longlines.el (longlines-mode):
17789 * master.el (master-mode):
17790 * mb-depth.el (minibuffer-depth-indicate-mode):
17791 * menu-bar.el (menu-bar-mode):
17792 * minibuf-eldef.el (minibuffer-electric-default-mode):
17793 * mouse-sel.el (mouse-sel-mode):
17794 * msb.el (msb-mode):
17795 * mwheel.el (mouse-wheel-mode):
17796 * outline.el (outline-minor-mode):
17797 * paren.el (show-paren-mode):
17798 * recentf.el (recentf-mode):
17799 * reveal.el (reveal-mode, global-reveal-mode):
17800 * rfn-eshadow.el (file-name-shadow-mode):
17801 * ruler-mode.el (ruler-mode):
17802 * savehist.el (savehist-mode):
17803 * scroll-all.el (scroll-all-mode):
17804 * scroll-bar.el (scroll-bar-mode):
17805 * server.el (server-mode):
17806 * shell.el (shell-dirtrack-mode):
17807 * simple.el (auto-fill-mode, transient-mark-mode)
17808 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
17809 (line-number-mode, column-number-mode, size-indication-mode)
17810 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
17811 * strokes.el (strokes-mode):
17812 * time.el (display-time-mode):
17813 * t-mouse.el (gpm-mouse-mode):
17814 * tool-bar.el (tool-bar-mode):
17815 * tooltip.el (tooltip-mode):
17816 * type-break.el (type-break-mode-line-message-mode)
17817 (type-break-query-mode):
17818 * view.el (view-mode):
17819 * whitespace.el (whitespace-mode, whitespace-newline-mode)
17820 (global-whitespace-mode, global-whitespace-newline-mode):
17821 * xt-mouse.el (xterm-mouse-mode): Doc fix.
17822
17823 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17824 Fix autogenerated docstring.
17825
17826 2011-10-19 Juri Linkov <juri@jurta.org>
17827
17828 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
17829 by checking environment variables "DESKTOP_SESSION" and
17830 "XDG_CURRENT_DESKTOP". (Bug#9779)
17831
17832 2011-10-19 Juri Linkov <juri@jurta.org>
17833
17834 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
17835 (browse-url-chromium-program, browse-url-chromium-arguments):
17836 New defcustoms.
17837 (browse-url-default-browser): Check for `browse-url-chromium' and
17838 call `browse-url-chromium-program'.
17839 (browse-url-chromium): New command. (Bug#9779)
17840
17841 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
17842
17843 * facemenu.el (list-colors-duplicates): On Windows, detect more
17844 duplicates by assuming that only colors matching "^System" are
17845 special "system colors". (Bug#9722)
17846
17847 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
17848
17849 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
17850 to distinguish the author from the committer.
17851
17852 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
17853
17854 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
17855
17856 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
17857
17858 * international/mule.el (sgml-html-meta-auto-coding-function):
17859 Add support for detecting encoding in HTML5 specified only as
17860 <meta charset="UTF-8">. Implementation just makes http-equiv and
17861 content-type parts from HTML4 encoding string optional. (Bug#9716)
17862
17863 2011-10-18 Glenn Morris <rgm@gnu.org>
17864
17865 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
17866
17867 2011-10-18 Chong Yidong <cyd@gnu.org>
17868
17869 * faces.el (cursor): Doc fix.
17870
17871 2011-10-17 Chong Yidong <cyd@gnu.org>
17872
17873 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
17874
17875 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
17876
17877 * dirtrack.el (dirtrack): Support shell buffers with path
17878 prefixes, e.g. tramp-based remote shells. (Bug#9647)
17879
17880 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
17881
17882 * json.el: Bump version to 1.3 and note change in History.
17883 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
17884
17885 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17886
17887 * comint.el (comint-insert-input, comint-send-input)
17888 (comint-get-old-input-default, comint-backward-matching-input)
17889 (comint-next-prompt): Use nil instead of `input' for field property of
17890 past user input (bug#114).
17891
17892 * minibuffer.el (completion--replace): Inherit surrounding properties
17893 (bug#114).
17894 (minibuffer-complete-and-exit): Use it.
17895
17896 * comint.el (comint--table-subvert): Quote the all-completions output
17897 (bug#9160).
17898
17899 2011-10-17 Martin Rudalics <rudalics@gmx.at>
17900
17901 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
17902
17903 * menu-bar.el (menu-bar-file-menu): Add entry for making new
17904 window on right of selected. (Bug#9350) Reword other window
17905 entries and separate them from frame entries.
17906
17907 2011-10-15 Glenn Morris <rgm@gnu.org>
17908
17909 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
17910 Doc fixes.
17911
17912 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
17913
17914 * net/network-stream.el (network-stream-open-starttls):
17915 Improve detection of failure due to lack of TLS support.
17916
17917 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
17918 putting the input text in front and in bold.
17919
17920 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
17921
17922 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
17923
17924 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
17925 empty buffer.
17926
17927 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
17928 unread-command-events rather than pushing yet-another event.
17929
17930 2011-10-14 Eli Zaretskii <eliz@gnu.org>
17931
17932 * mail/sendmail.el (sendmail-query-once): Improve the wording of
17933 the explanation of the possible choices. Make the options passed
17934 to completing-read shorter.
17935
17936 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
17937
17938 * textmodes/flyspell.el (flyspell-large-region): Make sure
17939 extended character mode is used if defined (Bug#1339).
17940
17941 2011-10-13 Eli Zaretskii <eliz@gnu.org>
17942
17943 * simple.el (what-cursor-position): Fix the display of the
17944 character info for LRE, LRO, RLE, and RLO characters by appending
17945 an invisible PDF.
17946
17947 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
17948
17949 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
17950 even in case of error; add debug spec; simplify data flow.
17951 (with-timeout-handler): Remove.
17952
17953 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
17954
17955 Fix Bug#6019, Bug#9315.
17956
17957 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
17958 complete `buffer-file-name', the local file name part could look
17959 remotely (for example on VMS).
17960
17961 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
17962 `tramp-run-real-handler'.
17963 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
17964 already quoted by '"'.
17965
17966 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
17967 Let `file-name-handler-alist' be nil, the local file name part
17968 could look remotely (for example on VMS).
17969
17970 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17971
17972 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
17973 from here...
17974 (flyspell-post-command-hook): ...to here.
17975
17976 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17977
17978 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
17979 if not needed.
17980 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
17981 using completion. Protect against "slow" callers.
17982 Remove the "message hack".
17983
17984 2011-10-11 Juri Linkov <juri@jurta.org>
17985
17986 * isearch.el (isearch-lazy-highlight-word): New variable.
17987 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
17988 Use it. (Bug#9727)
17989
17990 2011-10-11 Glenn Morris <rgm@gnu.org>
17991
17992 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
17993 like f90-previous-statement does.
17994
17995 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17996
17997 * eshell/eshell.el (eshell-command): History should be saved
17998 only in interactive use, to avoid error.
17999
18000 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
18001
18002 * minibuffer.el (completion-file-name-table): Fix last change,
18003 i.e. ignore normal errors but not the other ones.
18004
18005 2011-10-10 Martin Rudalics <rudalics@gmx.at>
18006
18007 * window.el (special-display-buffer-names)
18008 (special-display-regexps): Remove some remnants of earlier
18009 changes from doc-strings.
18010 (quit-windows-on): New function.
18011
18012 * vc/vc.el (vc-revert, vc-rollback):
18013 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
18014 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
18015 (Bug#6183) (Bug#7074) (Bug#7447)
18016
18017 2011-10-09 Martin Rudalics <rudalics@gmx.at>
18018
18019 * window.el (frame-auto-hide-function): Add version tag.
18020 (Bug#9699)
18021
18022 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
18023
18024 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
18025 condition.
18026
18027 2011-10-09 Leo Liu <sdl.web@gmail.com>
18028
18029 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
18030 (Bug#9701)
18031
18032 2011-10-08 Glenn Morris <rgm@gnu.org>
18033
18034 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
18035 before the first code statement zero indent. (Bug#9690)
18036
18037 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
18038
18039 * simple.el (count-words-region): Always count in the region.
18040 Report the number of lines and characters too.
18041 (count-words): New command, which counts in the buffer if the
18042 region is inactive, as count-words-region used to.
18043 (count-words--message): New function. Handle plurals.
18044 (count-lines-region): Make it an alias for count-words-region.
18045
18046 * bindings.el (esc-map): Replace count-lines-region with
18047 count-words-region.
18048
18049 2011-10-08 Martin Rudalics <rudalics@gmx.at>
18050
18051 * window.el (window--delete): Delete dedicated frame
18052 unconditionally when argument KILL is non-nil. (Bug#9699)
18053 (switch-to-buffer): Fix doc-string typo.
18054
18055 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18056
18057 * eshell/eshell.el (eshell-command): Avoid using hooks.
18058
18059 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
18060
18061 * bindings.el ([M-left],[M-right]): Bind to left-word and
18062 right-word respectively.
18063
18064 2011-10-07 Glenn Morris <rgm@gnu.org>
18065
18066 * cus-start.el (debug-on-quit): Fix custom type.
18067
18068 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
18069
18070 * subr.el (define-key-after): Clarify that the function is not
18071 useful for non-menu keymaps.
18072
18073 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
18074
18075 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
18076
18077 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
18078 in current minibuffer (Fix bug with recursive minibuffers).
18079
18080 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
18081
18082 * progmodes/gdb-mi.el (gdb): Doc fix.
18083
18084 2011-10-05 Martin Rudalics <rudalics@gmx.at>
18085
18086 * window.el (frame-auto-hide-function): New option replacing
18087 frame-auto-delete. Suggested by Stefan Monnier.
18088 (window--delete): Call frame-auto-hide-function instead of
18089 investigating frame-auto-delete.
18090 (window-point-1, set-window-point-1): New functions.
18091 (window-in-direction, record-window-buffer, window-state-get-1)
18092 (display-buffer-record-window): Use window-point-1 instead of
18093 window-point.
18094 (set-window-buffer-start-and-point): Use set-window-point-1.
18095
18096 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18097
18098 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
18099
18100 2011-10-05 Glenn Morris <rgm@gnu.org>
18101
18102 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
18103 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
18104
18105 2011-10-05 Leo Liu <sdl.web@gmail.com>
18106
18107 * subr.el (read-char-choice): Fix argument to buffer-live-p which
18108 works with buffer object.
18109
18110 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
18111
18112 * mpc.el (mpc-tool-bar-map): Add labels.
18113
18114 2011-10-04 Glenn Morris <rgm@gnu.org>
18115
18116 * calendar/holidays.el (calendar-check-holidays): Doc fix.
18117
18118 2011-10-04 Martin Rudalics <rudalics@gmx.at>
18119
18120 * window.el (window--delete): New function.
18121 (frame-auto-delete): Resuscitate option.
18122 (bury-buffer, replace-buffer-in-windows)
18123 (quit-window): Rewrite using window--delete.
18124 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18125 Pass display-buffer-mark-dedicated to window--display-buffer-2
18126 (Bug#9639).
18127
18128 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18129
18130 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
18131 returns a list (bug#9554). Add remote file name completion.
18132 * comint.el (comint--table-subvert): Curry and get quote&unquote
18133 functions as arguments.
18134 (comint--complete-file-name-data): Adjust call accordingly.
18135 * pcomplete.el (pcomplete--table-subvert): Remove.
18136 (pcomplete-completions-at-point): Use comint--table-subvert instead.
18137
18138 * minibuffer.el (completion-table-case-fold): Use currying.
18139 (completion--styles-type, completion--cycling-threshold-type):
18140 New constants.
18141 (completion-styles, completion-category-overrides)
18142 (completion-cycle-threshold): Use them.
18143 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
18144 completion-table-case-fold.
18145
18146 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
18147
18148 * minibuffer.el (completion-category-overrides): Fix type of styles
18149 and add more user friendly tags (bug#9660).
18150
18151 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
18152
18153 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
18154 (mule-input-method-string): New widget.
18155 (default-input-method, language-info-custom-alist): Use it.
18156
18157 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
18158
18159 * pcomplete.el: Require comint.
18160 (pcomplete--common-suffix): Remove.
18161 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
18162 (pcomplete--table-subvert): Sync with comint--table-subvert.
18163 (pcomplete--entries): Use comint-completion-file-name-table.
18164 * comint.el (comint-unquote-filename): Simplify.
18165 (comint-completion-file-name-table): New function (bug#9616).
18166 (comint--complete-file-name-data): Use it.
18167
18168 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
18169 (pcmpl-gnu-tar-buffer): Remove.
18170 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18171 around. Make sure pcomplete-suffix-list is only changed temporarily.
18172 Don't look inside the tar's file if it's too large.
18173
18174 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
18175
18176 * cus-edit.el (custom-mode-map):
18177 * epa.el (epa-key-list-mode-map):
18178 * man.el (Man-mode-map):
18179 * startup.el (splash-screen-keymap):
18180 * simple.el (special-mode-map): Use scroll-up-command and
18181 scroll-down-command.
18182
18183 * progmodes/idlw-help.el (idlwave-help-mode-map):
18184 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18185 * net/newst-plainview.el (newsticker-mode-map):
18186 * emulation/ws-mode.el (wordstar-mode-map):
18187 * emulation/vi.el (vi-com-map):
18188 * calc/calc-graph.el (calc-graph-show-dumb):
18189 * term/sun.el (terminal-init-sun):
18190 * term/ns-win.el (global-map):
18191 * progmodes/grep.el (grep-mode-map):
18192 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18193 * mail/rmail.el (rmail-mode-map):
18194 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18195
18196 * custom.el (custom-safe-themes, load-theme): Treat value of t for
18197 custom-safe-themes as special.
18198
18199 2011-10-01 Julien Danjou <julien@danjou.info>
18200
18201 * notifications.el (notifications-notify): Fix docstring.
18202
18203 2011-10-01 Per Starbäck <per@starback.se>
18204
18205 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
18206
18207 2011-09-30 Martin Rudalics <rudalics@gmx.at>
18208
18209 * startup.el (command-line-1): Fix last fix by inserting
18210 initial-scratch-message into *scratch* before displaying it.
18211 (Bug#9605) and (Bug#9636)
18212
18213 2011-09-29 Eli Zaretskii <eliz@gnu.org>
18214
18215 * simple.el (line-move): If auto-hscroll-mode is disabled and the
18216 window is hscrolled, move by logical lines. (Bug#9607)
18217 (line-move-visual): Update the doc string to the above effect.
18218
18219 2011-09-29 Martin Rudalics <rudalics@gmx.at>
18220
18221 * window.el (display-buffer-record-window): When WINDOW is the
18222 selected window use `point' instead of `window-point'. (Bug#9626)
18223
18224 * startup.el (command-line-1): Use insert-before-markers when
18225 inserting initial-scratch-message. (Bug#9605)
18226
18227 * help.el (help-window): Remove variable.
18228
18229 2011-09-29 Glenn Morris <rgm@gnu.org>
18230
18231 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18232
18233 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
18234
18235 * descr-text.el (describe-char-categories): Accept category
18236 descriptions more than one line long.
18237
18238 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
18239
18240 * simple.el (delete-trailing-whitespace): Fix last change.
18241
18242 * progmodes/perl-mode.el (perl-syntax-propertize-function):
18243 Don't confuse "y => 3" as the beginning of a `y' operation.
18244
18245 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18246 object has more than 4 slots (bug#9613).
18247
18248 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
18249
18250 * subr.el (with-output-to-temp-buffer):
18251 * net/quickurl.el (quickurl, quickurl-browse-url):
18252 Fix typos in docstrings.
18253
18254 2011-09-27 Eli Zaretskii <eliz@gnu.org>
18255
18256 * minibuffer.el (completion-styles)
18257 (completion-category-overrides): Cross reference each other in doc
18258 strings.
18259
18260 2011-09-27 Glenn Morris <rgm@gnu.org>
18261
18262 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18263 to split-string. (Bug#9606)
18264
18265 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
18266
18267 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18268 (bug#9615).
18269
18270 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
18271
18272 * emacs-lisp/package.el (list-packages): Fix echo area message.
18273
18274 2011-09-27 Leo Liu <sdl.web@gmail.com>
18275
18276 * ido.el (ido-read-internal): Accept cons cell HIST arg.
18277
18278 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
18279
18280 * net/dbus.el (dbus-unregister-object): Don't release services for
18281 registered signals. (Bug#9581)
18282
18283 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
18284
18285 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18286 function that picks between cfengine 2 and 3 support
18287 automatically. Update docs accordingly.
18288
18289 2011-09-22 Kenichi Handa <handa@m17n.org>
18290
18291 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18292 ZERO.
18293 (indian-itrans-v5-table-for-tamil): New variable.
18294 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18295
18296 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
18297
18298 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18299 that's true if the current command involved collapsing of text.
18300 It's reset to false at the beginning of the next command.
18301 (allout-post-command-business): Move the cursor to the beginning
18302 of entry if the cursor is hidden and collapsing activity just
18303 happened.
18304
18305 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
18306
18307 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18308 tracking (Bug#9541).
18309
18310 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
18311
18312 * net/newst-reader.el (newsticker-html-renderer)
18313 (newsticker-show-news): Automatically load html rendering package
18314 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
18315 because w3m-fill-column is let-bound" and the error "Symbol's value
18316 as variable is void: w3m-fill-column".
18317
18318 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
18319
18320 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18321 Release services only if they are defined. (Bug#9581)
18322
18323 2011-09-23 Richard Stallman <rms@gnu.org>
18324
18325 * textmodes/paragraphs.el (forward-sentence): For backwards case,
18326 distinguish start of paragraph from start of its text.
18327
18328 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18329
18330 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18331 (rmail-generate-viewer-buffer): Put that hook on view buffer.
18332 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18333
18334 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
18335
18336 * international/mule-diag.el (mule-diag): Insert a newline after
18337 each fontset description.
18338
18339 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18340
18341 * simple.el (delete-trailing-whitespace):
18342 Document last change; simplify.
18343
18344 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
18345
18346 * simple.el (delete-trailing-whitespace): Also delete
18347 extra newlines at the end of the buffer.
18348
18349 * textmodes/picture.el: Make motion commands obey shift-select-mode.
18350 (picture-newline): Use forward-line so as to ignore fields.
18351
18352 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
18353
18354 * subr.el (with-wrapper-hook): Fix edebug spec.
18355
18356 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
18357
18358 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18359 (bug#4538).
18360
18361 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
18362
18363 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18364 Fix nasty bug using wrong cached values.
18365
18366 2011-09-23 Alan Mackenzie <acm@muc.de>
18367
18368 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18369
18370 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
18371
18372 * window.el (pop-to-buffer): Ensure right window is selected if we
18373 chose another frame.
18374
18375 2011-09-22 Eli Zaretskii <eliz@gnu.org>
18376
18377 * simple.el (what-cursor-position): Use get-char-property-change
18378 and next-single-char-property-change, to be able to show display
18379 properties that come from overlays as well as text properties.
18380
18381 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
18382
18383 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18384
18385 * cmuscheme.el (run-scheme, switch-to-scheme):
18386 * cus-edit.el (customize-group, custom-buffer-create)
18387 (customize-browse):
18388 * info.el (info):
18389 * shell.el (shell):
18390 * mail/sendmail.el (mail):
18391 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18392
18393 2011-09-22 Richard Stallman <rms@gnu.org>
18394
18395 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18396 move back only to line beg, don't move back over blank lines.
18397
18398 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
18399
18400 * files.el (copy-directory): Set directory attributes only in case
18401 they could be retrieved from the source directory. (Bug#9565)
18402
18403 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
18404
18405 * progmodes/hideshow.el (hs-looking-at-block-start-p)
18406 (hs-find-block-beginning, hs-hide-level-recursive):
18407 Ignore strings as well as comments. (Bug#9502)
18408
18409 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
18410
18411 * progmodes/sql.el (sql-comint-postgres):
18412 Convert port number to a string. (Bug#9566)
18413
18414 2011-09-22 Martin Rudalics <rudalics@gmx.at>
18415
18416 * window.el (quit-window): Undedicate window when switching to
18417 previous buffer. Reported by Thierry Volpiatto
18418 <thierry.volpiatto@gmail.com>.
18419 (special-display-popup-frame): When popping up a new frame reset
18420 its previous buffers to nil. Simplify code.
18421
18422 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
18423
18424 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18425 and process filter, as done also in `shell-command'.
18426
18427 2011-09-21 Martin Rudalics <rudalics@gmx.at>
18428
18429 * window.el (set-window-buffer-start-and-point):
18430 Call set-window-start with NOFORCE argument t.
18431 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18432 (quit-window): Reword doc-string. Handle new format of
18433 quit-restore parameter. Don't delete window if it has a
18434 previous buffer we can show instead of the present one.
18435 (display-buffer-record-window): Rewrite using a new format for
18436 the quit-restore window parameter
18437 (special-display-popup-frame, display-buffer-same-window)
18438 (display-buffer-reuse-window, display-buffer-pop-up-frame)
18439 (display-buffer-pop-up-window, display-buffer-use-some-window):
18440 Adapt symbol passed to display-buffer-record-window.
18441 * help.el (help-window-setup): Handle new format of quit-restore
18442 parameter.
18443
18444 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
18445
18446 * faces.el (face-list): Fix docstring (bug#9564).
18447
18448 * window.el (display-buffer--action-function-custom-type):
18449 Don't include internal functions in the Custom interface.
18450
18451 2011-09-20 Juri Linkov <juri@jurta.org>
18452
18453 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18454 (Info-forward-node, Info-backward-node, Info-next-preorder)
18455 (Info-last-preorder): Use it. (Bug#9528)
18456
18457 2011-09-20 Juri Linkov <juri@jurta.org>
18458
18459 * info.el (Info-last-preorder): Visit last menu item only when
18460 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18461
18462 2011-09-20 Julien Danjou <julien@danjou.info>
18463
18464 * password-cache.el (password-cache-remove): Remove entries even if the
18465 value is nil, so that password with a nil value (negative caching) is
18466 possible to invalidate.
18467
18468 2011-09-20 Lawrence Mitchell <wence@gmx.li>
18469
18470 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18471 all whitespace around breakpoint. (Bug#9553)
18472 (f90-find-breakpoint): Only break at whitespace inside a comment.
18473
18474 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18475
18476 * minibuffer.el (completion-file-name-table): Keep track of errors.
18477 (completion-table-with-predicate): Handle the case where pred1 is nil.
18478 * pcomplete.el (pcomplete-completions-at-point): Simplify.
18479
18480 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18481
18482 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18483 (debugger-return-value): Signal an error if the debugging context does
18484 not await any return value.
18485
18486 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18487 * image-mode.el (image-toggle-display-text)
18488 (image-toggle-display-image): Stay away from evil `intangible'.
18489
18490 2011-09-19 Leo Liu <sdl.web@gmail.com>
18491
18492 * replace.el (occur-revert-arguments): Make it permanent-local.
18493 (occur-mode): Don't call font-lock-defontify.
18494
18495 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
18496
18497 * net/ldap.el (ldap-search-internal): Don't push empty search
18498 result (Bug#9508).
18499
18500 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18501
18502 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18503
18504 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
18505
18506 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18507 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18508
18509 2011-09-18 Juri Linkov <juri@jurta.org>
18510
18511 * buff-menu.el (Buffer-menu-mode-map):
18512 * dired.el (dired-mode-map):
18513 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18514 (lisp-interaction-mode-map):
18515 * emacs-lisp/package.el (package-menu-mode-map):
18516 * epa.el (epa-key-list-mode-map):
18517 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18518 (menu-bar-options-menu):
18519 * outline.el (outline-mode-menu-bar-map):
18520 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18521 * vc/vc-dir.el (vc-dir-menu-map):
18522 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18523 Capitalize non-function content words in menu item strings.
18524
18525 * dired.el (dired-mode-map): Add menu item for
18526 `image-dired-dired-toggle-marked-thumbs'.
18527
18528 2011-09-18 Juri Linkov <juri@jurta.org>
18529
18530 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18531 to `isearch-case-fold-search' and restore its original value
18532 after the `isearch-mode' call.
18533
18534 2011-09-18 Juri Linkov <juri@jurta.org>
18535
18536 * progmodes/grep.el (grep-process-setup): Don't check code for 1
18537 because `zgrep' returns 1 for successful matches (bug#9226).
18538
18539 2011-09-18 Juri Linkov <juri@jurta.org>
18540
18541 * info.el (Info-extract-menu-node-name): Check the second match
18542 for empty string (second test-case of bug#9528).
18543 (Info-last-preorder): Let-bind `Info-history' to nil to not add
18544 intermediate nodes to the history (first test-case of bug#9528).
18545
18546 2011-09-18 Juri Linkov <juri@jurta.org>
18547
18548 * info.el (Info-mode-syntax-table): New variable.
18549 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18550
18551 2011-09-18 Juri Linkov <juri@jurta.org>
18552
18553 * info.el (Info-file-supports-index-cookies):
18554 Increment line-beginning-position's arg from 3 to 4 because makeinfo
18555 outputs one more line for long file names (bug#4142).
18556
18557 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18558
18559 * newcomment.el (comment-normalize-vars): If prompting for
18560 comment-start, set comment-start-skip too (Bug#8424).
18561
18562 2011-09-18 Johan Bockgård <bojohan@gnu.org>
18563
18564 * icomplete.el: Fix previous fix of Bug#5849.
18565 (icomplete-mode): Don't set completion-show-inline-help.
18566 (icomplete-minibuffer-setup): Set completion-show-inline-help
18567 locally during icompletion.
18568
18569 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
18570
18571 * woman.el (woman2-process-escapes): Don't delete unrecognized
18572 escapes (Bug#7843).
18573
18574 * files.el (inhibit-first-line-modes-regexps): Add image files.
18575 (hack-local-variables-prop-line): Return nil for malformed
18576 prop-lines (Bug#9044).
18577
18578 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
18579
18580 * net/tramp.el (top): Don't require 'shell.
18581 (tramp-methods): Fix docstring.
18582 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18583 Return complete remote file name. Handle "smb" case.
18584 Use `tramp-tmpdir', if defined for the respective method.
18585 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18586
18587 * net/tramp-compat.el (top): Require 'shell.
18588
18589 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18590 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18591 `tramp-current-host'.
18592 (tramp-get-remote-tmpdir): Remove.
18593
18594 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18595 `tramp-tmpdir' entries.
18596 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18597 (tramp-smb-handle-file-attributes): Ignore errors.
18598 (tramp-smb-wait-for-output): Check also for process end.
18599
18600 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
18601
18602 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18603 when sending QUIT (bug#9312).
18604
18605 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
18606
18607 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18608 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18609 occur-mode-display-occurrence.
18610 (occur-edit-mode): Add usage message.
18611 (occur-cease-edit): New command.
18612 (occur-after-change-function): Use text properties to find the
18613 position of the prefix text.
18614 (occur-engine): Set stickiness of prefix text properties.
18615
18616 2011-09-17 Glenn Morris <rgm@gnu.org>
18617
18618 * progmodes/etags.el (complete-tag):
18619 Fix call to completion-in-region. (Bug#9526)
18620
18621 2011-09-17 Juri Linkov <juri@jurta.org>
18622
18623 * textmodes/ispell.el (ispell-word): Add to the error message
18624 the word, ispell program name and current dictionary (bug#9121).
18625 (ispell-tex-arg-end): Capitalize "error" in the error message.
18626
18627 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
18628
18629 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18630 check. (Bug#4251)
18631
18632 2011-09-17 Juri Linkov <juri@jurta.org>
18633
18634 * window.el (window-safe-min-height, window-safe-min-width):
18635 Fix typos (followup to bug#9522).
18636
18637 2011-09-17 Sven Joachim <svenjoac@gmx.de>
18638
18639 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18640
18641 2011-09-16 Eli Zaretskii <eliz@gnu.org>
18642
18643 * simple.el (line-move): If goal-column is set, move by logical
18644 lines, not by display lines. (Bug#971)
18645 (next-line, previous-line, goal-column, line-move-visual): Doc fix
18646 to reflect the above change.
18647
18648 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18649
18650 * image.el (imagemagick-register-types): Use regexp-opt.
18651
18652 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18653
18654 * window.el (display-buffer-base-action): Rename from
18655 display-buffer-default-action. Make default value empty.
18656 (display-buffer-overriding-action): Convert to defvar.
18657 (display-buffer-fallback-action): New var.
18658
18659 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
18660
18661 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18662 declaration.
18663 (package--add-to-archive-contents): If there is a duplicate entry
18664 with an older version, remove it.
18665 (package-menu-mark-delete, package-menu-mark-install)
18666 (package-menu-mark-unmark): Make unused args optional.
18667 (package-menu-mark-obsolete-for-deletion):
18668 Use package-menu-get-status instead of a regexp search.
18669 (package-menu-get-status): Use tabulated-list-entry.
18670 (package-menu-mark-upgrades): New command.
18671 (package-menu-mode-map): Bind it to U. Add it to menu bar.
18672 (package-menu-execute): Do installation before deletion.
18673 (package-menu-refresh, package-menu-execute): Use derived-mode-p
18674 instead of checking major-mode.
18675 (package-menu--find-upgrades): New function.
18676
18677 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18678
18679 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18680 passwords in the log buffer.
18681 (smtpmail-process-filter): Update the process marker so that the
18682 "broken by peer" status message is inserted in the right place.
18683
18684 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
18685
18686 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18687 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18688 bibtex-completion-at-point-function.
18689 (bibtex-completion-at-point-function): Use them.
18690
18691 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
18692
18693 * mpc.el (mpc-constraints-tag-lookup): New function.
18694 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
18695 also to browser "album|playlist".
18696
18697 2011-09-14 Juri Linkov <juri@jurta.org>
18698
18699 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
18700 (isearch-edit-string): Use length of `isearch-string' when
18701 `isearch-fail-pos' returns nil.
18702 (isearch-message): Remove duplicate code and call
18703 `isearch-fail-pos' with arg `t'.
18704
18705 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
18706
18707 * replace.el (occur-mode-goto-occurrence): Don't force using other
18708 window (Bug#9499).
18709
18710 * dired-aux.el (dired-do-chmod): Don't provide initial input.
18711
18712 2011-09-14 Martin Rudalics <rudalics@gmx.at>
18713
18714 * window.el (display-buffer-window): Remove.
18715 (display-buffer-record-window): Use help-setup window parameter
18716 instead of variable display-buffer-window.
18717 (display-buffer-function, special-display-buffer-names)
18718 (special-display-function): Mention help-setup parameter instead
18719 of display-buffer-window in doc-string.
18720 * help.el (help-window-setup): New argument help-window.
18721 Use help-window-setup parameter instead of display-buffer-window.
18722 Reword some messages.
18723 (with-help-window): Pass window used for displaying the buffer
18724 to help-window-setup. Don't set display-buffer-window.
18725
18726 2011-09-13 Glenn Morris <rgm@gnu.org>
18727
18728 * emacs-lisp/debug.el (debugger-make-xrefs):
18729 Preserve point. (Bug#9462)
18730
18731 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18732
18733 * window.el (window-deletable-p): Use next-frame.
18734
18735 2011-09-13 Martin Rudalics <rudalics@gmx.at>
18736
18737 * window.el (window-auto-delete): Remove.
18738 (window-deletable-p): Remove argument FORCE. Don't deal with
18739 dedication and previous buffers.
18740 (switch-to-prev-buffer): Don't delete window.
18741 (delete-windows-on): Delete a window's frame if and only if the
18742 window is dedicated.
18743 (replace-buffer-in-windows): Delete buffer's window or frame if
18744 and only if window is dedicated.
18745 (quit-window): Handle quit-restore as before last change.
18746 (bury-buffer): Delete window only if window-deletable-p returns t.
18747
18748 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
18749
18750 * window.el (window-deletable-p): Never delete the last frame on a
18751 given terminal.
18752
18753 2011-09-13 Glenn Morris <rgm@gnu.org>
18754
18755 * help.el (describe-key-briefly): Copy previous standard-output change.
18756
18757 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
18758
18759 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
18760
18761 2011-09-13 Glenn Morris <rgm@gnu.org>
18762
18763 * emacs-lisp/lisp-mode.el (lisp-indent-function):
18764 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
18765
18766 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
18767
18768 * dired-aux.el (dired-mark-read-string): Don't return default
18769 value on empty input (Bug#9361).
18770 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
18771 Omit initial minibuffer contents.
18772 (dired-do-chmod): Signal an error on empty input.
18773 (dired-mark-read-string): Don't return default on empty input.
18774
18775 * files.el (file-modes-symbolic-to-number): Doc fix.
18776
18777 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18778
18779 * international/mule-cmds.el (ucs-completions): Remove.
18780 (read-char-by-name): Use complete-with-action instead; add metadata.
18781
18782 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18783
18784 * window.el (display-buffer--action-function-custom-type)
18785 (display-buffer--action-custom-type): New vars.
18786 (display-buffer-alist, display-buffer-default-action)
18787 (display-buffer-overriding-action): Add defcustom types.
18788
18789 * frame.el (delete-other-frames): Doc fix (Bug#276).
18790
18791 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18792
18793 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
18794
18795 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
18796
18797 Change modes that used same-window-* vars to use switch-to-buffer.
18798
18799 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
18800 Use switch-to-buffer.
18801
18802 * cus-edit.el (customize-group, custom-buffer-create)
18803 (customize-browse, custom-buffer-create-other-window):
18804 Use switch-to-buffer or switch-to-buffer-other-window.
18805
18806 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
18807 (Info-prev, Info-up, Info-speedbar-goto-node)
18808 (info-display-manual): Use switch-to-buffer.
18809 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
18810
18811 * mail/sendmail.el (mail): Use switch-to-buffer.
18812 (mail-recover): Use switch-to-buffer-other-window.
18813
18814 * cmuscheme.el (run-scheme, switch-to-scheme):
18815 * ielm.el (ielm):
18816 * shell.el (shell):
18817 * net/rlogin.el (rlogin):
18818 * net/telnet.el (telnet, rsh):
18819 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
18820
18821 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
18822
18823 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
18824
18825 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18826
18827 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
18828 so don't mention it (bug#9301).
18829 (dired-sort-toggle-or-edit): Clarify string further.
18830
18831 * faces.el (face-spec-set-match-display): Make `(type graphic)'
18832 match `x', `w32' and `ns', like the manual says (bug#9029).
18833
18834 * subr.el (eval-after-load): Doc string clarification (bug#9125).
18835 (process-kill-buffer-query-function): Mention the buffer name in
18836 the query.
18837
18838 * image-mode.el (image-next-line): The line parameter is mandatory
18839 (bug#9258).
18840
18841 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
18842 which can be useful (bug#9301).
18843
18844 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
18845
18846 * subr.el (match-string): Mention that the current buffer should
18847 be the same as the search was done in (bug#9282).
18848
18849 * facemenu.el: Disable the remove-* commands if the mark isn't
18850 active (bug#9162).
18851
18852 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18853
18854 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
18855 of display-buffer.
18856 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
18857
18858 * replace.el (occur-mode-goto-occurrence)
18859 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
18860 and display-buffer.
18861
18862 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
18863 display-buffer.
18864
18865 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
18866 special-display and same-window variables.
18867 (mail-other-window): Use switch-to-buffer-other-window.
18868 (mail-other-frame): USe switch-to-buffer-other-frame.
18869
18870 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
18871 Use display-buffer-other-frame.
18872 (gdb-display-gdb-buffer): Use pop-to-buffer.
18873
18874 * progmodes/gud.el (gud-goto-info): Use info-other-window.
18875
18876 * progmodes/python.el: Don't set same-window-buffer-names.
18877
18878 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
18879
18880 * window.el (display-buffer-alist): Add *Python*.
18881
18882 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
18883
18884 * window.el (display-buffer-alist): Add entry for buffers
18885 previously handled same-window-*.
18886 (display-buffer-alist, display-buffer-default-action)
18887 (display-buffer-overriding-action): Mark as risky.
18888 (display-buffer-alist): Document action function changes.
18889 (display-buffer--same-window-action)
18890 (display-buffer--other-frame-action): New variables.
18891 (switch-to-buffer, display-buffer-other-frame): Use them.
18892 (display-buffer): Rename reuse-frame entry to reusable-frames.
18893 (display-buffer-reuse-selected-window): Function deleted.
18894 (display-buffer-reuse-window): Handle reusable-frames alist entry.
18895 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
18896 (display-buffer-special): New function.
18897 (display-buffer--maybe-pop-up-frame-or-window): Rename from
18898 display-buffer-reuse-or-pop-window. Split off special-display
18899 part into display-buffer-special.
18900 (display-buffer-use-some-window): Don't perform any special
18901 pop-up-frames handling.
18902 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
18903 (display-buffer--maybe-same-window): Rename from
18904 display-buffer-maybe-same-window.
18905
18906 * info.el: Don't set same-window-regexps.
18907 (info-setup): New function.
18908 (info-other-window, info): Call it.
18909
18910 * cus-edit.el: Don't set same-window-regexps.
18911 (customize-group): New argument.
18912 (customize-group-other-window): Use it.
18913 (customize-face, customize-face-other-window): Likewise.
18914 (custom-buffer-create-other-window): Use pop-to-buffer directly.
18915
18916 * net/rlogin.el:
18917 * net/telnet.el:
18918 * progmodes/gud.el: Don't set same-window-regexps.
18919
18920 * cmuscheme.el:
18921 * ielm.el:
18922 * shell.el:
18923 * mail/sendmail.el:
18924 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
18925
18926 2011-09-10 Juri Linkov <juri@jurta.org>
18927
18928 * isearch.el (isearch-edit-string): Remove obsolete mention of
18929 `C-w' (`isearch-yank-word-or-char') from docstring.
18930 (isearch-query-replace): Fix typo in docstring (bug#9466).
18931
18932 2011-09-10 Juri Linkov <juri@jurta.org>
18933
18934 * paren.el (show-paren-function): Don't show escaped parens.
18935 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
18936
18937 2011-09-10 Eli Zaretskii <eliz@gnu.org>
18938
18939 * mail/sendmail.el (mml-to-mime, mml-attach-file)
18940 (mm-default-file-encoding): Remove autoload forms, they are
18941 replaced with autoload cookies in mml.el and mm-encode.el.
18942 (mail-add-attachment): New command.
18943 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
18944 (mail-mode): Mention mail-insert-file and mail-add-attachment in
18945 the doc string.
18946 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
18947
18948 2011-09-10 Reuben Thomas <rrt@sc3d.org>
18949
18950 * simple.el (count-words-region): Use buffer if there's no region
18951 (bug#9429).
18952
18953 2011-09-09 Juri Linkov <juri@jurta.org>
18954
18955 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
18956 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
18957 (wdired-isearch-filter-read-only): New function. (Bug#6362)
18958
18959 2011-09-09 Alan Mackenzie <acm@muc.de>
18960
18961 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
18962 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
18963
18964 2011-09-09 Eli Zaretskii <eliz@gnu.org>
18965
18966 Fix for Savannah bug#9392.
18967 * simple.el (mail-encode-mml): New defvar.
18968
18969 * mail/rmail.el (mail-encode-mml): Add a defvar.
18970 (rmail-enable-mime-composing): Default to t.
18971 (rmail-forward): Use MIME method of forwarding only if both
18972 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
18973 Set mail-encode-mml non-nil if the MIME method was used.
18974
18975 * mail/sendmail.el (mml-to-mime): Add autoload form.
18976 (mail-encode-mml): Add a defvar.
18977 (mail-mode): Make mail-encode-mml buffer-local and initialize it
18978 to nil.
18979 (mail-send): If mail-encode-mml is non-nil, run the outgoing
18980 message through mml-to-mime, and reset mail-encode-mml to nil.
18981
18982 2011-09-09 Glenn Morris <rgm@gnu.org>
18983
18984 * woman.el (woman-if-body): When processing an .el block,
18985 do not delete the next .el block as well. (Bug#9447)
18986 (woman-special-characters): Add oq, cq, and hy characters.
18987
18988 2011-09-08 Martin Rudalics <rudalics@gmx.at>
18989
18990 * window.el (window-deletable-p): Make sure window is live before
18991 invoking window-prev-buffers.
18992
18993 2011-09-08 Leo Liu <sdl.web@gmail.com>
18994
18995 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
18996
18997 2011-09-08 Juri Linkov <juri@jurta.org>
18998
18999 * progmodes/compile.el (compilation-environment): Make it
19000 a defcustom (bug#8340).
19001
19002 2011-09-08 Martin Rudalics <rudalics@gmx.at>
19003
19004 * window.el (frame-auto-delete): Rename to window-auto-delete.
19005 Make it control auto-deletion of windows and/or frames.
19006 (window-deletable-p): New argument FORCE. Rewrite conditions
19007 for deleting window/frame. (Bug#9419)
19008 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
19009 Rewrite handling of case when window/frame can be deleted.
19010 (delete-windows-on): Call window-deletable-p with new FORCE
19011 argument t. (Bug#9456)
19012
19013 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
19014
19015 * help-mode.el (help-mode): Restore autoload.
19016
19017 2011-09-07 Juri Linkov <juri@jurta.org>
19018
19019 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
19020 `compilation-environment'. Set buffer-local
19021 `compilation-environment' to `thisenv' later after (funcall mode).
19022 (Bug#8340)
19023
19024 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
19025 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
19026 instead of replacing its value. (Bug#8340)
19027
19028 2011-09-07 Juri Linkov <juri@jurta.org>
19029
19030 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
19031 based on text properties put by `grep-filter' instead of matching
19032 escape sequences.
19033 (grep-mode): Set buffer-local `compilation-error-screen-columns'
19034 to the value of `grep-error-screen-columns' (bug#9438).
19035
19036 2011-09-07 Juri Linkov <juri@jurta.org>
19037
19038 * simple.el (next-error-highlight, next-error-highlight-no-select):
19039 Doc fix (bug#9432).
19040
19041 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
19042
19043 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19044 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
19045
19046 2011-09-07 Leo Liu <sdl.web@gmail.com>
19047
19048 * net/rcirc.el (rcirc-mode): Conditionally initialize
19049 rcirc-input-ring.
19050
19051 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19052
19053 * emacs-lisp/find-func.el (find-function-C-source): Only set
19054 find-function-C-source-directory after checking that we found a source
19055 file there (bug#9440).
19056
19057 2011-09-06 Alan Mackenzie <acm@muc.de>
19058
19059 * isearch.el (isearch-other-meta-char): Wherever a key list is
19060 unread, "unread" the prefix arg, too. This fixes bug #8901.
19061
19062 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
19063
19064 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
19065
19066 2011-09-05 Juri Linkov <juri@jurta.org>
19067
19068 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
19069
19070 2011-09-05 Juri Linkov <juri@jurta.org>
19071
19072 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
19073 keeping point where processing of grep matches begins, and
19074 continue to delete remaining escape sequences from the same point.
19075 (grep-filter): Make leading zero optional in "0?1;31m" because
19076 git-grep emits "\033[1;31m" escape sequences unlike expected
19077 "\033[01;31m" as GNU Grep does (bug#9408).
19078 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
19079
19080 2011-09-05 Juri Linkov <juri@jurta.org>
19081
19082 * subr.el (y-or-n-p): Capitalize "yes".
19083
19084 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
19085
19086 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
19087 `tramp-cache-unload-hook' where appropriate.
19088 (tramp-methods): Rename `tramp-remote-sh' to
19089 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
19090 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
19091
19092 * net/tramp-sh.el (top): Don't require 'shell.
19093 (tramp-methods): Add `tramp-remote-shell' and
19094 `tramp-remote-shell-args' entries.
19095 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
19096 (tramp-sh-handle-shell-command): Remove.
19097 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
19098 Use `tramp-remote-shell'.
19099
19100 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
19101
19102 * mail/sendmail.el (sendmail-query-once-function): Delete.
19103 (sendmail-query-once): Save directly to send-mail-function.
19104 Update message-send-mail-function too.
19105
19106 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
19107
19108 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19109
19110 * progmodes/python.el (python-mode-map): Use correct function to
19111 start python interpreter from menu-bar (as reported by Geert
19112 Kloosterman).
19113 (inferior-python-mode-map): Fix typo.
19114 (python-shell-map): Remove.
19115
19116 2011-09-03 Deniz Dogan <deniz@dogan.se>
19117
19118 * net/rcirc.el (rcirc-print): Simplify code for
19119 rcirc-scroll-show-maximum-output. There is no need to walk
19120 through all windows to find the right one.
19121
19122 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
19123
19124 * help.el (help-return-method): Doc fix.
19125
19126 2011-09-03 Martin Rudalics <rudalics@gmx.at>
19127
19128 * window.el (window-deletable-p): Don't return a non-nil value
19129 when there's a buffer that was shown in the window before.
19130 (Bug#9419)
19131 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
19132 Set window's previous buffers to nil.
19133
19134 2011-09-03 Eli Zaretskii <eliz@gnu.org>
19135
19136 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
19137 newline before and after the tag line, so it doesn't interfere
19138 with determining the paragraph direction of bidirectional text.
19139
19140 2011-09-03 Leo Liu <sdl.web@gmail.com>
19141
19142 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
19143
19144 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19145
19146 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
19147 (pop-to-buffer): Change interactive spec. Pass second argument
19148 directly to display-buffer.
19149 (display-buffer): Fix interactive spec. Use functionp to
19150 distinguish between a function and a list of functions.
19151
19152 * abbrev.el (edit-abbrevs):
19153 * arc-mode.el (archive-extract):
19154 * autoinsert.el (auto-insert):
19155 * bookmark.el (bookmark-bmenu-list):
19156 * files.el (find-file):
19157 * view.el (view-buffer):
19158 * progmodes/compile.el (compilation-goto-locus):
19159 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
19160
19161 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
19162
19163 * window.el (display-buffer-alist): Doc fix.
19164 (display-buffer): Add docstring. Don't treat
19165 display-buffer-default specially.
19166 (display-buffer-reuse-selected-window)
19167 (display-buffer-same-window, display-buffer-maybe-same-window)
19168 (display-buffer-reuse-window, display-buffer-pop-up-frame)
19169 (display-buffer-pop-up-window)
19170 (display-buffer-reuse-or-pop-window)
19171 (display-buffer-use-some-window): New functions.
19172 (display-buffer-default-action): Use them.
19173 (display-buffer-default): Delete.
19174 (pop-to-buffer-1): Fix choice of actions.
19175
19176 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
19177
19178 * minibuffer.el (completion--insert-strings): Don't get confused by
19179 completion entries that end with an LF char.
19180
19181 2011-09-01 Eli Zaretskii <eliz@gnu.org>
19182
19183 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19184
19185 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
19186
19187 * window.el (display-buffer): Restore interactive spec.
19188 (display-buffer-same-window, display-buffer-other-window):
19189 New functions.
19190 (pop-to-buffer-1): New function. Use the above.
19191 (pop-to-buffer, pop-to-buffer-same-window): Use it.
19192 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19193
19194 * view.el (view-buffer-other-window, view-buffer-other-frame):
19195 Just use pop-to-buffer.
19196
19197 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
19198
19199 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
19200
19201 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
19202
19203 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
19204
19205 2011-08-31 Richard Stallman <rms@gnu.org>
19206
19207 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19208 of the separation of rmail-view-buffer from rmail-buffer.
19209 If you say no to "replace original", the decrypt is in the
19210 view buffer. If you say yes, the decrypt goes into the
19211 rmail buffer also.
19212
19213 2011-08-31 Martin Rudalics <rudalics@gmx.at>
19214
19215 * window.el (display-buffer-window): Rewrite doc-string.
19216 (display-buffer-record-window): New function.
19217 (display-buffer-macro-specifiers)
19218 (display-buffer-even-window-sizes, display-buffer-set-height)
19219 (display-buffer-set-width, display-buffer-in-window)
19220 (display-buffer-reuse-window, display-buffer-split-specifiers)
19221 (display-buffer-side-specifiers, display-buffer-split-window-1)
19222 (display-buffer-split-window, display-buffer-split-atom-window)
19223 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19224 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19225 (display-buffer-other-window-means-other-frame)
19226 (display-buffer-normalize-special)
19227 (display-buffer-normalize-default)
19228 (display-buffer-normalize-argument)
19229 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19230 (display-buffer-normalize-specifiers, display-buffer-frame)
19231 (display-buffer-same-window, display-buffer-same-frame)
19232 (display-buffer-other-window)
19233 (display-buffer-same-frame-other-window)
19234 (display-buffer-other-frame, pop-to-buffer-same-window)
19235 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19236 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19237 (switch-to-buffer-same-frame)
19238 (switch-to-buffer-other-window-same-frame)
19239 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19240 (display-buffer-alist-set-1, display-buffer-alist-set-2)
19241 (display-buffer-alist-set): Remove.
19242 (display-buffer-function, special-display-buffer-names)
19243 (special-display-regexps, special-display-function):
19244 In doc-string refer to display-buffer-window and quit-restore
19245 parameter.
19246 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19247 (special-display-frame-alist, special-display-popup-frame)
19248 (same-window-buffer-names, same-window-regexps, same-window-p)
19249 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19250 (split-window-preferred-function, split-height-threshold)
19251 (split-width-threshold, window-splittable-p)
19252 (split-window-sensibly, window--try-to-split-window)
19253 (window--frame-usable-p, even-window-heights)
19254 (window--even-window-heights, window--display-buffer-1)
19255 (window--display-buffer-2, display-buffer-other-frame):
19256 Restore old Emacs 23 code, order and doc-strings where applicable.
19257 (display-buffer-default, display-buffer-assq-regexp): New functions.
19258 (display-buffer-alist): Rewrite doc-string.
19259 (display-buffer-default-action)
19260 (display-buffer-overriding-action): New variables.
19261 (display-buffer, switch-to-buffer): Rewrite.
19262 (pop-to-buffer): Restore Emacs 23 behavior but use
19263 window-normalize-buffer-to-display.
19264 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19265 Restore Emacs 23 behavior but use
19266 window-normalize-buffer-to-switch-to.
19267 (pop-to-buffer-same-window): Rewrite.
19268 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19269 Rewrite using Emacs 23 options.
19270
19271 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
19272
19273 * net/tramp.el (tramp-root-regexp): Remove.
19274 (tramp-completion-file-name-regexp-unified)
19275 (tramp-completion-file-name-regexp-separate)
19276 (tramp-completion-file-name-regexp-url): Don't use leading volume
19277 letter on w32 systems. (Bug#5303, Bug#9311)
19278 (tramp-drop-volume-letter): Simplify definition.
19279 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19280
19281 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
19282
19283 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19284 (bug#9356).
19285
19286 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
19287
19288 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19289
19290 2011-08-29 Juri Linkov <juri@jurta.org>
19291
19292 * isearch.el (isearch-done): Don't display message "Mark saved"
19293 when arg `edit' is non-nil to prevent its flicker in the echo area.
19294
19295 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19296
19297 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19298 obsolete packages for deletion.
19299
19300 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
19301
19302 * help-mode.el (help-mode-map): Add special-mode-map to parent.
19303 (help-mode): Derive help-mode from special-mode. Don't invoke
19304 view-mode from help-mode.
19305 (help-xref-override-view-map): Remove.
19306 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19307 view-mode is not used anymore.
19308
19309 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
19310
19311 * server.el (server-port): Doc fix.
19312
19313 * cus-theme.el (custom-theme-choose-mode): Inherit from
19314 special-mode (Bug#9124).
19315 (custom-theme-choose-mode-map): Add special-mode to parent.
19316
19317 2011-08-28 Alan Mackenzie <acm@muc.de>
19318
19319 * progmodes/cc-fonts.el
19320 (c-make-font-lock-BO-decl-search-function): New function.
19321 (c-basic-matchers-after - "Fontify the clauses after various
19322 keywords"): Extract the three keyword lists for the 3 erroneous
19323 constructs from the list of four, and use the new function above
19324 in place of an old one.
19325
19326 2011-08-28 Deniz Dogan <deniz@dogan.se>
19327
19328 * net/rcirc.el (rcirc-insert-prev-input)
19329 (rcirc-insert-next-input): Remove unused argument.
19330
19331 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19332
19333 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19334
19335 2011-08-27 Alan Mackenzie <acm@muc.de>
19336
19337 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19338 handle function pointer parameters properly.
19339
19340 2011-08-27 Martin Rudalics <rudalics@gmx.at>
19341
19342 * window.el (display-buffer-reuse-window): Fix case where
19343 selected window was reused with non-nil OTHER-WINDOW argument.
19344 (Bug#9381)
19345
19346 2011-08-27 Deniz Dogan <deniz@dogan.se>
19347
19348 * net/rcirc.el (rcirc-check-auth-status): Adding support for
19349 oftc's NickServ messages.
19350
19351 2011-08-27 Glenn Morris <rgm@gnu.org>
19352
19353 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
19354
19355 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
19356
19357 * emacs-lisp/package.el (package-install): Call package-initialize
19358 if called interactively.
19359
19360 2011-08-26 Leo Liu <sdl.web@gmail.com>
19361
19362 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
19363
19364 2011-08-25 Juri Linkov <juri@jurta.org>
19365
19366 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19367 `search-whitespace-regexp' (bug#9364).
19368
19369 2011-08-25 Juri Linkov <juri@jurta.org>
19370
19371 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19372 `regexp-search-ring' to their global values to protect from
19373 updating by `read-from-minibuffer' (bug#9185).
19374
19375 2011-08-25 Juri Linkov <juri@jurta.org>
19376
19377 * textmodes/ispell.el (ispell-command-loop): Add newline
19378 at the end of the "Use option `i'..." line.
19379
19380 2011-08-25 Juri Linkov <juri@jurta.org>
19381
19382 * battery.el (display-battery-mode): If `battery-status-function'
19383 or `battery-mode-line-format' is nil, display the message and set
19384 `display-battery-mode' to nil (bug#9363).
19385
19386 2011-08-25 Eli Zaretskii <eliz@gnu.org>
19387
19388 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19389 bidi-string-mark-left-to-right; they are unnecessary now.
19390
19391 2011-08-25 Deniz Dogan <deniz@dogan.se>
19392
19393 * net/quickurl.el: Documentation typo fixes.
19394
19395 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
19396
19397 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19398
19399 2011-08-25 Glenn Morris <rgm@gnu.org>
19400
19401 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19402
19403 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19404 (smtpmail-via-smtp): Handle nil response from smtp.
19405
19406 2011-08-24 Juri Linkov <juri@jurta.org>
19407
19408 * proced.el (proced-marked): Inherit from `error' instead of
19409 `font-lock-warning-face'.
19410
19411 * ibuffer.el (ibuffer-marked-face): Change default face from
19412 `font-lock-warning-face' to `warning'.
19413 (ibuffer-deletion-face): Change default face from
19414 `font-lock-type-face' to `error'.
19415
19416 * battery.el (battery-update): Use the face `error' instead of
19417 `font-lock-warning-face' (bug#6117).
19418
19419 2011-08-24 Juri Linkov <juri@jurta.org>
19420
19421 * faces.el (success): Change face color from "Green3" to
19422 "ForestGreen" on light background (bug#9353).
19423
19424 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
19425
19426 * window.el (quit-window): Rename from quit-restore-window.
19427 Use same arglist as old quit-window.
19428 (frame-auto-delete): Doc fix.
19429
19430 * view.el (view-mode-exit): Use quit-window.
19431
19432 2011-08-24 Juri Linkov <juri@jurta.org>
19433
19434 * isearch.el (isearch-ring-adjust1): Start visiting previous
19435 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19436 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19437 for empty search string (when the last search string is reused
19438 automatically) to adjust the isearch ring to the last element and
19439 prepare the correct index for further M-p commands (bug#9185).
19440
19441 2011-08-24 Kenichi Handa <handa@m17n.org>
19442
19443 * international/ucs-normalize.el: If decomposition property of
19444 CHAR is the default one (i.e. a list of CHAR itself), treat it as
19445 nil.
19446 (nfd, nfkd): Likewise.
19447
19448 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
19449
19450 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19451 from process filters aren't reliably transmitted to the surrounding
19452 accept-process-output.
19453 (mpc-proc-check): New function.
19454 (mpc-proc-sync): Use it (bug#8293)
19455
19456 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19457
19458 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19459 Add compatibility functions (bug#9313).
19460
19461 2011-08-23 Eli Zaretskii <eliz@gnu.org>
19462
19463 * cus-start.el (all): Add entry for bidi-paragraph-direction.
19464
19465 * international/uni-bidi.el: Regenerate.
19466
19467 2011-08-23 Kenichi Handa <handa@m17n.org>
19468
19469 * international/charprop.el:
19470 * international/uni-bidi.el:
19471 * international/uni-category.el:
19472 * international/uni-combining.el:
19473 * international/uni-comment.el:
19474 * international/uni-decimal.el:
19475 * international/uni-decomposition.el:
19476 * international/uni-digit.el:
19477 * international/uni-lowercase.el:
19478 * international/uni-mirrored.el:
19479 * international/uni-name.el:
19480 * international/uni-numeric.el:
19481 * international/uni-old-name.el:
19482 * international/uni-titlecase.el:
19483 * international/uni-uppercase.el: Regenerate.
19484
19485 2011-08-23 Martin Rudalics <rudalics@gmx.at>
19486
19487 * help.el (help-window-setup): Fix message displayed when other
19488 window is reused. (Bug#9341)
19489
19490 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19491
19492 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19493 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19494
19495 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19496 Mark obsolete.
19497 * shell.el (shell-parse-pcomplete-arguments): New function.
19498 (shell-completion-vars): Use it instead (bug#9160).
19499
19500 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
19501
19502 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19503 strings and comments (bug#9333).
19504
19505 * emacs-lisp/debug.el (debug-arglist): New function.
19506 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
19507 (debug-on-entry-1): Handle interpreted closures (bug#9120).
19508
19509 2011-08-22 Juri Linkov <juri@jurta.org>
19510
19511 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19512 Revert regexp that highlights output switches to its old
19513 pre-2010-10-28 value and remove one `?' from it (bug#9319).
19514
19515 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19516 to check for empty output (bug#9226).
19517
19518 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
19519
19520 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19521 symbol-constituent as the default, as that stops font-lock from
19522 working properly (Bug#8843).
19523
19524 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19525
19526 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19527 `coding-system-for-*' around the process open call to avoid
19528 auth-source side effects.
19529 (smtpmail-try-auth-methods): Expand the secret password.
19530 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19531 probe hangs.
19532
19533 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19534
19535 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19536
19537 * emacs-lisp/find-func.el (find-function-noselect): New arg
19538 lisp-only.
19539
19540 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19541 signal an error for built-in functions (Bug#6664).
19542
19543 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19544
19545 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19546 (smtpmail-try-auth-methods): Use it.
19547
19548 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
19549
19550 * font-lock.el (font-lock-fontify-region)
19551 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19552 (font-lock-default-unfontify-buffer)
19553 (font-lock-default-fontify-region)
19554 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19555
19556 * progmodes/compile.el (compilation-error-properties):
19557 Fix confusion between file struct and message struct (Bug#9319).
19558 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19559 `ant' regexp.
19560
19561 * net/browse-url.el (browse-url-firefox): Don't call
19562 browse-url-firefox-sentinel unless using -remote (Bug#9328).
19563
19564 2011-08-20 Glenn Morris <rgm@gnu.org>
19565
19566 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19567
19568 * tutorial.el (tutorial--default-keys): Update some default bindings.
19569
19570 * files.el (hack-local-variables): Fully ignore case for "mode:".
19571
19572 2011-08-20 Alan Mackenzie <acm@muc.de>
19573
19574 Resolve invalid use of a regexp in regexp-opt.
19575
19576 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19577 detection for a java annotation.
19578
19579 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19580 detection for a java annotation.
19581
19582 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19583 handling for java.
19584 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19585
19586 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
19587
19588 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19589 (Bug#9274).
19590
19591 2011-08-20 Alan Mackenzie <acm@muc.de>
19592
19593 Fontify CPP expressions correctly when starting in the middle of
19594 such a construct. Mainly for when jit-lock etc. starts a chunk
19595 here.
19596
19597 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19598 variable.
19599 (c-make-font-lock-search-form): New function, extracted from
19600 c-make-font-lock-search-function.
19601 (c-make-font-lock-search-function): Use the above function.
19602 (c-make-font-lock-context-search-function): New function.
19603 (c-cpp-matchers): Enhance the preprocessor expression case with
19604 the above function
19605 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19606 which takes an expression.
19607
19608 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19609
19610 2011-08-20 Martin Rudalics <rudalics@gmx.at>
19611
19612 * window.el (display-buffer-reuse-window)
19613 (display-buffer-pop-up-window): Don't reuse or split a side
19614 window.
19615
19616 2011-08-19 Glenn Morris <rgm@gnu.org>
19617
19618 * files.el (hack-local-variables-prop-line, hack-local-variables):
19619 Downcase "Mode:". (Bug#9331)
19620
19621 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
19622
19623 * international/characters.el: Add L and R categories.
19624
19625 * subr.el (bidi-string-mark-left-to-right): Rename from
19626 string-mark-left-to-right. Use category search.
19627
19628 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19629
19630 2011-08-18 Juri Linkov <juri@jurta.org>
19631
19632 * faces.el (error, warning, success): New faces with definitions
19633 copied from old default values of `font-lock-warning-face',
19634 `compilation-warning', `compilation-info' (bug#6117).
19635
19636 * font-lock.el (font-lock-warning-face): Inherit from `error'.
19637
19638 * progmodes/compile.el (compilation-error): Inherit from `error'.
19639 (compilation-warning): Inherit from `warning'.
19640 (compilation-info): Inherit from `success'.
19641
19642 * dired.el (dired-marked): Inherit from `warning'.
19643 (dired-flagged): Inherit from `error'.
19644
19645 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
19646
19647 * mail/smtpmail.el (auth-source): Require to avoid problems with
19648 binding variables (bug#9298). Also clean up some unused
19649 autoloads.
19650
19651 * net/network-stream.el (network-stream-open-starttls):
19652 Support using starttls.el without using gnutls-cli.
19653
19654 2011-08-17 Juri Linkov <juri@jurta.org>
19655
19656 * progmodes/grep.el (rgrep): Handle the case when
19657 `grep-find-command' is a cons cell (bug#9278).
19658
19659 2011-08-17 Martin Rudalics <rudalics@gmx.at>
19660
19661 * window.el (display-buffer-pop-up-frame): Run frame creation
19662 function with BUFFER current (as special-display-popup-frame
19663 does). Reported by Drew Adams.
19664
19665 2011-08-17 Daiki Ueno <ueno@unixuser.org>
19666
19667 * epa-mail.el: Simplify GnuPG group expansion using
19668 epg-expand-group.
19669 (epa-mail-group-alist, epa-mail-group-modtime)
19670 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19671 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19672 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19673 Remove.
19674
19675 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
19676
19677 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19678
19679 2011-08-16 Alan Mackenzie <acm@muc.de>
19680
19681 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19682 Correct, to avoid the inside of macros.
19683
19684 2011-08-16 Richard Stallman <rms@gnu.org>
19685
19686 * epa-mail.el: Handle GnuPG group definitions.
19687 (epa-mail-group-alist, epa-mail-group-modtime)
19688 (epa-mail-gnupg-conf-file): New variables.
19689 (epa-mail-parse-groups, epa-mail-sync-groups)
19690 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
19691 (epa-mail-expand-recipients): New functions.
19692 (epa-mail-encrypt): Call epa-mail-expand-recipients.
19693
19694 * mail/rmail.el (rmail-epa-decrypt): New command.
19695
19696 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
19697 Don't bind buffer-read-only, just inhibit-read-only.
19698 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
19699 (epa-decrypt-armor-in-region): Make error message clearer.
19700
19701 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
19702
19703 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
19704 and "a2b" to "ab" for `prefix'.
19705
19706 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
19707
19708 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
19709 filter groups.
19710 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
19711 Fourquet (Bug#8804).
19712
19713 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
19714
19715 * startup.el (argi): Declare as global variable (bug#9275).
19716
19717 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
19718
19719 * subr.el (string-mark-left-to-right): Search the entire string
19720 for RTL script, not just the terminating character. Doc fix.
19721
19722 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
19723
19724 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
19725 New function.
19726 (js--regexp-literal, js-syntax-propertize-function): Remove.
19727 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
19728 (js-mode-map): Don't rebind electric keys.
19729 (js-insert-and-indent): Remove.
19730 (js-mode): Setup electric-layout and electric-indent instead.
19731
19732 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
19733
19734 2011-08-12 Daiki Ueno <ueno@unixuser.org>
19735
19736 * epa.el (epa-progress-callback-function): Fix the logic of
19737 displaying progress.
19738 * epa-file.el (epa-file-insert-file-contents): Make progress
19739 display more user-friendly.
19740 (epa-file-write-region): Ditto.
19741
19742 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
19743
19744 * subr.el (string-mark-left-to-right): New function.
19745
19746 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
19747 Use string-mark-left-to-right.
19748 (list-buffers-noselect): Caller changed.
19749
19750 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19751 Use string-mark-left-to-right.
19752 (tabulated-list-print): Recenter after moving point.
19753
19754 2011-08-10 Juri Linkov <juri@jurta.org>
19755
19756 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
19757 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
19758 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
19759
19760 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
19761
19762 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
19763 (Bug#7554).
19764
19765 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
19766
19767 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
19768 character. (Bug#6594)
19769
19770 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
19771
19772 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
19773 (image-dired--with-db-file): New macro.
19774 (image-dired-write-tags, image-dired-remove-tag)
19775 (image-dired-create-gallery-lists, image-dired-write-comments)
19776 (image-dired-get-comment, image-dired-mark-tagged-files)
19777 (image-dired-list-tags, image-dired-gallery-generate): Use it.
19778 (image-dired-gallery-generate): Use insert-file-contents.
19779
19780 * time.el (display-time-world-list, display-time-world-display):
19781 * time-stamp.el (time-stamp-string):
19782 * vc/add-log.el (add-change-log-entry): Use setenv instead of
19783 set-time-zone-rule (Bug#7337).
19784
19785 2011-08-08 Daiki Ueno <ueno@unixuser.org>
19786
19787 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
19788 (epg-error-to-string, epg-errors-to-string): New function.
19789 (epg-wait-for-completion): Reverse errors list.
19790 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
19791 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
19792 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
19793 (epg-sign-keys, epg-generate-key-from-file)
19794 (epg-generate-key-from-string): Format errors by using
19795 epg-errors-to-string (bug#9255).
19796 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
19797
19798 2011-08-07 Juri Linkov <juri@jurta.org>
19799
19800 * faces.el (list-faces-display): Remove extra angle bracket
19801 from `help-mode-map'.
19802
19803 * info.el (Info-history-toc-nodes): Doc fix.
19804
19805 * longlines.el (longlines-mode): Doc fix.
19806
19807 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
19808
19809 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
19810 of statements and in a few more cases (bug#9183).
19811
19812 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
19813 New functions.
19814 (cl-transform-lambda): Use them (bug#9239).
19815
19816 2011-08-05 Martin Rudalics <rudalics@gmx.at>
19817
19818 * window.el (display-buffer-same-window)
19819 (display-buffer-same-frame, display-buffer-other-window)
19820 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19821 (pop-to-buffer-other-window)
19822 (pop-to-buffer-same-frame-other-window)
19823 (pop-to-buffer-other-frame): Make them defuns.
19824 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
19825
19826 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19827
19828 * subr.el (make-composed-keymap): Move from C. Change calling
19829 convention, and improve docstring to bring attention to a subtle point.
19830 * minibuffer.el (completing-read-default): Adjust accordingly.
19831
19832 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
19833
19834 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
19835 (tramp-open-shell): Use `tramp-shell-quote-argument'.
19836
19837 * net/trampver.el: Update release number.
19838
19839 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
19840
19841 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
19842 "in" (bug#9190).
19843
19844 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19845
19846 * mail/sendmail.el (sendmail-query-once): Restore the current
19847 buffer after querying (bug#9074).
19848
19849 * dired.el (dired-flagged): Use different faces for marked and
19850 flagged files (bug#6117).
19851
19852 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
19853 (bug#4433).
19854
19855 * ido.el (ido-mode): Switch off the message if called
19856 non-interactively.
19857
19858 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
19859 before 587, since it appears that that's more likely to work for
19860 more people.
19861
19862 * cus-edit.el (custom-file): When running under emacs -q, always
19863 refuse to save the customizations, even if the .emacs file doesn't
19864 exist.
19865
19866 * info.el: Remove the `Info-beginning-of-buffer' function
19867 (bug#8325).
19868
19869 * net/network-stream.el (network-stream-open-starttls):
19870 Use `starttls-available-p' to see whether starttls.el can be used.
19871
19872 2011-08-01 Martin Rudalics <rudalics@gmx.at>
19873
19874 * window.el (display-buffer-in-window): Don't set dedicated status
19875 of window here (Bug#9215).
19876 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19877 (display-buffer-pop-up-side-window)
19878 (display-buffer-in-side-window): Set dedicated status of window here.
19879
19880 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
19881
19882 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
19883 before binding generated-autoload-file.
19884
19885 2011-08-01 Deniz Dogan <deniz@dogan.se>
19886
19887 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
19888
19889 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
19890
19891 Sync with Tramp 2.2.2.
19892
19893 * net/trampver.el: Update release number.
19894
19895 2011-07-30 Juri Linkov <juri@jurta.org>
19896
19897 * dired-aux.el (dired-touch-initial): Remove function.
19898 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
19899 current time, and `default' to the last modification time of the
19900 current marked file (bug#6887).
19901
19902 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
19903
19904 * simple.el (goto-line): Use string-to-number to provide a
19905 numeric argument to read-number (bug#9163).
19906
19907 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
19908
19909 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
19910 connection process, it could be nil.
19911
19912 2011-07-27 Leo Liu <sdl.web@gmail.com>
19913
19914 Simplify url handling in rcirc-mode.
19915
19916 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
19917 (rcirc-browse-url-at-mouse): Remove.
19918 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
19919
19920 2011-07-26 Alan Mackenzie <acm@muc.de>
19921
19922 Fontify bitfield declarations properly.
19923
19924 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
19925 (c-symbol-chars): Now exported as a lang variable.
19926 (c-not-primitive-type-keywords): New lang variable.
19927
19928 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
19929 QT keyword "more" to prevent "more slots: ...." being spuriously
19930 parsed as a bitfield declaration.
19931
19932 * progmodes/cc-engine.el (c-beginning-of-statement-1):
19933 Refactor and enhance to handle bitfield declarations.
19934 (c-punctuation-in): New function.
19935 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
19936 declarations properly.
19937
19938 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
19939
19940 * calendar/icalendar.el (icalendar--all-events): Take care of
19941 multiple vcalendars in a single file.
19942 (icalendar--convert-float-to-ical): Checkdoc fixes.
19943
19944 2011-07-25 Deniz Dogan <deniz@dogan.se>
19945
19946 * image.el (insert-image): Clarifying docstring.
19947
19948 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
19949
19950 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
19951 `tramp-send-command-and-check' if there is no error.
19952 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
19953
19954 2011-07-22 Alan Mackenzie <acm@muc.de>
19955
19956 Prevent cc-langs.elc being loaded at run time.
19957
19958 * progmodes/cc-mode.el: Remove two autoload forms which loaded
19959 cc-langs.
19960
19961 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
19962 "(require 'cc-langs)". Quote a form so it will evaluate at
19963 (cc-mode's) compilation time.
19964
19965 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
19966
19967 * net/tramp.el (tramp-file-name-handler): Avoid recursive
19968 loading. (Bug#9114)
19969
19970 2011-07-21 Martin Rudalics <rudalics@gmx.at>
19971
19972 * window.el (display-buffer-pop-up-window)
19973 (display-buffer-pop-up-side-window)
19974 (display-buffer-in-side-window): Call display-buffer-set-height
19975 and display-buffer-set-width after setting the new window's
19976 buffer so `fit-window-to-buffer' and friends work on the right buffer.
19977
19978 2011-07-20 Sam Steingold <sds@gnu.org>
19979
19980 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
19981 (etags-tags-included-tables): Call `convert-standard-filename' on
19982 the file names contained in TAGS so that windows Emacs can handle
19983 TAGS files created by cygwin ctags.
19984
19985 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
19986
19987 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
19988 which apparently didn't work.
19989
19990 2011-07-19 Roland Winkler <winkler@gnu.org>
19991
19992 * proced.el (proced-send-signal): For *Marked Processes* buffer
19993 put point at beginning of buffer.
19994
19995 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
19996
19997 * proced.el (proced-format): Make header lines align with the text
19998 (bug#1779).
19999
20000 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20001
20002 * view.el (view-buffer): Allow running in `special' modes if we're
20003 visiting a file (bug#8615).
20004
20005 2011-07-19 Martin Rudalics <rudalics@gmx.at>
20006
20007 * window.el (display-buffer-alist-of-strings-p)
20008 (display-buffer-alist-set-1, display-buffer-alist-set-2):
20009 New functions.
20010 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
20011 more accurately.
20012
20013 2011-07-18 Alan Mackenzie <acm@muc.de>
20014
20015 Fontify declarators properly when, e.g., a jit-lock chunk begins
20016 inside a declaration.
20017
20018 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
20019
20020 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
20021 New function.
20022 (c-complex-decl-matchers): Insert reference to
20023 c-font-lock-enclosing-decls.
20024
20025 * progmodes/cc-engine.el (c-backward-single-comment):
20026 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
20027 to nil around calls to (forward-comment -1).
20028
20029 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
20030
20031 * image.el (put-image): Doc typo fix.
20032
20033 * progmodes/etags.el (tags-search): Doc typo fix.
20034
20035 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
20036 password if we get errors 550 to 554.
20037
20038 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
20039
20040 * net/gnutls.el (gnutls-log-level): Remove.
20041
20042 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
20043 indentation character (bug#6380).
20044
20045 * files.el (buffer-offer-save): Made permanently local (bug#6241).
20046
20047 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
20048 to clarify what the problem is (bug#4291).
20049
20050 * simple.el (current-kill): Clarify what
20051 `interprogram-paste-function' does (bug#7500).
20052 (auto-fill-mode): Document `auto-fill-function' in relation to
20053 `auto-fill-mode' (bug#2470).
20054
20055 2011-07-16 Lawrence Mitchell <wence@gmx.li>
20056
20057 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
20058 method if slot is read-only (bug#9035).
20059
20060 2011-07-16 Martin Rudalics <rudalics@gmx.at>
20061
20062 * frame.el (select-frame-set-input-focus): New argument NORECORD.
20063 * window.el (pop-to-buffer): Select window used even if it was
20064 selected before, see discussion of (Bug#8615), (Bug#6954).
20065 Pass argument NORECORD on to select-frame-set-input-focus.
20066
20067 2011-07-15 Glenn Morris <rgm@gnu.org>
20068
20069 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
20070 Respect help-form.
20071
20072 2011-07-09 Lawrence Mitchell <wence@gmx.li>
20073
20074 * net/gnutls.el (gnutls-min-prime-bits): New variable.
20075 (gnutls-negotiate): Use it.
20076
20077 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20078
20079 * net/gnutls.el (gnutls-negotiate):
20080 Upcase `gnutls-algorithm-priority'.
20081
20082 2011-07-15 Glenn Morris <rgm@gnu.org>
20083
20084 * jka-compr.el (jka-compr-verbose): Move from here...
20085 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
20086 Add missing :version tag.
20087 * info.el: No need to require jka-compr when compiling.
20088
20089 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
20090
20091 * net/gnutls.el (gnutls-algorithm-priority): New variable.
20092 (gnutls-negotiate): Use it.
20093
20094 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
20095
20096 * info.el (Info-beginning-of-buffer): New command.
20097 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
20098 announcing `b' as the key (bug#8325).
20099 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
20100
20101 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
20102
20103 * international/mule-cmds.el
20104 (describe-specified-language-support): Make the error message
20105 clearer (bug#8905).
20106
20107 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
20108
20109 * isearch.el (isearch-barrier): Add a doc string, since it's
20110 mentioned in a function doc string (bug#8678).
20111
20112 2011-07-15 Martin Rudalics <rudalics@gmx.at>
20113
20114 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
20115 buffer argument (Bug#9083) and self-identifying label argument.
20116
20117 2011-07-15 Glenn Morris <rgm@gnu.org>
20118
20119 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
20120
20121 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20122
20123 * man.el (Man-fontify-manpage): Fix message when formatting the
20124 man page (bug#7929).
20125
20126 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20127
20128 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
20129 argument LRM; if non-nil, append an invisible LRM character to the
20130 buffer name.
20131 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
20132 last argument non-nil, when formatting buffer names.
20133 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
20134 paragraph direction.
20135
20136 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
20137
20138 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
20139 the man page name (bug#7929).
20140
20141 * image.el (put-image): Mention the `put-image' overlay property
20142 (bug#7834).
20143
20144 * scroll-bar.el (set-scroll-bar-mode): Mention that
20145 `scroll-bar-mode' lists the values (bug#7772).
20146
20147 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
20148 command (bug#7729).
20149
20150 * rect.el (apply-on-rectangle): Return the point after the last
20151 operation.
20152 (string-rectangle): Go to the point after the last operation
20153 (bug#7522).
20154
20155 * printing.el (pr-toggle-region): Clarify the documentation
20156 slightly (bug#7493).
20157
20158 * time.el (display-time-update):
20159 Allow `display-time-mail-function' to return nil (bug#7158).
20160 Fix suggested by Detlev Zundel.
20161
20162 * vc/diff.el (diff): Clarify the order the file names are read
20163 (bug#7111).
20164
20165 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
20166 the doc string (bug#7015).
20167
20168 * font-lock.el (font-lock-maximum-decoration): Mention what
20169 numeric levels mean (bug#6935).
20170
20171 * startup.el (initial-buffer-choice): Don't mention the `none'
20172 selection, which is against policy.
20173
20174 2011-07-14 Martin Rudalics <rudalics@gmx.at>
20175
20176 * window.el (display-buffer-normalize-special):
20177 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20178
20179 2011-07-14 Eli Zaretskii <eliz@gnu.org>
20180
20181 * subr.el (version<, version<=, version=): Mention "-CVS" and
20182 "-12345" alpha version numbers.
20183
20184 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20185
20186 * bindings.el: Add advertised binding for set-mark-command
20187 (Bug#5772).
20188
20189 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
20190
20191 * bindings.el (mode-line-other-buffer):
20192 * bookmark.el (bookmark-bmenu-2-window):
20193 * bs.el (bs-cycle-next, bs-cycle-previous):
20194 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20195 switch-to-buffer.
20196
20197 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20198 Delete.
20199
20200 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
20201
20202 * follow.el (follow-debug-message, follow-redisplay):
20203 * jka-cmpr-hook.el (with-auto-compression-mode):
20204 Fix typos in docstrings.
20205
20206 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20207
20208 * subr.el (with-silent-modifications): Clarify somewhat what the
20209 macro inhibits (bug#6525).
20210
20211 * simple.el (eval-expression): Note what it does if called
20212 interactively (bug#6495).
20213
20214 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20215
20216 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20217 Use pop-to-buffer buffer-or-name if it is nil.
20218
20219 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20220 Remove switch-to-buffer.
20221
20222 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20223
20224 * files.el (make-directory): Clarify that an error will be raised
20225 if there's an error (bug#6397).
20226
20227 * startup.el (initial-buffer-choice): Add `none' as a choice
20228 (bug#6234).
20229
20230 * subr.el (add-hook): Clarify section about buffer-local hooks
20231 (bug#6218).
20232
20233 * dired.el (dired-flagged): Clarify doc string (bug#6117).
20234
20235 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20236
20237 * tabify.el (untabify): Preserve the current column so that point
20238 doesn't move (bug#6032).
20239
20240 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20241
20242 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20243 Rewrite to avoid awkward possessive "s" (bug#5986).
20244
20245 2011-07-13 Glenn Morris <rgm@gnu.org>
20246
20247 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
20248 (dired-insert-directory): Give a message the first time
20249 if ls is found not to support --dired.
20250
20251 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20252
20253 * simple.el (toggle-truncate-lines): Clarify what is toggled
20254 (bug#5580). Text by Drew Adams.
20255
20256 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
20257
20258 * simple.el (blink-matching-open): Make the error message from the
20259 last change less verbose.
20260
20261 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
20262
20263 * font-lock.el (font-lock-comment-face): Use the high contrast
20264 "yellow" color for font-lock-comment-face on low color terminals
20265 using a dark background color (bug#4221).
20266
20267 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20268
20269 * dired.el (dired-insert-set-properties): Make the doc string
20270 reflect what it does now (bug#5325).
20271
20272 * simple.el (blink-matching-open): Say that we were unable to find
20273 the match within the limit, if we're limited (bug#5122).
20274
20275 * international/mule-cmds.el (prefer-coding-system): Add an
20276 example (bug#4869).
20277
20278 * progmodes/etags.el (tags-search): Document `file-list-form'
20279 (bug#4731).
20280
20281 2011-07-13 Lawrence Mitchell <wence@gmx.li>
20282
20283 * net/browse-url.el (browse-url-default-browser)
20284 (browse-url-browser-function): Make the default browser choice a
20285 bit more logical (bug#4300). Also clean up the doc string.
20286
20287 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
20288
20289 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20290 binary endings (bug#4440).
20291
20292 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
20293
20294 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20295 which can be pretty annoying (bug#8971).
20296
20297 * jka-compr.el (jka-compr-verbose): New variable, and use
20298 throughout (bug#8971).
20299
20300 * info.el (Info-find-file): Fall back on the installation
20301 directory if we can't find the info node anywhere else.
20302
20303 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
20304
20305 * vc/vc.el (vc-revert-file):
20306 Don't set file time-stamp in the past. (Bug#5181)
20307
20308 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20309
20310 * files.el (after-find-file): Give a better error message when
20311 trying to find a symlink that points to a file that doesn't exist
20312 (bug#4398).
20313
20314 * progmodes/cc-vars.el: Remove (probably) misleading comment
20315 (bug#4396).
20316
20317 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20318
20319 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20320
20321 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20322
20323 * mouse-sel.el: Hack restoring functionality, while keeping
20324 compatibility with 2010-07-03 changes to mouse selection.
20325 (mouse-sel-primary-overlay): New var.
20326 (mouse-sel-selection-alist): Use it.
20327 (mouse-sel-mode): Doc fix; remove points that are default features
20328 of mouse.el.
20329
20330 2011-07-12 Johan Bockgård <bojohan@gnu.org>
20331
20332 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20333 Fix previous fix (bug#2490).
20334
20335 2011-07-12 Roland Winkler <winkler@gnu.org>
20336
20337 * textmodes/bibtex.el (bibtex-initialize):
20338 Use pop-to-buffer-same-window.
20339 (bibtex-search-entries): Fix interactive call.
20340
20341 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20342
20343 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20344 Fontise bytecomp Error lines more correctly (bug#2490).
20345 Fix suggested by Johan Bockgård.
20346
20347 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20348
20349 * dired-x.el (dired-guess-default): Use `delete-dups'.
20350
20351 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
20352
20353 * dired.el (dired-mark-prompt):
20354 * dired-aux.el (dired-read-shell-command): Doc fix.
20355
20356 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20357
20358 * mail/sendmail.el (sendmail-query-once):
20359 Use `customize-save-variable' unconditionally, now that it works under
20360 emacs -Q.
20361
20362 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20363
20364 * cus-edit.el (custom-file): Take an optional no-error variable.
20365 (customize-save-variable): Set the variable, and give a warning if
20366 running under "emacs -q".
20367
20368 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
20369
20370 * loadhist.el (unload-feature-special-hooks):
20371 Add `auto-coding-functions', `fill-nobreak-predicate' and
20372 `find-directory-functions' (bug#5327).
20373
20374 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20375
20376 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20377
20378 * cus-edit.el (custom-guess-name-alist): -alist variables should
20379 use the `alist' type (bug#3120). Suggested by Drew Adams.
20380
20381 * printing.el: Add documentation to all the `pr-toggle-' commands.
20382
20383 2011-07-11 Leo Liu <sdl.web@gmail.com>
20384
20385 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20386 backends where it makes sense (bug#2623).
20387
20388 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
20389
20390 * dired-x.el (dired-guess-default): Remove duplicate shell command
20391 entries (bug#2028).
20392 (dired-guess-default): Fix grammar in doc string (bug#2028).
20393 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20394
20395 * subr.el (remove-duplicates): New conveniency function.
20396
20397 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
20398
20399 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20400 (bug#1526).
20401
20402 2011-07-10 Martin Rudalics <rudalics@gmx.at>
20403
20404 * window.el (display-buffer-normalize-default): Don't invert
20405 meaning of even-window-heights. Reported by Eli Zaretskii
20406 <eliz@gnu.org>.
20407
20408 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
20409
20410 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20411
20412 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
20413
20414 * window.el (display-buffer): Fix arguments to
20415 display-buffer-reuse-window in last change.
20416
20417 * faces.el (link): Use a less saturated blue on light backgrounds.
20418
20419 * startup.el (fancy-startup-text, fancy-about-text)
20420 (fancy-startup-tail): Use font-lock faces, for background safety.
20421
20422 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
20423
20424 * emulation/viper-cmd.el (viper-change-state-to-vi):
20425 Limit triggering of abbrev expansion (Bug#9038).
20426
20427 2011-07-09 Martin Rudalics <rudalics@gmx.at>
20428
20429 * window.el (display-buffer-default-specifiers): Remove.
20430 (display-buffer-macro-specifiers): Remove default specifiers.
20431 (display-buffer-alist): Default to nil.
20432 (display-buffer-reuse-window): New optional argument other-window.
20433 (display-buffer-pop-up-window): Allow splitting internal
20434 windows. Check whether a live window was created.
20435 (display-buffer-other-window-means-other-frame)
20436 (display-buffer-normalize-arguments): Rename to
20437 display-buffer-normalize-argument and rewrite. Set the
20438 other-window specifier.
20439 (display-buffer-normalize-special): New function.
20440 (display-buffer-normalize-options): Rename to
20441 display-buffer-normalize-default and rewrite.
20442 (display-buffer-normalize-options-inhibit): Remove.
20443 (display-buffer-normalize-specifiers): Rewrite.
20444 (display-buffer): Process other-window specifier and call
20445 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
20446 more faithfully.
20447 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20448 (display-buffer-alist-set): Don't handle 'unset default values.
20449 (display-buffer-in-window, display-buffer-alist-set):
20450 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
20451 <tassilo@member.fsf.org>.
20452
20453 2011-07-09 Leo Liu <sdl.web@gmail.com>
20454
20455 * register.el (insert-register): Restore accidental change on
20456 2011-06-26. (Bug#9028)
20457
20458 2011-07-09 Glenn Morris <rgm@gnu.org>
20459
20460 * subr.el (remq): Handle the empty list. (Bug#9024)
20461
20462 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
20463
20464 * mail/sendmail.el (send-mail-function): No longer delay custom
20465 initialization.
20466 * custom.el (custom-initialize-delay): Doc fix.
20467
20468 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20469
20470 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20471
20472 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
20473
20474 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20475 human-friendly prompt.
20476
20477 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
20478
20479 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20480 provided by a particular plugin.
20481
20482 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
20483
20484 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20485 save customizations (with "emacs -Q"), just set the variable
20486 instead of erroring out.
20487
20488 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20489
20490 2011-07-08 Juri Linkov <juri@jurta.org>
20491
20492 * arc-mode.el (archive-zip-expunge, archive-zip-update)
20493 (archive-zip-update-case): Use 7z if found by `executable-find'.
20494 The order of searching the available programs is the same as in
20495 `archive-zip-extract' (bug#8968).
20496
20497 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20498
20499 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20500 (menu-bar-options-menu): Tweak descriptions.
20501
20502 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20503
20504 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20505 menu items into verb phrases (bug#1421). Also refill to fit under
20506 80 columns.
20507
20508 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20509
20510 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20511 (Info-read-node-name): Doc fix (Bug#1084).
20512
20513 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20514 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20515 (end-of-sexp, beginning-of-sexp)
20516 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20517 (forward-symbol, forward-same-syntax, word-at-point)
20518 (sentence-at-point): Doc fix (Bug#1144).
20519
20520 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
20521
20522 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20523 should cover it (bug#1281).
20524
20525 * cus-edit.el (custom-show): Mark as obsolete.
20526
20527 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20528 negotiation fails, then possibly try again with a non-encrypted
20529 connection (bug#9017).
20530
20531 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20532 be used.
20533
20534 2011-07-07 Richard Stallman <rms@gnu.org>
20535
20536 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20537 property, and handle its changed format.
20538 Look for the correct line number.
20539 Use file's line contents (but not past first =) to find
20540 correct line in message.
20541
20542 2011-07-07 Kenichi Handa <handa@m17n.org>
20543
20544 * international/characters.el (build-unicode-category-table):
20545 Delete it.
20546 (unicode-category-table): Set it by unicode-property-table-internal.
20547
20548 * international/mule-cmds.el (char-code-property-alist): Move to
20549 to src/chartab.c.
20550 (get-char-code-property): Call unicode-property-table-internal to
20551 load a file. Call get-unicode-property-internal where necessary.
20552 (put-char-code-property): Call unicode-property-table-internal to
20553 load a file. Call put-unicode-property-internal where necessary.
20554 put-unicode-property-internal where necessary.
20555 (char-code-property-description):
20556 Call unicode-property-table-internal to load a file.
20557
20558 * international/charprop.el:
20559 * international/uni-bidi.el:
20560 * international/uni-category.el:
20561 * international/uni-combining.el:
20562 * international/uni-comment.el:
20563 * international/uni-decimal.el:
20564 * international/uni-decomposition.el:
20565 * international/uni-digit.el:
20566 * international/uni-lowercase.el:
20567 * international/uni-mirrored.el:
20568 * international/uni-name.el:
20569 * international/uni-numeric.el:
20570 * international/uni-old-name.el:
20571 * international/uni-titlecase.el:
20572 * international/uni-uppercase.el: Regenerate.
20573
20574 * loadup.el: Load international/charprop.el before
20575 international/characters.
20576
20577 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
20578
20579 * window.el (next-buffer, previous-buffer): Signal an error if
20580 called from a minibuffer window.
20581
20582 * bindings.el: Revert 2011-07-04 change.
20583
20584 2011-07-06 Richard Stallman <rms@gnu.org>
20585
20586 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20587 (rmail-mime-insert-bulk, rmail-mime-insert-text):
20588 Treat markers like ints.
20589 (rmail-mime-entity): Doc fix.
20590
20591 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20592
20593 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20594 defcustom again for backwards compatibility.
20595
20596 * simple.el (shell-command-on-region): Fill.
20597
20598 * dired-aux.el (dired-kill-line): Add a doc string.
20599
20600 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20601 to "\\sw\\|\\s_" (bug#358).
20602
20603 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20604 (dired-unmark-backward): Ditto.
20605 (dired-flag-backup-files): Ditto.
20606
20607 * dired-x.el (dired-mark-sexp): Ditto.
20608
20609 2011-07-06 Richard Stallman <rms@gnu.org>
20610
20611 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20612 (rmail-mime-entity): New arg TRUNCATED.
20613 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20614 New functions.
20615 (rmail-mime-save): Warn if entity is truncated.
20616 (rmail-mime-toggle-hidden): Likewise, for showing.
20617 (rmail-mime-process-multipart): Record when an entity is truncated.
20618
20619 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20620 if ENTITY is a string.
20621
20622 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
20623
20624 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20625 of faces when `M-C-x'-ing their definitions (bug#8378).
20626 Also clean up the code slightly.
20627
20628 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20629 because that makes the colors go away.
20630
20631 * mail/sendmail.el (send-mail-function): Change the default to
20632 `sendmail-query-once'.
20633 (sendmail-query-once): Add an autoload cookie.
20634
20635 * net/network-stream.el (network-stream-open-starttls): Try using
20636 a plain connection even if the server offered STARTTLS, and we
20637 kinda wanted to use it, if Emacs doesn't have any STARTTLS
20638 capability. This should make smtpmail.el work in slightly more
20639 configurations.
20640
20641 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
20642
20643 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20644 New defun.
20645 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20646
20647 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
20648
20649 * progmodes/sql.el: Version 3.0
20650 (sql-product-alist): Add product :completion-object,
20651 :completion-column, and :statement attributes.
20652 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20653 (sql-mode-syntax-table): Mark all punctuation.
20654 (sql-font-lock-keywords-builder): Temporarily remove fallback on
20655 ansi keywords.
20656 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20657 (sql-mode-oracle-font-lock-keywords): Improve.
20658 (sql-oracle-show-reserved-words): New function for development.
20659 (sql-product-font-lock): Simplify for source code buffers.
20660 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20661 New functions.
20662 (sql-highlight-product): Set product specific syntax table.
20663 (sql-mode-map): Add statement movement functions.
20664 (sql-ansi-statement-starters, sql-oracle-statement-starters):
20665 New variable.
20666 (sql-statement-regexp, sql-beginning-of-statement)
20667 (sql-end-of-statement, sql-signum): New functions.
20668 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20669 (sql-show-sqli-buffer): Bug fix.
20670 (sql-interactive-mode): Store connection data as buffer local.
20671 (sql-connect): Add NEW-NAME parameter. Redesign interaction
20672 with sql-interactive-mode.
20673 (sql-save-connection): Save buffer local settings.
20674 (sql-connection-menu-filter): Change menu entry name.
20675 (sql-product-interactive): Bug fix.
20676 (sql-preoutput-hold): New variable.
20677 (sql-interactive-remove-continuation-prompt): Bug fixes.
20678 (sql-debug-redirect): New variable.
20679 (sql-str-literal): New function.
20680 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20681 Redesign.
20682 (sql-oracle-save-settings, sql-oracle-restore-settings)
20683 (sql-oracle-list-all, sql-oracle-list-table): New functions.
20684 (sql-completion-object, sql-completion-column)
20685 (sql-completion-sqlbuf): New variables.
20686 (sql-build-completions-1, sql-build-completions)
20687 (sql-try-completion): New functions.
20688 (sql-read-table-name): Use them.
20689 (sql-contains-names): New buffer local variable.
20690 (sql-list-all, sql-list-table): Use it.
20691 (sql-oracle-completion-types): New variable.
20692 (sql-oracle-completion-object, sql-sqlite-completion-object)
20693 (sql-postgres-completion-object): New functions.
20694
20695 2011-07-06 Glenn Morris <rgm@gnu.org>
20696
20697 * window.el (pop-to-buffer): Doc fix.
20698
20699 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
20700
20701 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
20702
20703 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
20704
20705 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
20706
20707 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
20708
20709 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
20710
20711 * button.el (button): Inherit from link face. Suggested by Dan
20712 Nicolaescu.
20713
20714 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20715
20716 * progmodes/gdb-mi.el: Fit in 80 columns.
20717 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
20718 switch-to-buffer.
20719
20720 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
20721 if imenu is simply not configured (bug#8941).
20722
20723 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
20724
20725 * allout.el (allout-post-undo-hook): New allout outline-change
20726 event hook to signal undo activity.
20727 (allout-post-command-business): Run allout-post-undo-hook if an
20728 undo just occurred.
20729 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
20730 * allout-widgets.el (allout-widgets-after-undo-function):
20731 Ensure the integrity of the current item's decoration after it has been
20732 in the vicinity of an undo.
20733 (allout-widgets-mode): Include allout-widgets-after-undo-function
20734 on the new allout-post-undo-hook.
20735
20736 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20737
20738 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
20739 Let define-derived-mode define it.
20740 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
20741 cycles of abbrev-table inheritance (bug#8998).
20742
20743 2011-07-05 Roland Winkler <winkler@gnu.org>
20744
20745 * textmodes/bibtex.el: Add support for biblatex.
20746 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
20747 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
20748 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
20749 (bibtex-entry-alist, bibtex-field-alist): New variables.
20750 (bibtex-entry-field-alist): Obsolete alias for
20751 bibtex-BibTeX-entry-alist.
20752 (bibtex-entry-alist, bibtex-field-alist): New widgets.
20753 (bibtex-set-dialect): New command.
20754 (bibtex-entry-type, bibtex-entry-head)
20755 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
20756 Bind via bibtex-set-dialect.
20757 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
20758 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
20759 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
20760 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
20761 Define via bibtex-set-dialect.
20762 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
20763 Obey bibtex-no-opt-remove-re.
20764 (bibtex-vec-push, bibtex-vec-incr): New functions.
20765 (bibtex-format-entry, bibtex-field-list)
20766 (bibtex-print-help-message, bibtex-validate)
20767 (bibtex-search-entries): Use new format of bibtex-entry-alist.
20768
20769 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
20770
20771 * progmodes/compile.el (compilation-goto-locus):
20772 * net/tramp-cmds.el (tramp-append-tramp-buffers):
20773 * bs.el (bs-cycle-next, bs-cycle-previous):
20774 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
20775 * bindings.el (mode-line-other-buffer):
20776 * autoinsert.el (auto-insert):
20777 * arc-mode.el (archive-extract):
20778 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
20779
20780 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20781
20782 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
20783 Fix check of `emacs-lock-unlockable-modes'.
20784 Coerce true values of `emacs-lock--try-unlocking' to t.
20785
20786 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20787
20788 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
20789 * emacs-lock.el: New file.
20790
20791 2011-07-05 Julien Danjou <julien@danjou.info>
20792
20793 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
20794 than `boundp' to check if face is set.
20795
20796 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
20797
20798 * register.el (registerv-make):
20799 * window.el (window-min-height): Fix typos in docstrings.
20800
20801 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
20802
20803 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
20804 Update doc string.
20805
20806 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20807
20808 * server.el (server-execute): Catch quit and call
20809 `server-return-error' to pass the error back to emacsclient and
20810 close the connection (bug#8942).
20811
20812 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
20813
20814 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
20815 insecure exception for current topic. Also note that auto-saves
20816 are handled differently.
20817
20818 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
20819 State variables for tracking auto-save inhibition situation.
20820
20821 (allout-write-contents-hook-handler): Rename from
20822 'allout-write-file-hook-handler', and describe how it depends on
20823 write-contents-functions sensitivity to non-nil value to prevent
20824 file write.
20825
20826 (allout-auto-save-hook-handler): Remove. auto-save does not check
20827 this in individual buffers, only in the starting buffer, so this
20828 is not the right way for us to inhibit auto-save in a buffer
20829 according to its condition.
20830
20831 (allout-mode): Use new allout-write-contents-hook-handler, and
20832 only with write-contents-functions. Remove auto-save provisions -
20833 they're implemented elsewhere.
20834
20835 (allout-before-change-handler): If undo is in progress, note that
20836 for attention of allout-post-command-business.
20837
20838 (allout-post-command-business): If the command we're following was
20839 an undo, check for change in the status of encrypted items and
20840 adjust auto-save inhibitions accordingly.
20841
20842 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
20843 according to whether there are or aren't any plain-text topics
20844 pending encryption.
20845
20846 (allout-inhibit-auto-save-info-for-decryption):
20847 Adjust buffer-saved-size and some allout state to inhibit auto-saves
20848 if there are plain-text topics pending encryption.
20849
20850 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
20851 buffer-saved-size and some allout state to not inhibit auto-saves
20852 if there are no longer any plain-text topics pending encryption.
20853
20854 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
20855 No longer provide for exemption of the current topic.
20856
20857 2011-07-04 Juri Linkov <juri@jurta.org>
20858
20859 Add 7z operations to delete and save changed members (bug#8968).
20860 * arc-mode.el (archive-7z-expunge, archive-7z-update):
20861 New defcustoms.
20862 (archive-7z-write-file-member): New function.
20863 (archive-7z-summarize): Fix the number of dashes in the
20864 listing output.
20865
20866 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20867
20868 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
20869 (bug#8958).
20870
20871 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
20872
20873 * bindings.el: Ignore next-buffer and previous-buffer in
20874 minibuffer-local-map.
20875
20876 * font-lock.el (font-lock-builtin-face): Change light background
20877 color to dark slate blue (Bug#6693).
20878
20879 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
20880
20881 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
20882
20883 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
20884
20885 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
20886 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20887 Add switch-to-buffer.
20888
20889 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20890
20891 * isearch.el (isearch-search-fun-function): Clarify further the
20892 meaning of the function returned.
20893
20894 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
20895
20896 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
20897
20898 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
20899 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
20900 Use it.
20901 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
20902 `tramp-default-remote-path' does not exist.
20903 (tramp-send-command-and-read): New optional argument NOERROR.
20904 (tramp-open-connection-setup-interactive-shell)
20905 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
20906 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
20907 (tramp-process-sentinel): Flush also process' connection property.
20908 (tramp-sh-handle-start-file-process): Do not set process
20909 sentinel. It is done now ...
20910 (tramp-maybe-open-connection): ... here. (Bug#8929)
20911
20912 2011-07-04 MON KEY <monkey@sandpframing.com>
20913
20914 * play/animate.el (animate-string): Doc fixes and allow changing
20915 the buffer name (bug#5417).
20916
20917 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
20918
20919 * play/animate.el (animation-buffer-name): Rename from *animate*.
20920
20921 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
20922
20923 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
20924 This is simpler and helps future-proof the code.
20925 (timer-until): Use time-subtract and float-time.
20926 (timer--time-less-p): Use time-less-p.
20927
20928 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
20929
20930 * type-break.el (timep): Use the value of `float-time' to avoid a
20931 byte-compiler warning.
20932
20933 * server.el (server-eval-and-print): Return any result, even nil.
20934
20935 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
20936
20937 * type-break.el: Accept time formats that the builtins accept.
20938 (timep, type-break-time-difference): Accept any format that
20939 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
20940 This is simpler and helps future-proof the code.
20941 (type-break-time-difference): Round rather than ignoring
20942 subseconds components.
20943
20944 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20945
20946 * info.el (Info-apropos-matches): Make non-interactive, since it
20947 doesn't seem to do anything useful as a command (bug#8829).
20948
20949 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
20950
20951 * frame.el (frame-background-mode, frame-set-background-mode):
20952 Move from faces.el.
20953 (frame-default-terminal-background): New function.
20954
20955 * custom.el (custom-push-theme): Don't record faces in `changed'
20956 theme; this doesn't work correctly for per-frame face settings.
20957 (disable-theme): Use face-set-after-frame-default to reset faces.
20958 (custom--frame-color-default): New function.
20959
20960 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20961
20962 * dired.el (dired-flagging-regexp): Remove unused variable
20963 (bug#8769).
20964
20965 2011-03-29 Kevin Ryde <user42@zip.com.au>
20966
20967 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20968 `perl-Test2' extend to match possible "fail #N" rep count
20969 (bug#8377).
20970
20971 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20972
20973 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
20974 `smtpmail-via-smtp' now returns the error instead of nil.
20975
20976 * isearch.el (isearch-search-fun-function): Clarify the doc string
20977 (bug#8101).
20978
20979 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
20980
20981 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
20982 unnecessary spaces (bug#8987).
20983
20984 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20985
20986 * net/network-stream.el (open-network-stream): Use the
20987 :end-of-capability command thoughout.
20988
20989 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
20990
20991 * net/network-stream.el (open-network-stream): Add the
20992 :end-of-capability command parameter, used by pop3.el.
20993
20994 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
20995
20996 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
20997
20998 * fringe.el (fringe-query-style): Remove redundant text " (type ?
20999 for list)" (bug#6475).
21000
21001 * files.el (file-expand-wildcards): Ignore non-readable
21002 sub-directories while trying to find matches instead of signaling
21003 an error (bug#6297).
21004
21005 * man.el (Man-reference-regexp): Allow matching possible
21006 word-wrapped references (bug#6289).
21007
21008 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
21009 for consistency with the other vc buffers (bug#6197).
21010 (vc-checkin): Ditto.
21011
21012 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
21013
21014 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
21015
21016 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21017
21018 * custom.el (defcustom): Clarify that :set is only used in the
21019 Customize user interface (bug#6089).
21020
21021 * progmodes/flymake.el (flymake-mode): If the buffer isn't
21022 associated with a file, refuse to run instead of erroring out
21023 (bug#6084).
21024
21025 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
21026 the doc string, since it appears that using `fill-column' always
21027 controls the width (bug#7845).
21028
21029 * simple.el (shell-command-on-region): Say where the error output
21030 went if `shell-command-default-error-buffer' is set (bug#6857).
21031
21032 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
21033
21034 * allout.el (allout-yank-processing): Adjust cursor position for
21035 backwards-deleted space.
21036
21037 (allout-rebullet-heading): Register changes with
21038 allout-exposure-changed-hook, so the modified topic is properly
21039 decorated.
21040
21041 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21042
21043 * minibuffer.el (completion-in-region): Document PREDICATE
21044 (bug#7136).
21045
21046 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
21047 of keyword/argument pairs (bug#6904).
21048
21049 * replace.el (multi-occur):
21050 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
21051
21052 2011-07-02 Drew Adams <drew.adams@oracle.com>
21053
21054 * dired.el (dired-mark-if): Make the message about whether it's
21055 marking or unmarking clearer (bug#8523).
21056
21057 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
21058
21059 * disp-table.el (display-table-print-array): New function.
21060 (describe-display-table): Use it to print the vectors more pretty
21061 (Bug#8859).
21062
21063 2011-07-02 Martin Rudalics <rudalics@gmx.at>
21064
21065 * window.el (window-state-get-1): Don't assign clone numbers.
21066 Add clone-of item to list of window parameters.
21067 (window-state-put-2): Don't process clone numbers.
21068 (display-buffer-alist): Fix doc-string.
21069
21070 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
21071
21072 * subr.el (remq): Don't allocate if it's not needed.
21073 (keymap--menu-item-binding, keymap--menu-item-with-binding)
21074 (keymap--merge-bindings): New functions.
21075 (keymap-canonicalize): Use them to refine the canonicalization.
21076 * minibuffer.el (minibuffer-local-completion-map)
21077 (minibuffer-local-must-match-map): Move initialization from C.
21078 (minibuffer-local-filename-completion-map): Move initialization from C;
21079 don't inherit from anything here.
21080 (minibuffer-local-filename-must-match-map): Make obsolete.
21081 (completing-read-default): Use make-composed-keymap to combine
21082 minibuffer-local-filename-completion-map with either
21083 minibuffer-local-must-match-map or
21084 minibuffer-local-filename-completion-map.
21085
21086 2011-07-01 Glenn Morris <rgm@gnu.org>
21087
21088 * type-break.el (type-break-time-sum): Use dolist.
21089
21090 * textmodes/flyspell.el (flyspell-word-search-backward):
21091 Replace CL function.
21092
21093 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21094
21095 * mouse.el (mouse--strip-first-event): New function.
21096 (function-key-map): Use it to map fringe clicks to normal clicks
21097 by default.
21098
21099 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
21100 (vc-bzr-revision-completion-table): Add support for annotate and date.
21101
21102 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
21103 inherit from parent.
21104
21105 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
21106
21107 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
21108 (dired-show-file-type): Doc fixup (bug#8818).
21109
21110 * dired.el (dired-mode): Fix up the doc string as suggested by
21111 Drew Adams (bug#8817).
21112
21113 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
21114 cookie, since the manual says that it should be possible to add
21115 this function to `find-file-hook' (bug#8709).
21116
21117 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21118
21119 * progmodes/cfengine.el: Moved all cfengine3.el functionality
21120 here. Noted Ted Zlatanov as the maintainer.
21121 (cfengine-common-settings, cfengine-common-syntax): New functions
21122 to set up common things between `cfengine-mode' and
21123 `cfengine3-mode'.
21124 (cfengine3-mode): New mode.
21125 (cfengine3-defuns cfengine3-defuns-regex
21126 (cfengine3-class-selector-regex cfengine3-category-regex)
21127 (cfengine3-vartypes cfengine3-font-lock-keywords)
21128 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
21129 (cfengine3-indent-line): Add from cfengine3.el.
21130
21131 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
21132
21133 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
21134
21135 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
21136
21137 2011-07-01 Martin Rudalics <rudalics@gmx.at>
21138
21139 * window.el (same-window-buffer-names, same-window-regexps)
21140 (same-window-p, special-display-frame-alist)
21141 (special-display-popup-frame, special-display-function)
21142 (special-display-buffer-names, special-display-regexps)
21143 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
21144 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21145 (split-window-preferred-function, split-height-threshold)
21146 (split-width-threshold, even-window-heights)
21147 (display-buffer-mark-dedicated, window-splittable-p)
21148 (split-window-sensibly, window-safely-shrinkable-p):
21149 Un-obsolete.
21150 (display-buffer): Don't spread args with function specifier
21151 because special-display-popup-frame won't like it.
21152
21153 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
21154
21155 Time-stamp simplifications and fixes.
21156 These improve accuracy slightly, and future-proof the code
21157 against some potential changes to current-time format.
21158
21159 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
21160 by using time-since and float-time.
21161
21162 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
21163 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
21164 + NNN microseconds".
21165
21166 * type-break.el (type-break-time-sum): Rewrite using time-add.
21167
21168 * play/hanoi.el (hanoi-current-time-float): Remove.
21169 All uses replaced by float-time.
21170
21171 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21172 This yields a more-accurate answer.
21173 (rng-time-to-float): Remove; no longer needed.
21174
21175 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21176
21177 * calendar/timeclock.el (timeclock-seconds-to-time):
21178 Defalias to seconds-to-time, since they're the same thing.
21179
21180 * emacs-lisp/elp.el (elp-elapsed-time):
21181 * emacs-lisp/benchmark.el (benchmark-elapse):
21182 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21183
21184 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21185
21186 * window.el (bury-buffer): Don't iconify the only frame.
21187 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21188 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
21189
21190 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
21191
21192 * eshell/em-smart.el (eshell-smart-display-navigate-list):
21193 Add mouse-yank-primary.
21194
21195 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
21196
21197 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21198
21199 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21200
21201 * emacs-lisp/find-func.el (find-library--load-name): New fun.
21202 (find-library-name): Use it to find relative load names when provided
21203 absolute file name (bug#8803).
21204
21205 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21206
21207 * textmodes/flyspell.el (flyspell-word): Consider words that
21208 differ only in case as potential doublons (bug#5687).
21209
21210 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21211 Remove two rather uninteresting debugging-like messages to make
21212 debbugs.el more silent.
21213
21214 * comint.el (comint-password-prompt-regexp): Accept "Response" as
21215 a password-like phrase.
21216
21217 2011-06-30 Masatake YAMATO <yamato@redhat.com>
21218
21219 * progmodes/cc-guess.el: New file.
21220
21221 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21222
21223 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21224 derived from `c-basic-common-init'.
21225
21226 * progmodes/cc-mode.el (top-level): Require cc-guess.
21227 (c-basic-common-init): Use `cc-choose-style-for-mode'.
21228
21229 2011-06-30 Lawrence Mitchell <wence@gmx.li>
21230
21231 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21232
21233 2011-06-30 Alan Mackenzie <acm@muc.de>
21234
21235 * progmodes/cc-engine.el (c-guess-continued-construct):
21236 Correct the handling of template-args-cont, particularly for when font
21237 lock is disabled. Name this case as "CASE G".
21238
21239 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
21240
21241 * allout.el (allout-yank-processing): Fix injection of extra space
21242 between bullet and non-whitespace character in first topic when
21243 pasting, ensuring that the actual spacing in the pasted topic
21244 following the bullet char is preserved. This extra space was
21245 causing pasted encrypted topics to get a decrypted status even
21246 when the content was actually still encrypted. Now the decryption
21247 status from before the paste is preserved.
21248
21249 (allout-flag-region): Set all allout overlays so they evaporate
21250 when reduced to zero length (evanescent), to prevent overlay
21251 leakage.
21252
21253 2011-06-30 Glenn Morris <rgm@gnu.org>
21254
21255 * w32-fns.el (w32-charset-info-alist): Declare.
21256
21257 * find-dired.el (find-grep-options): Simplify.
21258
21259 * term/ns-win.el (ns-set-resource): Declare.
21260
21261 * ses.el (row, col): Declare dynamic variables honestly.
21262
21263 * textmodes/reftex-parse.el (index-tags): Declare.
21264
21265 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
21266
21267 * cus-edit.el (customize-push-and-save): New function.
21268
21269 * files.el (hack-local-variables-confirm): Use it.
21270
21271 * custom.el (load-theme): New arg NO-CONFIRM.
21272 Use customize-push-and-save (Bug#8720).
21273 (custom-enabled-themes): Doc fix.
21274
21275 * cus-theme.el (customize-create-theme)
21276 (custom-theme-merge-theme): Callers to load-theme changed.
21277
21278 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21279
21280 * thingatpt.el (thing-at-point-short-url-regexp): Require that
21281 short URLs have at least one dot in them (bug #7614).
21282
21283 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21284 nil, because using a pty is apparently too slow (bug #895).
21285
21286 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
21287
21288 * mail/sendmail.el (sendmail-query-once): New function.
21289 (sendmail-query-once-function): New variable.
21290
21291 2011-06-29 Glenn Morris <rgm@gnu.org>
21292
21293 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21294
21295 * ses.el (top-level): Require cl when compiling.
21296 (ses-set-localvars): Fix error statement.
21297 Call it at compile time to silence a storm of warnings.
21298
21299 2011-06-29 Martin Rudalics <rudalics@gmx.at>
21300
21301 * window.el (normalize-live-buffer): Rename to
21302 window-normalize-buffer.
21303 (normalize-live-frame): Rename to window-normalize-frame.
21304 (normalize-any-window): Rename to window-normalize-any-window.
21305 (normalize-live-window): Rename to window-normalize-live-window.
21306 (make-window-atom): Rename to window-make-atom.
21307 (window-resize-reset): Rename to window--resize-reset.
21308 (window-resize-reset-1): Rename to window--resize-reset-1.
21309 (resize-mini-window): Rename to window--resize-mini-window.
21310 (resize-subwindows-skip-p): Rename to
21311 window--resize-subwindows-skip-p.
21312 (resize-subwindows-normal): Rename to
21313 window--resize-subwindows-normal.
21314 (resize-subwindows): Rename to window--resize-subwindows.
21315 (resize-other-windows): Rename to window--resize-siblings.
21316 (resize-this-window): Rename to window--resize-this-window.
21317 (resize-root-window): Rename to window--resize-root-window.
21318 (resize-root-window-vertically): Rename to
21319 window--resize-root-window-vertically.
21320 (normalize-buffer-to-display): Rename to
21321 window-normalize-buffer-to-display.
21322 (normalize-buffer-to-switch-to): Rename to
21323 window-normalize-buffer-to-switch-to.
21324 Correspondingly update all callers of the functions listed
21325 above.
21326 (display-buffer-alist, display-buffer-normalize-arguments)
21327 (display-buffer-normalize-options, display-buffer)
21328 (display-buffer-alist-set): Use "function" instead of
21329 "fun-with-args".
21330
21331 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
21332
21333 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21334 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
21335 debbugs.gnu.org. Mention acknowledgment email.
21336
21337 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
21338
21339 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21340 buffer multibyteness, since it shouldn't matter.
21341
21342 2011-06-28 Martin Rudalics <rudalics@gmx.at>
21343
21344 * window.el (display-buffer-in-side-window): Handle dedicated
21345 windows as in display-buffer-reuse-window.
21346 (display-buffer-normalize-alist): Use value of override
21347 specifier.
21348 (display-buffer-normalize-specifiers): Use value of
21349 other-window-means-other-frame specifier.
21350 (display-buffer-alist): Rewrite some texts in widgets.
21351 (display-buffer): Spread arguments when calling function
21352 specified by fun-with-args.
21353
21354 2011-06-28 Deniz Dogan <deniz@dogan.se>
21355
21356 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21357 Unnest `let'.
21358
21359 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21360 selectors (Bug#5732).
21361 (css-proprietary-nmstart-re): Use `regexp-opt'.
21362
21363 2011-06-27 Jari Aalto <jari.aalto@cante.net>
21364
21365 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21366 (eshell-ls-date-format): New defcustom.
21367 (eshell-ls-file): Use it.
21368
21369 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21370
21371 * help-fns.el (describe-variable): Fix message for terminal-local vars.
21372
21373 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
21374
21375 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21376 (ange-ftp-make-tmp-name): New arg.
21377 (ange-ftp-file-local-copy): Use it.
21378
21379 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
21380
21381 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21382 no-conversion (Bug#8870).
21383
21384 2011-06-27 Martin Rudalics <rudalics@gmx.at>
21385
21386 * window.el (window-right, window-left, window-child)
21387 (window-child-count, window-last-child)
21388 (window-iso-combination-p, walk-window-tree-1)
21389 (window-atom-check-1, window-tree-1, delete-window)
21390 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21391 new naming conventions - window-vchild, window-hchild,
21392 window-next and window-prev are now called window-top-child,
21393 window-left-child, window-next-sibling and window-prev-sibling
21394 respectively.
21395 (resize-window-reset): Rename to window-resize-reset.
21396 (resize-window-reset-1): Rename to window-resize-reset-1.
21397 (resize-window): Rename to window-resize.
21398 (window-min-height, window-min-width)
21399 (resize-mini-window, resize-this-window, resize-root-window)
21400 (resize-root-window-vertically, adjust-window-trailing-edge)
21401 (enlarge-window, shrink-window, maximize-window)
21402 (minimize-window, delete-window, quit-restore-window)
21403 (split-window, balance-windows, balance-windows-area-adjust)
21404 (balance-windows-area, window-state-put-2)
21405 (display-buffer-even-window-sizes, display-buffer-set-height)
21406 (display-buffer-set-width, set-window-text-height)
21407 (fit-window-to-buffer): Rename all "resize-window" prefixed
21408 calls to use the "window-resize" prefix convention.
21409 (display-buffer-alist): Fix symbol for label specifier.
21410 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21411 corresponding specifier.
21412 Reported by Juanma Barranquero <lekktu@gmail.com>.
21413
21414 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21415
21416 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21417 convention.
21418 (ses-call-printer): Does not pass an empty string to formatter when the
21419 cell is empty to keep from barking printer Calc math-format-value.
21420
21421 2011-06-27 Richard Stallman <rms@gnu.org>
21422
21423 * battery.el (battery-mode-line-limit): New variable.
21424 (battery-update): Handle it.
21425
21426 * mail/rmailmm.el (rmail-mime-process-multipart):
21427 Handle truncated messages.
21428
21429 2011-06-27 Glenn Morris <rgm@gnu.org>
21430
21431 * progmodes/flymake.el (flymake-err-line-patterns):
21432 Allow for column numbers in the ant/javac pattern. (Bug#8866)
21433
21434 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
21435
21436 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21437 (ses--clean-!, ses--clean-_): New functions.
21438 (ses-range): Add configurability of readout order, and conversion
21439 to Calc vector.
21440
21441 * ses.el (ses-repair-cell-reference-all): New function.
21442 (ses-cell-symbol): Set macro as safe, so that it can be used in
21443 formulas.
21444
21445 * ses.el: Update cycle detection algorithm.
21446 (ses-localvars): Add ses--Dijkstra-attempt-nb and
21447 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21448 (ses-set-localvars): New function.
21449 (ses-make-cell): Add property-list as a cell element.
21450 (ses-cell-property-get-fun, ses-cell-property-get)
21451 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21452 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21453 New functions.
21454 (ses-cell-property-set, ses-cell-property-pop)
21455 (ses-cell-property-get-handle): New macro.
21456 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21457 New aliases, used for code readability.
21458 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21459 cycle detection.
21460 (ses-self-reference-early-detection): New defcustom.
21461 (ses-formula-references): Robustify against self-referring cells.
21462 (ses-mode): Use ses-set-localvars.
21463 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21464 before lauching the update processing.
21465 (ses-initialize-Dijkstra-attempt): New function.
21466 (ses-recalculate-cell): Update for cycle detection based on
21467 Dijkstra algorithm.
21468
21469 * ses.el: Fix commenting and indenting convention.
21470
21471 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
21472
21473 * bs.el (bs-cycle-next): Complete last change.
21474
21475 2011-06-27 Drew Adams <drew.adams@oracle.com>
21476
21477 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21478
21479 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21480
21481 * net/network-stream.el (network-stream-open-starttls):
21482 Don't re-get capabilities unless we've reestablished connection.
21483 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21484
21485 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21486 to binary to possibly avoid line encoding issues on Windows (among
21487 other things).
21488
21489 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21490
21491 * net/network-stream.el (open-network-stream): Return an :error
21492 saying what the problem was, if possible.
21493
21494 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21495 server.
21496
21497 * net/network-stream.el (network-stream-open-starttls): If we
21498 wanted to use STARTTLS, and the server offered it, but we weren't
21499 able to because we had no STARTTLS support, then close the connection.
21500 (open-network-stream): Return an :error element, if present.
21501
21502 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21503
21504 * hl-line.el (hl-line-sticky-flag): Doc fix.
21505 (global-hl-line-sticky-flag): New option (Bug#8323).
21506 (global-hl-line-highlight): Obey it.
21507
21508 * vc/vc.el (vc-revert-show-diff): Default to t.
21509
21510 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
21511
21512 * allout-widgets.el (allout-widgets-post-command-business):
21513 Stop decorating intermediate isearch matches. They're not being
21514 undecorated when an isearch is continued past, and isearch
21515 automatically collapses them. This leads to "widget leaks", where
21516 decorated items accumulate in collapsed areas. Lines with lots of
21517 hidden widgets can slow down cursor travel, substantially.
21518 Too much complicated machinery would be needed to ensure undecoration,
21519 so we're doing without this nicety.
21520
21521 (allout-widgets-tally-string): Don't try to do a hash-table-count
21522 of allout-widgets-tally when it's nil. This eliminates spurious "Error
21523 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21524 *Messages* when allout-widgets-maintain-tally is t.
21525
21526 2011-06-26 Martin Rudalics <rudalics@gmx.at>
21527
21528 * window.el (display-buffer-normalize-argument): Rename to
21529 display-buffer-normalize-arguments. Handle special meaning of
21530 LABEL argument. Respect special-display-function when popping up
21531 a new frame. Fix code searching for a window showing the buffer
21532 on another frame.
21533 (display-buffer-normalize-specifiers):
21534 Call display-buffer-normalize-arguments.
21535 (display-buffer-in-window): Don't undedicate the window if its
21536 buffer remains the same.
21537 Reported by Drew Adams <drew.adams@oracle.com>.
21538 (display-buffer-alist): Add choice for same-window macro
21539 specfier.
21540 (display-buffer): Mention special meaning of LABEL argument in
21541 doc-string. Fix quoting. Don't pop up a new frame even as
21542 fallback.
21543
21544 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
21545
21546 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21547 avoid deleting the current window in some cases (bug#8911).
21548
21549 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
21550
21551 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21552 (Bug#8934)
21553
21554 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21555
21556 * net/network-stream.el (network-stream-open-starttls):
21557 Use built-in TLS support if `gnutls-available-p' is true.
21558 (network-stream-open-tls): Ditto.
21559
21560 2011-06-26 Leo Liu <sdl.web@gmail.com>
21561
21562 * register.el (registerv): New struct.
21563 (registerv-make): New function.
21564 (jump-to-register, describe-register-1, insert-register):
21565 Support the jump-func, print-func and insert-func slot of a registerv
21566 struct. (Bug#8415)
21567
21568 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
21569
21570 * vc/vc.el (vc-revert-show-diff): New defcustom.
21571 (vc-diff-internal): New arg specifying diff buffer.
21572 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
21573 reuse an existing *vc-diff* buffer (Bug#8927).
21574
21575 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21576
21577 2011-06-26 Glenn Morris <rgm@gnu.org>
21578
21579 * progmodes/f90.el (f90-critical-indent): New option.
21580 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21581 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21582 (f90-mode): Doc fix.
21583 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21584 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21585 (f90-beginning-of-block, f90-next-block, f90-indent-region)
21586 (f90-match-end): Handle block, critical.
21587
21588 2011-06-25 Glenn Morris <rgm@gnu.org>
21589
21590 * calendar/diary-lib.el (diary-included-files): Doc fix.
21591 (diary-include-files): New function, extracted from
21592 diary-include-other-diary-files and diary-mark-included-diary-files.
21593 (diary-include-other-diary-files, diary-mark-included-diary-files):
21594 Just call diary-include-files.
21595 (diary-mark-entries): Reset diary-included-files on first call.
21596
21597 * calendar/diary-lib.el (diary-mark-entries)
21598 (diary-mark-included-diary-files):
21599 Visit included diary-files in temp buffers.
21600
21601 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21602 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21603 (f90-start-block-re, f90-imenu-generic-expression)
21604 (f90-looking-at-program-block-start, f90-no-block-limit):
21605 Add support for submodules.
21606
21607 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21608 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21609
21610 2011-06-25 Eli Zaretskii <eliz@gnu.org>
21611
21612 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21613 buffer-file-type before setting its value, to avoid disastrous
21614 global effects on decoding files for DOS/Windows systems. (Bug#8780)
21615
21616 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21617
21618 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21619
21620 * ses.el (ses-unload-function):
21621 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21622
21623 * proced.el (proced-unload-function):
21624 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21625
21626 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
21627
21628 * server.el (server-create-window-system-frame): Add parameters arg.
21629 (server-process-filter): Doc fix. Handle frame-parameters.
21630
21631 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
21632
21633 Fix bug#8730, bug#8781.
21634
21635 * loadhist.el (unload--set-major-mode): New function.
21636 (unload-feature): Use it.
21637
21638 * progmodes/python.el (python-after-info-look): Add autoload cookie.
21639 (python-unload-function): New function.
21640
21641 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21642
21643 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21644
21645 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
21646
21647 * net/browse-url.el (browse-url-firefox-program): Add icecat to
21648 the candidates list.
21649
21650 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
21651
21652 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21653
21654 2011-06-23 Richard Stallman <rms@gnu.org>
21655
21656 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21657 (rmail-variables): Set next-error-move-function.
21658 (rmail-what-message): Take argument POS.
21659 (rmail-next-error-move): New function.
21660
21661 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
21662
21663 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21664 messages for adjacent non-terminals.
21665
21666 2011-06-23 Richard Stallman <rms@gnu.org>
21667
21668 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21669 (rmail-show-message-1): Preserve buffer modified flag.
21670 (rmail-start-mail): Don't specify use of rmail-mail-return;
21671 that's done by mail-bury now.
21672 (rmail-mail-return): Handle arg NEWBUF.
21673
21674 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
21675
21676 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21677 SIZE is a number.
21678
21679 2011-06-23 Martin Rudalics <rudalics@gmx.at>
21680
21681 * window.el (get-lru-window, get-mru-window)
21682 (get-largest-window): Never return a minibuffer window.
21683 (display-buffer-pop-up-window): Fix a bug that could lead to
21684 reusing the minibuffer window.
21685 (display-buffer): Pass original specifier argument to
21686 display-buffer-function instead of the normalized one.
21687 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21688
21689 2011-06-22 Leo Liu <sdl.web@gmail.com>
21690
21691 * minibuffer.el (completing-read-function)
21692 (completing-read-default): Move from minibuf.c.
21693
21694 2011-06-22 Richard Stallman <rms@gnu.org>
21695
21696 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
21697 to Rmail even if not started by a special Rmail command.
21698
21699 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
21700 Copy the buffer currently showing just one message.
21701
21702 2011-06-22 Roland Winkler <winkler@gnu.org>
21703
21704 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
21705 (bibtex-clean-entry): First delete the old key so that a
21706 customized algorithm for generating the new key does not get
21707 confused by the old key.
21708 (bibtex-url): Obey regexp of first step.
21709 (bibtex-search-entries): Do not use add-to-list with local
21710 list-var.
21711
21712 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21713
21714 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
21715 stored a user name, then query for the password first, instead of
21716 waiting for SMTP to give an error message and the trying again.
21717
21718 2011-06-22 Lawrence Mitchell <wence@gmx.li>
21719
21720 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
21721 BUFFER in call-process.
21722
21723 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
21724
21725 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
21726 QUIT twice.
21727 (smtpmail-try-auth-methods): Require user name and password from
21728 auth-source.
21729
21730 2011-06-22 Martin Rudalics <rudalics@gmx.at>
21731
21732 * window.el (display-buffer-default-specifiers)
21733 (display-buffer-alist): Remove entries for pop-up-frame-alist.
21734 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
21735 (split-window): Normalize SIDE argument (Bug#8916).
21736
21737 * frame.el (pop-up-frame-alist, pop-up-frame-function)
21738 (special-display-frame-alist, special-display-popup-frame):
21739 Remove duplicate declarations. These are now in window.el.
21740
21741 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
21742
21743 * mail/smtpmail.el (smtpmail-via-smtp):
21744 Set :use-starttls-if-possible so that we always use STARTTLS if the
21745 server supports it. SMTP servers that support STARTTLS commonly
21746 require it.
21747
21748 * net/network-stream.el (network-stream-open-starttls): Support
21749 upgrading to STARTTLS always, even if we don't have built-in support.
21750 (open-network-stream): Add the :always-query-capabilities keyword.
21751
21752 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
21753 upgrades with `open-network-stream', and rely solely on
21754 auth-source for all credentials. Big changes throughout the file,
21755 but in particular:
21756 (smtpmail-auth-credentials): Remove.
21757 (smtpmail-starttls-credentials): Remove.
21758 (smtpmail-via-smtp): Check for servers saying they want AUTH after
21759 MAIL FROM, too.
21760
21761 * net/network-stream.el (network-stream-open-starttls):
21762 Provide support for client certificates both for external and built-in
21763 STARTTLS.
21764 (auth-source): Require.
21765 (open-network-stream): Document the :client-certificate keyword.
21766 (network-stream-certificate): Change cert-cert to cert and
21767 cert-key to key.
21768
21769 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
21770
21771 * net/tramp-cache.el (top): Don't load the persistency file when
21772 "emacs -Q" has been called.
21773
21774 2011-06-21 Tim Harper <timcharper@gmail.com>
21775
21776 * term/ns-win.el (ns-initialize-window-system):
21777 Set application-specific `ApplePressAndHoldEnabled' system
21778 resource to NO as it is not yet supported by the NS port.
21779
21780 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
21781
21782 * misc.el (list-dynamic-libraries--refresh): Compute header here...
21783 (list-dynamic-libraries): ...not here.
21784
21785 2011-06-21 Leo Liu <sdl.web@gmail.com>
21786
21787 * subr.el (sha1): Implement sha1 using secure-hash.
21788
21789 2011-06-21 Martin Rudalics <rudalics@gmx.at>
21790
21791 * window.el (display-buffer-alist): In default value do not
21792 enforce searching a window on any but the selected frame.
21793 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21794 (display-buffer-select-window): Remove function.
21795 (display-buffer-in-window): When a window on another frame gets
21796 reused, do not select it any more but just raise its frame if
21797 necessary (Bug#8851) and (Bug#8856).
21798 (display-buffer-normalize-options): Handle pop-up-frames related
21799 options more faithfully.
21800 (pop-to-buffer): Don't rely on `display-buffer' selecting the
21801 window if it is on another frame.
21802 (display-buffer-alist, display-buffer-default-specifiers):
21803 Don't make new frame unsplittable by default.
21804 (display-buffer-normalize-argument): Fix doc-string typo and use
21805 'same-frame-other-window instead of 'other-window when associating
21806 with display-buffer-macro-specifiers.
21807
21808 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
21809
21810 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
21811 New functions.
21812 (5x5-mode-map, 5x5-mode-menu): Bind them.
21813 (5x5-draw-grid): Tweak the solver's rendering.
21814
21815 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21816
21817 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
21818 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
21819
21820 2011-06-21 Drew Adams <drew.adams@oracle.com>
21821
21822 * menu-bar.el: Use function variable instead of switch-to-buffer.
21823 (menu-bar-select-buffer-function): New variable.
21824 (menu-bar-update-buffers): Use it (bug#8876).
21825
21826 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21827
21828 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
21829 variable's status.
21830
21831 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
21832
21833 * x-dnd.el (x-dnd-version-from-flags)
21834 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
21835 and long as number (Bug#8899).
21836 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
21837
21838 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
21839
21840 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
21841 (completion-try-completion, completion-all-completions): Compute the
21842 metadata argument if it's missing; make it optional (bug#8795).
21843
21844 * wid-edit.el: Use lex-bind and move towards completion-at-point.
21845 (widget-complete): Use new :completion-function property.
21846 (widget-completions-at-point): New function.
21847 (default): Use :completion-function instead of :complete.
21848 (widget-default-completions): Rename from widget-default-complete;
21849 Rewrite.
21850 (widget-string-complete, widget-file-complete, widget-color-complete):
21851 Remove functions.
21852 (file, symbol, function, variable, coding-system, color):
21853 * international/mule-cmds.el (default-input-method, charset)
21854 (language-info-custom-alist):
21855 * cus-edit.el (face): Use new property :completions.
21856
21857 * progmodes/pascal.el (pascal-completions-at-point): New function.
21858 (pascal-mode): Use it.
21859 (pascal-mode-map): Use completion-at-point.
21860 (pascal-toggle-completions): Make obsolete.
21861 (pascal-complete-word, pascal-show-completions):
21862 * progmodes/octave-mod.el (octave-complete-symbol):
21863 Redefine as obsolete alias.
21864 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
21865 Signal absence of completion info for old Octave,
21866 (inferior-octave-complete): Redefine as obsolete alias.
21867 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
21868 (meta-completions-at-point): Rename from meta-complete-symbol and
21869 adapt it for use on completion-at-point-functions.
21870 (meta-common-mode): Use it.
21871 (meta-looking-at-backward, meta-match-buffer): Remove.
21872 (meta-complete-symbol): Redefine as obsolete alias.
21873 (meta-common-mode-map): Use completion-at-point.
21874 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
21875 (makefile-mode-map): Use completion-at-point.
21876 (makefile-completions-at-point): Rename from makefile-complete and
21877 adapt it for use on completion-at-point-functions.
21878 (makefile-mode): Use it.
21879 (makefile-complete): Redefine as obsolete alias.
21880
21881 2011-06-20 Deniz Dogan <deniz@dogan.se>
21882
21883 * net/rcirc.el: Delete trailing whitespaces once and for all.
21884
21885 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
21886
21887 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
21888
21889 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
21890
21891 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
21892
21893 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
21894
21895 2011-06-19 Martin Rudalics <rudalics@gmx.at>
21896
21897 * window.el (display-buffer-other-window-means-other-frame):
21898 Call display-buffer-normalize-alist.
21899 (display-buffer-normalize-specifiers-1): Rename to
21900 display-buffer-normalize-argument. New argument other-frame.
21901 Rewrite.
21902 (display-buffer-normalize-specifiers-2): Rename to
21903 display-buffer-normalize-options.
21904 (display-buffer-normalize-alist-1): New function.
21905 (display-buffer-normalize-specifiers-3): Rename to
21906 display-buffer-normalize-alist.
21907 Call display-buffer-normalize-alist-1.
21908 (display-buffer-normalize-options-inhibit): New variable.
21909 (display-buffer-normalize-specifiers): Rewrite calling
21910 display-buffer-normalize-alist,
21911 display-buffer-normalize-argument, and
21912 display-buffer-normalize-options. Don't call the latter if
21913 display-buffer-normalize-options-inhibit is non-nil.
21914 (frame-auto-delete): New option.
21915 (window-deletable-p): Use frame-auto-delete.
21916 (window-list-no-nils, window-state-ignored-parameters)
21917 (window-state-get-1, window-state-get, window-state-put-list)
21918 (window-state-put-1, window-state-put-2, window-state-put):
21919 New functions.
21920 (display-buffer-normalize-options): Move special-display-p group
21921 after pop-up-frame group (Bug#8851) and (Bug#8856).
21922
21923 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
21924
21925 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
21926 groups (Bug#8776).
21927 (rx-submatch-n): New function.
21928 (rx): Document it.
21929
21930 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
21931 (Bug#8768).
21932
21933 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
21934
21935 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
21936
21937 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
21938 anytime existing face settings are present (Bug#8889).
21939
21940 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
21941 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
21942 Remove unused argument.
21943
21944 2011-06-18 Martin Rudalics <rudalics@gmx.at>
21945
21946 * window.el (display-buffer-default-specifiers):
21947 Remove pop-up-frame. Add pop-up-window-min-height,
21948 pop-up-window-min-width, and another reuse-window specifier
21949 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
21950 (display-buffer-normalize-specifiers-2):
21951 Handle split-height-threshold and split-width-threshold also when
21952 pop-up-windows is unset. Add a reuse-window specifier for the
21953 case popping up a new window fails.
21954 (special-display-popup-frame): Remove double quoting.
21955 (display-buffer-normalize-specifiers-1): Fix thinko.
21956
21957 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
21958
21959 * shell.el (shell-completion-vars): Set pcomplete-termination-string
21960 according to comint-completion-addsuffix.
21961
21962 * pcomplete.el: Convert to lexical binding and fix bug#8819.
21963 (pcomplete-suffix-list): Mark as obsolete.
21964 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
21965 pcomplete-seen in the closure.
21966 (pcomplete-comint-setup): Setup completion-at-point as well.
21967 (pcomplete--entries): New function.
21968 (pcomplete--env-regexp): New var.
21969 (pcomplete-entries): Rewrite to work with partial-completion and
21970 without relying on pcomplete-suffix-list.
21971 (pcomplete-pare-list): Remove, unused.
21972
21973 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21974
21975 * window.el (display-buffer-alist): Set pop-up-window-min-height
21976 and pop-up-window-min-width in default value. Reported by
21977 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
21978 other-window-means-other-frame.
21979 (display-buffer-macro-specifiers): Comment out entry for
21980 other-window specifier.
21981 (display-buffer-other-window-means-other-frame): New function.
21982 (display-buffer-normalize-specifiers-1): New arguments
21983 buffer-name and label. Treat other-window case specially.
21984 (display-buffer-normalize-specifiers-2): Treat other-window case
21985 specially.
21986 (display-buffer-normalize-specifiers-3): New function.
21987 (display-buffer-normalize-specifiers):
21988 Call display-buffer-normalize-specifiers-3.
21989
21990 2011-06-17 Martin Rudalics <rudalics@gmx.at>
21991
21992 * window.el (same-window-p): Fix two typos introduced when
21993 adding with-no-warnings.
21994 (display-buffer-normalize-specifiers-1): Don't check
21995 pop-up-frames for 'unset initialization.
21996 (display-buffer-normalize-specifiers-2): Major rewrite using
21997 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
21998 (pop-up-frames, display-buffer-reuse-frames)
21999 (display-buffer-mark-dedicated): Don't initialize to 'unset.
22000 Suggested by David Engster <deng@randomsample.de>.
22001 (even-window-heights): Initialize to 'unset.
22002 (display-buffer-alist-set): Handle new 'unset initializations.
22003 (display-buffer-macro-specifiers): Don't pop up a new frame in the
22004 other window case.
22005
22006 2011-06-16 Martin Rudalics <rudalics@gmx.at>
22007
22008 * window.el (display-buffer-normalize-specifiers-1):
22009 Respect current value of pop-up-frames for most reasonable values of
22010 second argument of display-buffer (Bug#8865).
22011 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
22012 (switch-to-buffer-other-window-same-frame)
22013 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
22014 Adams (Bug#8875).
22015 (display-buffer): Don't check noninteractive when calling
22016 display-buffer-pop-up-frame.
22017 (display-buffer-pop-up-frame): Never pop up a frame in
22018 noninteractive mode (Bug#8857).
22019 (enlarge-window, shrink-window): Don't report an error when the
22020 window can't be resized as requested (Bug#8862).
22021
22022 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22023
22024 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
22025
22026 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
22027
22028 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
22029
22030 2011-06-15 Alan Mackenzie <acm@muc.de>
22031
22032 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
22033 for declarators, disable knr checking to speed up for normal files.
22034 2: Refactor, replacing a sequence of nested if forms by a cond form.
22035
22036 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
22037
22038 * net/network-stream.el (open-network-stream): Add the keyword
22039 :always-query-capabilities for the case where you want to force a
22040 `plain' network connection, but the protocol still requires the
22041 capabilitiy command (i.e., SMTP and EHLO).
22042
22043 * subr.el (process-live-p): Rename from `process-alive-p' for
22044 consistency with other `-live-p' functions.
22045
22046 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22047
22048 * window.el (same-window-buffer-names, same-window-regexps)
22049 (special-display-frame-alist, special-display-popup-frame)
22050 (special-display-function, special-display-buffer-names)
22051 (special-display-regexps, pop-up-frame-alist)
22052 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
22053 (pop-up-windows, split-window-preferred-function)
22054 (split-height-threshold, split-width-threshold, even-window-heights)
22055 (display-buffer-mark-dedicated): Don't encourage the use of
22056 display-buffer-alist from Elisp code.
22057
22058 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
22059
22060 * progmodes/python.el (python-mode): Derive from prog-mode.
22061 * progmodes/ps-mode.el (ps-mode):
22062 * progmodes/mixal-mode.el (mixal-mode):
22063 * progmodes/cfengine.el (cfengine-mode):
22064 * progmodes/ld-script.el (ld-script-mode): Likewise.
22065
22066 2011-06-15 Martin Rudalics <rudalics@gmx.at>
22067
22068 * window.el (display-buffer-alist): Trim default value to avoid
22069 popping up a new frame (Bug#8857) or reusing an arbitrary window
22070 on another frame.
22071 (display-buffer): Do not fall back on popping up a new frame in
22072 batch mode (Bug#8857).
22073
22074 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
22075
22076 * cus-theme.el (describe-theme-1): Use custom-theme-p.
22077 (custom-theme-summary): New function.
22078 (customize-themes): Use it.
22079
22080 2011-06-13 Glenn Morris <rgm@gnu.org>
22081
22082 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
22083
22084 2011-06-13 Martin Rudalics <rudalics@gmx.at>
22085
22086 * help.el (help-window): Remove variable.
22087 (help-window-point-marker, temp-buffer-max-height)
22088 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
22089 (help-print-return-message): Don't set help-window.
22090 (resize-temp-buffer-window): Rewrite cod eand doc-string.
22091 (help-window-setup-finish): Remove.
22092 (help-window-display-message, help-window-setup)
22093 (with-help-window): Major rewrite based on new
22094 display-buffer-window variable.
22095
22096 * help-mode.el (help-mode-finish): Remove help-window related
22097 code.
22098
22099 * view.el (view-exits-all-viewing-windows): Remove reference to
22100 view-return-to-alist in doc-string.
22101 (view-return-to-alist): Make obsolete.
22102 (view-buffer): Call pop-to-buffer-same-window and remove
22103 undo-window code.
22104 (view-buffer-other-window): Call pop-to-buffer-other-window and
22105 simplify code. Ignore second argument.
22106 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
22107 simplify code. Ignore second argument.
22108 (view-return-to-alist-update): Make obsolete.
22109 (view-mode-enter): Rename second argument to QUIT-RESTORE.
22110 Rewrite using quit-restore window parameters.
22111 (view-mode-exit): Rename second argument to EXIT-ONLY.
22112 Rewrite using quit-restore-window.
22113 (View-exit, View-exit-and-edit, View-leave, View-quit)
22114 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
22115 appropriate arguments.
22116 (view-end-message): Use quit-restore window parameter.
22117
22118 * window.el (display-buffer-function): Rewrite doc-string.
22119 (display-buffer-window, display-buffer-alist): New variables.
22120 (display-buffer-split-specifiers)
22121 (display-buffer-side-specifiers)
22122 (display-buffer-macro-specifiers): New constants.
22123 (display-buffer-even-window-sizes, display-buffer-set-height)
22124 (display-buffer-set-width, display-buffer-select-window)
22125 (display-buffer-in-window, display-buffer-reuse-window)
22126 (display-buffer-split-window-1, display-buffer-split-window)
22127 (display-buffer-split-atom-window, display-buffer-pop-up-window)
22128 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
22129 (display-buffer-in-side-window, normalize-buffer-to-display)
22130 (display-buffer-normalize-specifiers-1)
22131 (display-buffer-normalize-specifiers-2)
22132 (display-buffer-normalize-specifiers, display-buffer-frame):
22133 New functions.
22134 (display-buffer): Major rewrite.
22135 (display-buffer-other-window, display-buffer-other-frame)
22136 (pop-to-buffer, switch-to-buffer-other-window)
22137 (switch-to-buffer-other-frame): Rewrite.
22138 (display-buffer-same-window, display-buffer-same-frame)
22139 (display-buffer-same-frame-other-window)
22140 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22141 (pop-to-buffer-other-window)
22142 (pop-to-buffer-same-frame-other-window)
22143 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
22144 (switch-to-buffer-other-window-same-frame): New functions.
22145 (same-window-p, special-display-p): Rewrite disabling warnings.
22146 Make obsolete.
22147 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22148 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
22149 Make obsolete
22150 (same-window-buffer-names, same-window-regexps)
22151 (special-display-frame-alist, special-display-popup-frame)
22152 (special-display-function, special-display-buffer-names)
22153 (special-display-regexps, pop-up-frame-alist)
22154 (pop-up-frame-function, split-window-preferred-function)
22155 (split-height-threshold, split-width-threshold)
22156 (even-window-heights): Make obsolete.
22157
22158 2011-06-12 Glenn Morris <rgm@gnu.org>
22159
22160 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
22161 Misc simplifications.
22162
22163 2011-06-12 Martin Rudalics <rudalics@gmx.at>
22164
22165 * window.el (window-safely-shrinkable-p): Restore function which
22166 was inadvertently removed in change from 2011-06-11. Declare as
22167 obsolete.
22168
22169 * calendar/calendar.el (calendar-generate-window):
22170 Use window-iso-combined-p instead of combination of one-window-p and
22171 window-safely-shrinkable-p.
22172
22173 2011-06-12 Glenn Morris <rgm@gnu.org>
22174
22175 * progmodes/fortran.el (fortran-mode-syntax-table):
22176 * progmodes/f90.el (f90-mode-syntax-table):
22177 Set % to punctuation. (Bug#8820)
22178 (f90-find-tag-default): Remove, no longer needed.
22179
22180 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
22181
22182 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22183
22184 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
22185
22186 * image.el (image-animated-p): Return animation delay in seconds.
22187 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22188 (image-animate-timeout): Remove DELAY argument. Don't assume
22189 every subimage has the same delay; get it from image-animated-p.
22190 (image-animate): Caller changed.
22191
22192 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
22193
22194 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22195 to ignored backtrace functions.
22196
22197 2011-06-11 Glenn Morris <rgm@gnu.org>
22198
22199 * calendar/appt.el (appt-disp-window-function): Doc fix.
22200 (appt-check): Handle overlapping appointments. (Bug#8337)
22201
22202 2011-06-11 Martin Rudalics <rudalics@gmx.at>
22203
22204 * window.el (window-tree-1, window-tree): New functions, moving
22205 the latter to window.el.
22206 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22207 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22208 (bw-refresh-edges): Remove.
22209 (balance-windows-1, balance-windows-2): New functions.
22210 (balance-windows): Rewrite in terms of window tree functions,
22211 balance-windows-1 and balance-windows-2.
22212 (bw-adjust-window): Remove.
22213 (balance-windows-area-adjust): New function with functionality of
22214 bw-adjust-window but using resize-window.
22215 (set-window-text-height): Rewrite doc-string.
22216 Use normalize-live-window and resize-window.
22217 (enlarge-window-horizontally, shrink-window-horizontally):
22218 Rename argument to DELTA.
22219 (window-buffer-height): New function.
22220 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22221 Rewrite using new window resize routines.
22222 (kill-buffer-and-window, mouse-autoselect-window-select):
22223 Use ignore-errors instead of condition-case.
22224 (quit-window): Call delete-frame instead of delete-windows-on
22225 for the only buffer on frame.
22226
22227 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22228
22229 * loadup.el (top-level): Load window before files for the sake
22230 of replace-buffer-in-windows.
22231
22232 * files.el (read-buffer-to-switch)
22233 (switch-to-buffer-other-window)
22234 (switch-to-buffer-other-frame, display-buffer-other-frame):
22235 Move to window.el.
22236
22237 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22238 (previous-buffer): Move to window.el.
22239
22240 * bindings.el (unbury-buffer): Move to window.el.
22241
22242 * window.el (delete-other-windows-vertically): Move after
22243 definition of delete-other-windows.
22244 (other-window, delete-windows-on, replace-buffer-in-windows):
22245 Move here from window.c.
22246 (record-window-buffer, unrecord-window-buffer)
22247 (set-window-buffer-start-and-point, switch-to-prev-buffer)
22248 (switch-to-next-buffer): New functions.
22249 (get-next-valid-buffer, last-buffer, next-buffer): Move here
22250 from simple.el. Call switch-to-next-buffer.
22251 (previous-buffer): Move here from simple.el.
22252 Call switch-to-prev-buffer.
22253 (bury-buffer): Move here from buffer.c. Switch to previous
22254 buffer when window cannot be deleted.
22255 (unbury-buffer): Move here from bindings.el.
22256 (ctl-x-map): Move binding for other-window from window.c to
22257 here.
22258 (read-buffer-to-switch, switch-to-buffer-other-window)
22259 (switch-to-buffer-other-frame): Move here from files.el.
22260 (normalize-buffer-to-switch-to): New functions.
22261 (switch-to-buffer): Move here from buffer.c.
22262 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22263
22264 2011-06-10 Martin Rudalics <rudalics@gmx.at>
22265
22266 * window.el (window-min-height, window-min-width): Move here
22267 from window.c. Add defcustoms and rewrite doc-strings.
22268 (resize-mini-window, resize-window): New functions.
22269 (adjust-window-trailing-edge, enlarge-window, shrink-window):
22270 Move here from window.c.
22271 (maximize-window, minimize-window): New functions.
22272 (delete-window, delete-other-windows, split-window): Move here
22273 from window.c.
22274 (window-split-min-size): New function.
22275 (split-window-keep-point): Mention split-window-above-each-other
22276 instead of split-window-vertically.
22277 (split-window-above-each-other, split-window-vertically):
22278 Rename split-window-vertically to split-window-above-each-other
22279 and provide defalias for old definition.
22280 (split-window-side-by-side, split-window-horizontally):
22281 Rename split-window-horizontally to split-window-side-by-side
22282 and provide defalias for the old definition.
22283 (ctl-x-map): Move bindings for delete-window,
22284 delete-other-windows and enlarge-window here from window.c.
22285 Replace bindings for split-window-vertically and
22286 split-window-horizontally by bindings for
22287 split-window-above-each-other and split-window-side-by-side.
22288
22289 * cus-start.el (all): Remove entries for window-min-height and
22290 window-min-width. Add entries for window-splits and
22291 window-nest.
22292
22293 2011-06-09 Glenn Morris <rgm@gnu.org>
22294
22295 * calendar/appt.el (appt-mode-line): New function.
22296 (appt-check, appt-disp-window): Use it.
22297
22298 * files.el (hack-one-local-variable-eval-safep):
22299 Allow minor-modes with explicit +/-1 arguments.
22300
22301 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
22302
22303 * term/xterm.el (xterm): Add defgroup.
22304 (xterm-extra-capabilities): Add defcustom to supply known xterm
22305 capabilities, skip querying them, or query them (default).
22306 (terminal-init-xterm): Use it.
22307 (terminal-init-xterm-modify-other-keys): New function to set up
22308 modifyOtherKeys support to simplify `terminal-init-xterm'.
22309
22310 2011-06-09 Martin Rudalics <rudalics@gmx.at>
22311
22312 * window.el (resize-window-reset, resize-window-reset-1)
22313 (resize-subwindows-skip-p, resize-subwindows-normal)
22314 (resize-subwindows, resize-other-windows, resize-this-window)
22315 (resize-root-window, resize-root-window-vertically)
22316 (window-deletable-p, window-or-subwindow-p)
22317 (frame-root-window-p): New functions.
22318
22319 2011-06-09 Glenn Morris <rgm@gnu.org>
22320
22321 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22322 (ange-ftp-get-files): Use it.
22323
22324 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
22325
22326 * mail/sendmail.el (mail-recover-1, mail-recover):
22327 * files.el (recover-file, recover-session):
22328 Handle dired-listing-switches not being just a single short option.
22329
22330 2011-06-09 Glenn Morris <rgm@gnu.org>
22331
22332 * calendar/appt.el (appt-display-message, appt-disp-window):
22333 Handle lists of appointments.
22334
22335 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22336
22337 * window.el (one-window-p): Move down in code.
22338 Rewrite doc-string.
22339 (window-current-scroll-bars): Rewrite doc-string.
22340 Normalize live window argument.
22341 (walk-windows, get-window-with-predicate, count-windows):
22342 Rewrite doc-string. Use window-list-1.
22343 (window-in-direction-2, window-in-direction, get-mru-window):
22344 New functions.
22345
22346 2011-06-08 Reuben Thomas <rrt@sc3d.org>
22347
22348 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22349 Doc fix (Bug#8713).
22350
22351 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
22352
22353 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22354
22355 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
22356
22357 * loadhist.el (unload-feature-special-hooks):
22358 Add `comint-output-filter-functions'.
22359
22360 2011-06-08 Ivan Kanis <gnu@kanis.fr>
22361
22362 * calendar/appt.el (appt-check): Move some initializations into the let.
22363
22364 2011-06-08 Martin Rudalics <rudalics@gmx.at>
22365
22366 * window.el (window-height): Defalias to window-total-height.
22367 (window-width): Defalias to window-body-width.
22368
22369 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
22370
22371 * image-mode.el (image-toggle-animation): New command.
22372 (image-mode-map): Bind it to RET.
22373 (image-mode): Update message.
22374 (image-toggle-display-image): Avoid a spurious cache flush.
22375 (image-transform-rotation): Doc fix.
22376 (image-transform-properties): Return quickly in the normal case.
22377 (image-animate-loop): Rename from image-animate-max-time.
22378
22379 * image.el (image-animate-max-time): Move to image-mode.el.
22380 (create-animated-image): Remove unnecessary function.
22381 (image-animate): Rename from image-animate-start. New arg.
22382 (image-animate-stop): Remove; just use image-animate-timer.
22383 (image-animate-timer): Use car-safe.
22384 (image-animate-timeout): Rename argument.
22385
22386 2011-06-07 Martin Rudalics <rudalics@gmx.at>
22387
22388 * window.el (get-lru-window, get-largest-window): Move here from
22389 window.c. Rename first argument to ALL-FRAMES.
22390 Rephrase doc-strings.
22391 (get-buffer-window-list): Rewrite using window-list-1.
22392 Rephrase doc-string.
22393 (window-safe-min-height, window-safe-min-width): New constants.
22394 (window-size-ignore, window-min-size, window-min-size-1)
22395 (window-sizable, window-sizable-p, window-size-fixed-1)
22396 (window-size-fixed-p, window-min-delta-1, window-min-delta)
22397 (window-max-delta-1, window-max-delta, window-resizable)
22398 (window-resizable-p, window-total-height, window-total-width)
22399 (window-body-width): New functions.
22400 (window-full-height-p, window-full-width-p): Rewrite using
22401 window-total-size.
22402 (window-body-height): Rewrite using window-body-size.
22403
22404 2011-06-06 Martin Rudalics <rudalics@gmx.at>
22405
22406 * window.el (window-right, window-left, window-child)
22407 (window-child-count, window-last-child, window-any-p)
22408 (normalize-live-buffer, normalize-live-frame)
22409 (normalize-any-window, normalize-live-window)
22410 (window-iso-combination-p, window-iso-combined-p)
22411 (window-iso-combinations)
22412 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22413 (windows-with-parameter, window-with-parameter)
22414 (window-atom-root, make-window-atom, window-atom-check-1)
22415 (window-atom-check, window-side-check, window-check):
22416 New functions.
22417 (ignore-window-parameters, window-sides, window-sides-vertical)
22418 (window-sides-slots): New variables.
22419 (window-size-fixed): Move down in code. Minor doc-string fix.
22420
22421 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
22422
22423 * comint.el (comint-dynamic-complete-as-filename)
22424 (comint-dynamic-complete-filename): Correctly call
22425 completion-in-region.
22426
22427 2011-06-05 Deniz Dogan <deniz@dogan.se>
22428
22429 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22430 in last change.
22431
22432 2011-06-05 Deniz Dogan <deniz@dogan.se>
22433
22434 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22435 (rcirc): Use it to prompt for encryption.
22436
22437 2011-06-05 Roland Winkler <winkler@gnu.org>
22438
22439 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22440 (bibtex-search-entries): New command bound to C-c C-a.
22441 (bibtex-display-entries): New function.
22442
22443 2011-06-05 Roland Winkler <winkler@gnu.org>
22444
22445 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22446 (bibtex-insert-kill): After yanking insert newline if necessary.
22447 (bibtex-initialize): Call bibtex-string-files-init only once.
22448 (bibtex-mode): Do not call easy-menu-add.
22449 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22450 (bibtex-yank): Set arg properly if nil.
22451
22452 2011-06-05 Roland Winkler <winkler@gnu.org>
22453
22454 * textmodes/bibtex.el (bibtex-search-entry-globally):
22455 New variable.
22456 (bibtex-search-entry): Use it.
22457
22458 2011-06-05 Roland Winkler <winkler@gnu.org>
22459
22460 * textmodes/bibtex.el (bibtex-entry-format): New option
22461 sort-fields.
22462 (bibtex-format-entry, bibtex-reformat): Honor this option.
22463 (bibtex-parse-entry): Return fields in proper order.
22464
22465 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
22466
22467 * doc-view.el (doc-view-remove-if): Move computation of result out
22468 of `dolist' to silence misleading lexical-binding warning.
22469
22470 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
22471
22472 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22473 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22474
22475 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22476
22477 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22478 "SunOS 5.10".
22479
22480 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
22481
22482 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22483 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22484 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22485 (tramp-parse-putty):
22486 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22487 (tramp-completion-function-alist-ssh)
22488 (tramp-completion-function-alist-telnet)
22489 (tramp-completion-function-alist-su)
22490 (tramp-completion-function-alist-putty): Set `tramp-autoload'
22491 cookie.
22492
22493 * net/tramp-ftp.el:
22494 * net/tramp-sh.el:
22495 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22496 load "tramp.el" `tramp-set-completion-function'.
22497
22498 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
22499
22500 * shell.el: Require and use pcomplete.
22501 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22502 (shell-completion-vars): Set pcomplete-default-completion-function.
22503
22504 2011-06-04 Deniz Dogan <deniz@dogan.se>
22505
22506 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22507 `memq' (Bug#8799).
22508
22509 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22510
22511 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22512
22513 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
22514
22515 * bs.el (bs--mark-unmark, bs--nth-wrapper):
22516 * mpc.el (mpc-select-extend, mpc-songpointer-context):
22517 * vc/log-view.el (log-view-beginning-of-defun):
22518 * vc/smerge-mode.el (smerge-apply-resolution-patch)
22519 (smerge-refine-forward, smerge-refine-chopup-region):
22520 Silence warning for unused `dotimes' counter variables.
22521
22522 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
22523
22524 * net/tramp.el (tramp-with-progress-reporter): Rename from
22525 with-progress-reporter. Use `declare'.
22526 * net/tramp-smb.el:
22527 * net/tramp-sh.el:
22528 * net/tramp-gvfs.el: Update all uses.
22529
22530 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
22531
22532 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22533 buffer isn't killed before making it current.
22534
22535 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22536
22537 Silence various byte-compiler warnings.
22538 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22539 `access-type' and new obsolescence format.
22540 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22541 new format.
22542 (byte-compile-check-variable): New `access-type' argument.
22543 Only warn if the access-type is obsolete.
22544 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22545 (byte-compile-variable-set): Adjust callers.
22546 * help-fns.el (describe-variable): Adjust to new obsolescence format.
22547 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22548 setting it as obsolete.
22549 * simple.el (minibuffer-completing-symbol):
22550 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22551 access as obsolete.
22552 * minibuffer.el (minibuffer-completing-file-name): Don't make it
22553 obsolete yet.
22554 * international/quail.el (quail-mouse-choose-completion): Remove unused
22555 code referring to obsolete var.
22556 (quail-choose-completion-string): Remove.
22557 * server.el (server-clients-with, server-kill-buffer-query-function)
22558 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22559 * proced.el (proced-send-signal):
22560 * emacs-lisp/lisp.el (lisp-complete-symbol):
22561 Replace completion-annotate-function with completion-extra-properties.
22562
22563 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
22564
22565 * simple.el (goto-line): Use read-number.
22566 (overriding-map-is-bound): Remove.
22567 (saved-overriding-map): Change default.
22568 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22569 Take the map as argument.
22570 (universal-argument, negative-argument, digit-argument): Use it.
22571 (restore-overriding-map): Adjust.
22572 (do-auto-fill): Use fill-forward-paragraph.
22573 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22574
22575 * minibuffer.el (minibuffer-inactive-mode-map): New var.
22576 (minibuffer-inactive-mode): New major mode.
22577 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22578 the *Messages* buffer" hack.
22579 (mouse-popup-menubar): Don't burp if the event is a normal key.
22580
22581 Miscellaneous tweaks.
22582 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22583 lexical scoping as in subr.el's dolist and dotimes.
22584 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22585 Silence compiler warning.
22586 * thingatpt.el (forward-whitespace): Trivial coding style fix.
22587 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22588 * international/ccl.el (ccl-compile): Trivial simplification.
22589 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22590 * emacs-lisp/testcover.el (testcover-end): Remove spurious
22591 `printflag' argument.
22592 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22593 Purecopy the whole obsolescence data.
22594
22595 2011-06-01 Leo Liu <sdl.web@gmail.com>
22596
22597 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22598 improve doc-string as suggested by Marco Pessotto
22599 <melmothx@gmail.com>.
22600 (rcirc-print): Fix last change.
22601
22602 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22603
22604 * minibuffer.el (complete-with-action): Return nil for the metadata and
22605 boundaries of non-functional tables.
22606 (completion-table-dynamic): Return nil for the metadata.
22607 (completion-table-with-terminator): Add default case, using
22608 complete-with-action.
22609 (completion--metadata): New function.
22610 (completion-all-sorted-completions, minibuffer-completion-help): Use it
22611 to try and avoid pathological performance problems.
22612 (completion--embedded-envvar-table): Return `category' metadata.
22613
22614 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
22615
22616 * subr.el (process-alive-p): New tiny convenience function.
22617
22618 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22619
22620 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22621 content but also its previous major mode.
22622
22623 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
22624
22625 * emacs-lisp/debug.el (debug): Restore the previous content of the
22626 *Backtrace* buffer when we exit with C-M-c.
22627
22628 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
22629
22630 * minibuffer.el: Add metadata method to completion tables.
22631 (completion-category-overrides): New defcustom.
22632 (completion-metadata, completion--field-metadata)
22633 (completion-metadata-get, completion--styles)
22634 (completion--cycle-threshold): New functions.
22635 (completion-try-completion, completion-all-completions):
22636 Add `metadata' argument to choose completion-styles.
22637 (completion--do-completion): Use metadata to choose cycling.
22638 (completion-all-sorted-completions): Use metadata for sorting.
22639 Remove :completion-cycle-penalty which is not needed any more.
22640 (completion--try-word-completion): Add `metadata' argument.
22641 (minibuffer-completion-help): Check metadata for annotation function
22642 and sorting.
22643 (completion-file-name-table): Return `category' metadata.
22644 (minibuffer-completing-file-name): Make obsolete.
22645 * simple.el (minibuffer-completing-symbol): Make obsolete.
22646 * icomplete.el (icomplete-completions): Pass new `metadata' param to
22647 completion-try-completion.
22648
22649 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
22650
22651 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22652
22653 2011-05-30 Leo Liu <sdl.web@gmail.com>
22654
22655 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22656 (rcirc-print): Decode all incoming messages (bug#8744).
22657 (rcirc-decode-coding-system): Allow value nil for automatic coding
22658 system detection.
22659
22660 2011-06-01 Glenn Morris <rgm@gnu.org>
22661
22662 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22663
22664 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22665
22666 * image.el (image-animate-max-time): Allow nil and t values.
22667 Default to nil.
22668 (create-animated-image): Doc fix.
22669 (image-animate-start): Remove second arg; just use
22670 image-animate-max-time.
22671 (image-animate-timeout): Doc fix. Args changed.
22672
22673 * image-mode.el (image-toggle-display-image): Ensure that the
22674 image spec passed to the animate timer is the same object as in
22675 the buffer's display property (Bug#6981).
22676 (image-transform-properties): Doc fix.
22677
22678 * image.el (image-animate-max-time): Default to nil.
22679
22680 2011-05-29 Martin Rudalics <rudalics@gmx.at>
22681
22682 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22683 entire buffer list (Bug#8184).
22684
22685 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22686
22687 * image.el (imagemagick-types-inhibit)
22688 (imagemagick-register-types): Doc fix.
22689
22690 2011-05-29 Deniz Dogan <deniz@dogan.se>
22691
22692 * net/rcirc.el (rcirc): Use the user's stored encryption method by
22693 default.
22694
22695 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
22696
22697 * select.el: Don't perform clipboard-manager saving in hooks;
22698 leave the hooks empty.
22699
22700 2011-05-28 Leo Liu <sdl.web@gmail.com>
22701
22702 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
22703 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
22704 (occur-edit-mode): New major mode (Bug#8463).
22705 (occur-after-change-function): New function.
22706 (occur-engine): Give Occur tags a read-only property.
22707
22708 2011-05-28 Kevin Ryde <user42@zip.com.au>
22709
22710 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
22711
22712 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22713
22714 * bindings.el (help-echo): Make the initial non-indicator dash
22715 empty on graphical terminals (Bug#7295).
22716
22717 * files.el (auto-mode-alist): Move config rule after the
22718 in-stripping one (Bug#8547).
22719
22720 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
22721
22722 * startup.el (normal-splash-screen): Remove gratuitous mode-line
22723 setting (Bug#8740).
22724
22725 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
22726
22727 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
22728 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
22729 (Bug#8539).
22730
22731 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22732
22733 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
22734
22735 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
22736
22737 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
22738 (hs-hide-block-at-point, hs-find-block-beginning)
22739 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
22740 (Bug#8279).
22741
22742 2011-05-28 Glenn Morris <rgm@gnu.org>
22743
22744 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
22745
22746 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
22747
22748 * help-fns.el (describe-function-1): If the function is a derived
22749 major mode, print the parent mode.
22750
22751 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
22752 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
22753
22754 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
22755
22756 * minibuffer.el (completion--capf-wrapper): Check applicability before
22757 returning non-nil for non-exclusive completion data.
22758 * progmodes/etags.el (tags-completion-at-point-function):
22759 * info-look.el (info-lookup-completions-at-point): Mark as
22760 non-exclusive.
22761 (info-complete): Adjust accordingly.
22762
22763 * info-look.el: Convert to lexical-binding and completion-at-point.
22764 (info-lookup-completions-at-point): New function.
22765 (info-complete): Use it and completion-in-region.
22766
22767 2011-05-28 Drew Adams <drew.adams@oracle.com>
22768
22769 * isearch.el: Let M-e start with point at the first mismatched char.
22770 (isearch-fail-pos): New function.
22771 (isearch-edit-string): Use it.
22772
22773 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22774
22775 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22776
22777 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
22778
22779 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
22780 traversal functions for avl-trees.
22781 (avl-tree--stack): New struct.
22782 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
22783 (avl-tree-enter): Add optional `updatefun' arg.
22784 (avl-tree--do-enter): Add optional `updatefun' arg.
22785 Change return value.
22786 (avl-tree-delete): Add optional `test' and `nilflag' args.
22787 (avl-tree--do-delete): Add `test' and `nilflag' args.
22788 Change return value.
22789 (avl-tree-member): Add optional `nilflag'
22790 (avl-tree-member-p): New function.
22791 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
22792 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
22793 (avl-tree-stack-empty-p): New functions.
22794
22795 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
22796 avl-tree--del-balance1 and make it work both ways.
22797 (avl-tree--del-balance2): Remove.
22798 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
22799 make it work both ways.
22800 (avl-tree--enter-balance2): Remove.
22801 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
22802 New macros.
22803 (avl-tree--mapc, avl-tree-map): Add direction argument.
22804
22805 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
22806
22807 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
22808
22809 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
22810
22811 * select.el: Support clipboard managers with built-in function
22812 x-clipboard-manager-save, via delete-frame-functions and
22813 kill-emacs-hook.
22814 (xselect-convert-to-targets): Add MULTIPLE target to list.
22815 (xselect-convert-to-save-targets): New function.
22816
22817 2011-05-27 Kenichi Handa <handa@m17n.org>
22818
22819 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
22820 let-binding rfc2047-encode-encoded-words to nil.
22821
22822 2011-05-27 Glenn Morris <rgm@gnu.org>
22823
22824 * mail/emacsbug.el: Don't require url-util.
22825
22826 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
22827
22828 * files.el (set-auto-mode):
22829 Also respect mode: entries at the end of the file. (Bug#8586)
22830
22831 2011-05-26 Glenn Morris <rgm@gnu.org>
22832
22833 * files.el (hack-local-variables-prop-line, hack-local-variables):
22834 Downcase mode names, as seems to be traditional.
22835 (hack-local-variables, hack-local-variables-apply): Doc fixes.
22836
22837 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
22838 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
22839
22840 2011-05-25 Julien Danjou <julien@danjou.info>
22841
22842 * textmodes/rst.el (rst-define-level-faces): Do not define face
22843 symbol if it is already defined.
22844
22845 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
22846
22847 * play/5x5.el (5x5-new-game, 5x5-randomize):
22848 Reset 5x5-solver-output to nil when a new grid is cast.
22849 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
22850 these debugging traces, as defmacro breaks the compiled code.
22851
22852 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
22853
22854 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22855
22856 2011-05-24 Leo Liu <sdl.web@gmail.com>
22857
22858 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
22859 (vc-bzr-sha1): Adapt.
22860
22861 * sha1.el: Remove. Function `sha1' is now builtin.
22862
22863 * bindings.el: Provide sha1 feature.
22864
22865 2011-05-24 Kenichi Handa <handa@m17n.org>
22866
22867 * mail/sendmail.el: Require `rfc2047'.
22868 (mail-insert-from-field): Do not perform RFC2047 encoding.
22869 (mail-encode-header): New function.
22870 (sendmail-send-it): Set buffer-file-coding-system of the work
22871 buffer to the return value of select-message-coding-system.
22872 Call mail-encode-header.
22873
22874 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
22875
22876 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
22877
22878 * mail/supercite.el (sc-default-cite-frame):
22879 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
22880
22881 2011-05-24 Glenn Morris <rgm@gnu.org>
22882
22883 * progmodes/python.el (brm-menu): Declare.
22884
22885 * emulation/viper.el (viper-set-hooks): Declare.
22886
22887 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
22888 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
22889 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
22890 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
22891 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
22892 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
22893
22894 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
22895
22896 Add an :exit-function for completion-at-point.
22897
22898 * minibuffer.el (completion--done): New fun.
22899 (completion--do-completion): Use it. New arg `expect-exact'.
22900 (minibuffer-complete, minibuffer-complete-word): Don't output message,
22901 since completion--do-completion does it for us now.
22902 (minibuffer-force-complete): Use completion--done and
22903 completion--replace. Handle sole-completion case with more care.
22904 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
22905 (completion-extra-properties): New var.
22906 (completion-annotate-function): Make obsolete.
22907 (minibuffer-completion-help): Adjust accordingly.
22908 Use completion-list-insert-choice-function.
22909 (completion-at-point, completion-help-at-point):
22910 Bind completion-extra-properties.
22911 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
22912 * simple.el (completion-list-insert-choice-function): New var.
22913 (completion-setup-function): Preserve it.
22914 (choose-completion): Pay attention to it, shuffle the code a bit.
22915 (choose-completion-string): New arg `insert-function'.
22916
22917 * textmodes/bibtex.el: Convert to lexical binding.
22918 (bibtex-mode-map): Use completion-at-point.
22919 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
22920 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
22921 (bibtex-complete): Define as obsolete alias.
22922 (bibtex-complete-internal): Remove.
22923 (bibtex-format-entry): Remove unused sub-group in regexp.
22924 * shell.el (shell--command-completion-data)
22925 (shell-environment-variable-completion):
22926 * pcomplete.el (pcomplete-completions-at-point):
22927 * comint.el (comint--complete-file-name-data): Use :exit-function
22928 instead of completion-table-with-terminator so it also works for
22929 choose-completion.
22930
22931 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22932
22933 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
22934
22935 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
22936 (bug#8710).
22937
22938 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
22939
22940 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
22941
22942 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
22943 customization variable and implement: If non-nil, auto-fill will
22944 be inhibited while on topic's header line.
22945
22946 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
22947
22948 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
22949 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
22950 always have a solution in grid size = 5 cases.
22951 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
22952 (5x5-solver-output, 5x5-log-buffer): New vars.
22953 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
22954 Make these variables buffer local to achieve 5x5 multi-session-ness.
22955 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
22956 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
22957 (5x5-solve-suggest): New funs.
22958 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
22959 randomize a grid so that we ensure that there is always a solution.
22960 (5x5-make-random-grid): Allow other movement than flipping.
22961
22962 2011-05-23 Kevin Ryde <user42@zip.com.au>
22963
22964 * emacs-lisp/advice.el (ad-read-advised-function):
22965 Use `function-called-at-point' as the default, if it has
22966 advice and passes PREDICATE.
22967
22968 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
22969
22970 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
22971 byte-compile-lambda if it's actually a lambda.
22972
22973 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
22974 Fix function quoting. Use backquote better.
22975
22976 2011-05-22 Yuanle Song <sylecn@gmail.com>
22977
22978 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
22979 matching (Bug#8516).
22980
22981 2011-05-22 Jari Aalto <jari.aalto@cante.net>
22982
22983 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
22984 different face (Bug#8178).
22985
22986 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
22987
22988 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
22989 defface (Bug#8144).
22990
22991 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
22992
22993 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
22994 funcall as well (bug#8712). Warn when performing those conversions.
22995 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
22996
22997 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
22998
22999 2011-05-22 Glenn Morris <rgm@gnu.org>
23000
23001 * files.el (hack-local-variables-prop-line): Small simplifications.
23002 (hack-local-variables, hack-local-variables-prop-line):
23003 If MODE-ONLY, return the mode, rather than just `t'.
23004
23005 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
23006
23007 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
23008
23009 2011-05-21 Glenn Morris <rgm@gnu.org>
23010
23011 * files.el (hack-local-variables-prop-line, hack-local-variables):
23012 If only interested in the mode, don't bother doing the other stuff.
23013
23014 * image-mode.el (image-after-revert-hook):
23015 Redraw all frames on which the image is visible. (Bug#8567)
23016
23017 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
23018
23019 * wid-edit.el (widget-checklist-match-inline):
23020 Fix 2011-04-19 change. (Bug#8649)
23021
23022 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
23023
23024 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
23025 Also allow singlespace after single-letter capitals followed by a dot.
23026
23027 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
23028 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
23029
23030 2011-05-20 Nix <nix@esperi.org.uk>
23031
23032 * files.el (basic-save-buffer-2):
23033 Fix handling of break-hardlink-on-save with non-existent files.
23034
23035 2011-05-19 Deniz Dogan <deniz@dogan.se>
23036
23037 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
23038 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
23039
23040 2011-05-19 Glenn Morris <rgm@gnu.org>
23041
23042 * progmodes/f90.el (f90-type-def-re):
23043 Handle "type, bind(c)". (Bug#8691)
23044
23045 * emacs-lisp/autoload.el (batch-update-autoloads):
23046 Set autoload-excludes by parsing loadup.el rather than Makefiles.
23047
23048 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
23049
23050 * net/tramp.el (tramp-process-actions): Set "first-password-request"
23051 property for the correct connection in case of multihops.
23052
23053 2011-05-18 Glenn Morris <rgm@gnu.org>
23054
23055 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
23056 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
23057
23058 Rationalize calendar handling of day and month abbrev-arrays.
23059 * calendar/calendar.el (calendar-customized-p): New function.
23060 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
23061 (calendar-day-name-array, calendar-month-name-array): Doc fix.
23062 Add :set function.
23063 (calendar-abbrev-length, calendar-day-abbrev-array)
23064 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
23065 (calendar-day-abbrev-array, calendar-month-abbrev-array):
23066 Elements may no longer be nil.
23067 (calendar-day-name, calendar-month-name):
23068 Update for changed nature of abbrev arrays.
23069 * calendar/diary-lib.el (diary-name-pattern):
23070 Update for changed nature of abbrev arrays.
23071 (diary-mark-entries-1): Update calendar-make-alist calls.
23072 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
23073 * calendar/cal-html.el (cal-html-day-abbrev-array):
23074 Simply inherit from calendar-day-abbrev-array.
23075
23076 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
23077
23078 * progmodes/grep.el (grep-mode): Disable default
23079 compilation-directory-matcher setting (bug#8684).
23080
23081 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
23082
23083 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
23084 instead of "head" and "tail". There were problems with SunOS 5.9,
23085 and it performs better.
23086
23087 2011-05-17 Glenn Morris <rgm@gnu.org>
23088
23089 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
23090
23091 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
23092 Replace obsolete function.
23093
23094 * shell.el (pcomplete-parse-arguments-function): Declare.
23095
23096 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
23097 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
23098 (appt-check): Doc fixes.
23099 (appt-disp-window-function, appt-delete-window-function):
23100 Remove needless special case in custom :type.
23101 (appt-display-count): Default to 0, not nil.
23102 (appt-check): Reset appt-display-count to 0, not nil.
23103
23104 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
23105
23106 * progmodes/python.el (python-font-lock-keywords):
23107 Add the Python 3.X keyword "nonlocal" (bug#8639).
23108
23109 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
23110
23111 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
23112
23113 2011-05-16 Kevin Ryde <user42@zip.com.au>
23114
23115 * info-look.el (makefile-automake-mode): New setups, looking in
23116 automake manual, then makefile-mode.
23117 (makefile-mode): Remove automake manual, have it just in
23118 makefile-automake-mode since there's various things different or
23119 not relevant to plain make.
23120 (makefile-mode): Remove "other-modes" non-existent automake-mode,
23121 believe a hypothetical automake-mode would go to makefile-mode,
23122 not the other way around.
23123
23124 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
23125
23126 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
23127 hunk-end tags (Bug#8672).
23128
23129 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
23130 vc-annotate-show-diff-revision-at-line (Bug#8671).
23131
23132 2011-05-14 Glenn Morris <rgm@gnu.org>
23133
23134 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
23135 in the middle of an existing one with multiple authors. (Bug#8645)
23136 (change-log-font-lock-keywords): Also handle multiple author lines
23137 with leading tabs. (Bug#8644)
23138
23139 * calendar/appt.el (appt-check): Rename some local variables.
23140 Some simplification/reordering.
23141
23142 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
23143 (feedmail-sendmail-f-doesnt-sell-me-out)
23144 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23145 (feedmail-debug-sit-for, feedmail-queue-express-hook)
23146 (feedmail-queue-runner-message-sender): Set :version.
23147 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
23148 (bbdb-dwim-net-address, vm-mail): Declare.
23149 (feedmail-binmail-gnulinuxish-template):
23150 Rename from feedmail-binmail-linuxish-template.
23151 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
23152 Use insert-buffer-substring.
23153
23154 2011-05-14 Bill Carpenter <bill@carpenter.org>
23155
23156 * mail/feedmail.el (feedmail-patch-level): Increase.
23157 (feedmail-debug): New custom group.
23158 (feedmail-confirm-outgoing-timeout)
23159 (feedmail-sendmail-f-doesnt-sell-me-out)
23160 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23161 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
23162 (feedmail-sender-line, feedmail-from-line)
23163 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
23164 (feedmail-spray-this-address)
23165 (feedmail-spray-address-fiddle-plex-list)
23166 (feedmail-queue-use-send-time-for-date)
23167 (feedmail-queue-use-send-time-for-message-id)
23168 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
23169 (feedmail-buffer-eating-function):
23170 Doc fixes.
23171 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23172 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23173 (feedmail-message-action-scroll-down): New functions.
23174 (feedmail-queue-directory, feedmail-queue-draft-directory):
23175 Use expand-file-name.
23176 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23177 Remove C-v help entry.
23178 (feedmail-queue-buffer-file-name): New variable.
23179 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23180 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23181 (feedmail-message-action-send-strong, feedmail-message-action-edit)
23182 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23183 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23184 (feedmail-message-action-toggle-spray)
23185 (feedmail-run-the-queue-no-prompts)
23186 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23187 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23188 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23189 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23190 (feedmail-envelope-deducer, feedmail-fiddle-from)
23191 (feedmail-fiddle-sender, feedmail-default-date-generator)
23192 (feedmail-fiddle-date, feedmail-fiddle-message-id)
23193 (feedmail-fiddle-spray-address)
23194 (feedmail-fiddle-list-of-spray-fiddle-plexes)
23195 (feedmail-fiddle-list-of-fiddle-plexes)
23196 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23197 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23198 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23199 Change default. Doc fix.
23200 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23201 (feedmail-binmail-linuxish-template): New constant.
23202 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
23203 Respect feedmail-sendmail-f-doesnt-sell-me-out.
23204 (feedmail-send-it): Add debug call.
23205 Use feedmail-queue-buffer-file-name, and
23206 feedmail-send-it-immediately-wrapper.
23207 (feedmail-message-action-send): Add debug call.
23208 Use feedmail-send-it-immediately-wrapper.
23209 (feedmail-queue-express-to-queue): Add debug call.
23210 Run feedmail-queue-express-hook.
23211 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
23212 (feedmail-message-action-help-blat):
23213 Rename from feedmail-queue-send-edit-prompt-help-first.
23214 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
23215 Check line-endings. Handle errors better.
23216 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23217 Doc fix. Add debug call.
23218 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
23219 Use feedmail-queue-send-edit-prompt-inner.
23220 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23221 (feedmail-queue-send-edit-prompt-inner): New function, extracted
23222 from feedmail-queue-send-edit-prompt.
23223 (feedmail-queue-send-edit-prompt-help)
23224 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23225 (feedmail-tidy-up-slug): Add debug call.
23226 Respect feedmail-queue-slug-suspect-regexp.
23227 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23228 (feedmail-dump-message-to-queue): Add debug call.
23229 Expand queue-directory.
23230 (feedmail-dump-message-to-queue): Change message slightly.
23231 Use feedmail-say-chatter.
23232 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
23233 (feedmail-send-it-immediately-wrapper): New function.
23234 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
23235 Insert empty string rather than newline. Handle full-frame case.
23236 Use catch/throw. Use feedmail-say-chatter.
23237 (feedmail-fiddle-from): Try mail-host-address.
23238 (feedmail-default-message-id-generator): Doc fix.
23239 Bind system-time-locale. Handle missing end.
23240 (feedmail-fiddle-x-mailer): Add debug call.
23241 Handle feedmail-x-mailer-line being nil.
23242 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23243 Add debug call. Use buffer-substring-no-properties.
23244 (feedmail-say-debug, feedmail-say-chatter): New functions.
23245 (feedmail-find-eoh): Give an explicit error.
23246
23247 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
23248
23249 * net/newst-treeview.el (newsticker-treeview-face): Change default
23250 family from helvetica to sans.
23251 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23252 etc/images/newsticker.
23253
23254 * net/newst-reader.el (newsticker-feed-face): Change default
23255 family from helvetica to sans.
23256
23257 * net/newst-plainview.el (newsticker-new-item-face)
23258 (newsticker-old-item-face, newsticker-immortal-item-face)
23259 (newsticker-obsolete-item-face, newsticker-date-face)
23260 (newsticker-statistics-face): Change default family from
23261 helvetica to sans.
23262 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23263 etc/images/newsticker.
23264
23265 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23266 (newsticker--process-auto-mark-filter-match): Tell user about
23267 auto-marking.
23268
23269 2011-05-13 Didier Verna <didier@xemacs.org>
23270
23271 Common Lisp indentation improvements on defmethod and lambda-lists.
23272 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23273 TODO entries.
23274 (lisp-lambda-list-keyword-parameter-indentation)
23275 (lisp-lambda-list-keyword-parameter-alignment)
23276 (lisp-lambda-list-keyword-alignment): New customizable user options.
23277 (lisp-indent-defun-method): Improve docstring.
23278 (extended-loop-p): Fix comment.
23279 (lisp-indent-lambda-list-keywords-regexp): New variable.
23280 (lisp-indent-lambda-list): New function.
23281 (lisp-indent-259): Use it.
23282 (lisp-indent-defmethod): Support for more than one
23283 method qualifier and properly indent methods lambda-lists.
23284 (defgeneric): Provide a missing common-lisp-indent-function property.
23285
23286 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
23287
23288 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23289 bounds for the empty string (bug#8667).
23290
23291 2011-05-13 Glenn Morris <rgm@gnu.org>
23292
23293 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23294
23295 * mail/sendmail.el (sendmail-program): Try executable-find first.
23296 (sendmail-send-it): `sendmail-program' cannot be unbound.
23297
23298 * calendar/appt.el (appt-make-list): Simplify.
23299 (appt-time-msg-list): Doc fix.
23300 (appt-check): Change mode-line message at the time of the appointment.
23301
23302 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
23303
23304 * progmodes/ld-script.el (ld-script-keywords)
23305 (ld-script-builtins): Update keywords list.
23306
23307 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23308
23309 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23310
23311 * shell.el (shell-completion-vars): New function.
23312 (shell-mode):
23313 * simple.el (read-shell-command): Use it.
23314 (blink-matching-open): No need for " [...]" in minibuffer-message.
23315
23316 2011-05-12 Glenn Morris <rgm@gnu.org>
23317
23318 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23319 (appt-check): Simplify.
23320
23321 2011-05-12 Eli Zaretskii <eliz@gnu.org>
23322
23323 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23324 literal "/dev/null".
23325
23326 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23327
23328 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23329 Fix typo.
23330
23331 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
23332
23333 * progmodes/which-func.el (which-function):
23334 Use add-log-current-defun instead of add-log-current-defun-function,
23335 which might not be defined (Bug#8260).
23336
23337 2011-05-12 Glenn Morris <rgm@gnu.org>
23338
23339 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23340 Let byte-compile-initial-macro-environment always take precedence.
23341
23342 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
23343
23344 * net/rcirc.el: Add support for SSL/TLS connections.
23345 (rcirc-server-alist): New field `encryption'.
23346 (rcirc): Check `encryption' settings.
23347 (rcirc-connect): New arg `encryption'. Use open-network-stream.
23348 Merge make-local-variable into `set'.
23349 (rcirc--connection-open-p): New function.
23350 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23351 the process is not a network process (e.g. running gnutls-cli).
23352 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23353 Make rcirc-(en|de)code-coding-system local here.
23354 (rcirc-mode): Merge make-local-variable into `set'.
23355 (rcirc-parent-buffer): Make permanent buffer-local.
23356 (rcirc-multiline-minor-mode): Don't do it here.
23357 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23358 there's no server buffer.
23359
23360 2011-05-11 Glenn Morris <rgm@gnu.org>
23361
23362 * newcomment.el (comment-kill): Prefix "unused" local.
23363
23364 * term/w32console.el (get-screen-color): Declare.
23365
23366 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23367 Handle symbol elements of byte-compile-initial-macro-environment.
23368
23369 2011-05-10 Leo Liu <sdl.web@gmail.com>
23370
23371 * bookmark.el (bookmark-bmenu-mode-map):
23372 Bind bookmark-bmenu-search to `/'.
23373
23374 * mail/footnote.el: Convert to utf-8 encoding.
23375 (footnote-unicode-string, footnote-unicode-regexp): New variable.
23376 (Footnote-unicode): New function.
23377 (footnote-style-alist): Add unicode style to the list.
23378 (footnote-style): Doc fix.
23379
23380 2011-05-10 Jim Meyering <meyering@redhat.com>
23381
23382 Fix doubled-word typos.
23383 * international/quail.el (quail-insert-kbd-layout): and and -> and
23384 * kermit.el: and and -> and
23385 * net/ldap.el (ldap-search-internal): to to -> to
23386 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23387 * progmodes/js.el (js-mode): and and -> and
23388 * textmodes/artist.el (artist-move-to-xy): at at -> at
23389 (artist-draw-region-trim-line-endings): if if -> if
23390 And Safetyc -> Safety.
23391 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23392
23393 2011-05-10 Glenn Morris <rgm@gnu.org>
23394 Stefan Monnier <monnier@iro.umontreal.ca>
23395
23396 * files.el (hack-one-local-variable-eval-safep):
23397 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
23398
23399 2011-05-10 Glenn Morris <rgm@gnu.org>
23400
23401 * calendar/diary-lib.el (diary-list-entries-hook)
23402 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23403 (diary-nongregorian-marking-hook, diary-list-entries)
23404 (diary-include-other-diary-files, diary-mark-entries)
23405 (diary-mark-included-diary-files): Doc fixes.
23406
23407 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23408
23409 * misc.el: Require tabulated-list.el during compilation.
23410
23411 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23412
23413 * progmodes/compile.el (compilation-start):
23414 Run compilation-filter-hook for the async case too.
23415 (compilation-filter-hook): Doc fix.
23416
23417 2011-05-09 Deniz Dogan <deniz@dogan.se>
23418
23419 * wdired.el: Remove outdated installation comment. Fix usage
23420 comment.
23421
23422 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
23423
23424 * misc.el: Implement new command `list-dynamic-libraries'.
23425 (list-dynamic-libraries--loaded-only-p): New variable.
23426 (list-dynamic-libraries--refresh): New function.
23427 (list-dynamic-libraries): New command.
23428
23429 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
23430
23431 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23432 Fix the ant regexp to handle end-line and end-column info from jikes.
23433 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
23434 higher priority to avoid clobbering by gnu.
23435
23436 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23437
23438 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23439 if the face has existing theme settings (Bug#8454).
23440
23441 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
23442
23443 * progmodes/perl-mode.el (perl-imenu-generic-expression):
23444 Only match variables declared via `my' or `our' (Bug#8261).
23445
23446 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23447 special file names `.' and `..' (Bug#8259).
23448
23449 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
23450
23451 * progmodes/grep.el (grep-mode-font-lock-keywords):
23452 Remove buffer-changing entries.
23453 (grep-filter): New function.
23454 (grep-mode): Add it to compilation-filter-hook.
23455
23456 * progmodes/compile.el (compilation-filter-hook)
23457 (compilation-filter-start): New defvars.
23458 (compilation-filter): Call compilation-filter-hook prior to
23459 updating the process mark.
23460
23461 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
23462
23463 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23464
23465 2011-05-07 Eli Zaretskii <eliz@gnu.org>
23466
23467 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23468 mailclient-send-it even if window-system is nil. (Bug#8595)
23469
23470 * term/w32console.el (terminal-init-w32console):
23471 Call get-screen-color and use its output to set the frame
23472 background-mode. (Bug#8597)
23473
23474 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
23475
23476 Make bytecomp.el understand that defmethod defines funs (bug#8631).
23477 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23478 New functions.
23479 (defgeneric, eieio--defmethod): Use them.
23480 (eieio-defgeneric): Remove.
23481 (defmethod): Call defgeneric in a way visible to the byte-compiler.
23482
23483 2011-05-07 Glenn Morris <rgm@gnu.org>
23484
23485 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23486 Use let rather than let*.
23487 (timeclock-find-discrep): Remove unused local.
23488
23489 * calendar/diary-lib.el (diary-comment-start): Doc fix.
23490
23491 * calendar/appt.el (appt-time-msg-list): Doc fix.
23492
23493 2011-05-06 Noah Friedman <friedman@splode.com>
23494
23495 * apropos.el (apropos-print-doc): Only use
23496 emacs-lisp-docstring-fill-column when it is bound to an integer,
23497 per that variable's documentation.
23498
23499 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
23500
23501 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23502 and warnings are not silently discarded (e.g. use -d instead of -P).
23503
23504 2011-05-06 Glenn Morris <rgm@gnu.org>
23505
23506 * calendar/appt.el (appt-message-warning-time): Doc fix.
23507 (appt-warning-time-regexp): New option.
23508 (appt-make-list): Respect appt-message-warning-time.
23509
23510 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23511 New options.
23512 (diary-add-to-list): Strip comments from the displayed string.
23513 (diary-mode): Set comment-start and comment-end.
23514
23515 * vc/diff-mode.el (smerge-refine-subst): Declare.
23516 (diff-refine-hunk): Don't require smerge-mode when compiling.
23517
23518 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
23519
23520 * simple.el (list-processes): Return nil as the docstring says.
23521
23522 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23523
23524 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23525 to "".
23526 (ange-ftp-write-region, ange-ftp-insert-file-contents)
23527 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23528 determining of binary transfer. (Bug#7383)
23529
23530 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
23531
23532 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23533 Fix port computation bug. (Bug#8618)
23534
23535 2011-05-05 Glenn Morris <rgm@gnu.org>
23536
23537 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23538
23539 * simple.el (shell-dynamic-complete-functions)
23540 (comint-dynamic-complete-functions): Declare.
23541
23542 * net/network-stream.el (gnutls-negotiate):
23543 * simple.el (tabulated-list-print): Fix declarations.
23544
23545 * progmodes/gud.el (syntax-symbol, syntax-point):
23546 Remove unnecessary and incorrect declarations.
23547
23548 * emacs-lisp/check-declare.el (check-declare-scan):
23549 Handle byte-compile-initial-macro-environment in bytecomp.el.
23550
23551 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
23552
23553 Fix earlier half-done eieio-defmethod change (bug#8338).
23554 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23555 Streamline and change calling convention.
23556 (defmethod): Adjust accordingly and simplify.
23557 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23558 new eieio--defmethod.
23559 (slot-boundp): Minor CSE simplification.
23560
23561 2011-05-05 Milan Zamazal <pdm@zamazal.org>
23562
23563 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23564 (glasses-make-readable): Use glasses-separate-capital-groups.
23565
23566 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
23567
23568 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23569 (warning-series): Doc fix.
23570 (display-warning): Don't try to create the buffer if we just found it.
23571
23572 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
23573
23574 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23575 (autoload-find-generated-file): New function.
23576 (generate-file-autoloads): Bind generated-autoload-file to
23577 buffer-file-name.
23578 (update-file-autoloads, update-directory-autoloads):
23579 Use autoload-find-generated-file. If called interactively, prompt for
23580 output file (Bug#7989).
23581 (batch-update-autoloads): Doc fix.
23582
23583 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
23584
23585 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23586
23587 2011-05-04 Glenn Morris <rgm@gnu.org>
23588
23589 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23590 function, so it follows changes in calendar-date-style.
23591 (diary-fancy-date-matcher): New function.
23592 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23593 (diary-fancy-font-lock-fontify-region-function):
23594 Use diary-fancy-date-pattern as a function.
23595
23596 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23597 non-numbers for `year' etc pseudo-variables. (Bug#8583)
23598
23599 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
23600
23601 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23602 instead of positional arguments. Allow :keylist and :crlfiles
23603 arguments.
23604 (open-gnutls-stream): Call it.
23605
23606 * net/network-stream.el (network-stream-open-starttls): Adjust to
23607 call `gnutls-negotiate' with :process and :hostname arguments.
23608
23609 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
23610
23611 * minibuffer.el (completion--message): New function.
23612 (completion--do-completion, minibuffer-complete)
23613 (minibuffer-force-complete, minibuffer-complete-word): Use it.
23614 (completion--do-completion): Don't ignore completion-auto-help when in
23615 icomplete-mode.
23616
23617 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23618 internal encoding (e.g. tibetan zero is not whitespace).
23619 (global-whitespace-mode): Prefer save-current-buffer.
23620 (whitespace-trailing-regexp): Remove useless save-match-data.
23621 (whitespace-empty-at-bob-regexp): Minor simplification.
23622
23623 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
23624
23625 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23626
23627 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
23628
23629 * textmodes/ispell.el (ispell-add-per-file-word-list):
23630 Use `concat' to create string for insertion.
23631
23632 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23633
23634 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23635 Avoid open-line which runs post-self-insert-hook.
23636 (bibtex-fill-entry): Remove unused `end' var.
23637
23638 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
23639
23640 * textmodes/ispell.el (ispell-add-per-file-word-list):
23641 Protect against `nil' value of `comment-start' (Bug#8579).
23642
23643 2011-05-03 Leo Liu <sdl.web@gmail.com>
23644
23645 * isearch.el (isearch-yank-pop): New command.
23646 (isearch-mode-map): Bind it to `M-y'.
23647 (isearch-forward): Mention it.
23648
23649 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
23650
23651 * simple.el (minibuffer-complete-shell-command): Remove.
23652 (minibuffer-local-shell-command-map): Use completion-at-point.
23653 (read-shell-command): Setup completion vars here instead.
23654 (read-expression-map): Bind TAB to symbol completion.
23655
23656 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23657 error directly rather via storing it into `results'.
23658
23659 2011-05-02 Leo Liu <sdl.web@gmail.com>
23660
23661 * vc/diff.el: Fix description.
23662
23663 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
23664
23665 * server.el (server-eval-at): New function.
23666
23667 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
23668
23669 * net/network-stream.el (open-network-stream): Take a :nowait
23670 parameter and pass it on to `make-network-process'.
23671 (network-stream-open-plain): Ditto.
23672
23673 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
23674
23675 * faces.el (face-spec-set-match-display): Don't match toolkit
23676 options on terminal frames.
23677
23678 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
23679
23680 * progmodes/pascal.el: Use lexical binding.
23681 (pascal-mode-map): Remove author preferences.
23682
23683 * pcomplete.el (pcomplete-std-complete): Don't abuse
23684 completion-at-point.
23685
23686 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23687
23688 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23689 removing code that has been dead since 1991 or so.
23690
23691 * startup.el (command-line): When warning about "_emacs", use a
23692 delayed warning to allow the user to filter it out.
23693
23694 2011-04-28 Deniz Dogan <deniz@dogan.se>
23695
23696 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
23697 user has not joined.
23698
23699 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23700
23701 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
23702 aren't any completions at point.
23703
23704 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
23705
23706 * subr.el (display-delayed-warnings): New function.
23707 (delayed-warnings-hook): New variable.
23708
23709 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
23710
23711 * minibuffer.el (completion-at-point, completion-help-at-point):
23712 Don't presume that a given completion-at-point-function will always
23713 use the same calling convention.
23714
23715 * pcomplete.el (pcomplete-completions-at-point):
23716 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
23717 pcomplete-seen is non-nil.
23718 (pcomplete-comint-setup): Also recognize the new comint/shell
23719 completion functions.
23720 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
23721 pcomplete-seen is non-nil.
23722
23723 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
23724
23725 * calendar/icalendar.el (diary-lib): Add require statement.
23726 (icalendar--create-uid): Read out a uid from a text-property on
23727 the first character in the entry. This allows for code to add its
23728 own uid to the entry.
23729 (icalendar--convert-float-to-ical): Add export of
23730 `diary-float'-entries save for those with the optional DAY
23731 argument.
23732
23733 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
23734
23735 * subr.el (shell-quote-argument): Use alternate escaping strategy
23736 when we spot a variable reference in a string.
23737
23738 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23739
23740 * cus-start.el (all): Define customization for debug-on-event.
23741
23742 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
23743
23744 * subr.el (shell-quote-argument): Escape correctly under Windows.
23745
23746 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23747
23748 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
23749
23750 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
23751
23752 * net/tramp.el (tramp-process-actions): Add POS argument.
23753 Delete region between POS and (pos).
23754
23755 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23756 Use `nil' position in `tramp-process-actions' call.
23757 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
23758
23759 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
23760 position in `tramp-process-actions' call.
23761
23762 * net/trampver.el: Update release number.
23763
23764 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
23765
23766 * custom.el (defcustom): Obey lexical-binding.
23767
23768 Fix octave-inf completion problems reported by Alexander Klimov.
23769 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
23770 Inherit from octave-mode-syntax-table.
23771 (inferior-octave-mode): Set info-lookup-mode.
23772 (inferior-octave-completion-at-point): New function.
23773 (inferior-octave-complete): Use it and completion-in-region.
23774 (inferior-octave-dynamic-complete-functions): Use it as well, and use
23775 comint-filename-completion.
23776 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
23777 symbol elements which shouldn't be word elements.
23778 (octave-font-lock-keywords, octave-beginning-of-defun)
23779 (octave-function-header-regexp): Adjust regexps accordingly.
23780 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
23781
23782 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
23783
23784 * net/gnutls.el (gnutls-errorp): Declare before first use.
23785
23786 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
23787
23788 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
23789 verify-error, and verify-hostname-error parameters. Check whether
23790 default trustfile exists before going to use it. Add missing
23791 argument to gnutls-message-maybe call. Return value.
23792 Reported by Claudio Bley <claudio.bley@gmail.com>.
23793 (open-gnutls-stream): Add usage example.
23794
23795 * net/network-stream.el (network-stream-open-starttls): Give host
23796 parameter to `gnutls-negotiate'.
23797 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
23798 * subr.el (shell-quote-argument): Escape correctly under Windows.
23799
23800 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
23801
23802 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
23803 Use correct match group (bug#8438).
23804
23805 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23806
23807 * emacs-lisp/package.el (package-built-in-p): Fix typo.
23808 (package-menu--generate): New arg specifying packages to show.
23809 (package-menu-refresh, package-menu-execute, list-packages):
23810 Callers changed.
23811 (package-show-package-list): New function, replacing deleted
23812 package--list-packages (renamed because it is non-internal).
23813
23814 * finder.el (finder-list-matches): Use package-show-package-list
23815 instead of deleted package--list-packages.
23816
23817 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
23818 Based on a previous implementation by Juanma Barranquero (Bug#8366).
23819 (vc-annotate-mode-map): Bind it to RET.
23820
23821 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
23822
23823 * progmodes/etags.el (next-file): Don't use set-buffer to change
23824 buffers (Bug#8478).
23825
23826 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
23827
23828 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
23829
23830 * apropos.el (apropos-label-face): Avoid variable-pitch face.
23831 (apropos-accumulator): Doc fix.
23832 (apropos-function, apropos-macro, apropos-command)
23833 (apropos-variable, apropos-face, apropos-group, apropos-widget)
23834 (apropos-plist): Add face property.
23835 (apropos-symbols-internal): Fix indentation.
23836 (apropos-print): Simplify help, and recognize apropos-multi-type.
23837 (apropos-print-doc): Use button-type-get to extract the button's
23838 face property. Fill docstring (Bug#8352).
23839
23840 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
23841
23842 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
23843
23844 * play/mpuz.el (mpuz-silent): Doc fix.
23845 (mpuz-mode-map): Use mapc.
23846 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
23847 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
23848 Fix typos in docstrings.
23849
23850 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
23851 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
23852
23853 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
23854
23855 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
23856
23857 * minibuffer.el (completion--do-completion): Avoid the "Next char
23858 not unique" prompt if icomplete-mode is enabled (Bug#5849).
23859
23860 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
23861 mouse-2 into unread-command-events, it is interpreted correctly.
23862
23863 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
23864 (image-toggle-display): Doc fix.
23865
23866 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
23867
23868 * textmodes/page.el (what-page): Use line-number-at-pos to
23869 calculate line number (Bug#6825).
23870
23871 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23872
23873 * eshell/esh-mode.el (find-tag-interactive): Declare function.
23874 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
23875 Pass argument NO-DEFAULT to `find-tag-interactive'.
23876
23877 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
23878
23879 Lexical-binding cleanup.
23880
23881 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
23882 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
23883 * progmodes/ada-prj.el (ada-prj-initialize-values)
23884 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
23885 (ada-prj-show-value):
23886 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
23887 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
23888 (antlr-invalidate-context-cache, antlr-options-menu-filter)
23889 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
23890 * progmodes/bug-reference.el (bug-reference-push-button):
23891 * progmodes/fortran.el (fortran-line-length):
23892 * progmodes/glasses.el (glasses-change):
23893 * progmodes/octave-mod.el (octave-fill-paragraph):
23894 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
23895 (python-pdbtrack-grub-for-buffer, python-sentinel):
23896 * progmodes/sql.el (sql-save-connection):
23897 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
23898 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
23899 Mark unused parameters.
23900
23901 * progmodes/compile.el (compilation--flush-directory-cache)
23902 (compilation--flush-parse, compile-internal): Mark unused parameters.
23903 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
23904 (compilation-next-error-function): Remove unused variable `timestamp'.
23905
23906 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
23907 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
23908
23909 * progmodes/dcl-mode.el (dcl-end-of-command):
23910 Remove unused variable `start'.
23911 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
23912 (dcl-option-value-basic, dcl-option-value-offset)
23913 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
23914 Mark unused parameters.
23915 (dcl-save-local-variable): Remove unused variable `val'.
23916 (mode): Declare.
23917
23918 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
23919 Mark unused parameters.
23920 (delphi-ignore-changes): Move before first use.
23921 (delphi-charset-token-at): Remove unused variable `start'.
23922 (delphi-else-start): Remove unused variable `if-count'.
23923 (delphi-comment-block-start, delphi-comment-block-end):
23924 Remove unused variable `kind'.
23925 (delphi-indent-line): Remove unused variable `new-point'.
23926
23927 * progmodes/ebrowse.el (ebrowse-files-list)
23928 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
23929 Mark unused parameters. Don't quote `lambda'.
23930 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
23931 Don't quote `lambda'.
23932 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
23933 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
23934 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
23935 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
23936 Use `ignore-errors'.
23937 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
23938 (ebrowse-view/find-file-and-search-pattern)
23939 (ebrowse-view/find-member-declaration/definition):
23940 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
23941 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
23942 Rename parameter PREFIX-ARG to PREFIX.
23943 (ebrowse-tags-read-name): Remove unused variables `start' and
23944 `member-info'.
23945 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
23946 to `tags-file'.
23947
23948 * progmodes/etags.el (local-find-tag-hook): Declare.
23949 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
23950 Mark unused parameters.
23951
23952 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
23953 (executable-interpret): Mark unused parameter.
23954
23955 * progmodes/flymake.el (flymake-process-sentinel)
23956 (flymake-after-change-function)
23957 (flymake-create-temp-with-folder-structure)
23958 (flymake-get-include-dirs-dot): Mark unused parameters.
23959 (flymake-safe-delete-directory): Remove unused variable `err'.
23960
23961 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
23962 (speedbar-timer-fn, speedbar-line-text)
23963 (speedbar-change-expand-button-char, speedbar-delete-subblock)
23964 (speedbar-center-buffer-smartly): Declare functions.
23965 (gdb-find-watch-expression): Remove unused variable `array'.
23966 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
23967 (gdb-starting): Mark unused parameters.
23968 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
23969 (gdb-table-string): Remove unused variable `res'.
23970 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
23971 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
23972 (gdb-display-buffer): Remove unused variable `cur-size'.
23973
23974 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
23975 allow lexical-binding compilation.
23976 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
23977 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
23978 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
23979 Mark unused parameters.
23980 (gud-gdb-marker-filter): Remove unused variable `match'.
23981 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
23982 lambda expressions and funcall them, instead of using `fset'.
23983
23984 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
23985 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
23986
23987 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
23988 variable `header-beg'; use `let'.
23989
23990 * progmodes/icon.el (indent-icon-exp): Remove unused variables
23991 `restart', `last-sexp' and `at-do'.
23992
23993 * progmodes/js.el (js--debug): Mark unused parameter.
23994 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
23995 (js--splice-into-items): Remove unused variable `item'.
23996 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
23997
23998 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
23999 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
24000 (makefile-complete): Remove unused variable `try'.
24001 (makefile-fill-paragraph, makefile-match-function-end):
24002 Mark unused parameters.
24003
24004 * progmodes/octave-inf.el (inferior-octave-complete):
24005 Remove unused variable `proc'.
24006 (inferior-octave-output-digest): Mark unused parameter.
24007
24008 * progmodes/perl-mode.el (perl-calculate-indent):
24009 Remove unused variable `err'.
24010
24011 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
24012 (prolog-indent-line): Mark unused parameters.
24013 (prolog-indent-line): Remove unused variable `beg'.
24014
24015 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
24016 (reporter-dont-compact-list): Declare.
24017
24018 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
24019 Remove unused variable `char'.
24020 (sh-debug): Mark unused parameter.
24021 (sh-get-indent-info): Remove unused variable `start'.
24022 (sh-calculate-indent): Remove unused variable `var'.
24023
24024 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
24025 (simula-electric-keyword): Remove unused variable `null'.
24026 (simula-search-backward, simula-search-forward): Remove unused
24027 variables `begin' and `end'.
24028
24029 * progmodes/vera-mode.el (vera-guess-basic-syntax):
24030 Remove unused variable `pos'.
24031 (vera-electric-tab, vera-comment-uncomment-region):
24032 Mark unused parameters.
24033 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
24034
24035 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
24036
24037 * emacs-lisp/package.el (package--builtins, package-alist)
24038 (package-load-descriptor, package-built-in-p, package-activate)
24039 (define-package, package-installed-p)
24040 (package-compute-transaction, package-buffer-info)
24041 (package--push): Doc fix. Distinguish more clearly between
24042 version strings and version lists.
24043
24044 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
24045
24046 Lexical-binding cleanup.
24047
24048 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
24049 (5x5-make-mutate-best):
24050 * play/fortune.el (fortune-in-buffer):
24051 * play/gomoku.el (gomoku-init-display):
24052 * play/solitaire.el (solitaire, solitaire-do-check):
24053 * play/tetris.el (tetris-default-update-speed-function):
24054 Mark unused parameters.
24055
24056 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
24057 (bubbles--shift): Remove unused variable `char-org'.
24058 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
24059 (bubbles--show-images): Remove unused variable `char'.
24060
24061 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
24062 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
24063 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
24064 (decipher-analyze-buffer): Use ?\s.
24065 (decipher-make-checkpoint): Remove unused variable `mapping'.
24066
24067 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
24068
24069 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
24070 Remove unused variable `result'; use `let'.
24071
24072 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
24073 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
24074 (gametree-children-shown-p, gametree-compute-reduced-score):
24075 Use `ignore-errors'.
24076
24077 * play/handwrite.el (ps-lpr-switches): Declare.
24078 (handwrite): Remove unused variables `pmin' and `lastp'.
24079
24080 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
24081
24082 * play/landmark.el (landmark-init-display)
24083 (landmark-update-naught-weights): Mark unused parameters.
24084 (landmark-y): Remove unused variable `noise'. Simplify.
24085 (landmark-human-plays): Remove unused variable `score'.
24086
24087 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
24088 (mpuz-try-proposal): Remove unused variable `game'.
24089
24090 * play/zone.el (life-patterns): Declare.
24091
24092 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
24093
24094 * vc/vc.el (ediff-vc-internal): Declare function.
24095
24096 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24097
24098 * shell.el: Use lexical-binding and std completion UI.
24099 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
24100 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
24101 comint-preoutput-filter-functions rather than on
24102 comint-output-filter-functions.
24103 (shell-command-completion, shell--command-completion-data)
24104 (shell-filename-completion, shell-environment-variable-completion)
24105 (shell-c-a-p-replace-by-expanded-directory): New functions.
24106 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
24107 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
24108 (shell-dynamic-complete-environment-variable): Use them.
24109 (shell-dynamic-complete-as-environment-variable)
24110 (shell-dynamic-complete-as-command): Remove.
24111 (shell-match-partial-variable): Match past point.
24112 * comint.el: Clean up use of completion-at-point-functions.
24113 (comint-completion-at-point): New function.
24114 (comint-mode): Use it completion-at-point-functions.
24115 (comint-dynamic-complete): Make it obsolete.
24116 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
24117 (comint-c-a-p-replace-by-expanded-history): New function.
24118 (comint-dynamic-complete-functions)
24119 (comint-replace-by-expanded-history): Use it.
24120 * minibuffer.el (completion-table-with-terminator): Allow dynamic
24121 termination strings. Try harder to avoid second try-completion.
24122 (completion-in-region-mode-map): Disable bindings that don't work yet.
24123
24124 * comint.el: Use lexical-binding. Require CL.
24125 (comint-dynamic-complete-functions): Use comint-filename-completion.
24126 (comint-completion-addsuffix): Tweak custom type.
24127 (comint-filename-completion, comint--common-suffix)
24128 (comint--common-quoted-suffix, comint--table-subvert)
24129 (comint--complete-file-name-data): New functions.
24130 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
24131 (comint-dynamic-list-filename-completions): Use them.
24132 (comint-dynamic-simple-complete): Make obsolete.
24133
24134 * minibuffer.el (completion-in-region-mode):
24135 Keep completion-in-region-mode--predicate global.
24136 (completion-in-region--postch):
24137 Assume completion-in-region-mode--predicate is not null.
24138
24139 * progmodes/flymake.el (flymake-start-syntax-check-process):
24140 Obey `dir'. Simplify.
24141
24142 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
24143 we're in VC after all.
24144
24145 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
24146
24147 * vc/vc.el (vc-diff-build-argument-list-internal)
24148 (vc-version-ediff, vc-ediff): New commands.
24149 (vc-version-diff): Use vc-diff-build-argument-list-internal.
24150
24151 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24152
24153 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
24154 add sanity check.
24155
24156 * obsolete/erc-hecomplete.el: Make obsolete.
24157 * obsolete/: Standardize obsolescence info in the header.
24158
24159 2011-04-20 Glenn Morris <rgm@gnu.org>
24160
24161 * calendar/solar.el (solar-horizontal-coordinates):
24162 Use the longitude argument rather than `calendar-longitude'.
24163 (solar-date-next-longitude): Remove unused locals.
24164
24165 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24166
24167 * whitespace.el: New version 13.2.1.
24168
24169 2011-04-20 felix <EmacsWiki> (tiny change)
24170
24171 * whitespace.el (global-whitespace-mode): Keep highlight when
24172 switching between major modes on a file.
24173
24174 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
24175
24176 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24177 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24178 multi-line comments as well.
24179
24180 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
24181
24182 Lexical-binding cleanup.
24183
24184 * arc-mode.el (archive-mode-revert):
24185 * cmuscheme.el (scheme-interactively-start-process):
24186 * custom.el (custom-initialize-delay):
24187 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24188 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24189 * emacs-lock.el (emacs-lock-clear-sentinel):
24190 * ezimage.el (defezimage):
24191 * follow.el (follow-avoid-tail-recenter):
24192 * fringe.el (set-fringe-mode-1):
24193 * generic-x.el (bat-generic-mode-compile):
24194 * help-mode.el (help-info-variable, help-do-xref)
24195 (help-mode-revert-buffer):
24196 * help.el (view-emacs-todo):
24197 * iswitchb.el (iswitchb-completion-help):
24198 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24199 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24200 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24201 * locate.el (locate-update):
24202 * longlines.el (longlines-encode-region)
24203 (longlines-after-change-function):
24204 * outline.el (outline-isearch-open-invisible):
24205 * ps-def.el (declare-function, charset-dimension, char-width)
24206 (encode-char):
24207 * ps-mule.el (ps-mule-plot-string):
24208 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24209 (recentf-edit-list-select, recentf-edit-list-validate)
24210 (recentf-open-files-action):
24211 * rect.el (delete-whitespace-rectangle-line)
24212 (rectangle-number-line-callback):
24213 * register.el (window-configuration-to-register)
24214 (frame-configuration-to-register):
24215 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24216 * select.el (xselect-convert-to-string, xselect-convert-to-length)
24217 (xselect-convert-to-targets, xselect-convert-to-delete)
24218 (xselect-convert-to-filename, xselect-convert-to-charpos)
24219 (xselect-convert-to-lineno, xselect-convert-to-colno)
24220 (xselect-convert-to-os, xselect-convert-to-host)
24221 (xselect-convert-to-user, xselect-convert-to-class)
24222 (xselect-convert-to-name, xselect-convert-to-integer)
24223 (xselect-convert-to-atom, xselect-convert-to-identity):
24224 * subr.el (declare, ignore, process-kill-without-query)
24225 (text-clone-maintain):
24226 * terminal.el (te-get-char, te-tic-sentinel):
24227 * tool-bar.el (tool-bar-make-keymap):
24228 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24229 * type-break.el (type-break-mode, type-break-noninteractive-query):
24230 * view.el (View-back-to-mark):
24231 * wid-browse.el (widget-browse-action, widget-browse-widget)
24232 (widget-browse-widgets, widget-browse-sexp):
24233 * widget.el (define-widget-keywords):
24234 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24235 Mark unused parameters.
24236
24237 * align.el (align-adjust-col-for-rule): Mark unused parameter.
24238 (align-areas): Remove unused variable `look'.
24239 (align-region): Remove unused variables `real-end' and `pos-list'.
24240
24241 * apropos.el (apropos-score-doc): Remove unused variable `i'.
24242
24243 * bindings.el (mode-line-modified, mode-line-remote):
24244 Mark unused parameters.
24245 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24246
24247 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24248 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24249
24250 * comint.el (comint-history-isearch-pop-state)
24251 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24252 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24253 (comint-substitute-in-file-name): Doc fix.
24254
24255 * completion.el (cmpl-statistics-block): Mark unused parameter.
24256 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24257 (save-completions-to-file, load-completions-from-file):
24258 Remove unused local variable `e'.
24259
24260 * composite.el (compose-chars): Remove unused variable `len'.
24261 (lgstring-insert-glyph): Remove unused variable `g'.
24262 (compose-glyph-string): Remove unused variables `ascent',
24263 `descent', `lbearing' and `rbearing'.
24264 (compose-glyph-string-relative): Remove unused variables
24265 `lbearing', `rbearing' and `wadjust'.
24266 (compose-gstring-for-graphic): Remove unused variables `header',
24267 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
24268 (compose-gstring-for-terminal): Remove unused variables `header'
24269 and `nchars'. Use `let', not `let*'.
24270
24271 * cus-edit.el (Custom-set, Custom-save, custom-reset)
24272 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24273 (Custom-buffer-done, custom-buffer-create-internal)
24274 (custom-browse-visibility-action, custom-browse-group-tag-action)
24275 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24276 (widget-magic-mouse-down-action, custom-toggle-parent)
24277 (custom-add-parent-links, custom-toggle-hide-variable)
24278 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24279 (custom-toggle-hide-face, face, hook, custom-group-link-action)
24280 (custom-face-menu-create, custom-variable-menu-create, get)
24281 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24282 (custom-reset-standard-save-and-update): Remove unused variable `value'.
24283 (customize-apropos): Remove unused variable `tests'.
24284 (custom-group-value-create): Remove unused variable `hidden-p'.
24285 (sort-fold-case): Declare.
24286
24287 * cus-theme.el (custom-reset-standard-faces-list)
24288 (custom-reset-standard-variables-list): Declare.
24289 (customize-create-theme, custom-theme-revert, custom-theme-write)
24290 (custom-theme-choose-mode, customize-themes, custom-theme-save):
24291 Mark unused parameters.
24292
24293 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24294
24295 * delim-col.el (delimit-columns-max): Move defvar before first use.
24296
24297 * descr-text.el (describe-char-categories): Don't quote `lambda'.
24298 (describe-char): Don't quote `lambda'. Mark unused parameter.
24299
24300 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24301 (auto-insert): Declare.
24302 (desktop-restore-file-buffer): Rename desktop-* parameters;
24303 mark unused ones.
24304 (desktop-create-buffer): Rename desktop-* parameters and bind them.
24305 (desktop-buffer): Rename desktop-* parameters.
24306
24307 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24308 (dframe-reposition-frame-xemacs, dframe-help-echo)
24309 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24310 Mark unused parameters.
24311
24312 * dired-aux.el (backup-extract-version-start, overwrite-query)
24313 (overwrite-backup-query, rename-regexp-query)
24314 (rename-non-directory-query): Declare.
24315 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24316 (dired-add-entry): Remove unused variable `orig-file-name'.
24317 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24318 Use parameter PRESERVE-TIME instead of accessing dynamic variable
24319 `dired-copy-preserve-time' directly.
24320 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24321 (dired-insert-subdir-newpos): Rename unused variable `pos'.
24322
24323 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24324 (dired-virtual-revert, dired-make-relative-symlink):
24325 Mark unused parameters.
24326 (manual-program): Declare.
24327 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24328 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24329 wrapped in `with-no-warnings' to avoid replacing one warning by another.
24330
24331 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24332
24333 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24334
24335 * echistory.el (electric-history-in-progress, Helper-return-blurb):
24336 Declare.
24337
24338 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24339
24340 * electric.el (Electric-command-loop): Rename parameter
24341 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24342
24343 * expand.el (expand-in-literal): Remove unused variable `here'.
24344
24345 * facemenu.el (facemenu-add-new-color):
24346 Remove unused variable `docstring'.
24347
24348 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24349 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24350 (face-attr-construct): Mark unused parameter. Doc fix.
24351 (read-color): Remove unused variable `hex-string'.
24352
24353 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24354 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24355 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24356 (display-buffer-other-frame): Remove unused variable `old-window'.
24357 (kill-buffer-hook): Declare.
24358 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24359 Mark unused parameters.
24360 (after-find-file): Pass 1 to `auto-save-mode', not t.
24361
24362 * files-x.el (auto-insert): Declare.
24363 (modify-file-local-variable-prop-line): Remove unused variable `val'.
24364
24365 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24366 variable `buf'. Mark unused parameter.
24367 (find-lisp-insert-directory): Mark unused parameter.
24368
24369 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24370 (format-encode-region): Remove unused variables `cur-buf' and `result'.
24371 (format-common-tail): Remove, unused.
24372 (format-deannotate-region): Remove unused variable `loc'.
24373 (format-annotate-region): Remove unused variable `p'.
24374 (format-annotate-single-property-change): Remove unused variables
24375 `default' and `tail'.
24376
24377 * forms.el (read-file-filter): Declare.
24378 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24379
24380 * frame.el (frame-creation-function-alist): Mark unused parameter.
24381 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24382
24383 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24384 Remove unused parameters.
24385 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24386 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24387
24388 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24389 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24390 (hfy-prepare-tag-map): Mark unused parameters.
24391 (htmlfontify-buffer): Use `called-interactively-p'.
24392
24393 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24394 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24395 (ibuffer-do-occur): Mark unused parameters.
24396 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24397 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24398
24399 * ibuffer.el: Don't quote `lambda'.
24400 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24401 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24402 Mark unused parameters.
24403
24404 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24405 (ido-completing-read): Mark unused parameters.
24406 (ido-copy-current-word): Mark unused parameters;
24407 remove unused variable `name'.
24408 (ido-sort-merged-list): Remove unused parameter `dirs'.
24409
24410 * ielm.el (ielm-input-sender): Mark unused parameter.
24411 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24412 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24413 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24414 `ielm-string' as a dynamic variable accessible from the IELM prompt.
24415 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
24416
24417 * image-dired.el (image-dired-display-thumbs): Remove unused
24418 variables `curr-file' and `count'.
24419 (image-dired-remove-tag): Remove unused variable `start'.
24420 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24421 variable `curr-file'
24422 (image-dired-rotate-original): Remove unused variable `temp-file'.
24423 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24424 Remove unused variable `file'.
24425 (image-dired-gallery-generate): Remove unused variable `curr'.
24426 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24427
24428 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24429
24430 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24431
24432 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24433
24434 * isearch.el (minibuffer-history-symbol): Declare.
24435 (isearch-edit-string): Remove unused variable `err'.
24436 (isearch-message-prefix, isearch-message-suffix):
24437 Mark unused parameters.
24438
24439 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24440
24441 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24442
24443 * makesum.el (double-column): Remove unused variable `cnt'.
24444
24445 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24446 (ido-ignore-item-temp-list): Declare.
24447
24448 * mouse-drag.el (mouse-drag-throw): Remove unused variables
24449 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24450 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24451 (mouse-drag-drag): Remove unused variables `mouse-delta' and
24452 `mouse-col-delta'.
24453
24454 * mouse-sel.el (mouse-extend-internal):
24455 Remove unused variable `orig-window-frame'.
24456
24457 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24458 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24459 Move declarations before first use.
24460 (pcomplete-opt): Mark unused parameters; doc fix.
24461
24462 * proced.el (proced-revert): Mark unused parameter.
24463 (proced-send-signal): Remove unused variable `err'.
24464
24465 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24466 Rename parameter PREFIX-ARG to ARG.
24467 (ps-basic-plot-string, ps-basic-plot-whitespace):
24468 Mark unused parameters.
24469
24470 * replace.el (replace-count): Define.
24471 (occur-revert-function): Mark unused parameters.
24472 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24473 (isearch-case-fold-search, isearch-string): Declare.
24474 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24475 bind `case-fold-search'. Remove unused variables `beg' and `end',
24476 and simplify.
24477 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24478 COUNT and bind `replace-count'.
24479 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24480 to COUNT.
24481
24482 * savehist.el (print-readably, print-string-length): Declare.
24483
24484 * shadowfile.el (shadow-expand-cluster-in-file-name):
24485 Remove unused variable `cluster'.
24486 (shadow-copy-file): Remove unused variable `i'.
24487 (shadow-noquery, shadow-clusters, shadow-site-cluster)
24488 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24489 (shadow-define-literal-group, shadow-define-regexp-group)
24490 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24491
24492 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24493 (shell): Use `called-interactively-p'.
24494 (shell-directory-tracker): Remove unused variable `chdir-failure'.
24495
24496 * simple.el (compilation-context-lines, comint-file-name-quote-list)
24497 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24498 (delete-backward-char): Remove unused variable `ocol'.
24499 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24500 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24501 (event-apply-hyper-modifier, event-apply-shift-modifier)
24502 (event-apply-control-modifier, event-apply-meta-modifier):
24503 Mark unused parameters.
24504 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24505 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24506
24507 * speedbar.el (speedbar-ignored-directory-expressions)
24508 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24509 (speedbar-find-file, speedbar-dir-follow)
24510 (speedbar-directory-buttons-follow, speedbar-tag-find)
24511 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24512 (speedbar-buffers-line-directory, speedbar-buffer-click):
24513 Mark unused parameters.
24514 (speedbar-tag-file): Remove unused variable `mode'.
24515 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24516
24517 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24518
24519 * talk.el (talk): Remove unused variable `display'.
24520
24521 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24522 (tar-write-region-annotate): Mark unused parameter.
24523
24524 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24525 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24526 Declare them, wrapped in `with-no-warnings' to avoid replacing one
24527 warning by another.
24528
24529 * time-stamp.el (time-stamp-string-preprocess):
24530 Remove unused variable `require-padding'.
24531
24532 * tree-widget.el (widget-glyph-enable): Declare.
24533 (tree-widget-action): Mark unused parameter.
24534
24535 * w32-fns.el (x-get-selection): Mark unused parameter.
24536 (autoload-make-program, generated-autoload-file): Declare.
24537
24538 * wdired.el (wdired-revert): Mark unused parameters.
24539 (wdired-xcase-word): Remove unused variable `err'.
24540
24541 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24542 (whitespace-help-scroll): Remove unused variable `data-help'.
24543
24544 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24545 (widget-image-insert, widget-after-change, default)
24546 (widget-default-format-handler, widget-default-notify)
24547 (widget-default-prompt-value, widget-info-link-action)
24548 (widget-url-link-action, widget-function-link-action)
24549 (widget-variable-link-action, widget-file-link-action)
24550 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24551 (widget-field-prompt-internal, widget-field-action, widget-field-match)
24552 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24553 (widget-insert-button-action, widget-delete-button-action, visibility)
24554 (widget-documentation-link-action, widget-documentation-string-action)
24555 (widget-const-prompt-value, widget-regexp-match, symbol)
24556 (widget-coding-system-prompt-value)
24557 (widget-key-sequence-value-to-external, sexp)
24558 (widget-sexp-value-to-internal, character, vector, cons)
24559 (widget-choice-prompt-value, widget-boolean-prompt-value)
24560 (widget-color--choose-action): Mark unused parameters.
24561 (widget-item-match-inline, widget-choice-match-inline)
24562 (widget-checklist-match, widget-checklist-match-inline)
24563 (widget-group-match): Rename parameter VALUES to VALS.
24564 (widget-field-value-set): Remove unused variable `size'.
24565 (widget-color-action): Remove unused variables `value' and `start'.
24566
24567 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24568 variable `dir'. Doc fix.
24569 (windmove-find-other-window): Don't pass it.
24570
24571 * window.el (count-windows): Mark unused parameter.
24572 (bw-adjust-window): Remove unused variable `err'.
24573
24574 * woman.el (woman-file-name): Remove unused variable `default'.
24575 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24576 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24577 (global-font-lock-mode): Declare.
24578 (woman-decode-region): Mark unused parameter.
24579 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24580
24581 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24582 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24583 (x-dnd-handle-moz-url): Remove unused variable `title'.
24584 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24585
24586 * xml.el (xml-parse-tag, xml-parse-attlist):
24587 Remove unused variable `pos'.
24588
24589 2011-04-19 Glenn Morris <rgm@gnu.org>
24590
24591 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24592 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24593 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24594 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24595 * calendar/cal-html.el (cal-html-insert-minical):
24596 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24597 (calendar-mark-date-pattern):
24598 Prefix "unused" locals.
24599
24600 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24601 optional argument `style'.
24602
24603 * calendar/appt.el (appt-make-list):
24604 * calendar/cal-china.el (calendar-chinese-date-string):
24605 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24606 (diary-hebrew-yahrzeit):
24607 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24608 * calendar/calendar.el (calendar-generate-window):
24609 * calendar/time-date.el (time-to-days):
24610 Remove unused local variables.
24611
24612 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
24613
24614 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24615 glyphless-char-display table.
24616 (tabulated-list-glyphless-char-display): New var.
24617
24618 2011-04-18 Sam Steingold <sds@gnu.org>
24619
24620 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24621 to acknowledgments.
24622
24623 2011-04-17 Glenn Morris <rgm@gnu.org>
24624
24625 * calendar/diary-lib.el (diary-sexp-entry):
24626 * calendar/holidays.el (holiday-sexp):
24627 Set debug-on-error rather than the removed stack-trace-on-error.
24628
24629 2011-04-16 Glenn Morris <rgm@gnu.org>
24630
24631 * progmodes/f90.el: Use lexical-binding.
24632 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24633
24634 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24635
24636 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24637 (mail-mode): Setup mailalias completion here instead.
24638 * mail/mailalias.el: Use lexical-binding.
24639 (pattern, mailalias-done): Declare dynamic.
24640 (mail-completion-at-point-function): New function, from mail-complete.
24641 (mail-complete): Use it.
24642 (mail-completion-expand): New function.
24643 (mail-get-names): Use it.
24644 (mail-directory, mail-directory-process, mail-directory-stream):
24645 Don't use `pattern' for lexically bound arg.
24646
24647 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24648
24649 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24650 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24651 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24652
24653 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24654 (byte-save-window-excursion, byte-temp-output-buffer-setup)
24655 (byte-interactive-p): Define them again, for use when inlining
24656 old code.
24657
24658 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
24659
24660 * loadup.el: Use `string-to-number', not `string-to-int'.
24661
24662 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
24663
24664 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24665 gud-gdb-complete-command.
24666 (gud-gdb-completions): New function, from gud-gdb-complete-command.
24667 (gud-gdb-completion-at-point): New function.
24668 (gud-gdb-completions): Remove.
24669
24670 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
24671
24672 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24673 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
24674 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24675 whether `executable-find' is bound.
24676
24677 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24678
24679 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
24680
24681 * minibuffer.el (completion-in-region-mode-predicate)
24682 (completion-in-region-mode--predicate): New vars.
24683 (completion-in-region, completion-in-region--postch)
24684 (completion-in-region-mode): Use them.
24685 (completion--capf-wrapper): Also return the hook function.
24686 (completion-at-point, completion-help-at-point):
24687 Adjust and provide a predicate.
24688
24689 Preserve arg names for advice of subr and lexical functions (bug#8457).
24690 * help-fns.el (help-function-arglist): Consolidate the subr and
24691 new-byte-code cases. Add argument `preserve-names' to extract names
24692 from the docstring when needed.
24693 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
24694 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
24695 (ad-arglist): Use help-function-arglist's new arg.
24696 (ad-definition-type): Use cond.
24697
24698 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
24699
24700 * autorevert.el (auto-revert-handler):
24701 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
24702 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
24703 Don't quote lambda.
24704
24705 * image-mode.el (image-transform-set-scale):
24706 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
24707
24708 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
24709
24710 * net/network-stream.el (network-stream-open-starttls): Only do
24711 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
24712 Upgrades via gnutls-cli are too slow to be done opportunistically.
24713
24714 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
24715
24716 * dframe.el (dframe-current-frame): Remove spurious quote.
24717
24718 2011-04-12 Glenn Morris <rgm@gnu.org>
24719
24720 * calendar/cal-tex.el (cal-tex-end-document):
24721 Try to automatically use latin1 input if needed.
24722
24723 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
24724 Don't try to cons a mark onto an empty element.
24725
24726 2011-04-11 Leo Liu <sdl.web@gmail.com>
24727
24728 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
24729 buffers.
24730 (ido-kill-buffer-at-head): Support killing virtual buffers.
24731
24732 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
24733
24734 * minibuffer.el (completion-show-inline-help): New var.
24735 (completion--do-completion, minibuffer-complete)
24736 (minibuffer-force-complete, minibuffer-complete-word):
24737 Inhibit minibuffer messages if completion-show-inline-help is nil.
24738
24739 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
24740 to avoid interference from inline help (Bug#5849).
24741
24742 2011-04-10 Leo Liu <sdl.web@gmail.com>
24743
24744 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
24745 Fix typo.
24746
24747 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
24748
24749 * image-mode.el (image-toggle-display-image): Signal an error if
24750 not in Image mode.
24751 (image-transform-mode, image-transform-resize)
24752 (image-transform-set-rotation): Doc fix.
24753 (image-transform-set-resize): Delete.
24754 (image-transform-set-scale, image-transform-fit-to-height)
24755 (image-transform-fit-to-width): Handle image-toggle-display-image
24756 and image-transform-resize directly.
24757
24758 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
24759
24760 * doc-view.el (doc-view-fit-width-to-window)
24761 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
24762 New functions for fitting the shown image to the Emacs window size.
24763 (doc-view-mode-map): Add bindings for the new functions.
24764
24765 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
24766
24767 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
24768 Fix typo in docstring.
24769
24770 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24771
24772 * files.el (file-size-human-readable): Produce one digit after
24773 decimal, like "ls -lh" does.
24774
24775 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
24776 the file size representation.
24777
24778 * simple.el (list-processes): If async subprocesses are not
24779 available, error out with a clear error message.
24780
24781 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
24782
24783 * help.el (help-form-show): New function, to be called from C.
24784 Put help-form output in a buffer named differently than *Help*.
24785
24786 2011-04-08 Eli Zaretskii <eliz@gnu.org>
24787
24788 * files.el (file-size-human-readable): New function.
24789
24790 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
24791 computing the representation inline. Don't require `cl'.
24792
24793 2011-04-08 Glenn Morris <rgm@gnu.org>
24794
24795 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
24796
24797 * net/browse-url.el (browse-url-firefox):
24798 Test system-type, not system-configuration.
24799
24800 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
24801 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
24802 Use log-edit-empty-buffer-p. (Bug#7598)
24803
24804 * net/rlogin.el (rlogin-process-connection-type): Simplify.
24805 (rlogin-mode-map): Initialize in the defvar.
24806 (rlogin): Use ignore-errors.
24807
24808 * replace.el (occur-mode-map): Some fixes for menu items.
24809
24810 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
24811
24812 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
24813
24814 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24815
24816 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
24817 issuing unused warnings.
24818
24819 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
24820 macro directly.
24821
24822 * simple.el: Lisp reimplement of list-processes. Based on an
24823 earlier reimplementation by Leo Liu, but using tabulated-list.el.
24824 (process-menu-mode): New major mode.
24825 (list-processes--refresh, list-processes):
24826 (process-menu-visit-buffer): New functions.
24827
24828 * files.el (save-buffers-kill-emacs): Don't assume any return
24829 value of list-processes, which is undocumented anyway.
24830
24831 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
24832
24833 * emacs-lisp/tabulated-list.el: New file.
24834
24835 * emacs-lisp/package.el: Use Tabulated List mode.
24836 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
24837 (package-menu-mode): Derive from tabulated-list-mode. Set up the
24838 table format using Tabulated List mode variables.
24839 (package--push): New macro, replacing package-list-maybe-add.
24840 (package-menu--generate): Use package--push. Renamed from
24841 package--generate-package-list.
24842 (package-menu-refresh, list-packages): Use it.
24843 (package-menu--print-info): Rename from package-print-package.
24844 Return insertion data instead of inserting it directly.
24845 (package-menu-describe-package, package-menu-execute):
24846 Use tabulated-list-get-id.
24847 (package-menu-mark-delete, package-menu-mark-install)
24848 (package-menu-mark-unmark, package-menu-backup-unmark)
24849 (package-menu-mark-obsolete-for-deletion):
24850 Use tabulated-list-put-tag.
24851 (package--list-packages, package-menu-revert)
24852 (package-menu-get-package, package-menu-get-version)
24853 (package-menu-sort-by-column): Functions deleted.
24854 (package-menu-package-list, package-menu-sort-key): Vars deleted.
24855 (package-menu--status-predicate, package-menu--version-predicate)
24856 (package-menu--name-predicate)
24857 (package-menu--description-predicate): Handle arguments in the
24858 Tabulated List format.
24859 (package-list-packages-no-fetch): Call list-packages.
24860
24861 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
24862
24863 * files.el (after-find-file-from-revert-buffer): Remove variable.
24864 (after-find-file): Don't bind it.
24865 (revert-buffer-in-progress-p): New variable.
24866 (revert-buffer): Bind it.
24867 Pass nil for `after-find-file-from-revert-buffer'.
24868
24869 * saveplace.el (save-place-find-file-hook): Use new variable
24870 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
24871
24872 2011-04-06 Glenn Morris <rgm@gnu.org>
24873
24874 * Makefile.in (AUTOGEN_VCS): New variable.
24875 (autoloads): Use $AUTOGEN_VCS.
24876
24877 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
24878 * calendar/calendar.el (calendar-mode-map):
24879 Check for toolkit scroll bars. (Bug#8305)
24880
24881 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24882
24883 * minibuffer.el (completion-in-region--postch)
24884 (completion-in-region-mode): Remove unnecessary messages.
24885
24886 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
24887
24888 * font-lock.el (font-lock-refresh-defaults):
24889 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
24890 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
24891
24892 * info.el (Info-directory-list, Info-read-node-name-2)
24893 (Info-split-parameter-string): Doc fixes.
24894 (Info-virtual-nodes): Reflow docstring.
24895 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
24896 (Info-apropos-toc-nodes, info-finder, Info-get-token)
24897 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
24898 Fix typos in docstrings.
24899 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
24900 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
24901 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
24902 (Info-restore-desktop-buffer): Mark unused parameters.
24903 (Info-directory-find-file, Info-directory-find-node)
24904 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
24905 (Info-virtual-index-find-node, Info-apropos-find-file)
24906 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
24907 Mark unused parameters; fix typos in docstrings.
24908 (Info-virtual-index): Remove unused local variable `nodename'.
24909
24910 2011-04-05 Deniz Dogan <deniz@dogan.se>
24911
24912 * net/rcirc.el: Update my e-mail address.
24913 (rcirc-mode-map): Remove M-o binding.
24914
24915 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
24916
24917 * startup.el (command-line): Save the cursor's theme-face
24918 directly, instead of using face-override-spec.
24919
24920 * custom.el (load-theme): Minor optimization in assigning faces.
24921
24922 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24923
24924 * help-fns.el (describe-variable): Complete all variables having
24925 documentation, including keywords.
24926 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
24927
24928 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
24929
24930 Convert to lexical-binding.
24931
24932 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
24933 (bs--get-marked-string, bs--get-modified-string)
24934 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
24935 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
24936 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
24937
24938 * ehelp.el (electric-help-execute-extended)
24939 (electric-help-ctrl-x-prefix):
24940 * hexl.el (hexl-revert-buffer-function):
24941 * linum.el (linum-after-change, linum-after-scroll):
24942 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
24943
24944 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
24945
24946 2011-04-04 Daiki Ueno <ueno@unixuser.org>
24947
24948 * epa-dired.el:
24949 * epa-mail.el:
24950 * epa-hook.el:
24951 * epa-file.el:
24952 * epa.el:
24953 * epg.el: Use lexical binding.
24954
24955 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
24956
24957 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
24958
24959 * textmodes/flyspell.el (flyspell-word): Recognize default
24960 dictionary case for flyspell-mark-duplications-exceptions.
24961 Use regexp matching for languages.
24962 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
24963 default dictionary (Bug#7926).
24964
24965 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
24966
24967 * emacs-lisp/package.el (package--with-work-buffer):
24968 Recognize https URLs.
24969
24970 * net/network-stream.el: Move from gnus/proto-stream.el.
24971 Change prefix to network-stream throughout.
24972 (open-protocol-stream): Merge into open-network-stream, leaving
24973 open-protocol-stream as an alias. Handle nil BUFFER args.
24974
24975 * subr.el (open-network-stream): Move to net/network-stream.el.
24976
24977 2011-04-02 Glenn Morris <rgm@gnu.org>
24978
24979 * find-dired.el (find-exec-terminator): New option.
24980 (find-ls-option): Test for -ls support.
24981 (find-ls-subdir-switches): Test for -b in find-ls-option.
24982 (find-dired, find-grep-dired): Doc fixes.
24983 (find-dired): Use find-exec-terminator.
24984
24985 * find-dired.el (find-ls-option, find-ls-subdir-switches)
24986 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
24987 (find-name-arg): Remove purecopy.
24988
24989 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
24990 (grep-compute-defaults): Check for `-exec COMMAND +' support.
24991 Set grep-find-use-xargs, grep-find-command, and grep-find-template
24992 accordingly. Don't add the null-device if not needed.
24993
24994 * files.el (save-some-buffers): Doc fix.
24995
24996 2011-04-02 Eli Zaretskii <eliz@gnu.org>
24997
24998 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
24999
25000 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
25001
25002 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
25003 Use `dolist' rather than `mapcar'.
25004
25005 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
25006
25007 Add lexical binding.
25008
25009 * subr.el (apply-partially): Use new closures rather than CL.
25010 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
25011 (dolist, dotimes): Use slightly different expansion for lexical code.
25012 (functionp): Move to C.
25013 (letrec): New macro.
25014 (with-wrapper-hook): Use it and apply-partially instead of CL.
25015 (eval-after-load): Preserve lexical-binding.
25016 (save-window-excursion, with-output-to-temp-buffer): Turn them
25017 into macros.
25018
25019 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
25020
25021 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
25022 than the arglist.
25023 (help-add-fundoc-usage): Don't add `Not documented'.
25024 (help-function-arglist): Handle closures, subroutines, and new
25025 byte-code-functions.
25026 (help-make-usage): Remove leading underscores.
25027 (describe-function-1): Handle closures.
25028 (describe-variable): Use special-variable-p for completion.
25029
25030 * files.el (lexical-binding): Declare safe.
25031
25032 * emacs-lisp/pcase.el: Don't use destructuring-bind.
25033 (pcase--memoize): Rename from pcase-memoize. Change weakness.
25034 (pcase): Add `let' pattern.
25035 Change memoization so it actually works.
25036 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
25037 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
25038 <let>: New case.
25039
25040 * emacs-lisp/macroexp.el: Use lexical binding.
25041 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
25042 Don't convert ' to #' without checking that it's indeed quoting
25043 a lambda.
25044
25045 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
25046 Use eval-sexp-add-defvars.
25047 (eval-sexp-add-defvars): New fun.
25048
25049 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
25050
25051 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
25052 Don't autoload.
25053 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
25054 than the internal `byte-compile-lambda'.
25055 (defmethod): Don't hide code under quotes.
25056 (eieio-defmethod): New `code' argument.
25057
25058 * emacs-lisp/eieio-comp.el: Remove.
25059
25060 * emacs-lisp/edebug.el (edebug-eval-defun)
25061 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
25062 (edebug-toggle): Avoid `eval'.
25063
25064 * emacs-lisp/disass.el (disassemble-internal): Handle new
25065 `closure' objects.
25066 (disassemble-1): Handle new byte codes.
25067
25068 * emacs-lisp/cl.el (pushnew): Silence warning.
25069
25070 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
25071 (cl-byte-compile-throw): Remove.
25072 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
25073
25074 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
25075 closures.
25076
25077 * emacs-lisp/cconv.el: New file.
25078
25079 * emacs-lisp/bytecomp.el: Use lexical binding instead of
25080 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
25081 (byte-compile-initial-macro-environment):
25082 Handle declare-function here.
25083 (byte-compile--lexical-environment): New var.
25084 (byte-stack-ref, byte-stack-set, byte-discardN)
25085 (byte-discardN-preserve-tos): New lap codes.
25086 (byte-interactive-p): Don't use any more.
25087 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
25088 New macros.
25089 (byte-compile-lapcode): Use them and handle new lap codes.
25090 (byte-compile-obsolete): Remove.
25091 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
25092 (byte-compile-arglist-warn): Check late def of inlinable funs.
25093 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
25094 since they should have been expanded by now.
25095 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
25096 (byte-compile-from-buffer): Remove unused second arg.
25097 (byte-compile-preprocess): New function.
25098 (byte-compile-toplevel-file-form): New function to distinguish
25099 file-form calls from outside from file-form calls from hunk-handlers.
25100 (byte-compile-file-form): Simplify.
25101 (byte-compile-file-form-defsubst): Remove.
25102 (byte-compile-file-form-defmumble): Simplify now that
25103 byte-compile-lambda always returns a byte-code-function.
25104 (byte-compile): Preprocess.
25105 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
25106 Remove, not used any more.
25107 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
25108 (byte-compile-make-args-desc): New funs.
25109 (byte-compile-lambda): Handle lexical functions. Always return
25110 a byte-code-function.
25111 (byte-compile-reserved-constants): New var, to make up room for
25112 closed-over variables.
25113 (byte-compile-constants-vector): Obey it.
25114 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
25115 (byte-compile-macroexpand-declare-function): New function.
25116 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
25117 byte-code-functions.
25118 (byte-compile-form): Check obsolescence here.
25119 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
25120 (byte-compile-variable-ref): Remove.
25121 (byte-compile-dynamic-variable-op): New fun.
25122 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25123 (byte-compile-variable-set): New funs.
25124 (byte-compile-discard): Add 2 args.
25125 (byte-compile-stack-ref, byte-compile-stack-set)
25126 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
25127 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
25128 macroexpand-all instead.
25129 (byte-compile-quote-form): Remove.
25130 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
25131 (byte-compile-bind, byte-compile-unbind): New funs.
25132 (byte-compile-let): Handle let* and lexical binding.
25133 (byte-compile-let*): Remove.
25134 (byte-compile-catch, byte-compile-unwind-protect)
25135 (byte-compile-track-mouse, byte-compile-condition-case):
25136 Handle a new :fun-body form, used for lexical scoping.
25137 (byte-compile-save-window-excursion)
25138 (byte-compile-with-output-to-temp-buffer): Remove.
25139 (byte-compile-defun): Simplify.
25140 (byte-compile-stack-adjustment): New fun.
25141 (byte-compile-out): Use it.
25142 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
25143
25144 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
25145 handler any more.
25146
25147 * emacs-lisp/byte-opt.el: Use lexical binding.
25148 (byte-inline-lapcode): Remove (to bytecomp).
25149 (byte-compile-inline-expand): Pay attention to inlining to/from
25150 lexically bound code.
25151 (byte-compile-unfold-lambda): Don't handle byte-code-functions
25152 any more.
25153 (byte-optimize-form-code-walker): Don't handle save-window-excursion
25154 any more and don't call compiler-macros.
25155 (byte-compile-splice-in-already-compiled-code): Remove.
25156 (byte-code): Don't inline any more.
25157 (disassemble-offset): Receive `bytes' as argument rather than via
25158 dynamic scoping.
25159 (byte-compile-tag-number): Declare before first use.
25160 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
25161 `return' even if make-spliceable.
25162 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
25163 obsolete interactive-p.
25164 (byte-optimize-lapcode): Optimize new lap-codes.
25165 Don't trip up on new form of `byte-constant' lap code.
25166
25167 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
25168
25169 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25170
25171 * custom.el (custom-initialize-default, custom-declare-variable):
25172 Use `defvar'.
25173
25174 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25175 New variables.
25176 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25177 (COMPILE_FIRST): Add macroexp and cconv.
25178 * makefile.w32-in: Mirror changes in Makefile.in.
25179
25180 * vc/cvs-status.el:
25181 * vc/diff-mode.el:
25182 * vc/log-edit.el:
25183 * vc/log-view.el:
25184 * vc/smerge-mode.el:
25185 * textmodes/bibtex-style.el:
25186 * textmodes/css-mode.el:
25187 * startup.el:
25188 * uniquify.el:
25189 * minibuffer.el:
25190 * newcomment.el:
25191 * reveal.el:
25192 * server.el:
25193 * mpc.el:
25194 * emacs-lisp/smie.el:
25195 * doc-view.el:
25196 * dired.el:
25197 * abbrev.el: Use lexical binding.
25198
25199 2011-04-01 Eli Zaretskii <eliz@gnu.org>
25200
25201 * info.el (info-display-manual): New function.
25202
25203 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25204
25205 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25206
25207 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
25208
25209 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25210 an entry for that server in rcirc-authinfo. (Bug#8385)
25211
25212 2011-03-31 Glenn Morris <rgm@gnu.org>
25213
25214 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25215
25216 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25217
25218 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
25219
25220 * progmodes/python.el (python-default-interpreter)
25221 (python-python-command-args, python-jython-command-args)
25222 (python-which-shell, python-which-args, python-which-bufname)
25223 (python-file-queue, python-comint-output-filter-function)
25224 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25225 variables and functions.
25226
25227 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
25228
25229 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25230 (completion-in-region-mode): New minor mode.
25231 (completion-in-region): Use it.
25232 (completion-in-region--data, completion-in-region-mode-map): New vars.
25233 (completion-in-region--postch): New function.
25234 (completion--capf-misbehave-funs, completion--capf-safe-funs):
25235 New vars.
25236 (completion--capf-wrapper): New function.
25237 (completion-at-point): Use it to track well-behavedness of
25238 hook functions.
25239 (completion-help-at-point): New command.
25240
25241 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
25242
25243 * vc/add-log.el (add-change-log-entry): Don't use whitespace
25244 syntax class to search for whitespace on a single line
25245 (Message-ID: <4D938140.4030905@redhat.com>).
25246
25247 2011-03-30 Leo Liu <sdl.web@gmail.com>
25248
25249 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25250 New commands.
25251 (edit-abbrevs-map): Bind them here.
25252 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
25253
25254 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
25255
25256 * allout.el (allout-hide-by-annotation, allout-flag-region):
25257 Reduce possibility of overlay leakage by making them volatile.
25258
25259 * allout-widgets.el (allout-widgets-tally): Define as nil so the
25260 hash is not shared between buffers. Mode initialization is
25261 responsible for giving it a useful starting value.
25262 (allout-item-span): Reduce possibility of overlay leakage by
25263 making them volatile.
25264 (allout-widgets-count-buttons-in-region): Add diagnostic function
25265 for tracking down button overlay leaks.
25266
25267 2011-03-29 Leo Liu <sdl.web@gmail.com>
25268
25269 * ido.el (ido-read-internal): Use the default history var
25270 minibuffer-history if no HISTORY is specified.
25271
25272 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
25273
25274 * net/imap.el (imap-shell-open, imap-process-connection-type):
25275 Use imap-process-connection-type for 'shell' streams as well as
25276 Kerberos, SSL, other subprocesses.
25277
25278 2011-03-28 Leo Liu <sdl.web@gmail.com>
25279
25280 * abbrev.el (abbrev-table-empty-p): New function.
25281 (prepare-abbrev-list-buffer): Place empty abbrev tables after
25282 nonempty ones. (Bug#5937)
25283
25284 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
25285
25286 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25287
25288 2011-03-27 Leo Liu <sdl.web@gmail.com>
25289
25290 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25291 for foreground and background colors.
25292 (ansi-color-make-color-map): Adapt.
25293
25294 2011-03-25 Leo Liu <sdl.web@gmail.com>
25295
25296 * midnight.el (midnight-time-float): Remove. Note it calculates
25297 the microsecond component incorrectly and seconds-to-time does the
25298 same job.
25299 Remove redundant (require 'timer).
25300
25301 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25302 (ido-completions): Remove unused arguments. (Bug#8329)
25303
25304 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
25305
25306 * minibuffer.el (completion--flush-all-sorted-completions):
25307 Remove itself from hook.
25308 (completion-at-point): Let the functions perform the completion
25309 immediately and return nil or t.
25310 * comint.el (comint-dynamic-complete-functions): Now identical to
25311 completion-at-point-functions.
25312 (comint-dynamic-list-input-ring): Remove unused var `index'.
25313 (comint--match-partial-filename, comint--unquote&expand-filename):
25314 New funs, split from comint-match-partial-filename.
25315 (comint-dynamic-complete): Use completion-at-point.
25316 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25317
25318 2011-03-24 Drew Adams <drew.adams@oracle.com>
25319
25320 * thingatpt.el: Support `defun'.
25321
25322 2011-03-23 Leo Liu <sdl.web@gmail.com>
25323
25324 * abbrevlist.el: Move to obsolete/abbrevlist.el.
25325
25326 * help-mode.el (help-mode-finish): Tweak regexp.
25327
25328 2011-03-23 Glenn Morris <rgm@gnu.org>
25329
25330 * eshell/esh-opt.el (eshell-eval-using-options):
25331 Do not bind unused local variable `eshell-option-stub'.
25332
25333 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25334
25335 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25336
25337 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25338 keymap variable in `with-no-warnings' to avoid a warning when the
25339 keymap has been already `defconst'ed.
25340
25341 2011-03-22 Leo Liu <sdl.web@gmail.com>
25342
25343 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25344 encode all chars in abbrevs; otherwise use emacs-mule or
25345 utf-8-emacs. (Bug#8308)
25346
25347 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
25348
25349 * simple.el (backward-delete-char-untabify):
25350 Avoid warning about using `delete-backward-char'.
25351
25352 * image.el (image-type-file-name-regexps): Make it variable.
25353 `imagemagick-register-types' modifies it, and the user may want
25354 to add new extensions for known image types.
25355 (imagemagick-register-types): Throw error if not using ImageMagick.
25356
25357 2011-03-22 Leo Liu <sdl.web@gmail.com>
25358
25359 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25360 located before rcirc-prompt-end-marker.
25361 (rcirc-complete): Error if point is not after rcirc prompt.
25362 Handle the case when table is nil.
25363 (rcirc-user-authenticated): Define to fix compiler warning.
25364
25365 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
25366
25367 * custom.el (custom--inhibit-theme-enable): Make it affect only
25368 custom-theme-set-variables and custom-theme-set-faces.
25369 (provide-theme): Ignore custom--inhibit-theme-enable.
25370 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25371 (custom-enabling-themes): Delete variable.
25372 (enable-theme): Accept only loaded themes as arguments.
25373 Ignore the special custom-enabled-themes variable.
25374 (custom-enabled-themes): Forbid themes from setting this.
25375 Eliminate use of custom-enabling-themes.
25376 (custom-push-theme): Quote "changed" custom var entry.
25377
25378 2011-03-21 Leo Liu <sdl.web@gmail.com>
25379
25380 * ido.el (ido-read-internal): Add ido-selected to history instead
25381 of user input.
25382
25383 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
25384
25385 * subr.el (deferred-action-list, deferred-action-function):
25386 Mark obsolete.
25387
25388 2011-03-21 Leo Liu <sdl.web@gmail.com>
25389
25390 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25391 change on 2011-02-13 (bug#8309).
25392
25393 * minibuffer.el (read-file-name-function): Change default value.
25394 (read-file-name--defaults): Rename from read-file-name-defaults.
25395 (read-file-name-default): Rename from read-file-name.
25396 (read-file-name): Call read-file-name-function.
25397
25398 2011-03-21 Glenn Morris <rgm@gnu.org>
25399
25400 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25401 Doc fixes.
25402
25403 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
25404
25405 * cus-theme.el: Add missing provide statement.
25406 (customize-create-theme): Extract theme value correctly.
25407 (custom-theme-visit-theme): Autoload.
25408 (customize-create-theme): Prompt before inserting default faces.
25409
25410 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
25411
25412 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25413 units and musical notes.
25414
25415 2011-03-20 Leo Liu <sdl.web@gmail.com>
25416
25417 * ido.el (ido-read-internal): Use completing-read-default.
25418 (ido-completing-read): Fix compatibility with completing-read.
25419
25420 2011-03-20 Christian Ohler <ohler@gnu.org>
25421
25422 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25423 (ert-delete-all-tests): Use `called-interactively-p' rather than
25424 `interactive-p'.
25425 (ert--make-xrefs-region): Respect END.
25426
25427 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25428
25429 * dired-aux.el (dired-create-directory): Signal an error if the
25430 directory already exists (Bug#8246).
25431
25432 * facemenu.el (list-colors-display): Call list-faces-display
25433 inside with-help-window.
25434 (list-colors-print): Use display property to align the final
25435 column, instead of checking window-width.
25436
25437 2011-03-19 Eli Zaretskii <eliz@gnu.org>
25438
25439 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25440 windows-nt systems.
25441 (emerge-protect-metachars): Quote correctly for ms-dos and
25442 windows-nt systems.
25443
25444 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
25445
25446 * info.el (info-initialize): Replace all uses of `:' with
25447 path-separator for compatibility with non-Unix systems.
25448 Cache quoting of path-separator. (Bug#8258)
25449
25450 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
25451
25452 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25453 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25454 (mouse-avoidance-mode): Fix typos in docstrings.
25455
25456 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
25457
25458 * startup.el (package-subdirectory-regexp): Move from package.el.
25459 Omit \\` and \\', and let callers add them.
25460
25461 * emacs-lisp/package.el (package-strip-version)
25462 (package-load-all-descriptors): Add \\` and \\' to
25463 package-subdirectory-regexp before using it.
25464 (package-untar-buffer): New arg DIR; ensure that file untars only
25465 into this expected directory. Remove superfluous delete-region.
25466 (package-unpack): Caller changed.
25467 (package-tar-file-info): Use package-subdirectory-regexp.
25468
25469 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
25470
25471 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25472 diff-mode-shared-map (bug#8284).
25473 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25474
25475 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
25476
25477 * calendar/time-date.el (format-seconds): Use assoc instead of
25478 assoc-string, since assoc-string doesn't exist in XEmacs.
25479
25480 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
25481
25482 * custom.el (custom-known-themes): Reflow docstring.
25483 (custom-theme-load-path): Fix typo in docstring.
25484 (load-theme): Fix typo in error message.
25485 (custom-available-themes, custom-variable-theme-value):
25486 Use `let', not `let*'.
25487
25488 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
25489
25490 * calc/README: Mention inclusion of musical notes.
25491
25492 * calc/calc-units.el (calc-lu-quant): Rename from
25493 `calc-logunits-quantity'.
25494 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25495 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25496 (calc-db): Rename from `calc-dblevel'.
25497 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25498 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25499 (calc-np): Rename from `calc-nplevel'.
25500 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25501 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25502 (calc-lu-plus): Rename from `calc-logunits-add'.
25503 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25504 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25505 (calc-lu-minus): Rename from `calc-logunits-sub'.
25506 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25507 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25508 (calc-lu-times): Rename from `calc-logunits-mul'.
25509 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25510 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25511 (calc-lu-divide): Rename from `calc-logunits-div'.
25512 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25513 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25514
25515 * calc/calc-ext.el (calc-init-extensions): Update the names of the
25516 functions being autoloaded.
25517
25518 * calc/calc.el (calc-lu-power-reference): Rename from
25519 `calc-logunits-power-reference'.
25520 (calc-lu-field-reference): Rename from
25521 `calc-logunits-field-reference'.
25522
25523 * calc/calc-help.el (calc-l-prefix-help):
25524 Mention musical note functions.
25525
25526 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
25527
25528 * minibuffer.el (completion-all-sorted-completions):
25529 Use :completion-cycle-penalty text property if present.
25530
25531 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
25532
25533 * allout.el (allout-yank-processing): Adjust for new rebulleting
25534 regime so bullet being yanked is used without prompting the user
25535 for a choice.
25536
25537 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25538
25539 * startup.el (command-line): Warn the user that _emacs is deprecated.
25540
25541 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
25542
25543 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25544 (delphi-verbose, delphi-comment-face, delphi-string-face)
25545 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25546 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25547 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25548 (delphi-new-comment-line, delphi-font-lock-defaults)
25549 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25550 Fix typos in docstrings.
25551
25552 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
25553
25554 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25555 Invert the roles of character and string values for INSTEAD, so a
25556 string is used for the more common case of a defaulting prompt.
25557
25558 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25559
25560 * progmodes/ruby-mode.el (ruby-backward-sexp):
25561 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25562 * play/gamegrid.el (gamegrid-make-face):
25563 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25564 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25565 * notifications.el (notifications-notify):
25566 * net/xesam.el (xesam-search-engines):
25567 * net/quickurl.el (quickurl-list-insert):
25568 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25569
25570 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
25571
25572 * startup.el (command-line): Update package subdirectory regexp.
25573
25574 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25575
25576 * allout.el (allout-abbreviate-flattened-numbering)
25577 (allout-mode-deactivate-hook): Fix up obsolescence "date".
25578
25579 * subr.el (read-char-choice): Only show the cursor after the prompt,
25580 not after the answer.
25581
25582 2011-03-15 Kevin Ryde <user42@zip.com.au>
25583
25584 * help-fns.el (variable-at-point): Skip leading quotes, if any
25585 (bug#8253).
25586
25587 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
25588
25589 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25590 warning message.
25591
25592 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
25593
25594 * shell.el (shell): When called interactively, offer to change the
25595 shell file name on remote hosts.
25596
25597 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
25598
25599 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25600 integration for LDAP parameters. The host, base, user or binddn,
25601 and secret tokens can be specified in a netrc file, for instance.
25602 This is optional because an `auth-source' parameter must be
25603 specified in the search attributes.
25604
25605 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
25606
25607 * help.el (describe-mode): Link to the mode's definition (bug#8185).
25608
25609 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25610
25611 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25612 into declaration. Remove redundant and harmful binding.
25613
25614 2011-03-12 Eli Zaretskii <eliz@gnu.org>
25615
25616 * files.el (file-ownership-preserved-p): Pass `integer' as an
25617 explicit 2nd argument to `file-attributes'. If the file's owner
25618 is the Administrators group on Windows, and the current user is
25619 Administrator, consider that a match.
25620
25621 * server.el (server-ensure-safe-dir): Consider server directory
25622 safe on MS-Windows if its owner is the Administrators group while
25623 the current Emacs user is Administrator. Use `=' to compare
25624 numerical UIDs, since they could be integers or floats.
25625
25626 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
25627
25628 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25629
25630 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
25631
25632 Sync with Tramp 2.2.1.
25633
25634 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25635
25636 * net/trampver.el: Update release number.
25637
25638 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25639
25640 * progmodes/compile.el (compilation--previous-directory): Fix up
25641 various nil/dead-marker mismatches (bug#8014).
25642 (compilation-directory-properties, compilation-error-properties):
25643 Don't call it at a position past the one we're about to change.
25644
25645 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25646 Disable obsolescence warnings in the file that declares it.
25647
25648 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
25649
25650 * allout-widgets.el (allout-widgets-tally):
25651 Initialize allout-widgets-tally as a hash table rather than nil to
25652 prevent mode-line redisplay warnings. Also, clarify the module
25653 description and fix a comment typo.
25654
25655 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
25656
25657 * help-fns.el (describe-variable): Don't complete keywords.
25658 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25659
25660 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
25661
25662 * emacs-lisp/package.el (package-version-join): Impose a standard
25663 string representation for pre/alpha/beta version lists.
25664 (package-unpack-single): Standardize the directory name by passing
25665 it through package-version-join.
25666 (package-strip-rcs-id): Accept any version string that does not
25667 signal an error in version-to-list.
25668
25669 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
25670
25671 * simple.el (delete-trailing-whitespace): Return nil for the
25672 benefit of `write-file-functions'.
25673
25674 2011-03-10 Glenn Morris <rgm@gnu.org>
25675
25676 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25677
25678 * vc/vc-git.el (vc-git-program): New option.
25679 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25680 (vc-git--call): Use it.
25681
25682 * eshell/esh-util.el (eshell-condition-case): Doc fix.
25683
25684 * cus-edit.el (Custom-newline): If no button at point, look
25685 for a subgroup button at start-of-line. (Bug#2298)
25686
25687 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25688
25689 2011-03-10 Julien Danjou <julien@danjou.info>
25690
25691 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
25692 `cursor-type' is nil.
25693
25694 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
25695
25696 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
25697
25698 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
25699
25700 * allout.el: Change so yank of distinctive-bullet items
25701 preserves the existing header prefix, rebulleting it if necessary,
25702 rather than replacing it. This is necessary for proper operation
25703 of cooperative addons like allout-widgets.
25704 (allout-make-topic-prefix, allout-rebullet-heading):
25705 Change SOLICIT arg to INSTEAD, and interpret additionally a string
25706 value as alternate bullet to be used, instead of prompting the user
25707 for a bullet character.
25708
25709 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
25710
25711 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
25712 Do not use `tramp-file-name-port', because this returns also
25713 `tramp-default-port'.
25714
25715 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
25716
25717 * net/rcirc.el (rcirc-handler-001): Remove useless
25718 with-rcirc-process-buffer.
25719 (rcirc-check-auth-status): Swap arguments to string-match.
25720
25721 2011-03-09 Glenn Morris <rgm@gnu.org>
25722
25723 * shell.el (shell-mode):
25724 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
25725
25726 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
25727 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
25728
25729 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25730
25731 * emacs-lisp/package.el (package-refresh-contents)
25732 (package-menu-execute): Use condition-case-no-debug.
25733
25734 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
25735
25736 * simple.el (shell-command-to-string): Use `process-file'.
25737
25738 * emacs-lisp/package.el (package-tar-file-info): Handle also
25739 remote files.
25740
25741 * emacs-lisp/package-x.el (package-upload-buffer-internal):
25742 Use `equal' for upload base check.
25743
25744 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
25745
25746 * textmodes/texinfo.el (texinfo-environments):
25747 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
25748
25749 2011-03-08 Glenn Morris <rgm@gnu.org>
25750
25751 * cus-start.el (cursor-in-non-selected-windows):
25752 Fix :set quoting oddness. (Bug#8192)
25753
25754 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
25755 in some setf expressions. (Bug#2159)
25756
25757 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
25758
25759 * custom.el (custom-available-themes): Return themes in
25760 alphabetical order.
25761
25762 See ChangeLog.15 for earlier changes.
25763
25764 ;; Local Variables:
25765 ;; coding: utf-8
25766 ;; End:
25767
25768 Copyright (C) 2011-2013 Free Software Foundation, Inc.
25769
25770 This file is part of GNU Emacs.
25771
25772 GNU Emacs is free software: you can redistribute it and/or modify
25773 it under the terms of the GNU General Public License as published by
25774 the Free Software Foundation, either version 3 of the License, or
25775 (at your option) any later version.
25776
25777 GNU Emacs is distributed in the hope that it will be useful,
25778 but WITHOUT ANY WARRANTY; without even the implied warranty of
25779 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25780 GNU General Public License for more details.
25781
25782 You should have received a copy of the GNU General Public License
25783 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.